/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #06070d;
  --bg-2: #0a0d1c;
  --bg-3: #0e1430;
  --text: #ECEFFB;
  --text-dim: #8E96B6;
  --text-mute: #5F668A;
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.04);
  --accent: #6E8BFF;
  --accent-soft: rgba(110,139,255,0.10);
  --card-bg: rgba(255,255,255,0.02);
  --card-border: rgba(255,255,255,0.06);
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1160px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  line-height: 1.55;
  letter-spacing: -0.005em;
}

/* ============ REVEAL (CSS-driven, no FOUC) ============ */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(0.22, 0.61, 0.36, 1), transform .7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

/* ============ AURORA BG (static, cheap) ============ */
.aurora {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(600px 600px at 10% -10%, rgba(27,42,94,0.55), transparent 60%),
    radial-gradient(520px 520px at 95% 45%, rgba(14,30,80,0.45), transparent 60%);
}
.aurora-blob, .grid-overlay { display: none; }

/* ============ BRAND (footer only) ============ */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 30px; height: 30px; display: grid; place-items: center; background: rgba(110,139,255,0.08); border: 1px solid rgba(110,139,255,0.2); border-radius: 8px; }
.brand-mark svg { width: 18px; height: 18px; }
.brand-text { font-weight: 600; letter-spacing: -0.01em; font-size: 15px; }
.brand.small .brand-mark { width: 26px; height: 26px; }
.brand.small .brand-mark svg { width: 15px; height: 15px; }

/* ============ HERO ============ */
.hero { position: relative; padding: 140px 28px 120px; min-height: 88vh; display: flex; align-items: center; justify-content: center; }
.hero-inner { max-width: 1120px; text-align: center; position: relative; z-index: 3; }

.hero-inner > * {
  opacity: 0;
  transform: translateY(40px);
  animation: heroRise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.15s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.3s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.45s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.58s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.72s; }
.hero-inner > *:nth-child(6) { animation-delay: 0.86s; }
.hero-inner > *:nth-child(7) { animation-delay: 1s; }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-line {
  opacity: 0;
  animation: lineFade 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.4s;
}
@keyframes lineFade {
  to { opacity: 0.7; }
}

.eyebrow, .section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(124,192,255,0.06);
  border: 1px solid rgba(124,192,255,0.18);
  color: var(--blue-2); font-size: 13px; font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow .dot, .section-eyebrow .dot, .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-2); box-shadow: 0 0 12px var(--blue-2);
}
.dot.green { background: #4ADE80; box-shadow: 0 0 12px #4ADE80; }

.hero-title {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: #F5F7FF;
}
.grad {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: -0.02em;
  color: #C9D5FF;
  -webkit-text-fill-color: initial;
  background: none;
}
.grad-red {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #FFB39A;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 1080px;
  margin: 0 auto 40px;
  line-height: 1.5;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .hero-sub { white-space: normal; max-width: 720px; }
}
.hero-sub .grad { font-size: 1em; }
.hl-underline {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

/* ===== HERO LAPTOP MOCKUP ===== */
.hero-mockup {
  position: relative;
  max-width: 880px;
  margin: 0 auto 4px;
  padding: 0;
}
.hero-mockup-glow {
  position: absolute;
  inset: -8% -6% -14%;
  background:
    radial-gradient(ellipse 60% 55% at 50% 55%, rgba(96,78,200,0.55), rgba(46,60,160,0.32) 45%, transparent 75%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.hero-mockup-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 36px 50px rgba(0,0,0,0.6));
}
.hero-mockup-label {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0 auto -34px;
}
.hero-mockup-caption {
  font-family: var(--display);
  font-size: 17px;
  color: #FFFFFF;
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.cta-primary, .cta-book {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 10px;
  background: #ECEFFB;
  color: #0A0D1C;
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform .2s ease, background .2s ease;
}
.cta-primary {
  padding: 26px 60px;
  font-family: var(--display);
  font-size: 20px;
  border-radius: 14px;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px -12px rgba(110,139,255,0.35);
}
.cta-primary:hover, .cta-book:hover {
  background: white;
  transform: translateY(-1px);
}
.cta-icon { display: grid; place-items: center; width: 22px; height: 22px; }

.hero-stats {
  margin-top: 56px;
  display: inline-flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}
.stat {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
}
.stat-icon { font-size: 22px; }
.stat-num { font-weight: 700; font-size: 17px; }
.stat-label { font-size: 12.5px; color: var(--text-mute); }

/* hero floating cards */
.hero-bg-cards { position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; pointer-events: none; }
.hero-bg-cards.left { left: 2%; width: 280px; }
.hero-bg-cards.right { right: 2%; width: 320px; height: 500px; }

.float-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(15,20,45,0.85), rgba(10,13,28,0.75));
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
  margin-bottom: 14px;
  animation: floatY 6s ease-in-out infinite;
}
.card-a { animation-delay: 0s; }
.card-b { margin-left: 24px; animation-delay: 1.5s; }
.card-c { margin-left: 6px; animation-delay: 3s; }
.card-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: rgba(91,123,255,0.15); font-size: 18px; }
.card-body { flex: 1; min-width: 0; }
.card-title { font-weight: 600; font-size: 13.5px; }
.card-sub { font-size: 11.5px; color: var(--text-mute); }
.card-pill { font-size: 11.5px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.card-pill.green { color: #4ADE80; background: rgba(74,222,128,0.12); }

.float-pill {
  position: absolute;
  padding: 8px 16px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(91,123,255,0.25), rgba(124,192,255,0.15));
  border: 1px solid rgba(124,192,255,0.35);
  font-weight: 700; font-size: 16px; color: var(--blue-2);
  backdrop-filter: blur(8px);
  animation: floatY 5s ease-in-out infinite;
}
.float-pill span { color: var(--blue-2); }
.pill-1 { top: 10%; right: 20%; }
.pill-2 { top: 60%; right: 5%; background: linear-gradient(135deg, rgba(255,140,80,0.2), rgba(255,180,100,0.1)); border-color: rgba(255,180,100,0.3); color: #FFB87C; animation-delay: 2s; }

.hero-line { position: absolute; right: 0; top: 0; height: 100%; width: 100%; opacity: 0.7; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============ OMAR INTRO ============ */
.omar { padding: 110px 0; }
.omar-grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) 1fr;
  gap: 56px;
  align-items: center;
}
.omar-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.omar-photo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 40%, rgba(91,123,255,0.25), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.omar-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
  z-index: 1;
}

.omar-text { max-width: 560px; }
.omar-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid rgba(110,139,255,0.25);
  border-radius: 999px;
  background: rgba(110,139,255,0.06);
}
.omar-headline {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 24px;
}
.omar-heading {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.omar-sub {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--text);
}
.omar-sub .grad {
  font-size: 1em;
}
.omar-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 30px;
}
.omar-body strong {
  color: var(--text);
  font-weight: 600;
}
.omar-creds {
  margin: 8px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.omar-cred-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  transition: background .2s, border-color .2s;
}
.omar-cred-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.omar-cred-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(110,139,255,0.6);
}
.omar-cred-text {
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.omar-handle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--text-mute);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.omar-handle:hover { color: var(--text); border-color: var(--accent); }

@media (max-width: 880px) {
  .omar { padding: 70px 0; }
  .omar-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .omar-photo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .omar-text { text-align: left; max-width: none; }
}

/* ============ SECTION COMMON ============ */
section { position: relative; padding: 110px 0; z-index: 2; }
.section-eyebrow.center { display: inline-flex; }
.section-eyebrow + .section-title { margin-top: 24px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--text-mute);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-eyebrow .dot {
  width: 4px; height: 4px;
  background: var(--accent);
  box-shadow: none;
}

.section-title {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #F2F4FF;
}
.section-title.center, .section-sub.center { text-align: center; }
.section-eyebrow.center { margin-left: auto; margin-right: auto; display: flex; width: max-content; }

.section-sub {
  color: var(--text-dim); font-size: 17px;
  max-width: 560px; line-height: 1.6; margin-bottom: 60px;
  font-weight: 400;
}
.section-sub.center { margin-left: auto; margin-right: auto; max-width: 820px; }

/* ============ DIAGNOSE / ANALOGI RADIAL ============ */
.analogy-radial {
  position: relative;
  max-width: 880px;
  margin: 60px auto 0;
  aspect-ratio: 5 / 3;
  min-height: 480px;
}
.radial-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.analogy-text {
  position: absolute;
  display: flex; align-items: flex-start; gap: 14px;
  width: 250px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s;
}
.analogy-text:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}
.analogy-text .num {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mute);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.analogy-text .txt {
  font-size: 14.5px; line-height: 1.5; font-weight: 400;
  color: var(--text);
}

.pos-tl { top: 6%; left: 0; }
.pos-tr { top: 6%; right: 0; text-align: right; }
.pos-tr { flex-direction: row-reverse; }
.pos-tr .txt { text-align: right; }
.pos-bl { bottom: 6%; left: 0; }
.pos-br { bottom: 6%; right: 0; flex-direction: row-reverse; }
.pos-br .txt { text-align: right; }

.analogy-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}
.core-circle {
  position: relative;
  width: 156px; height: 156px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.12);
}
.core-pulse { display: none; }
.core-label {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .analogy-radial {
    aspect-ratio: auto;
    min-height: auto;
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
    margin-top: 32px;
  }
  .radial-lines { display: none; }
  .analogy-text {
    position: static;
    width: 100%; max-width: 420px;
    flex-direction: row !important;
    text-align: left !important;
  }
  .analogy-text .txt { text-align: left !important; }
  .analogy-core {
    position: static;
    transform: none;
    order: 0;
    margin: 8px 0 16px;
  }
}

/* ============ COMPARE TABLE (Salah / Seharusnya) ============ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
  align-items: stretch;
}
.compare-panel {
  padding: 32px 28px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.compare-wrong {
  background:
    linear-gradient(180deg, rgba(255,120,120,0.05), rgba(255,120,120,0.01) 80%);
  border-color: rgba(255,120,120,0.18);
}
.compare-right {
  background:
    linear-gradient(180deg, rgba(120,210,160,0.05), rgba(120,210,160,0.01) 80%);
  border-color: rgba(120,210,160,0.18);
}

.compare-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 22px;
}
.compare-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
}
.wrong-tag { color: #FF8E8E; }
.right-tag { color: #8EE5B2; }

.compare-cols-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.compare-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.compare-body { flex: 1; }

/* Wrong: list of conditions + single solution centered */
.wrong-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.cond-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 0; margin: 0;
}
.cond-list li {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.45;
}
.single-solution {
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  height: 100%;
}
.single-solution span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: #FFA3A3;
  line-height: 1.2;
}

/* Right: paired condition + solution */
.right-body {
  display: flex; flex-direction: column;
  gap: 14px;
}
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.pair:last-child { border-bottom: none; padding-bottom: 0; }
.pair-c {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.4;
}
.pair-s {
  font-size: 14.5px;
  color: #DDE5FF;
  font-weight: 500;
  line-height: 1.4;
}

.compare-tagline {
  text-align: center;
  margin-top: 36px;
  font-size: 18px;
  color: var(--text-dim);
  font-weight: 400;
}
.compare-cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 880px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-panel { padding: 24px 20px; }
  .single-solution span { font-size: 20px; }
}

/* ============ BUANG-BUANG WAKTU HIGHLIGHT ============ */
.hl-buang {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35em;
  letter-spacing: -0.01em;
  color: #FFB39A;
  line-height: 1.1;
}

/* ============ TESTIMONI ============ */
.testi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 12px;
  align-items: stretch;
}
.testi-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.testi-card:hover {
  box-shadow: 0 30px 70px -30px rgba(110,139,255,0.35);
}
.testi-card-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}
.testi-card .video-wrap { pointer-events: none; }
.testi-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }

.testi-media {
  padding: 14px 14px 0;
  display: flex; justify-content: center;
}
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0d1c;
  border: 1px solid rgba(255,255,255,0.06);
}
.testi-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Per-video crop tuning — adjust if the wrong part of the frame gets cropped */
.video-suli { object-position: center; }   /* landscape 4:3 — sides get cropped */
.video-ober { object-position: center 35%; } /* portrait 9:16 — top/bottom cropped, favor upper half for face */

.testi-body { padding: 22px 26px 28px; }
.testi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.testi-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #FFFFFF;
  padding: 6px 11px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  line-height: 1;
}
.testi-tag-soft {
  color: var(--accent);
  background: rgba(110,139,255,0.1);
  border-color: rgba(110,139,255,0.25);
}
.testi-body h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: #F2F4FF;
}
.testi-body p {
  color: var(--text-dim);
  font-size: 14.5px; line-height: 1.65;
  margin-bottom: 18px;
}
.testi-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 3px;
  transition: border-color .2s, color .2s;
}
.testi-link span { transition: transform .2s; display: inline-block; }
.testi-card:hover .testi-link { border-color: var(--accent); color: #F5F7FF; }
.testi-card:hover .testi-link span { transform: translateX(3px); }

/* ============ MILESTONE ============ */
.path-wrap {
  margin-top: 28px;
  position: relative;
  margin-left: -28px; margin-right: -28px;
}
.path-track {
  display: flex; align-items: stretch; gap: 0;
  padding: 40px 28px 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(124,192,255,0.3) transparent;
}
.path-track::-webkit-scrollbar { height: 8px; }
.path-track::-webkit-scrollbar-track { background: transparent; }
.path-track::-webkit-scrollbar-thumb { background: rgba(124,192,255,0.25); border-radius: 999px; }

.path-step {
  flex: 0 0 360px;
  scroll-snap-align: center;
  position: relative;
}

.step-marker {
  position: relative;
  width: 44px; height: 44px;
  margin: 0 auto 22px;
}
.marker-ring { display: none; }
.marker-dot {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent;
  color: var(--text);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}
.marker-dot.infinity {
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  border-color: rgba(110,139,255,0.4);
}

.step-card {
  padding: 28px 26px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  height: 100%;
  transition: border-color .3s, transform .3s;
}
.step-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }
.step-card.ghost {
  background: transparent;
  border-color: rgba(110,139,255,0.2);
  border-style: dashed;
}
.step-range {
  display: inline-block;
  font-size: 11.5px; font-weight: 500;
  color: var(--text-mute);
  margin-bottom: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.step-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #F2F4FF;
}
.step-card p {
  color: var(--text-dim);
  font-size: 14.5px; line-height: 1.65;
  margin-bottom: 18px;
}
.step-list { list-style: none; }
.step-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 7px;
  line-height: 1.55;
}
.step-list li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 1px;
  background: var(--text-mute);
}

.path-connector {
  flex: 0 0 48px;
  align-self: center;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: -100px;
}

.path-scroll-hint {
  text-align: center;
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 8px;
}

/* ============ CALLOUT ============ */
.callout { padding: 80px 0; }
.callout-card {
  position: relative;
  text-align: center;
  padding: 90px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  overflow: hidden;
}
.callout-bg { display: none; }
.callout-title {
  position: relative;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #F2F4FF;
}
.callout-sub {
  position: relative;
  color: var(--text-dim); font-size: 16.5px; line-height: 1.65;
  max-width: 580px; margin: 0 auto;
}

/* ============ FINAL CTA ============ */
.cta-final { text-align: center; padding: 24px 0 120px; }
.cta-final-title {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
  color: #F2F4FF;
}
.cta-final-sub {
  color: var(--text-dim); font-size: 17px; line-height: 1.7;
  max-width: 560px; margin: 0 auto 48px;
  font-weight: 400;
}
.hl-free {
  font-weight: 700;
  color: #F5F7FF;
  letter-spacing: 0.02em;
}
.cta-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
/* ============ DREAM OUTCOME ============ */
.outcome { padding: 100px 0 24px; text-align: center; }
.outcome-block {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.outcome-block .section-eyebrow { margin-bottom: 28px; }
.outcome-setup {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 24px;
}
.outcome-setup strong {
  color: var(--text);
  font-weight: 700;
}
.outcome-arrow {
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 20px;
}
.outcome-prefix {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.outcome-result {
  font-family: var(--display);
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #FFD66B;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(255,214,107,0.25);
}
.outcome-caption {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.5;
}
.outcome-caption .grad { font-size: 1em; }

.outcome-guarantee {
  margin: 64px auto 0;
  max-width: 560px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(74,222,128,0.05);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 12px;
}
.guarantee-icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(74,222,128,0.12);
  color: #4ADE80;
  flex-shrink: 0;
}
.outcome-guarantee p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-dim);
  text-align: left;
}
.outcome-guarantee strong {
  color: #4ADE80;
  font-weight: 700;
}

@media (max-width: 720px) {
  .outcome { padding: 70px 0 50px; }
  .outcome-setup { font-size: 15px; }
  .outcome-prefix { font-size: 11.5px; letter-spacing: 0.18em; }
  .outcome-result { font-size: 38px; }
  .outcome-caption { font-size: 14.5px; }
  .outcome-guarantee {
    margin-top: 48px;
    padding: 16px 18px;
    gap: 12px;
  }
  .outcome-guarantee p { font-size: 13.5px; }
  .guarantee-icon { width: 34px; height: 34px; }
}

/* ============ WHAT TO EXPECT ============ */
.expect-block {
  margin-top: 72px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding: 32px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.012);
}
.expect-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
  margin-bottom: 26px;
}
.expect-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.expect-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.expect-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(110,139,255,0.08);
  border: 1px solid rgba(110,139,255,0.2);
  border-radius: 10px;
  color: var(--accent);
}
.expect-text { flex: 1; }
.expect-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text-mute);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.expect-text p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.55;
}
.expect-reassure {
  text-align: center;
  color: var(--text-mute);
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-tagline {
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .cta-tagline { white-space: normal; max-width: 720px; }
}
.cta-action-bottom { margin-top: 24px; }
.cta-free-hint {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 16px auto 0;
  max-width: 480px;
}
.cta-free-hint strong {
  color: #FFFFFF;
  font-weight: 700;
}
.cta-book-large {
  padding: 22px 50px;
  font-family: var(--display);
  font-size: 17px;
  gap: 12px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta-book-large .cta-book-icon { width: 24px; height: 24px; }
.cta-tagline .grad {
  font-size: 1em;
  color: #C9D5FF;
}
.cta-book {
  padding: 16px 30px;
  font-size: 15.5px;
}
.cta-book-icon { display: grid; place-items: center; width: 20px; height: 20px; background: transparent; }
.cta-arrow { font-size: 18px; transition: transform .2s; }
.cta-book:hover .cta-arrow { transform: translateX(3px); }
.cta-foot {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-mute); font-size: 13px;
  letter-spacing: 0.02em;
}
.dot.green { width: 6px; height: 6px; background: #4ADE80; box-shadow: none; }

/* ============ BOOK MEETING MODAL ============ */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(5,6,13,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: center;
  padding: 20px;
  animation: modalFadeIn 0.22s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes modalFadeIn { from { opacity: 0 } to { opacity: 1 } }

.modal-card {
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  background: linear-gradient(180deg, #0f1430 0%, #0a0d1c 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 34px 32px 28px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.85);
  animation: modalSlideIn 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--text-dim);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s;
  z-index: 2;
}
.modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
}

.modal-header { margin-bottom: 26px; padding-right: 40px; }
.modal-step-indicator {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.modal-progress {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 22px;
}
.modal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6E8BFF, #8B5BFF);
  width: 0%;
  transition: width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-radius: 999px;
}
.modal-title {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.form-step { display: none; }
.form-step.active {
  display: block;
  animation: stepIn 0.28s ease;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-step label {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.form-step input,
.form-step select,
.form-step textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-step input:focus,
.form-step select:focus,
.form-step textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.form-step input::placeholder,
.form-step textarea::placeholder {
  color: var(--text-mute);
  opacity: 1;
}
.form-step input.error,
.form-step select.error,
.form-step textarea.error {
  border-color: #FF8E8E;
  background: rgba(255,142,142,0.05);
}
.form-step select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%239AA3C7' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-step option {
  background: #0e1430;
  color: var(--text);
}
.form-step textarea { resize: vertical; min-height: 110px; }

.form-hint {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-mute);
  line-height: 1.55;
}

.modal-footer {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.modal-header[hidden],
.modal-footer[hidden] { display: none !important; }
.btn-next[hidden],
.btn-submit[hidden] { display: none !important; }
.btn-back, .btn-next, .btn-submit {
  flex: 1;
  padding: 13px 18px;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, opacity .2s, transform .15s;
}
.btn-back {
  flex: 0 0 110px;
  background: transparent;
  border-color: rgba(255,255,255,0.1);
  color: var(--text-dim);
}
.btn-back:hover:not(:disabled) {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.btn-back:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-next, .btn-submit {
  background: #ECEFFB;
  color: #0A0D1C;
}
.btn-next:hover, .btn-submit:hover {
  background: white;
  transform: translateY(-1px);
}

.form-loading {
  text-align: center;
  padding: 14px 0 6px;
}
.loading-spinner {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 3px solid rgba(110,139,255,0.16);
  border-top-color: var(--accent);
  animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-loading h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.form-loading p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 14px 0 6px;
}
.success-icon {
  margin: 0 auto 22px;
  display: grid; place-items: center;
  width: 84px; height: 84px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 50%;
}
.form-success h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.form-success p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 360px;
  margin: 0 auto;
}

@media (max-width: 560px) {
  .modal-card { padding: 28px 22px 22px; max-height: 95vh; }
  .modal-title { font-size: 17px; }
  .form-step label { font-size: 13.5px; }
  .modal-footer { gap: 8px; }
  .btn-back { flex: 0 0 96px; }
  .btn-back, .btn-next, .btn-submit { padding: 12px 14px; font-size: 12.5px; }
}

/* ============ FOOTER ============ */
.footer { padding: 40px 0; border-top: 1px solid var(--line-2); position: relative; z-index: 2; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { color: var(--text-mute); font-size: 13px; }
.footer-handle {
  color: var(--text-mute);
  font-weight: 400;
  margin-left: 4px;
  transition: color .2s;
}
.footer-handle:hover { color: var(--accent); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-bg-cards { display: none; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  section { padding: 80px 0; }
  .hero { padding: 90px 24px 80px; min-height: auto; }
  .callout-card { padding: 64px 24px; }
  .ig-clip { height: calc(var(--ig-h, 600px) - 40px); }
}

/* ===== Mobile (phone) ===== */
@media (max-width: 720px) {
  .container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 70px 20px 60px; }
  .hero-title { font-size: 38px; line-height: 1.08; letter-spacing: -0.03em; }
  .grad { font-size: 1.05em; }
  .hero-sub { font-size: 15.5px; max-width: 100%; margin-bottom: 26px; }
  .hero-mockup-label { font-size: 28px; letter-spacing: -0.01em; margin-bottom: -20px; }
  .hero-mockup { max-width: 100%; margin-bottom: 2px; padding: 0; }
  .hero-mockup-img { filter: drop-shadow(0 18px 24px rgba(0,0,0,0.55)); }
  .hero-mockup-caption { font-size: 15px; margin-bottom: 18px; padding: 0 4px; font-weight: 500; }
  .cta-book { padding: 14px 24px; font-size: 14.5px; }
  .cta-primary { padding: 20px 36px; font-size: 15.5px; gap: 12px; border-radius: 12px; letter-spacing: 0.12em; }
  .cta-book-large { padding: 18px 32px; font-size: 14px; letter-spacing: 0.12em; }
  .cta-tagline { font-size: 19px; line-height: 1.4; padding: 0 12px; }

  /* Section common */
  section { padding: 70px 0; }
  .section-title { font-size: 28px; line-height: 1.15; letter-spacing: -0.025em; }
  .section-sub { font-size: 15px; margin-bottom: 40px; }
  .section-eyebrow { font-size: 11px; letter-spacing: 0.16em; margin-bottom: 18px; }

  /* Compare table — KEEP 2-column layout (Kondisi | Solusi side-by-side), shrink text */
  .compare-grid { gap: 14px; margin-top: 28px; }
  .compare-panel { padding: 22px 16px; }
  .compare-tag { font-size: 20px; }

  .compare-cols-head { gap: 10px; margin-bottom: 14px; }
  .compare-col-label { font-size: 9.5px; letter-spacing: 0.14em; }

  .wrong-body { gap: 10px; }
  .cond-list { gap: 9px; }
  .cond-list li { font-size: 12px; line-height: 1.35; }
  .single-solution span { font-size: 16px; }

  .pair { gap: 10px; padding-bottom: 10px; }
  .pair-c { font-size: 12px; line-height: 1.35; }
  .pair-s { font-size: 12px; line-height: 1.35; color: #ECEFFB; }
  .right-body { gap: 10px; }

  .compare-tagline { font-size: 15.5px; margin-top: 30px; padding: 0 12px; }

  /* Testimoni */
  .testi-card { border-radius: var(--radius); }
  .testi-body { padding: 18px 22px 24px; }
  .testi-body h4 { font-size: 21px; }
  .testi-body p { font-size: 14px; }
  .testi-tag { font-size: 10.5px; letter-spacing: 0.14em; }

  /* Milestone */
  .path-track { padding: 24px 20px 50px; }
  .path-step { flex: 0 0 86vw; max-width: 320px; }
  .step-card { padding: 22px 20px; }
  .step-card h3 { font-size: 20px; }
  .step-card p { font-size: 14px; }
  .path-connector { display: none; }
  .path-scroll-hint { font-size: 10px; }

  /* Callout */
  .callout { padding: 60px 0; }
  .callout-card { padding: 48px 20px; }
  .callout-title { font-size: 24px; line-height: 1.25; }
  .callout-sub { font-size: 14.5px; line-height: 1.6; padding: 0 4px; }
  .hl-buang { font-size: 1.25em; }
  .grad-red { font-size: 1em; }

  /* Omar section mobile polish */
  .omar { padding: 60px 0; }
  .omar-heading { font-size: 16px; }
  .omar-sub { font-size: 24px; line-height: 1.2; }
  .omar-body { font-size: 14.5px; line-height: 1.65; }
  .omar-creds { padding: 16px 18px; gap: 10px; }
  .omar-cred-text { font-size: 14px; }
  .omar-cred-dot { width: 6px; height: 6px; }
  .omar-badge { font-size: 10.5px; }

  /* Final CTA */
  .cta-final { padding: 90px 0 100px; }
  .cta-final-title { font-size: 28px; line-height: 1.2; }
  .cta-final-sub { font-size: 15px; line-height: 1.65; margin-bottom: 36px; padding: 0 4px; }
  .cta-tagline { margin-top: 16px; }

  /* Expect block mobile */
  .expect-block { padding: 24px 20px; margin-top: 56px; }
  .expect-steps { grid-template-columns: 1fr; gap: 18px; }
  .expect-step { flex-direction: row; align-items: flex-start; gap: 14px; }
  .expect-icon { flex: 0 0 36px; width: 36px; height: 36px; }
  .expect-text p { font-size: 14px; }
  .expect-reassure { font-size: 12.5px; padding-top: 20px; }

  /* Footer */
  .footer-row { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== Very small phones ===== */
@media (max-width: 380px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 24px; }
  .callout-title { font-size: 22px; }
  .cta-final-title { font-size: 24px; }
  .ig-clip { height: calc(var(--ig-h, 600px) - 90px); }
  .path-step { flex: 0 0 84vw; }

  /* Compare table — even tighter on tiny screens */
  .compare-panel { padding: 18px 12px; }
  .compare-tag { font-size: 18px; }
  .compare-col-label { font-size: 9px; }
  .cond-list li,
  .pair-c,
  .pair-s { font-size: 11px; }
  .single-solution span { font-size: 14px; }
  .compare-cols-head { gap: 8px; }
  .wrong-body, .pair { gap: 8px; }
}
