﻿  /* ─── Design Tokens ─────────────────────────────────────────────────── */
  :root {
    --ink:        #0A0A0F;
    --ink-2:      #12121A;
    --ink-3:      #1A1A26;
    --gold:       #D4A843;
    --gold-light: #F0C96A;
    --gold-dim:   #8A6B22;
    --cream:      #FAF4E8;
    --cream-2:    #F0E6C8;
    --warm-white: #FDFAF4;
    --red-accent: #C0392B;
    --text-main:  #FAF4E8;
    --text-muted: #8A8090;
    --text-body:  #C8BBAA;
    --border:     rgba(212,168,67,0.2);
    --border-2:   rgba(212,168,67,0.08);
    --glow:       0 0 40px rgba(212,168,67,0.15);
    --glow-strong:0 0 60px rgba(212,168,67,0.3);
    --radius:     12px;
    --radius-lg:  20px;
    --shadow:     0 4px 30px rgba(0,0,0,0.4);
    --shadow-lg:  0 8px 60px rgba(0,0,0,0.6);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'DM Mono', monospace;
    --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
    --header-h-mobile: 56px;
    --sticky-h-mobile: 68px;
  }

  /* ─── Reset & Base ──────────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
    max-width: 100%;
  }
  body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--text-main);
    overflow-x: clip;
    max-width: 100%;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { cursor: pointer; border: none; outline: none; font-family: inherit; }
  section { position: relative; }

  /* ─── Noise Texture Overlay ─────────────────────────────────────────── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.4;
  }

  /* ─── Utility ───────────────────────────────────────────────────────── */
  .gold { color: var(--gold); }
  .gold-light { color: var(--gold-light); }
  .red { color: var(--red-accent); }
  .section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,168,67,0.1);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    max-width: 100%;
    line-height: 1.45;
    word-break: break-word;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 580px;
    line-height: 1.7;
  }
  .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; width: 100%; }
  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto; }

  /* ─── CTA Buttons ───────────────────────────────────────────────────── */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8871A 100%);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(212,168,67,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    word-break: break-word;
  }
  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
  }
  .btn-primary:hover::before { opacity: 1; }
  @media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(212,168,67,0.5);
    }
  }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border);
    font-size: 0.9rem; font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    transition: var(--transition);
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    justify-content: center;
  }
  .btn-ghost:hover { background: rgba(212,168,67,0.08); border-color: var(--gold); }
  .btn-lg { padding: 20px 48px; font-size: 1.15rem; }

  /* ─── Scroll Animation ──────────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ═══════════════════════════════════════════════════════════════════════
     STICKY HEADER
  ═══════════════════════════════════════════════════════════════════════ */
  #site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    width: 100%;
    max-width: 100vw;
    padding: 14px 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid transparent;
    overflow: visible;
  }
  #site-header.scrolled {
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border-2);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  }
  @media (max-width: 1024px) {
    #site-header {
      height: var(--header-h-mobile);
      padding: 0;
      display: flex;
      align-items: center;
    }
    #site-header.scrolled {
      background: rgba(10,10,15,0.98);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: none;
      border-bottom-color: var(--border-2);
    }
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    max-width: 1140px; margin: 0 auto;
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
    gap: 12px;
    min-width: 0;
  }
  .header-logo {
    display: flex; align-items: center; gap: 12px;
    flex-shrink: 0;
  }
  .logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }
  .logo-text {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
    color: var(--cream); line-height: 1.2;
  }
  .logo-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; font-family: var(--font-mono); }
  .header-cta-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .header-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    white-space: nowrap;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    background: linear-gradient(135deg, var(--gold) 0%, #B8871A 100%);
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(212,168,67,0.35);
    transition: none;
    transform: none;
    overflow: visible;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .header-register-btn:hover,
  .header-register-btn:active,
  .header-register-btn:focus {
    transform: none;
    color: var(--ink);
  }
  .header-price {
    font-family: var(--font-mono);
    font-size: 0.9rem; color: var(--text-muted);
    display: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  @media (min-width: 769px) {
    .header-price { display: block; }
    .header-register-btn { padding: 10px 20px; font-size: 0.875rem; }
  }

  /* ═══════════════════════════════════════════════════════════════════════
     HERO SECTION
  ═══════════════════════════════════════════════════════════════════════ */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    background:
      radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212,168,67,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 60% 80% at 80% 20%, rgba(192,57,43,0.04) 0%, transparent 60%),
      var(--ink);
    overflow: hidden;
  }
  #hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }
  .hero-grid > *,
  .mentor-grid > *,
  .endorsement-grid > * {
    min-width: 0;
  }
  .hero-content { width: 100%; }
  @media(min-width:900px) {
    .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 80px; }
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,168,67,0.08);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    color: var(--gold);
    margin-bottom: 28px;
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.4;
  }
  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .hero-headline .accent-line {
    display: block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #A0671A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 1.05rem; color: var(--text-body);
    margin: 20px 0 32px; line-height: 1.75;
    max-width: 520px;
  }
  .hero-meta {
    display: flex; flex-wrap: wrap; gap: 20px;
    margin-bottom: 36px;
  }
  .hero-chip {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--text-body);
  }
  .hero-chip .icon {
    color: var(--gold); font-size: 1rem;
  }
  .hero-price-row {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 32px; flex-wrap: wrap;
  }
  .price-tag {
    font-family: var(--font-display);
    font-size: 3.2rem; font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .price-original {
    font-size: 1.1rem; color: var(--text-muted);
    text-decoration: line-through;
    font-family: var(--font-mono);
  }
  .price-save {
    background: rgba(192,57,43,0.15);
    border: 1px solid rgba(192,57,43,0.3);
    color: #E74C3C;
    padding: 4px 12px; border-radius: 100px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  }
  .hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
  .hero-guarantee {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem; color: var(--text-muted);
  }
  .hero-guarantee .icon { color: var(--gold); }

  /* Hero Countdown */
  .countdown-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
  }
  .countdown-label {
    font-family: var(--font-mono);
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .countdown-digits {
    display: flex; gap: 12px; align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .digit-block {
    text-align: center;
  }
  .digit-number {
    font-family: var(--font-display);
    font-size: 2.4rem; font-weight: 900; color: var(--cream);
    background: rgba(212,168,67,0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    min-width: 70px;
    display: block;
    line-height: 1;
  }
  .digit-unit {
    font-size: 0.65rem; color: var(--text-muted);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-top: 6px; font-family: var(--font-mono);
  }
  .colon { font-size: 2rem; color: var(--gold); font-weight: 900; padding-bottom: 16px; }

  /* Hero Visual */
  .hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .host-image-wrap {
    position: relative;
    width: min(380px, 85vw);
    max-width: 100%;
    margin: 0 auto;
  }
  .host-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    border: 2px solid var(--border);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg), var(--glow-strong);
    background: var(--ink-3);
  }
  .host-photo,
  .mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    border-radius: 50%;
  }
  .host-name-tag {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 2;
    padding: 28px 16px 18px;
    background: linear-gradient(to top, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.55) 55%, transparent 100%);
  }
  .host-name-tag strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--cream);
  }
  .host-name-tag span {
    font-size: 0.72rem;
    color: var(--gold);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
  }
  /* Floating badges around host image */
  .float-badge {
    position: absolute;
    background: rgba(10,10,15,0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    animation: float-anim 3s ease-in-out infinite;
  }
  .float-badge.fb-1 { top: 10%; right: -20px; animation-delay: 0s; }
  .float-badge.fb-2 { bottom: 20%; left: -24px; animation-delay: 1.5s; }
  .float-badge.fb-3 { top: 45%; right: -28px; animation-delay: 0.8s; }
  @keyframes float-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .fb-value {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 900;
    color: var(--gold); line-height: 1;
  }
  .fb-label { font-size: 0.68rem; color: var(--text-muted); font-family: var(--font-mono); margin-top: 2px; }

  /* ═══════════════════════════════════════════════════════════════════════
     WHY ATTEND
  ═══════════════════════════════════════════════════════════════════════ */
  #why-attend {
    padding: 100px 0;
    background: var(--ink-2);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px;
    margin-top: 56px;
  }
  .benefit-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
  }
  .benefit-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .benefit-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--glow); }
  .benefit-card:hover::before { opacity: 1; }
  .benefit-icon {
    width: 52px; height: 52px;
    background: rgba(212,168,67,0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .benefit-title {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    color: var(--cream); margin-bottom: 10px;
  }
  .benefit-desc { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }

  /* ═══════════════════════════════════════════════════════════════════════
     MEET YOUR MENTOR
  ═══════════════════════════════════════════════════════════════════════ */
  #mentor {
    padding: 100px 0;
    background:
      radial-gradient(ellipse 50% 70% at 100% 50%, rgba(212,168,67,0.04), transparent 60%),
      var(--ink);
  }
  .mentor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px; align-items: center;
    margin-top: 20px;
  }
  @media(min-width:900px) { .mentor-grid { grid-template-columns: 1fr 1.4fr; } }
  .mentor-img-wrap {
    position: relative;
    max-width: 360px; margin: 0 auto;
  }
  .mentor-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--ink-3);
    border-radius: 50%;
    border: 2px solid var(--border);
    overflow: hidden;
    box-shadow: var(--glow-strong);
    position: relative;
    z-index: 1;
  }
  .mentor-ring {
    position: absolute; inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.2);
    animation: spin-slow 20s linear infinite;
    z-index: 0;
    pointer-events: none;
  }
  .mentor-ring::before {
    content: '';
    position: absolute; top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
  }
  @keyframes spin-slow { to { transform: rotate(360deg); } }
  .stat-chips {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: center;
  }
  .stat-chip {
    background: rgba(212,168,67,0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 20px; text-align: center;
  }
  .stat-num {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
    color: var(--gold); display: block; line-height: 1;
  }
  .stat-lbl { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.08em; }
  .mentor-creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }
  .cred-tag {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-2);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.82rem; color: var(--text-body);
  }
  .cred-tag span { color: var(--gold); margin-right: 6px; }
  .mentor-quote {
    background: rgba(212,168,67,0.05);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin-top: 28px;
    font-style: italic;
    color: var(--text-body); font-size: 1rem; line-height: 1.7;
  }

  /* ═══════════════════════════════════════════════════════════════════════
     INCOME SECTIONS (Anchoring + VO)
  ═══════════════════════════════════════════════════════════════════════ */
  .income-section {
    padding: 100px 0;
  }
  .income-section:nth-of-type(even) { background: var(--ink-2); }
  .income-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px; margin-top: 56px;
  }
  .income-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
  }
  .income-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
  }
  .income-card:hover { border-color: var(--border); box-shadow: var(--glow); }
  .income-card:hover::after { transform: scaleX(1); }
  .income-card-icon { font-size: 2.4rem; margin-bottom: 16px; }
  .income-card-type {
    font-family: var(--font-mono); font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }
  .income-card-title {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: var(--cream); margin-bottom: 16px;
  }
  .income-range {
    font-family: var(--font-display); font-size: 1.7rem; font-weight: 900;
    color: var(--gold); margin-bottom: 8px;
  }
  .income-per { font-size: 0.8rem; color: var(--text-muted); }
  .income-bar {
    height: 4px; background: rgba(212,168,67,0.15);
    border-radius: 100px; margin-top: 20px; overflow: hidden;
  }
  .income-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    border-radius: 100px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
  }

  /* ═══════════════════════════════════════════════════════════════════════
     WHAT YOU WILL LEARN
  ═══════════════════════════════════════════════════════════════════════ */
  #learn {
    padding: 100px 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,168,67,0.05), transparent 60%),
      var(--ink);
  }
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 20px; margin-top: 56px;
  }
  .module-card {
    display: flex; gap: 20px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
  }
  .module-card:hover { border-color: var(--border); background: rgba(212,168,67,0.04); }
  .module-num {
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 900;
    color: rgba(212,168,67,0.15); line-height: 1; flex-shrink: 0; width: 48px;
  }
  .module-body {}
  .module-title {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
    color: var(--cream); margin-bottom: 8px;
  }
  .module-desc { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
  .module-tag {
    display: inline-block; margin-top: 12px;
    font-size: 0.7rem; font-family: var(--font-mono);
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); background: rgba(212,168,67,0.08);
    padding: 3px 10px; border-radius: 100px;
    border: 1px solid var(--border);
  }

  /* ═══════════════════════════════════════════════════════════════════════
     LIVE DEMO SECTION
  ═══════════════════════════════════════════════════════════════════════ */
  #live-demo {
    padding: 100px 0;
    background: var(--ink-2);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
  }
  .demo-voices {
    display: flex; flex-wrap: wrap; gap: 16px;
    justify-content: center; margin-top: 56px;
  }
  .voice-pill {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 16px 24px;
    cursor: pointer;
    transition: var(--transition);
    min-width: min(100%, 200px);
    flex: 1 1 200px;
    max-width: 100%;
  }
  .voice-pill:hover, .voice-pill.active {
    border-color: var(--gold);
    background: rgba(212,168,67,0.08);
    box-shadow: 0 0 20px rgba(212,168,67,0.1);
  }
  .voice-play {
    width: 36px; height: 36px;
    background: rgba(212,168,67,0.12);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.9rem; flex-shrink: 0;
  }
  .voice-name { font-size: 0.9rem; font-weight: 600; color: var(--cream); }
  .voice-type { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-mono); }
  .waveform {
    display: flex; align-items: center; gap: 3px; height: 24px; margin-left: auto;
  }
  .waveform span {
    display: block; width: 3px; border-radius: 100px;
    background: var(--gold-dim); opacity: 0.5;
    animation: wave 1.2s ease-in-out infinite;
  }
  .waveform span:nth-child(1) { height: 8px; animation-delay: 0s; }
  .waveform span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
  .waveform span:nth-child(3) { height: 12px; animation-delay: 0.2s; }
  .waveform span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
  .waveform span:nth-child(5) { height: 10px; animation-delay: 0.4s; }
  .voice-pill.active .waveform span { background: var(--gold); opacity: 1; }
  @keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.8); }
  }

  /* ═══════════════════════════════════════════════════════════════════════
     BONUSES
  ═══════════════════════════════════════════════════════════════════════ */
  #bonuses {
    padding: 100px 0;
    background:
      radial-gradient(ellipse 60% 50% at 0% 50%, rgba(212,168,67,0.05), transparent 60%),
      var(--ink);
  }
  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 24px; margin-top: 56px;
  }
  .bonus-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
  }
  .bonus-card::before {
    content: 'FREE';
    position: absolute; top: 16px; right: -28px;
    background: var(--red-accent);
    color: white; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.15em; padding: 4px 40px;
    transform: rotate(45deg);
  }
  .bonus-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: var(--glow); }
  .bonus-icon { font-size: 2.8rem; margin-bottom: 16px; }
  .bonus-title {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
    color: var(--cream); margin-bottom: 8px;
  }
  .bonus-desc { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }
  .bonus-value {
    margin-top: 16px;
    font-family: var(--font-mono); font-size: 0.8rem;
    color: var(--gold); background: rgba(212,168,67,0.08);
    padding: 4px 12px; border-radius: 100px;
    display: inline-block; border: 1px solid var(--border);
  }

  /* ═══════════════════════════════════════════════════════════════════════
     TESTIMONIALS
  ═══════════════════════════════════════════════════════════════════════ */
  #testimonials {
    padding: 100px 0;
    background: var(--ink-2);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px; margin-top: 56px;
  }
  .testi-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
  }
  .testi-card:hover { border-color: var(--border); box-shadow: var(--glow); }
  .testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
  .testi-text {
    font-size: 0.95rem; color: var(--text-body);
    line-height: 1.75; font-style: italic; margin-bottom: 24px;
  }
  .testi-text::before { content: '\201C'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -0.4em; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--gold-dim), var(--ink-3));
    border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
  }
  .testi-name { font-weight: 700; color: var(--cream); font-size: 0.95rem; }
  .testi-role { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-mono); }

  /* ═══════════════════════════════════════════════════════════════════════
     FAQ
  ═══════════════════════════════════════════════════════════════════════ */
  #faq { padding: 100px 0; background: var(--ink); }
  .faq-list { max-width: 780px; margin: 56px auto 0; }
  .faq-item {
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
  }
  .faq-item.open { border-color: var(--border); box-shadow: var(--glow); }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    background: rgba(255,255,255,0.025);
    transition: var(--transition);
    gap: 16px;
  }
  .faq-q:hover { background: rgba(255,255,255,0.04); }
  .faq-item.open .faq-q { background: rgba(212,168,67,0.06); }
  .faq-question {
    font-size: 1rem; font-weight: 600; color: var(--cream); line-height: 1.4;
  }
  .faq-toggle {
    width: 28px; height: 28px; flex-shrink: 0;
    background: rgba(212,168,67,0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 28px;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }
  .faq-answer { font-size: 0.93rem; color: var(--text-body); line-height: 1.7; }

  /* ═══════════════════════════════════════════════════════════════════════
     LIMITED SEATS (URGENCY)
  ═══════════════════════════════════════════════════════════════════════ */
  #urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(192,57,43,0.08) 0%, rgba(212,168,67,0.05) 100%),
      var(--ink-2);
    border-top: 1px solid rgba(192,57,43,0.2);
    border-bottom: 1px solid rgba(192,57,43,0.2);
  }
  .urgency-inner {
    text-align: center; max-width: 700px; margin: 0 auto;
  }
  .seats-counter {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin: 32px 0;
    flex-wrap: wrap;
  }
  .seats-taken, .seats-left {
    text-align: center;
  }
  .seats-num {
    font-family: var(--font-display); font-size: 3rem; font-weight: 900; display: block; line-height: 1;
  }
  .seats-taken .seats-num { color: var(--text-muted); }
  .seats-left .seats-num { color: var(--red-accent); }
  .seats-lbl { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
  .seats-bar { width: 300px; max-width: 100%; height: 8px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; margin: 20px auto; }
  .seats-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--red-accent)); border-radius: 100px; width: 78%; }
  .urgency-scarcity {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(192,57,43,0.12);
    border: 1px solid rgba(192,57,43,0.3);
    border-radius: 100px; padding: 8px 20px;
    font-size: 0.85rem; color: #E74C3C; font-weight: 600;
    margin: 12px 0 28px;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.45;
    text-align: center;
  }
  .blink { animation: blink-anim 1.2s ease-in-out infinite; }
  @keyframes blink-anim { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

  /* ═══════════════════════════════════════════════════════════════════════
     REGISTRATION FORM
  ═══════════════════════════════════════════════════════════════════════ */
  #register {
    padding: 100px 0;
    background:
      radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,168,67,0.06), transparent 70%),
      var(--ink);
  }
  .register-wrap {
    max-width: 600px; margin: 0 auto;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: var(--shadow-lg), var(--glow);
    backdrop-filter: blur(20px);
  }
  @media(max-width:640px) { .register-wrap { padding: 32px 24px; } }
  .register-title {
    font-family: var(--font-display); font-size: 2rem; font-weight: 900;
    color: var(--cream); text-align: center; margin-bottom: 8px;
  }
  .register-sub { text-align: center; color: var(--text-body); font-size: 0.93rem; margin-bottom: 32px; }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--text-body); margin-bottom: 8px;
    font-family: var(--font-mono); letter-spacing: 0.05em;
  }
  .form-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--text-main);
    font-family: var(--font-body); font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
  }
  .form-input:focus {
    border-color: var(--gold);
    background: rgba(212,168,67,0.05);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
  }
  .form-input::placeholder { color: var(--text-muted); }
  .form-input.error { border-color: var(--red-accent); }
  .form-error {
    display: none; margin-top: 6px;
    font-size: 0.78rem; color: var(--red-accent);
  }
  .register-price-summary {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(212,168,67,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px; margin-bottom: 24px;
  }
  .rps-left { font-size: 0.9rem; color: var(--text-body); }
  .rps-left strong { color: var(--cream); display: block; margin-bottom: 2px; }
  .rps-price {
    font-family: var(--font-display); font-size: 2rem; font-weight: 900;
    color: var(--gold);
  }
  .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, #B8871A 100%);
    color: var(--ink);
    font-size: 1.1rem; font-weight: 800;
    padding: 18px;
    border-radius: var(--radius);
    letter-spacing: 0.04em;
    box-shadow: 0 4px 20px rgba(212,168,67,0.4);
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    flex-wrap: wrap;
    word-break: break-word;
  }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,0.5); }
  .form-footer {
    text-align: center; margin-top: 20px;
    font-size: 0.8rem; color: var(--text-muted);
    display: flex; align-items: center; justify-content: center; gap: 6px;
    flex-wrap: wrap;
    line-height: 1.5;
  }
  .form-footer .icon { color: var(--gold); }

  /* ═══════════════════════════════════════════════════════════════════════
     UPSELL
  ═══════════════════════════════════════════════════════════════════════ */
  #upsell {
    padding: 100px 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,168,67,0.06), transparent 60%),
      var(--ink-2);
    border-top: 1px solid var(--border-2);
  }
  .upsell-card {
    max-width: 820px; margin: 56px auto 0;
    background: linear-gradient(135deg, rgba(212,168,67,0.05) 0%, rgba(212,168,67,0.02) 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow);
  }
  @media(max-width:640px) { .upsell-card { padding: 40px 24px; } }
  .upsell-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .upsell-tag {
    display: inline-block;
    background: var(--red-accent); color: white;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    padding: 6px 18px; border-radius: 100px; text-transform: uppercase;
    margin-bottom: 24px;
    max-width: 100%;
    line-height: 1.5;
    white-space: normal;
  }
  .upsell-title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
    color: var(--cream); margin-bottom: 16px; line-height: 1.15;
  }
  .upsell-desc { font-size: 1rem; color: var(--text-body); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
  .upsell-pricing {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    flex-wrap: wrap; margin-bottom: 36px;
  }
  .up-original { text-align: center; }
  .up-original .label { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
  .up-original .value {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 900;
    color: var(--text-muted); text-decoration: line-through;
  }
  .up-arrow { font-size: 1.5rem; color: var(--gold); }
  .up-special .label { font-size: 0.72rem; color: var(--gold); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
  .up-special .value {
    font-family: var(--font-display); font-size: 3.2rem; font-weight: 900;
    color: var(--gold); line-height: 1;
  }
  .up-save {
    background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.3);
    color: #E74C3C; padding: 8px 20px; border-radius: 100px;
    font-size: 0.82rem; font-weight: 700;
  }
  .upsell-includes {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px;
  }
  .ui-tag {
    background: rgba(255,255,255,0.04); border: 1px solid var(--border-2);
    border-radius: 8px; padding: 8px 16px; font-size: 0.85rem; color: var(--text-body);
  }
  .ui-tag .check { color: var(--gold); margin-right: 6px; }

  /* ═══════════════════════════════════════════════════════════════════════
     FINAL CTA
  ═══════════════════════════════════════════════════════════════════════ */
  #final-cta {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
    text-align: center;
    border-top: 1px solid var(--border-2);
    overflow: hidden;
    position: relative;
  }
  #final-cta::before {
    content: '🎙️';
    position: absolute; font-size: 30rem; opacity: 0.02;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .final-title {
    font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900;
    color: var(--cream); line-height: 1.1; margin-bottom: 20px;
  }
  .final-sub { font-size: 1.1rem; color: var(--text-body); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
  .final-cta-wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

  /* ═══════════════════════════════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════════════════════════════ */
  #footer {
    background: var(--ink);
    border-top: 1px solid var(--border-2);
    padding: 60px 0 32px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px; margin-bottom: 48px;
  }
  @media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin-top: 16px; line-height: 1.65; max-width: 280px; }
  .footer-col-title {
    font-size: 0.78rem; font-family: var(--font-mono);
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--cream); }
  .footer-bottom {
    border-top: 1px solid var(--border-2);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem; color: var(--text-muted);
  }

  /* ═══════════════════════════════════════════════════════════════════════
     HERO TRUST BAR — SARVESH PLACEMENT #1
  ═══════════════════════════════════════════════════════════════════════ */
  .hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(212,168,67,0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px 8px 8px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .hero-trust-bar:hover { background: rgba(212,168,67,0.1); }
  .htb-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--ink-3));
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0; overflow: hidden;
  }
  .htb-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .htb-text {
    font-size: 0.78rem; color: var(--text-body); line-height: 1.3;
    min-width: 0; flex: 1 1 140px;
  }
  .htb-text strong { color: var(--gold); display: block; font-size: 0.8rem; }
  .htb-divider {
    width: 1px; height: 24px; background: var(--border); flex-shrink: 0;
  }
  .htb-badge {
    font-family: var(--font-mono); font-size: 0.65rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    flex-shrink: 0;
  }

  /* ═══════════════════════════════════════════════════════════════════════
     ENDORSEMENT SECTION — SARVESH PLACEMENT #2
  ═══════════════════════════════════════════════════════════════════════ */
  #endorsement {
    padding: 100px 0;
    background:
      radial-gradient(ellipse 70% 60% at 30% 50%, rgba(212,168,67,0.06) 0%, transparent 65%),
      radial-gradient(ellipse 50% 70% at 80% 30%, rgba(212,168,67,0.04) 0%, transparent 55%),
      var(--ink);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    position: relative;
    overflow: hidden;
  }
  #endorsement::before {
    content: '❝';
    position: absolute; top: -20px; left: 50%;
    transform: translateX(-50%);
    font-size: 20rem; opacity: 0.018;
    color: var(--gold);
    font-family: var(--font-display);
    pointer-events: none;
    line-height: 1;
  }
  .endorsement-section-top {
    text-align: center; margin-bottom: 64px;
  }
  .endorsement-headline {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900; color: var(--cream); line-height: 1.15; margin-bottom: 14px;
  }
  .endorsement-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
  }
  @media (max-width: 900px) {
    .endorsement-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
  .endorsement-persona {
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .endorsement-img-ring {
    position: relative;
    width: 220px; height: 220px;
    flex-shrink: 0; margin-bottom: 24px;
  }
  .endorsement-img-ring::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0%, var(--gold-dim) 30%, transparent 50%, var(--gold-dim) 70%, var(--gold) 100%);
    animation: ring-spin 8s linear infinite;
    opacity: 0.5;
  }
  @keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .endorsement-img-ring::after {
    content: '';
    position: absolute; inset: -2px;
    border-radius: 50%;
    background: var(--ink);
  }
  .endorsement-photo {
    position: absolute; inset: 0; z-index: 1;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--ink-3) 0%, var(--ink-2) 100%);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; overflow: hidden;
  }
  .endorsement-photo img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  }
  .endorsement-name {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
    color: var(--cream); line-height: 1.2; margin-bottom: 6px;
  }
  .endorsement-role-tags {
    display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 8px;
  }
  .endorsement-role-tag {
    font-family: var(--font-mono); font-size: 0.63rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); background: rgba(212,168,67,0.08);
    border: 1px solid var(--border);
    padding: 4px 10px; border-radius: 100px;
  }
  .endorsement-stats {
    display: flex; gap: 16px; margin-top: 20px; justify-content: center; flex-wrap: wrap;
  }
  .endr-stat {
    text-align: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border-2);
    border-radius: 10px;
  }
  .endr-stat-num {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 900;
    color: var(--gold); display: block; line-height: 1;
  }
  .endr-stat-lbl {
    font-size: 0.62rem; color: var(--text-muted); font-family: var(--font-mono);
    margin-top: 4px; display: block;
  }
  .endorsement-website-link { margin-top: 20px; }
  .endorsement-website-link a {
    font-family: var(--font-mono); font-size: 0.68rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); border-bottom: 1px solid var(--border);
    padding-bottom: 2px; transition: var(--transition);
  }
  .endorsement-website-link a:hover { color: var(--gold-light); }
  .endorsement-content { position: relative; }
  .endorsement-quote-mark {
    font-family: var(--font-display); font-size: 5rem;
    color: var(--gold); opacity: 0.25; line-height: 0.5;
    display: block; margin-bottom: 16px;
  }
  .endorsement-quote {
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    color: var(--cream); line-height: 1.65;
    margin-bottom: 28px;
  }
  .endorsement-quote-hi {
    color: var(--gold-light);
    background: rgba(212,168,67,0.08);
    padding: 1px 4px; border-radius: 4px;
  }
  .endorsement-attribution {
    display: flex; align-items: center; gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-2);
    flex-wrap: wrap;
    justify-content: center;
  }
  .endorsement-attr-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--gold-dim), transparent);
  }
  .endorsement-attr-line--flip {
    background: linear-gradient(90deg, var(--gold-dim), transparent);
    transform: scaleX(-1);
  }
  .endorsement-attr-text {
    font-family: var(--font-mono); font-size: 0.72rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
    text-align: center;
    line-height: 1.5;
    max-width: 100%;
  }
  .endorsement-context-chips {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
  }
  .endorsement-chip {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border-2);
    border-radius: 8px; padding: 8px 14px;
    font-size: 0.82rem; color: var(--text-body);
    transition: var(--transition);
  }
  .endorsement-chip:hover { border-color: var(--border); }
  .endorsement-chip .chip-icon { color: var(--gold); }
  .endorsement-cta-box {
    margin-top: 36px;
    padding: 24px;
    background: rgba(212,168,67,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }
  .endorsement-cta-box .btn-primary {
    width: 100%;
    max-width: 100%;
  }
  .endorsement-cta-text {
    font-size: 0.88rem; color: var(--text-body);
    margin-bottom: 16px; line-height: 1.65;
  }
  .endorsement-cta-text strong { color: var(--cream); }

  /* ═══════════════════════════════════════════════════════════════════════
     PRE-REGISTRATION TRUST STRIP — SARVESH PLACEMENT #3
  ═══════════════════════════════════════════════════════════════════════ */
  #pre-reg-trust {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212,168,67,0.04) 0%, rgba(212,168,67,0.02) 50%, rgba(10,10,15,0) 100%),
      var(--ink-2);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border);
  }
  .pre-reg-trust-inner {
    display: flex; align-items: center; gap: 40px;
    max-width: 820px; margin: 0 auto;
    width: 100%;
  }
  @media (max-width: 768px) {
    .pre-reg-trust-inner {
      flex-direction: column;
      text-align: center;
    }
    .prt-divider { width: 60px; height: 1px; }
  }
  .prt-avatar-wrap {
    position: relative; flex-shrink: 0;
  }
  .prt-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--ink-3));
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; overflow: hidden;
    box-shadow: 0 0 30px rgba(212,168,67,0.2);
  }
  .prt-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .prt-verified-badge {
    position: absolute; bottom: -4px; right: -4px;
    width: 24px; height: 24px;
    background: var(--gold);
    border-radius: 50%; border: 2px solid var(--ink-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
  }
  .prt-divider { width: 1px; height: 80px; background: var(--border-2); flex-shrink: 0; }
  .prt-content { flex: 1; }
  .prt-label {
    font-family: var(--font-mono); font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }
  .prt-quote {
    font-size: 1rem; color: var(--cream); font-style: italic;
    line-height: 1.65; margin-bottom: 12px;
  }
  .prt-sig {
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--text-muted); letter-spacing: 0.08em;
    line-height: 1.6;
    word-break: break-word;
  }
  .prt-sig strong { color: var(--gold-light); }

  /* ═══════════════════════════════════════════════════════════════════════
     TESTIMONIALS TRUST AMPLIFIER — SARVESH PLACEMENT #4
  ═══════════════════════════════════════════════════════════════════════ */
  .industry-recognition-strip {
    background: rgba(212,168,67,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex; align-items: center; gap: 24px;
    margin-top: 56px;
    position: relative; overflow: hidden;
  }
  .industry-recognition-strip::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .irs-icon { font-size: 2rem; flex-shrink: 0; }
  .irs-text { flex: 1; }
  .irs-label {
    font-family: var(--font-mono); font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 6px;
  }
  .irs-headline { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
  .irs-sub { font-size: 0.85rem; color: var(--text-body); }
  .irs-badge {
    display: flex; align-items: center; gap: 10px;
    background: rgba(10,10,15,0.6); border: 1px solid var(--border);
    border-radius: 10px; padding: 10px 16px;
    flex-shrink: 1;
    min-width: 0;
    max-width: 100%;
  }
  @media (max-width: 768px) {
    .industry-recognition-strip {
      flex-direction: column;
      text-align: center;
      padding: 24px 20px;
    }
    .irs-badge {
      width: 100%;
      justify-content: center;
    }
  }
  .irs-badge-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--ink-3));
    border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; overflow: hidden; flex-shrink: 0;
  }
  .irs-badge-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .irs-badge-name { font-size: 0.8rem; font-weight: 700; color: var(--cream); display: block; }
  .irs-badge-title { font-size: 0.68rem; color: var(--text-muted); font-family: var(--font-mono); }

  /* ═══════════════════════════════════════════════════════════════════════
     STICKY MOBILE CTA
  ═══════════════════════════════════════════════════════════════════════ */
  #sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 10050;
    box-sizing: border-box;
    background: rgba(10,10,15,0.98);
    border-top: 1px solid var(--border);
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    height: var(--sticky-h-mobile);
    transition: none;
    transform: none;
    contain: layout style;
  }
  @media (max-width: 1024px) {
    #sticky-mobile-cta {
      display: grid;
    }
    body {
      padding-bottom: calc(var(--sticky-h-mobile) + env(safe-area-inset-bottom, 0px));
    }
  }
  .sticky-mobile-price {
    flex-shrink: 0;
    line-height: 1.1;
  }
  .sticky-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    white-space: nowrap;
  }
  .sticky-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    white-space: nowrap;
  }
  .sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    min-width: 0;
    background: linear-gradient(135deg, var(--gold), #B8871A);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.8125rem;
    padding: 0 12px;
    border-radius: var(--radius);
    text-align: center;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(212,168,67,0.35);
    line-height: 1;
    white-space: nowrap;
    overflow: visible;
    transition: none;
    transform: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .sticky-cta-btn:hover,
  .sticky-cta-btn:active,
  .sticky-cta-btn:focus {
    transform: none;
    color: var(--ink);
  }

  /* ═══════════════════════════════════════════════════════════════════════
     AUDIENCE STRIP
  ═══════════════════════════════════════════════════════════════════════ */
  .audience-strip {
    background: var(--ink-2);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    padding: 40px 0;
  }
  .audience-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  .audience-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }
  .audience-chip {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text-body);
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  /* ═══════════════════════════════════════════════════════════════════════
     STATUS PAGES (thank-you / cancel)
  ═══════════════════════════════════════════════════════════════════════ */
  .status-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
  .status-page--success {
    background:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212,168,67,0.08) 0%, transparent 70%),
      var(--ink);
  }
  .status-page--cancel {
    background:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(192,57,43,0.08) 0%, transparent 70%),
      var(--ink);
  }
  .status-card {
    max-width: 560px;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.025);
    border-radius: 24px;
    padding: 40px 28px;
    box-shadow: var(--shadow-lg);
  }
  .status-card--success { border: 1px solid var(--border); box-shadow: var(--shadow-lg), var(--glow); }
  .status-card--cancel { border: 1px solid rgba(192,57,43,0.25); }
  .status-icon { font-size: clamp(3rem, 10vw, 4rem); margin-bottom: 20px; }
  .status-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2.6rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .status-text {
    color: var(--text-body);
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.75;
    margin-bottom: 24px;
  }
  .status-note {
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 28px;
    text-align: left;
    line-height: 1.65;
  }
  .status-note--gold {
    background: rgba(212,168,67,0.08);
    border: 1px solid var(--border);
  }
  .status-note--gold strong { color: var(--gold); }
  .status-note--red {
    background: rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.2);
  }
  .status-note--red strong { color: #E74C3C; }
  .status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .status-actions .btn-primary,
  .status-actions .btn-ghost {
    width: 100%;
    max-width: 280px;
  }
  .confirm-payment-fallback { margin-bottom: 24px; text-align: left; }

  /* ═══════════════════════════════════════════════════════════════════════
     RESPONSIVE — TABLET (max 1024px)
  ═══════════════════════════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    #why-attend,
    #mentor,
    .income-section,
    #learn,
    #live-demo,
    #bonuses,
    #testimonials,
    #faq,
    #register,
    #upsell,
    #endorsement,
    #pre-reg-trust {
      padding: 80px 0;
    }

    #final-cta { padding: 90px 0; }
    #urgency { padding: 70px 0; }

    .countdown-digits {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      width: 100%;
    }
    .colon { display: none; }
    .digit-block { width: 100%; }
    .digit-number {
      min-width: 0;
      width: 100%;
      font-size: 1.85rem;
      padding: 8px 8px;
    }

    .hero-trust-bar {
      border-radius: var(--radius-lg);
      padding: 12px 16px;
    }
    .htb-divider { display: none; }

    .upsell-pricing { gap: 14px; }
    .up-special .value { font-size: 2.8rem; }
  }

  /* ═══════════════════════════════════════════════════════════════════════
     RESPONSIVE — TABLET PORTRAIT (max 900px)
  ═══════════════════════════════════════════════════════════════════════ */
  @media (max-width: 900px) {
    .hero-trust-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .htb-badge { align-self: flex-start; }

    .hero-cta-wrap,
    .final-cta-wrap {
      flex-direction: column;
      width: 100%;
    }
    .hero-cta-wrap .btn-primary,
    .hero-cta-wrap .btn-ghost,
    .final-cta-wrap .btn-primary,
    .final-cta-wrap .btn-ghost,
    #urgency .btn-primary,
    .endorsement-cta-box .btn-primary {
      width: 100%;
      max-width: 100%;
    }

    .btn-lg {
      padding: 16px 24px;
      font-size: 1rem;
      width: 100%;
      max-width: 100%;
    }
  }

  /* ═══════════════════════════════════════════════════════════════════════
     RESPONSIVE — MOBILE (max 768px)
  ═══════════════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    .container { padding: 0 18px; }
    .header-inner {
      padding-left: max(18px, env(safe-area-inset-left, 0px));
      padding-right: max(18px, env(safe-area-inset-right, 0px));
      gap: 12px;
    }

    #site-header,
    #site-header.scrolled {
      padding: 0;
      height: var(--header-h-mobile);
    }

    .header-inner {
      min-height: unset;
      height: 100%;
      align-items: center;
    }

    .logo-text { font-size: 0.88rem; }
    .logo-sub { font-size: 0.58rem; }
    .logo-icon { width: 34px; height: 34px; font-size: 1rem; flex-shrink: 0; }

    .header-logo > div:last-child { display: none; }

    .header-cta-wrap {
      gap: 8px;
      flex-shrink: 0;
    }
    .header-price { display: none !important; }
    .header-register-btn {
      padding: 10px 14px;
      font-size: 0.78rem;
    }

    #hero {
      min-height: auto;
      padding: 100px 0 60px;
      overflow: hidden;
    }

    .hero-grid { gap: 40px; }
    .hero-badge {
      font-size: 0.65rem;
      padding: 7px 12px;
      letter-spacing: 0.08em;
      width: 100%;
      justify-content: center;
      text-align: center;
    }
    .hero-sub { font-size: 1rem; margin: 16px 0 24px; max-width: 100%; }
    .hero-meta { gap: 10px; margin-bottom: 24px; }
    .hero-chip { font-size: 0.78rem; flex: 1 1 calc(50% - 10px); min-width: 0; }
    .hero-price-row { gap: 12px; margin-bottom: 24px; width: 100%; }
    .price-tag { font-size: 2.6rem; }
    .hero-guarantee {
      flex-wrap: wrap;
      line-height: 1.5;
    }
    .hero-cta-wrap { flex-direction: column; width: 100%; }
    .hero-cta-wrap .btn-primary,
    .hero-cta-wrap .btn-ghost {
      width: 100%;
      justify-content: center;
    }

    .hero-trust-bar {
      flex-direction: column;
      align-items: flex-start;
      border-radius: var(--radius-lg);
      padding: 14px 16px;
      gap: 10px;
      width: 100%;
    }
    .htb-divider { display: none; }
    .htb-badge { align-self: flex-start; }
    .htb-text { flex: 1 1 auto; width: 100%; }

    .endorsement-section-top { margin-bottom: 40px; }
    .endorsement-quote-mark { font-size: 3.5rem; }
    .endorsement-img-ring { width: 180px; height: 180px; }
    .endorsement-attr-line { display: none; }
    .endorsement-cta-box { padding: 20px; }
    .endorsement-cta-box .btn-primary { width: 100%; }
    .endorsement-context-chips { justify-content: center; }
    .endorsement-chip { width: 100%; justify-content: center; }

    .industry-recognition-strip {
      flex-direction: column;
      text-align: center;
      padding: 24px 20px;
      margin-top: 40px;
    }
    .irs-badge { width: 100%; justify-content: center; }
    .irs-text { width: 100%; }

    .countdown-box { padding: 16px 18px; margin-bottom: 22px; width: 100%; }
    .countdown-digits {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      width: 100%;
    }
    .colon { display: none; }
    .digit-block { width: 100%; }
    .digit-number {
      min-width: 0;
      width: 100%;
      font-size: 1.5rem;
      padding: 8px 6px;
    }
    .digit-unit { font-size: 0.58rem; margin-top: 4px; }

    .float-badge { display: none; }
    .host-image-wrap { max-width: min(280px, 85vw); margin: 0 auto; }
    .host-name-tag strong { font-size: 1.1rem; }
    .host-name-tag span { font-size: 0.68rem; }

    .section-title { font-size: clamp(1.75rem, 7vw, 2.4rem); }
    .section-sub { font-size: 0.98rem; }
    .section-label { font-size: 0.65rem; padding: 5px 14px; }

    #why-attend,
    #mentor,
    .income-section,
    #learn,
    #live-demo,
    #bonuses,
    #testimonials,
    #faq,
    #register,
    #upsell,
    #endorsement {
      padding: 64px 0;
    }
    #pre-reg-trust { padding: 48px 0; }

    .benefits-grid,
    .income-cards,
    .bonus-grid,
    .testimonial-grid {
      margin-top: 40px;
      gap: 16px;
    }

    .benefit-card,
    .income-card,
    .bonus-card,
    .testi-card {
      padding: 24px 20px;
    }

    .mentor-grid { gap: 40px; }
    .mentor-img-wrap { max-width: min(260px, 70vw); }
    .mentor-creds { gap: 8px; }
    .cred-tag { font-size: 0.78rem; padding: 5px 10px; }
    .mentor-quote { padding: 16px 18px; font-size: 0.95rem; }

    .module-card {
      flex-direction: column;
      gap: 12px;
      padding: 22px 20px;
    }
    .module-num { font-size: 2rem; width: auto; }

    .demo-voices { gap: 12px; margin-top: 40px; }
    .voice-pill {
      width: 100%;
      min-width: 0;
      padding: 14px 16px;
    }

    .faq-q { padding: 18px 16px; }
    .faq-question { font-size: 0.92rem; }
    .faq-item.open .faq-a { padding: 0 16px 18px; }
    .faq-a { padding: 0 16px; }

    .seats-counter { gap: 12px; flex-wrap: wrap; justify-content: center; }
    .seats-num { font-size: 2.4rem; }
    .seats-bar { width: 100%; }
    .urgency-scarcity {
      max-width: 100%;
      text-align: center;
      line-height: 1.5;
      white-space: normal;
      justify-content: center;
    }
    #urgency .btn-primary { width: 100%; max-width: 100%; }

    .register-wrap { padding: 28px 20px; border-radius: 20px; width: 100%; }
    .register-title { font-size: 1.65rem; }
    .register-price-summary {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      text-align: left;
    }
    .rps-price { font-size: 1.75rem; }
    .btn-submit { font-size: 1rem; padding: 16px; min-height: 52px; }

    .upsell-card { padding: 32px 20px; border-radius: 20px; margin-top: 40px; }
    .upsell-pricing {
      flex-direction: column;
      gap: 16px;
    }
    .up-arrow { transform: rotate(90deg); }
    .up-save { width: 100%; text-align: center; }
    .up-special .value { font-size: 2.6rem; }
    .up-original .value { font-size: 1.8rem; }
    .upsell-includes { gap: 8px; }
    .ui-tag { font-size: 0.8rem; padding: 7px 12px; width: 100%; text-align: center; }
    .upsell-tag { max-width: 100%; line-height: 1.5; white-space: normal; }

    #final-cta { padding: 72px 0; }
    #final-cta::before { font-size: 16rem; }
    .final-cta-wrap { flex-direction: column; align-items: stretch; width: 100%; }
    .final-cta-wrap .btn-primary,
    .final-cta-wrap .btn-ghost {
      width: 100%;
      max-width: 100%;
    }
    .final-cta-wrap > div {
      justify-content: center;
      text-align: center;
      flex-wrap: wrap;
    }

    #footer { padding: 48px 0 28px; }
    .footer-grid { gap: 32px; margin-bottom: 32px; }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 8px;
    }

    .btn-primary,
    .btn-ghost,
    .btn-lg {
      width: 100%;
      max-width: 100%;
    }

    .section-label {
      letter-spacing: 0.12em;
      max-width: 100%;
      line-height: 1.5;
      text-align: center;
    }

    .audience-strip { padding: 28px 0; }
    .audience-chip {
      font-size: 0.8rem;
      padding: 7px 14px;
      flex: 1 1 calc(50% - 8px);
      min-width: 0;
    }

    #sticky-mobile-cta {
      column-gap: 10px;
      grid-template-columns: 68px minmax(0, 1fr);
      padding-left: max(14px, env(safe-area-inset-left, 0px));
      padding-right: max(14px, env(safe-area-inset-right, 0px));
    }
    .sticky-price { font-size: 1.05rem; }
    .sticky-cta-btn {
      font-size: 0.78rem;
      height: 42px;
    }

    .form-input { font-size: 16px; }
    .form-footer { padding: 0 4px; }

    .voice-pill .waveform { display: none; }

    img { height: auto; }

    .status-page { padding: 32px 16px; }
    .status-card { padding: 32px 20px; border-radius: 20px; }
    .status-actions .btn-primary,
    .status-actions .btn-ghost { max-width: none; width: 100%; }
  }

  /* ═══════════════════════════════════════════════════════════════════════
     RESPONSIVE — SMALL MOBILE (max 480px)
  ═══════════════════════════════════════════════════════════════════════ */
  @media (max-width: 480px) {
    html { font-size: 15px; }
    .container { padding: 0 14px; }
    .header-inner {
      padding-left: max(14px, env(safe-area-inset-left, 0px));
      padding-right: max(14px, env(safe-area-inset-right, 0px));
    }

    .hero-headline { font-size: clamp(2rem, 9vw, 2.6rem); }
    .price-tag { font-size: 2.2rem; }
    .price-save { font-size: 0.72rem; }
    .hero-chip { flex: 1 1 100%; }

    .stat-chips { gap: 8px; }
    .stat-chip { padding: 10px 14px; flex: 1 1 calc(50% - 8px); min-width: 0; }
    .stat-num { font-size: 1.35rem; }

    .income-range { font-size: 1.45rem; }
    .income-card-title { font-size: 1.15rem; }

    .digit-number { font-size: 1.25rem; padding: 8px 4px; }

    .sticky-price { font-size: 1rem; }
    .sticky-cta-btn { font-size: 0.78rem; padding: 10px 10px; }
    .header-register-btn { font-size: 0.75rem; padding: 9px 12px; }

    .endorsement-headline { font-size: clamp(1.5rem, 7vw, 1.9rem); }
    .endorsement-quote { font-size: 1.05rem; }
    .endorsement-role-tag { font-size: 0.58rem; padding: 3px 8px; }
    .endr-stat { padding: 8px 10px; flex: 1 1 calc(33% - 12px); min-width: 0; }

    .register-title { font-size: 1.45rem; }
    .btn-submit { font-size: 0.92rem; padding: 14px 12px; }

    .footer-brand p { max-width: 100%; }
  }

  /* ═══════════════════════════════════════════════════════════════════════
     RESPONSIVE — EXTRA SMALL (max 360px)
  ═══════════════════════════════════════════════════════════════════════ */
  @media (max-width: 360px) {
    .header-register-btn {
      padding: 9px 10px;
      font-size: 0.72rem;
    }
    .hero-badge { font-size: 0.6rem; }
    .digit-number { font-size: 1.1rem; }
    .audience-chip { flex: 1 1 100%; }
    .sticky-cta-btn { font-size: 0.75rem; padding: 10px 8px; }
  }

  /* ═══════════════════════════════════════════════════════════════════════
     RESPONSIVE — LANDSCAPE PHONE (keep single column — avoids cramped layout)
  ═══════════════════════════════════════════════════════════════════════ */
  @media (max-width: 768px) and (orientation: landscape) {
    #hero {
      padding: 90px 0 50px;
      min-height: auto;
    }
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .countdown-digits {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }