/* CSS VERSION: 1.0.3 (ported from original K-Method page) */

/* Self-hosted fonts (previously Google Fonts CDN) */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/lora-latin-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/lora-latin-italic-400.woff2') format('woff2');
}

/* DESIGN TOKENS (CSS VARIABLES) */
:root {
  --ink: #141414;       /* warna text utama */
  --ink-soft: #3a3a3a;  /* text sekunder/italic */
  --paper: #ffffff;     /* background utama */
  --band: #f5f4f1;      /* background section selang-seli, off-white */
  --line: #e6e4df;      /* border/divider halus */
  --red: #e02b20;       /* warna CTA/accent utama */
  --red-dark: #b71f16;  /* hover state CTA */
  --mark: #ffe65c;      /* highlight kuning untuk baris penting */
  --green: #1f7a3d;     /* untuk tick/positive items */
  --gold: #b8860b;      /* accent khas untuk bonus eksklusif */
  --gold-soft: #fff8e6; /* background khas untuk bonus eksklusif */
}

/* GLOBAL RESET & BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: 'Lora', serif;
  font-size: 19px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(31px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 12px;
}

h3 {
  font-size: clamp(21px, 3.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 24px;
}

p strong, li strong {
  font-weight: 600;
}

/* HIGHLIGHT MARKER STYLE */
.highlight {
  background: linear-gradient(transparent 58%, var(--mark) 58%);
  display: inline;
  padding: 0 2px;
}

.text-red {
  color: var(--red);
}

/* ACCENT LABELS */
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

/* SECTION SYSTEM */
section {
  padding: 72px 0;
  width: 100%;
}

/* alternating backgrounds */
.section-paper {
  background-color: var(--paper);
}

.section-band {
  background-color: var(--band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wrap {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HERO UNIQUE PADDING */
.hero-section {
  padding-top: 80px;
  padding-bottom: 0;
}

.subheadline {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.35;
  color: var(--ink-soft);
  margin-top: 16px;
  margin-bottom: 32px;
}

/* SALES PROOF CHART */
.sales-proof-container {
  margin-top: 16px;
  margin-bottom: 32px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  background-color: var(--band);
}

.sales-proof-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lede-paragraph {
  border-left: 4px solid var(--ink);
  padding-left: 20px;
  font-size: 21px;
  line-height: 1.55;
  margin-bottom: 0;
}

/* STATEMENT STYLING */
.statement-big {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1.25;
  margin: 36px 0;
  color: var(--ink);
}

/* CUSTOM TICK LIST */
.list-ticks {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.list-ticks li {
  position: relative;
  padding-left: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: 'Lora', serif;
}

.list-ticks li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 18px;
  width: 6px;
  height: 12px;
  border: solid var(--red);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* FASCINATIONS LIST */
.list-fascinations {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.list-fascinations li {
  position: relative;
  padding-left: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: 'Lora', serif;
  font-size: 19px;
  line-height: 1.6;
}

.list-fascinations li::before {
  content: "→";
  position: absolute;
  left: 6px;
  top: 13px;
  color: var(--red);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}

/* RESULT LADDER WIDGET */
.ladder-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0;
  width: 100%;
}

.ladder-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #ffffff;
  border-radius: 10px 10px 0 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ladder-block-1 {
  height: 150px;
  background-color: #1a1a1a;
  padding-bottom: 34px;
}

.ladder-block-2 {
  height: 200px;
  background-color: #2b2b2b;
  padding-bottom: 64px;
}

.ladder-block-3 {
  height: 250px;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  padding-bottom: 94px;
}

.ladder-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.ladder-amount {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.ladder-caption {
  font-family: 'Lora', serif;
  font-style: italic;
  text-align: center;
  color: var(--ink-soft);
  margin-top: 16px;
  display: block;
  font-size: 17px;
}

/* PACKAGE CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 36px 0;
}

.card {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.card-featured {
  border: 2px solid var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card-badge {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  align-self: flex-start;
  text-transform: uppercase;
}

.card-badge-black {
  background-color: var(--ink);
  color: var(--paper);
}

.card-badge-red {
  background-color: var(--red);
  color: var(--paper);
}

.card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}

.card-sub-italic {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.4;
}

.card-intro {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Lora', serif;
}

/* ARROW BULLETS (package cards) */
.list-arrows {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.list-arrows li {
  position: relative;
  padding-left: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-family: 'Lora', serif;
}

.list-arrows li::before {
  content: "→";
  position: absolute;
  left: 2px;
  color: var(--red);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}

.card-note-italic {
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 1.45;
}

.card-price-section {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 20px;
}

.price-strike {
  font-family: 'Archivo', sans-serif;
  text-decoration: line-through;
  color: var(--ink-soft);
  opacity: 0.6;
  font-size: 15px;
  margin-bottom: 4px;
  display: block;
}

.price-main {
  font-family: 'Archivo', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

/* BUTTONS */
.btn {
  display: inline-block;
  width: 100%;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #ffffff;
  background-color: var(--red);
  text-align: center;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(224, 43, 32, 0.12);
  transition: background-color 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 43, 32, 0.22);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* NO REFUND BOX */
.refund-box {
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 40px 32px;
  background-color: var(--paper);
  margin: 36px 0;
}

.refund-box h3 {
  margin-bottom: 8px;
}

.refund-no {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 46px);
  color: var(--red);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1;
}

/* MATH BOX */
.math-box {
  background-color: var(--ink);
  color: var(--paper);
  text-align: center;
  border-radius: 8px;
  padding: 22px 16px;
  margin: 32px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 4vw, 24px);
  letter-spacing: -0.01em;
}

.math-symbol {
  color: var(--mark);
}

/* TRANSFORMATION LISTS */
.list-crosses {
  list-style: none;
  padding-left: 0;
  margin: 24px 0 36px 0;
}

.list-crosses li {
  position: relative;
  padding-left: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: 'Lora', serif;
}

.list-crosses li::before {
  content: "✕";
  position: absolute;
  left: 6px;
  top: 14px;
  color: var(--red);
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
}

.list-dreams {
  list-style: none;
  padding-left: 0;
  margin: 24px 0 36px 0;
}

.list-dreams li {
  position: relative;
  padding-left: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-family: 'Lora', serif;
  font-weight: 600;
}

.list-dreams li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 14px;
  color: var(--green);
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
}

/* DOUBLE CTA STACK */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.cta-subtext {
  text-align: center;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.8;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  background-color: var(--band);
}

.footer-text {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* JOURNEY STORY TIMELINE */
.journey-story {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.journey-story::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background-color: var(--line);
  z-index: 1;
}

.journey-step {
  position: relative;
  padding-left: 56px;
  z-index: 2;
}

.journey-meta {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--paper);
  background-color: var(--ink);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
}

.journey-step::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--red);
  border: 2px solid var(--band);
  box-shadow: 0 0 0 4px var(--line);
}

.journey-step p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ============================================= */
/* MARQUEE BONUS BANNER (own addition, not in original) */
/* ============================================= */

.marquee-bar {
  display: block;
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--ink);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-bar:hover .marquee-track,
.marquee-bar:focus-visible .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 12px 28px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.marquee-item strong {
  color: var(--mark);
  font-weight: 800;
}

.marquee-cta {
  flex-shrink: 0;
  background-color: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 480px) {
  .marquee-item {
    font-size: 12px;
    padding: 10px 20px;
    gap: 10px;
  }
}

/* ============================================= */
/* EXCLUSIVE BONUS (own additions, not in original) */
/* ============================================= */

/* Teaser strip near hero */
.exclusive-teaser {
  background-color: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 24px 20px;
  margin-top: 24px;
  text-align: center;
}

.exclusive-teaser-label {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.exclusive-teaser-text {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 18px;
}

.exclusive-teaser-covers {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.exclusive-teaser-covers .ebook-cover {
  width: 90px;
}

/* Full detail section */
.exclusive-bonus-section {
  background-color: var(--gold-soft);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.exclusive-bonus-badge {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.exclusive-bonus-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 36px 0;
}

.exclusive-bonus-item-body h3 {
  margin-bottom: 8px;
}

.exclusive-bonus-value {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 12px;
}

/* EBOOK COVER MOCKUP (pure CSS, no external image) */
.ebook-cover {
  width: 140px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  border-radius: 4px 8px 8px 4px;
  position: relative;
  box-shadow:
    -3px 0 0 rgba(0, 0, 0, 0.15) inset,
    0 10px 24px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.12);
  transform: perspective(600px) rotateY(-8deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 12px;
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
}

.ebook-cover-a {
  background: linear-gradient(155deg, #1a1a1a 0%, #3a3a3a 100%);
}

.ebook-cover-b {
  background: linear-gradient(155deg, var(--red) 0%, var(--red-dark) 100%);
}

.ebook-cover-kicker {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.ebook-cover-title {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.ebook-cover-sub {
  font-size: 8px;
  font-weight: 600;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 6px;
}

.exclusive-teaser-covers .ebook-cover-title {
  font-size: 11px;
}

.exclusive-teaser-covers .ebook-cover-kicker,
.exclusive-teaser-covers .ebook-cover-sub {
  font-size: 7px;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .exclusive-bonus-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ebook-cover {
    width: 120px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 56px 0;
  }

  body {
    font-size: 18px;
  }

  .hero-section {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .ladder-container {
    gap: 8px;
    margin: 32px 0;
  }

  .ladder-amount {
    font-size: 18px;
  }

  .ladder-label {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .ladder-block-1 {
    height: 120px;
    padding-bottom: 24px;
  }

  .ladder-block-2 {
    height: 170px;
    padding-bottom: 44px;
  }

  .ladder-block-3 {
    height: 220px;
    padding-bottom: 64px;
  }

  .refund-box {
    padding: 28px 20px;
  }

  .journey-story::before {
    left: 12px;
  }

  .journey-step {
    padding-left: 36px;
  }

  .journey-step::before {
    left: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transform: none !important;
  }
}
