    /* ============================================================
       RESET & ROOT
    ============================================================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --pink: #ff2d6e;
      --purple: #7c3aed;
      --blue: #2563eb;
      --grad: linear-gradient(135deg, #1A3A8A 0%, #C71876 100%);
      --card-hero-grad: linear-gradient(135deg, #1a0a2e 0%, #2e0a1e 100%);
      --grad-subtle: linear-gradient(135deg, rgba(37,99,235,0.12) 0%, rgba(124,58,237,0.12) 50%, rgba(255,45,110,0.12) 100%);
      --bg: #0b0d18;
      --bg-card: #13152a;
      --bg-raised: #1a1d35;
      --bg-border: rgba(255,255,255,0.07);
      --text: #d4d6e8;
      --text-muted: #7e80a0;
      --white: #ffffff;
      --green: #22c55e;
      --amber: #f59e0b;
      --font-head: 'Sora', sans-serif;
      --font-body: 'Inter', sans-serif;
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-card: 0 4px 30px rgba(0,0,0,0.35);
      --shadow-glow: 0 0 40px rgba(255,45,110,0.15);
      --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    html { font-size: 16px; scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    ::selection { background: rgba(255,45,110,0.25); color: var(--white); }

    img { max-width: 100%; display: block; }

    a { color: var(--pink); text-decoration: none; transition: var(--transition); }
    a:hover { color: var(--purple); }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2, h3, h4, h5 {
      font-family: var(--font-head);
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    .label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 18px;
    }

    .label-pink { background: rgba(255,45,110,0.12); color: var(--pink); border: 1px solid rgba(255,45,110,0.25); }
    .label-purple { background: rgba(124,58,237,0.12); color: #a78bfa; border: 1px solid rgba(124,58,237,0.25); }
    .label-green { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }

    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pink  { color: var(--pink)  !important; }
    .muted { color: var(--text-muted); }

    /* ============================================================
       LAYOUT UTILITIES
    ============================================================ */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .section    { padding: 96px 0; }
    .section-sm { padding: 64px 0; }

    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

    .flex-center { display: flex; align-items: center; justify-content: center; }
    .flex-between { display: flex; align-items: center; justify-content: space-between; }
    .text-center { text-align: center; }

    .mt-8  { margin-top: 8px; }
    .mt-16 { margin-top: 16px; }
    .mt-24 { margin-top: 24px; }
    .mt-40 { margin-top: 40px; }
    .mt-56 { margin-top: 56px; }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      border-radius: var(--radius-sm);
      padding: 15px 32px;
      text-decoration: none;
    }

    .btn-primary { background: var(--grad); color: var(--white); box-shadow: 0 6px 24px rgba(255,45,110,0.3); }
    .btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,45,110,0.4); color: var(--white); }

    .btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--bg-border); }
    .btn-ghost:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,45,110,0.05); }

    .btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: 14px; }

    /* ============================================================
       CARDS
    ============================================================ */
    .card {
      background: rgba(21, 21, 44, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      padding: 28px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius-md);
      padding: 1px;
      background: var(--grad);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
    .card:hover::before { opacity: 1; }

    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.06);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      color: var(--pink);
      margin-bottom: 18px;
    }

    .card-icon.purple { background: rgba(124,58,237,0.1); color: #a78bfa; }
    .card-icon.green  { background: rgba(34,197,94,0.1);  color: var(--green); }
    .card-icon.amber  { background: rgba(245,158,11,0.1); color: var(--amber); }

    /* ============================================================
       DIVIDER
    ============================================================ */
    .divider {
      width: 100%;
      height: 1px;
      background: var(--bg-border);
      margin: 0;
    }

    /* ============================================================
       TOP PILL BANNER
    ============================================================ */
    .top-pill-bar {
      display: flex;
      justify-content: center;
      padding: 14px 24px;
      background: linear-gradient(90deg, rgba(15,17,34,0.97) 0%, rgba(37,99,235,0.14) 32%, rgba(124,58,237,0.2) 68%, rgba(15,17,34,0.97) 100%);
      border-bottom: 1px solid rgba(124,58,237,0.28);
    }

    .top-pill-bar span { font-size: 0.82rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #a78bfa; }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      padding: 88px 0 132px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px; left: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,45,110,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(380px, 420px);
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-copy { max-width: 600px; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 99px;
      padding: 7px 16px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .hero-eyebrow span { color: var(--pink); }
    .hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
    .hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 540px; line-height: 1.75; margin-bottom: 36px; }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .hero-reg-card {
      width: 100%;
      background: var(--card-hero-grad);
      border: 1px solid rgba(124,58,237,0.25);
      border-radius: var(--radius-lg);
      padding: 20px;
      box-shadow: 0 8px 60px rgba(124,58,237,0.16), var(--shadow-card);
      align-self: center;
      margin-top: 0;
      position: relative;
      overflow: hidden;
    }
    .hero-reg-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: var(--grad);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .hero-reg-card h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .hero-reg-sub {
      font-size: 0.86rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .hero-reg-card .form-group { margin-bottom: 12px; }
    .hero-reg-card .form-group label { font-size: 0.82rem; margin-bottom: 5px; }
    .hero-reg-card .form-group input,
    .hero-reg-card .form-group select { padding: 10px 12px; font-size: 0.92rem; }
    .hero-reg-card .btn { margin-top: 2px; }
    .reg-privacy {
      text-align: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 12px;
      line-height: 1.5;
    }
    .hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--bg-border); flex-wrap: wrap; }
    .hero-trust-item { display: flex; align-items: center; gap: 8px; }
    .hero-trust-item .num { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); }
    .hero-trust-item .desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.3; }
    .hero-trust-divider { width: 1px; height: 32px; background: var(--bg-border); }

    /* Stars */
    .stars { color: var(--amber); font-size: 0.9rem; letter-spacing: 1px; }

    /* ============================================================
       ZIDANE STORY SECTION
    ============================================================ */
    .story-section { background: var(--bg); }

    .story-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 20px; margin-top: 48px; }
    .story-card { background: var(--bg-card); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 0; transition: var(--transition); display: flex; flex-direction: column; overflow: hidden; }
    .story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
    .story-card.pivot { border-color: rgba(34,197,94,0.3); background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, rgba(37,99,235,0.04) 100%); }
    .story-card-accent { height: 4px; width: 100%; }
    .story-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
    .story-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .story-card-icon { font-size: 1.8rem; line-height: 1; }
    .story-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--white); line-height: 1.4; }
    .story-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; flex: 1; }
    .story-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 3px 10px; border-radius: 99px; margin-bottom: 12px; }
    .story-tag.red { background: rgba(255,45,110,0.1); color: var(--pink); }
    .story-tag.blue { background: rgba(37,99,235,0.1); color: #60a5fa; }
    .story-tag.green { background: rgba(34,197,94,0.1); color: var(--green); }
    .story-tag.purple { background: rgba(124,58,237,0.1); color: #a78bfa; }
    .story-tag.amber { background: rgba(245,158,11,0.1); color: var(--amber); }

    .story-pivot-banner { margin-top: 40px; background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(255,45,110,0.1) 100%); border: 1px solid rgba(124,58,237,0.2); border-radius: var(--radius-lg); padding: 36px 48px; text-align: center; }
    .story-pivot-banner h3 { font-size: clamp(1.3rem,3vw,1.8rem); margin-bottom: 10px; }
    .story-pivot-banner p { font-size: 0.95rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.8; }

    @media (max-width: 640px) {
      .story-grid { grid-template-columns: 1fr; gap: 14px; }
      .story-pivot-banner { padding: 24px 16px; }
    }

    /* ============================================================
       TRANSFORMATION - FROM / TO
    ============================================================ */
    .transform-section { background: linear-gradient(180deg, var(--bg) 0%, #0e1020 100%); }
    .transform-grid { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: stretch; margin-top: 56px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--bg-border); }
    .transform-col { padding: 36px 32px; }
    .transform-col.from { background: rgba(255,45,110,0.04); }
    .transform-col.to   { background: rgba(34,197,94,0.04); }
    .transform-arrow { background: var(--bg-raised); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
    .transform-col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
    .transform-col-head h3 { font-size: 1.1rem; font-weight: 700; }
    .t-badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; }
    .t-badge.from-badge { background: rgba(255,45,110,0.1); color: var(--pink); }
    .t-badge.to-badge   { background: rgba(34,197,94,0.1);  color: var(--green); }
    .t-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--bg-border); }
    .t-item:last-child { border-bottom: none; }
    .t-item-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
    .t-item strong { display: block; font-size: 0.95rem; color: var(--white); margin-bottom: 2px; }
    .t-item span   { font-size: 0.82rem; color: var(--text-muted); }

    /* ============================================================
       PROGRAM SECTION - What They Gain
    ============================================================ */
    .program-section { background: #0e1020; }
    .gain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }

    /* methodology section removed */

    /* ============================================================
       SOCIAL PROOF - Testimonials
    ============================================================ */
    .proof-section { background: #0e1020; }
    .review-strip { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
    .review-big { text-align: center; }
    .review-big .score { font-family: var(--font-head); font-size: 4rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
    .review-big .stars { font-size: 1.2rem; margin: 6px 0; }
    .review-big p { font-size: 0.85rem; color: var(--text-muted); }
    .review-divider { width: 1px; height: 80px; background: var(--bg-border); }
    .review-nums { display: flex; gap: 40px; }
    .review-num-item .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--white); }
    .review-num-item .desc { font-size: 0.82rem; color: var(--text-muted); }
    .video-wrap { margin-top: 56px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--bg-border); max-width: 760px; margin-left: auto; margin-right: auto; }
    .video-wrap iframe { display: block; width: 100%; aspect-ratio: 16/9; border: none; }

    /* ============================================================
       BOOK BONUS
    ============================================================ */
    .book-section { background: var(--bg); }
    .book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .book-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); border-radius: 99px; padding: 6px 16px; font-size: 0.8rem; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
    .book-img-wrap { position: relative; }
    .book-img-wrap img { border-radius: var(--radius-lg); border: 1px solid var(--bg-border); box-shadow: 0 16px 60px rgba(0,0,0,0.4); width: 100%; max-width: 380px; margin: 0 auto; }
    .book-tag { position: absolute; top: -16px; right: -16px; background: var(--amber); color: #000; border-radius: 99px; padding: 8px 18px; font-size: 0.82rem; font-weight: 800; box-shadow: 0 4px 16px rgba(245,158,11,0.4); white-space: nowrap; }
    .book-list { list-style: none; margin-top: 24px; }
    .book-list li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--bg-border); font-size: 0.95rem; }
    .book-list li:last-child { border-bottom: none; }
    .book-list li i { color: var(--green); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

    /* ============================================================
       LOGISTICS
    ============================================================ */
    .logistics-section { background: #0e1020; }
    .logistics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
    .logistics-card { background: var(--bg-card); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 28px 22px; text-align: center; }
    .logistics-emoji { font-size: 1.8rem; margin-bottom: 14px; line-height: 1; }
    .logistics-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
    .logistics-card p { font-size: 1rem; color: var(--white); font-weight: 600; line-height: 1.5; }
    .logistics-card .sub { font-size: 0.82rem; color: var(--text-muted); font-weight: 400; margin-top: 4px; }

    /* ============================================================
       COACH SECTION
    ============================================================ */
    .coach-section { background: var(--bg); }
    .coach-inner { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: stretch; }
    .coach-photo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
    .coach-photo-wrap img { width: 320px; max-width:100%; height: 100%; border-radius: var(--radius-lg); object-fit: cover; object-position: top center; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 0 80px rgba(124,58,237,0.22); display: block; margin: 0 auto; }
    .coach-glow { position: absolute; inset: -30px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%); animation: pulse 3s ease-in-out infinite; }
    @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.08); opacity: 0.4; } }
    .coach-creds { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
    .cred-tag { background: var(--bg-raised); border: 1px solid var(--bg-border); border-radius: 99px; padding: 5px 14px; font-size: 0.78rem; color: var(--text-muted); }
    .coach-quote { background: var(--bg-card); border-left: 3px solid var(--pink); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; margin-top: 24px; font-size: 1rem; color: var(--text); line-height: 1.75; font-style: italic; }
    .coach-transforms { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
    .coach-transform-item { display: flex; align-items: center; gap: 10px; background: var(--bg-card); border: 1px solid var(--bg-border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.88rem; color: var(--text); }
    .coach-transform-item i { color: var(--green); font-size: 0.9rem; }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq-section { background: #0e1020; }
    .faq-list { max-width: 720px; margin: 48px auto 0; }
    .faq-item { border: 1px solid var(--bg-border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: border-color 0.25s ease; }
    .faq-item.open { border-color: rgba(124,58,237,0.35); }
    .faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--white); transition: var(--transition); }
    .faq-q:hover { background: rgba(255,255,255,0.02); }
    .faq-item.open .faq-q { background: linear-gradient(90deg, rgba(124,58,237,0.08), rgba(255,45,110,0.08)); }
    .faq-q i { font-size: 0.9rem; color: var(--pink); flex-shrink: 0; transition: transform 0.25s ease; }
    .faq-item.open .faq-q i { transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 28px 22px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
    .faq-item.open .faq-a { display: block; }

    /* ============================================================
       FINAL CTA
    ============================================================ */
    .cta-section { background: var(--bg); text-align: center; padding: 96px 0; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.1) 0%, transparent 65%); }
    .cta-section .container { position: relative; z-index: 1; }
    .cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; max-width: 660px; margin: 0 auto 20px; }
    .cta-section p { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; }
    .cta-section .btn-lg { font-size: 1.15rem; padding: 20px 48px; }
    .cta-guarantee { margin-top: 20px; font-size: 0.85rem; color: var(--text-muted); }
    .cta-guarantee i { color: var(--green); margin-right: 4px; }

    /* ============================================================
       STICKY BAR
    ============================================================ */
    .sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(13,15,26,0.92); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.06); padding: 12px 24px; }
    .sticky-bar-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .sticky-bar-text { font-size: 0.9rem; color: var(--text); }
    .sticky-bar-text strong { color: var(--white); }
    .sticky-bar-text .countdown { color: var(--amber); font-weight: 700; }
    .sticky-bar-actions { display: flex; align-items: center; gap: 12px; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .pain-grid      { grid-template-columns: repeat(2,1fr); }
      .logistics-grid { grid-template-columns: repeat(2,1fr); }
    }

    @media (max-width: 768px) {
      .section    { padding: 56px 0; }
      .section-sm { padding: 40px 0; }
      .hero       { padding: 48px 0 84px; }
      .hero-inner     { grid-template-columns: 1fr; align-items: stretch; }
      .hero-reg-card  { width: 100%; max-width: 560px; margin: 0 auto; }
      .hero h1        { font-size: 2.2rem; }
      .hero-cta       { justify-content: center; }
      .hero-trust     { justify-content: center; }
      .transform-grid { grid-template-columns: 1fr; }
      .transform-arrow { display: none; }
      .gain-grid      { grid-template-columns: 1fr; }
      .method-grid    { grid-template-columns: 1fr; }
      .book-inner     { grid-template-columns: 1fr; text-align: center; }
      .book-img-wrap  { display: flex; justify-content: center; }
      .book-tag       { right: 8px; top: -12px; }
      .book-badge     { justify-content: center; }
      .book-list      { text-align: left; }
      .coach-inner    { grid-template-columns: 1fr; text-align: center; }
      .coach-photo-wrap { justify-content: center; }
      .coach-creds    { justify-content: center; }
      .coach-quote    { text-align: left; }
      .coach-transforms { grid-template-columns: 1fr; }
      .pain-grid      { grid-template-columns: 1fr 1fr; }
      .logistics-grid { grid-template-columns: 1fr 1fr; }
      .review-strip   { gap: 24px; }
      .review-divider { display: none; }
      .review-nums    { gap: 24px; }
      .sticky-bar-inner { justify-content: center; text-align: center; }
      .sticky-bar-text { font-size: 0.8rem; }
      .sticky-bar-actions { justify-content: center; width: 100%; }
      .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .top-pill-bar   { text-align: center; }
      .top-pill-bar span { font-size: 0.72rem; letter-spacing: 1.5px; }
      .story-pivot-banner { padding: 24px 16px; }
      .story-grid     { gap: 14px; margin-top: 32px; }
      .gain-grid      { gap: 14px; margin-top: 32px; }
      .mt-56 { margin-top: 36px; }
      .mt-40 { margin-top: 28px; }
      .divider { margin: 0; }
      .cta-section { padding: 56px 0; }
    }

    @media (max-width: 480px) {
      .section    { padding: 40px 0; }
      .section-sm { padding: 32px 0; }
      .hero       { padding: 36px 0 44px; }
      .container  { padding: 0 16px; }
      .pain-grid      { grid-template-columns: 1fr; }
      .logistics-grid { grid-template-columns: 1fr; }
      .hero-cta       { flex-direction: column; align-items: center; width: 100%; }
      .hero-cta .btn  { width: 100%; justify-content: center; text-align: center; }
      .hero-trust     { gap: 12px; justify-content: center; }
      .hero-eyebrow   { justify-content: center; text-align: center; }
      .hero h1        { font-size: 1.75rem; text-align: center; }
      .hero-sub       { text-align: center; margin-left: auto; margin-right: auto; font-size: 1rem; }
      .top-pill-bar   { padding: 10px 12px; }
      .top-pill-bar span { font-size: 0.65rem; letter-spacing: 1px; }
      .story-card-body { padding: 20px 18px 24px; }
      .transform-col  { padding: 24px 18px; }
      .card           { padding: 22px 18px; }
      .faq-q          { padding: 16px 18px; font-size: 0.92rem; }
      .faq-a          { padding: 0 18px 16px; }
      .review-strip   { flex-direction: column; text-align: center; }
      .review-nums    { justify-content: center; }
      .cta-section    { padding: 40px 0; }
      .sticky-bar     { padding: 10px 12px; }
      .sticky-bar-inner { flex-direction: column; gap: 8px; }
      .sticky-bar .btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 12px 20px; }
    }

    /* ============================================================
       REGISTRATION MODAL
    ============================================================ */
    .modal-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(6px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .modal-overlay.open { display: flex; }

    .modal-box {
      background: linear-gradient(135deg, rgba(20,23,44,0.98) 0%, rgba(19,21,42,0.98) 100%);
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      width: 100%;
      max-width: 500px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 70px rgba(124,58,237,0.16);
    }

    .modal-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: var(--grad);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .modal-close {
      position: absolute; top: 16px; right: 20px;
      background: none; border: none; color: var(--text-muted);
      font-size: 1.4rem; cursor: pointer; line-height: 1;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--white); }

    .modal-box h2 { font-size: 1.4rem; margin-bottom: 6px; }
    .modal-box .modal-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }

    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: var(--bg-raised);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-sm);
      padding: 11px 14px;
      font-size: 0.95rem;
      color: var(--white);
      font-family: var(--font-body);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group textarea:focus { border-color: rgba(124,58,237,0.5); }
    .form-group input.invalid,
    .form-group textarea.invalid { border-color: var(--pink); }
    .form-group .field-error { font-size: 0.78rem; color: var(--pink); margin-top: 4px; display: none; }
    .form-group.has-error .field-error { display: block; }
    .form-group textarea { resize: vertical; min-height: 80px; }

    .modal-actions { display: flex; gap: 12px; margin-top: 8px; }
    .modal-actions .btn { flex: 1; justify-content: center; }

    .modal-success { text-align: center; padding: 16px 0; }
    .modal-success .success-icon { font-size: 3rem; color: var(--green); margin-bottom: 16px; }
    .modal-success h3 { font-size: 1.2rem; margin-bottom: 10px; }
    .modal-success p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

    /* Coupon */
    .coupon-row { display: flex; gap: 10px; margin-bottom: 6px; }
    .coupon-row input {
      flex: 1;
      background: var(--bg-raised);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 0.95rem;
      color: var(--white);
      font-family: var(--font-body);
      outline: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: border-color 0.2s;
    }
    .coupon-row input:focus { border-color: rgba(124,58,237,0.5); }
    .coupon-row input.invalid { border-color: var(--pink); }
    .coupon-apply-btn {
      background: var(--grad);
      color: var(--white);
      border: none;
      border-radius: var(--radius-sm);
      padding: 10px 20px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      white-space: nowrap;
      transition: var(--transition);
    }
    .coupon-apply-btn:hover { filter: brightness(1.1); }
    .coupon-apply-btn:disabled { opacity: 0.45; cursor: not-allowed; filter: none; }

    .coupon-error { font-size: 0.78rem; color: var(--pink); margin-bottom: 10px; }

    .coupon-applied-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      background: rgba(34,197,94,0.07);
      border: 1px solid rgba(34,197,94,0.25);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      margin-bottom: 6px;
    }
    .coupon-applied-text { font-size: 0.88rem; color: var(--green); }
    .coupon-remove-btn {
      background: none;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      font-size: 0.78rem;
      padding: 4px 10px;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    .coupon-remove-btn:hover { border-color: var(--pink); color: var(--pink); }

    .price-display { margin: 16px 0 4px; font-size: 0.95rem; color: var(--text-muted); }
    .price-display .price-original { text-decoration: line-through; color: var(--text-muted); }
    .price-display .price-discounted { color: var(--green); font-weight: 700; font-size: 1.05rem; }
    .price-display .price-full { color: var(--white); font-weight: 700; font-size: 1.05rem; }

    .razorpay-wrap { margin-top: 20px; display: flex; justify-content: center; min-height: 48px; }
    .razorpay-wrap form { display: flex; justify-content: center; }

    @media (max-width: 540px) {
      .modal-box { padding: 28px 20px; }
      .coupon-row { flex-direction: column; }
    }

    /* ============================================================
       LIGHT THEME OVERRIDES
    ============================================================ */
    [data-theme="light"] {
      --bg:         #FAF8FC;
      --bg-card:    #ffffff;
      --bg-raised:  #f0f1f5;
      --bg-border:  rgba(26, 26, 46, 0.10);
      --text:       #4a4a6a;
      --text-muted: #5c5c7a;
      --white:      #1a1a2e;
      --grad-cta: linear-gradient(135deg, #3557b7 0%, #aa2c75 100%);
      --card-hero-grad: linear-gradient(135deg, #f3eef8 0%, #fce4ee 100%);
      --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
      --shadow-glow: 0 0 30px rgba(255, 45, 110, 0.10);
    }

    /* Sections with hardcoded dark backgrounds */
    [data-theme="light"] .program-section,
    [data-theme="light"] .proof-section,
    [data-theme="light"] .logistics-section,
    [data-theme="light"] .faq-section {
      background: #f3f1f6;
    }

    [data-theme="light"] .transform-section {
      background: linear-gradient(180deg, var(--bg) 0%, #f3f1f6 100%);
    }

    [data-theme="light"] .story-section {
      background: var(--bg);
    }

    /* Cards with hardcoded rgba dark backgrounds */
    [data-theme="light"] .card {
      background: rgba(255, 255, 255, 0.95);
      border-color: var(--bg-border);
    }

    [data-theme="light"] .card::before {
      opacity: 0;
    }

    [data-theme="light"] .card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    [data-theme="light"] .card-icon {
      background: rgba(26, 26, 46, 0.05);
    }

    [data-theme="light"] .card-icon.purple { background: rgba(124, 58, 237, 0.08); }
    [data-theme="light"] .card-icon.green  { background: rgba(34, 197, 94, 0.08); }
    [data-theme="light"] .card-icon.amber  { background: rgba(245, 158, 11, 0.08); }

    /* Hero registration card */
    [data-theme="light"] .hero-reg-card {
      background: linear-gradient(135deg, #f3eef8 0%, #fce4ee 100%);
      border-color: rgba(124, 58, 237, 0.15);
      box-shadow: 0 8px 40px rgba(124, 58, 237, 0.08);
    }

    /* CTA buttons: calmer gradient + white text on light surfaces */
    [data-theme="light"] .btn-primary,
    [data-theme="light"] .coupon-apply-btn {
      background: var(--grad-cta);
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(53, 87, 183, 0.14), 0 6px 16px rgba(170, 44, 117, 0.12);
    }

    [data-theme="light"] .btn-primary:hover,
    [data-theme="light"] .coupon-apply-btn:hover {
      color: #ffffff;
      filter: brightness(1.03);
      box-shadow: 0 14px 28px rgba(53, 87, 183, 0.16), 0 10px 20px rgba(170, 44, 117, 0.14);
    }

    /* Hero eyebrow */
    [data-theme="light"] .hero-eyebrow {
      background: rgba(26, 26, 46, 0.04);
      border-color: rgba(26, 26, 46, 0.08);
    }

    /* Top pill bar */
    [data-theme="light"] .top-pill-bar {
      background: linear-gradient(90deg, rgba(250,248,252,0.97) 0%, rgba(37,99,235,0.08) 32%, rgba(124,58,237,0.10) 68%, rgba(250,248,252,0.97) 100%);
      border-bottom-color: rgba(124, 58, 237, 0.15);
    }

    /* Sticky bar */
    [data-theme="light"] .sticky-bar {
      background: rgba(250, 248, 252, 0.92);
      border-top-color: rgba(26, 26, 46, 0.08);
    }

    /* Modal */
    [data-theme="light"] .modal-overlay {
      background: rgba(0, 0, 0, 0.3);
    }

    [data-theme="light"] .modal-box {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 252, 0.98) 100%);
      border-color: rgba(124, 58, 237, 0.15);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 0 40px rgba(124, 58, 237, 0.06);
    }

    /* Form inputs in light mode */
    [data-theme="light"] .form-group input,
    [data-theme="light"] .form-group textarea,
    [data-theme="light"] .coupon-row input {
      background: rgba(26, 26, 46, 0.04);
      border-color: rgba(26, 26, 46, 0.12);
      color: #1a1a2e;
    }

    [data-theme="light"] .form-group input:focus,
    [data-theme="light"] .form-group textarea:focus,
    [data-theme="light"] .coupon-row input:focus {
      background: rgba(26, 26, 46, 0.06);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
    }

    /* FAQ in light mode */
    [data-theme="light"] .faq-q:hover {
      background: rgba(26, 26, 46, 0.02);
    }

    [data-theme="light"] .faq-item.open .faq-q {
      background: linear-gradient(90deg, rgba(124, 58, 237, 0.05), rgba(255, 45, 110, 0.05));
    }

    /* CTA section glow */
    [data-theme="light"] .cta-section::before {
      background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 65%);
    }

    /* Hero background glow */
    [data-theme="light"] .hero::before {
      background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    }

    [data-theme="light"] .hero::after {
      background: radial-gradient(circle, rgba(255, 45, 110, 0.04) 0%, transparent 70%);
    }

    /* Story pivot banner */
    [data-theme="light"] .story-pivot-banner {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(255, 45, 110, 0.05) 100%);
      border-color: rgba(124, 58, 237, 0.12);
    }

    /* Transform section from/to */
    [data-theme="light"] .transform-col.from {
      background: rgba(255, 45, 110, 0.03);
    }

    [data-theme="light"] .transform-col.to {
      background: rgba(34, 197, 94, 0.03);
    }

    /* Book image shadow */
    [data-theme="light"] .book-img-wrap img {
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    }

    /* Coach section */
    [data-theme="light"] .coach-photo-wrap img {
      box-shadow: 0 0 60px rgba(124, 58, 237, 0.10);
    }

    /* Coach credentials / tags */
    [data-theme="light"] .cred-tag {
      background: #f0f1f5;
      border-color: rgba(26, 26, 46, 0.08);
    }

    /* Logistics */
    [data-theme="light"] .logistics-card {
      background: var(--bg-card);
    }

    /* Selection */
    [data-theme="light"] ::selection {
      background: rgba(255, 45, 110, 0.15);
      color: #1a1a2e;
    }

    /* Coupon applied */
    [data-theme="light"] .coupon-applied-row {
      background: rgba(34, 197, 94, 0.05);
    }

    /* Registration card form inputs */
    [data-theme="light"] .hero-reg-card .form-group input,
    [data-theme="light"] .hero-reg-card .form-group select {
      background: rgba(26, 26, 46, 0.04);
      border-color: rgba(26, 26, 46, 0.12);
      color: #1a1a2e;
    }

    [data-theme="light"] .hero-reg-card .form-group input:focus,
    [data-theme="light"] .hero-reg-card .form-group select:focus {
      background: rgba(26, 26, 46, 0.06);
    }

    /* Select dropdown options */
    [data-theme="light"] .reg-form select option {
      background: #ffffff;
      color: #1a1a2e;
    }
