/* Override GHL container padding */
  .c-custom-code,
  .custom-code-container,
  [class*="custom-code"],
  [class*="ccustom-code"] {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  :root {
    --cream: #fdf6f2;            /* page background — soft cream */
    --cream-mid: #ffffff;        /* card surface */
    --cream-light: #f7e9e4;      /* subtle blush panel */
    --pink: #c8527e;             /* rich pink — primary accent */
    --pink-light: #e07ba1;       /* lighter pink for gradients */
    --pink-glow: rgba(200, 82, 126, 0.18);
    --ink: #3b2630;              /* near-black warm plum — headings */
    --ink-dim: #6b4f5a;          /* secondary text */
    --text-body: #8a6f78;        /* body copy */
    --red-urgency: #b5294b;
    --on-accent: #fff6f9;        /* text on pink */
    --accent-deep: #a83c66;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  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.85' 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;
  }

  /* ─── FLOATING HEADER ─── */
  .site-header {
    position: sticky;
    top: 12px;
    z-index: 200;
    background: rgba(253, 246, 242, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 82, 126, 0.14);
    border-radius: 14px;
    padding: 14px 28px;
    margin: 12px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(80,30,50,0.08), 0 0 60px rgba(200, 82, 126, 0.05);
  }
  .header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .header-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--pink);
    letter-spacing: 0.01em;
    font-style: italic;
  }

  /* ─── HEADER COUNTDOWN ─── */
  .header-countdown {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(200, 82, 126, 0.06);
    border: 1px solid rgba(200, 82, 126, 0.16);
    border-radius: 10px;
    padding: 8px 18px;
  }
  .header-countdown .hc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pink);
    opacity: 0.75;
  }
  .header-countdown .hc-timer {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0.06em;
  }
  .header-countdown .hc-divider {
    width: 1px;
    height: 20px;
    background: rgba(200, 82, 126, 0.22);
  }
  .header-countdown .hc-date {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-dim);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  /* ─── HEADER CTA ─── */
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: var(--on-accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow:
      0 2px 12px rgba(200, 82, 126, 0.3),
      0 0 20px rgba(200, 82, 126, 0.15),
      0 0 40px rgba(200, 82, 126, 0.08);
    animation: ctaGlow 2.5s ease-in-out infinite;
  }
  .header-cta:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow:
      0 4px 20px rgba(200, 82, 126, 0.5),
      0 0 30px rgba(200, 82, 126, 0.3),
      0 0 60px rgba(200, 82, 126, 0.12);
  }
  @keyframes ctaGlow {
    0%, 100% {
      box-shadow:
        0 2px 12px rgba(200, 82, 126, 0.3),
        0 0 20px rgba(200, 82, 126, 0.12),
        0 0 40px rgba(200, 82, 126, 0.06);
    }
    50% {
      box-shadow:
        0 2px 16px rgba(200, 82, 126, 0.5),
        0 0 30px rgba(200, 82, 126, 0.25),
        0 0 60px rgba(200, 82, 126, 0.1);
    }
  }

  .page-content { overflow-x: clip; }

  /* ─── URGENCY BAR ─── */
  .urgency-bar {
    background: linear-gradient(90deg, var(--pink) 0%, #d96a93 50%, var(--pink) 100%);
    color: var(--on-accent);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 100;
  }
  .urgency-bar span { color: #fff0c2; font-weight: 800; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    padding: 32px 24px 16px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .pre-headline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
    position: relative; z-index: 1;
    opacity: 0;
    animation: fadeUp 0.4s 0.1s ease forwards;
  }
  .pre-headline::before, .pre-headline::after { content: '—'; margin: 0 10px; opacity: 0.5; }

  .headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, 3.4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.18;
    color: var(--ink);
    margin-bottom: 12px;
    position: relative; z-index: 1;
    opacity: 0;
    animation: fadeUp 0.4s 0.2s ease forwards;
  }
  .headline em { font-style: italic; font-weight: 900; color: var(--pink); font-family: 'Playfair Display', serif; }

  .subheadline {
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-body);
    max-width: 900px;
    margin: 0 auto 0;
    position: relative; z-index: 1;
    opacity: 0;
    animation: fadeUp 0.4s 0.3s ease forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes shimmer {
    0% { left: -60%; }
    100% { left: 140%; }
  }
  @keyframes popIn {
    0% { opacity: 0; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1); }
  }

  /* ─── VIDEO / VISUAL ─── */
  .video-section {
    max-width: 760px;
    margin: 0 auto 24px;
    padding: 0 24px;
    position: relative; z-index: 1;
  }
  .video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(200, 82, 126, 0.22);
    box-shadow: 0 20px 60px rgba(80,30,50,0.12), 0 0 80px var(--pink-glow);
    aspect-ratio: 16 / 9;
    background: var(--cream-mid);
  }
  .video-wrapper img {
    width: 100%; height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  /* soft gradient veil over the hero visual so text/badge pop */
  .video-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(59,38,48,0.05) 0%, transparent 35%, transparent 60%, rgba(59,38,48,0.35) 100%);
    z-index: 2;
    pointer-events: none;
  }
  .video-tag {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(253,246,242,0.92);
    border: 1px solid rgba(200,82,126,0.3);
    color: var(--pink);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(14px, 2.4vw, 18px);
    letter-spacing: 0.02em;
    padding: 10px 24px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(80,30,50,0.12);
  }

  /* ─── REGISTRATION / APPLICATION ─── */
  .cta-btn {
    width: 100%;
    max-width: 560px;
    padding: 20px 32px;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: var(--on-accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(200, 82, 126, 0.3), 0 0 40px rgba(200, 82, 126, 0.15);
    animation: ctaPulse 2.5s ease-in-out infinite;
  }
  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(200, 82, 126, 0.3), 0 0 30px rgba(200, 82, 126, 0.1); }
    50% { box-shadow: 0 4px 28px rgba(200, 82, 126, 0.5), 0 0 50px rgba(200, 82, 126, 0.25); }
  }
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 82, 126, 0.5);
  }
  .cta-btn:active { transform: translateY(0); }
  .cta-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 40%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
  }

  /* ─── WHY SECTION ─── */
  .why-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 50px 24px 60px;
    text-align: center;
  }
  .why-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 800;
    margin-bottom: 28px;
    text-align: center;
    color: var(--ink);
  }
  .why-section h3 em { color: var(--pink); font-style: italic; }
  .why-section p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 14px;
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
  }
  .why-section p strong { color: var(--ink-dim); font-weight: 600; }

  .mobile-stat-grid .stat-box {
    padding: 24px 16px;
    background: rgba(247, 233, 228, 0.6);
    border: 1px solid rgba(200,82,126,0.12);
    border-radius: 14px;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 900;
    color: var(--pink); margin-bottom: 6px;
  }
  .stat-label { font-size: 13px; color: var(--text-body); line-height: 1.4; }

  /* ─── STEP CARDS ─── */
  .steps-infographic {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
  }
  .card-inner {
    position: relative;
    background: linear-gradient(165deg, rgba(247, 233, 228, 0.95), rgba(247, 233, 228, 0.6));
    border: 1px solid rgba(200, 82, 126, 0.16);
    border-radius: 20px;
    padding: 28px 32px;
    text-align: left;
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    gap: 24px;
    backdrop-filter: blur(12px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
  }
  .card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .card-inner:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 82, 126, 0.35);
    box-shadow: 0 24px 60px rgba(80,30,50,0.08), 0 0 40px rgba(200, 82, 126, 0.08);
  }
  .card-inner:hover::before { opacity: 1; }
  .step-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--pink);
    line-height: 1;
  }
  .step-number::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--pink);
    margin: 12px auto 0;
    opacity: 0.4;
  }
  .step-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.35;
  }
  .step-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
  }

  .value-props {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--pink);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin: 28px auto;
    text-align: center;
    max-width: 100%;
  }

  /* ─── WHAT YOU GET ─── */
  .learn-section { max-width: 1060px; margin: 0 auto; padding: 40px 24px 70px; }
  .learn-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 800;
    text-align: center; margin-bottom: 40px;
    color: var(--ink);
  }
  .learn-section h3 em { color: var(--pink); font-style: italic; }
  .learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .learn-item {
    background: rgba(247, 233, 228, 0.6);
    border: 1px solid rgba(200, 82, 126, 0.1);
    border-radius: 12px; padding: 18px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .learn-item:hover { border-color: rgba(200, 82, 126, 0.28); transform: translateY(-3px); }
  .learn-item-header { display: flex; align-items: center; margin-bottom: 8px; }
  .learn-icon {
    width: 32px; height: 32px;
    background: rgba(200, 82, 126, 0.1);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-right: 10px; flex-shrink: 0;
  }
  .learn-icon svg { width: 20px; height: 20px; stroke: var(--pink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .learn-item h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--ink); letter-spacing: 0.02em; }
  .learn-item p { font-size: 12px; color: var(--text-body); line-height: 1.5; }
  .learn-total {
    text-align: center;
    margin-top: 36px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(200, 82, 126, 0.1) 0%, rgba(200, 82, 126, 0.03) 50%, rgba(200, 82, 126, 0.1) 100%);
    border: 1px solid rgba(200, 82, 126, 0.25);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
  }
  .learn-total::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 60%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(200, 82, 126, 0.08), transparent);
    transform: skewX(-20deg);
    animation: shimmer 4s ease-in-out infinite;
  }
  .learn-total-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-dim);
    margin-bottom: 6px;
    position: relative;
  }
  .learn-total-amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--pink);
    position: relative;
    text-shadow: 0 0 40px rgba(200, 82, 126, 0.3);
  }
  .learn-total-sub {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-dim);
    margin-top: 6px;
    position: relative;
  }
  .learn-total-sub strong { color: var(--pink); }

  .section-cta-inline { text-align: center; margin-top: 36px; }
  .section-cta-inline .cta-btn { max-width: 560px; margin: 0 auto; display: block; }

  /* ─── VERSUS ─── */
  .versus-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 70px 40px 80px;
    position: relative;
    overflow: hidden;
    background: rgba(247, 233, 228, 0.4);
    border: 1px solid rgba(200, 82, 126, 0.1);
    border-radius: 20px;
  }
  .versus-headline h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px,3.4vw,30px); font-weight: 800;
    text-align: center; margin-bottom: 14px; color: var(--ink);
  }
  .versus-headline h3 em { color: var(--pink); font-style: italic; }
  .versus-sub {
    text-align: center; font-size: 15px; color: var(--text-body);
    line-height: 1.65; max-width: 720px; margin: 0 auto 36px;
  }
  .versus-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
  }
  .versus-col {
    padding: 0;
  }
  .versus-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 800;
    text-align: center; margin-bottom: 16px; color: var(--ink);
  }
  .versus-list { list-style: none; padding: 0; margin: 0; }
  .versus-list li {
    font-size: 13px;
    line-height: 1.5;
    padding: 11px 0;
    border-bottom: 1px solid rgba(80,30,50,0.07);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-dim);
  }
  .versus-list li:last-child { border-bottom: none; }
  .versus-list .vi { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }
  .captive .vi svg { width: 14px; height: 14px; stroke: #b06; opacity: 0.55; fill: none; stroke-width: 2.5; }
  .broker .vi svg { width: 14px; height: 14px; stroke: var(--pink); fill: none; stroke-width: 2.5; }
  .versus-divider {
    display: flex; align-items: center; justify-content: center;
  }
  .versus-divider span {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-weight: 800;
    color: var(--pink);
    font-size: 18px;
    background: rgba(200,82,126,0.08);
    border: 1px solid rgba(200,82,126,0.2);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
  }
  @media (max-width: 640px) {
    .versus-grid { grid-template-columns: 1fr; }
    .versus-divider span { margin: 4px auto; }
  }

  /* ─── HOST ─── */
  .host-section {
    max-width: 900px; margin: 0 auto; padding: 60px 24px;
    display: flex; gap: 48px; align-items: center;
  }
  .host-image-wrap {
    flex: 0 0 320px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200, 82, 126, 0.2);
    box-shadow: 0 20px 50px rgba(80,30,50,0.12);
  }
  .host-image-wrap img { width: 100%; height: auto; display: block; }
  @media (max-width: 768px) {
    .host-section { flex-direction: column; text-align: center; }
    .host-image-wrap { flex: 0 0 auto; width: 100%; max-width: 300px; margin: 0 auto; }
  }
  .host-badge {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pink);
    border: 1px solid rgba(200, 82, 126, 0.3);
    padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
  }
  .host-section h3 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 800; margin-bottom: 16px; color: var(--ink); }
  .host-section p { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }

  /* ─── QUALIFIER ─── */
  .qualifier-section { max-width: 1060px; margin: 0 auto; padding: 60px 24px 70px; }
  .qualifier-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 800;
    text-align: center; margin-bottom: 40px; color: var(--ink);
  }
  .qualifier-section h3 em { color: var(--pink); font-style: italic; }
  .qualifier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  @media (max-width: 640px) { .qualifier-grid { grid-template-columns: 1fr; } }
  .qualifier-col { padding: 32px 28px; border-radius: 14px; }
  .qualifier-col.not-for { background: rgba(200, 82, 126, 0.04); border: 1px solid rgba(200, 82, 126, 0.12); }
  .qualifier-col.is-for { background: rgba(200, 82, 126, 0.07); border: 1px solid rgba(200, 82, 126, 0.18); }
  .qualifier-badge {
    border-radius: 8px; padding: 10px 20px; margin-bottom: 18px; text-align: center;
  }
  .qualifier-badge span { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800; }
  .not-for .qualifier-badge { background: rgba(200,82,126,0.1); border: 1px solid rgba(200,82,126,0.22); }
  .not-for .qualifier-badge span { color: var(--accent-deep); opacity: 0.85; }
  .is-for .qualifier-badge { background: rgba(200,82,126,0.08); border: 1px solid rgba(200,82,126,0.2); }
  .is-for .qualifier-badge span { color: var(--pink); }
  .qualifier-list { list-style: none; padding: 0; margin: 0; }
  .qualifier-list li {
    font-size: 14px; line-height: 1.55; padding: 9px 0;
    border-bottom: 1px solid rgba(80,30,50,0.07);
    display: flex; align-items: flex-start; gap: 10px; color: var(--ink-dim);
  }
  .qualifier-list li:last-child { border-bottom: none; }
  .qualifier-list .qi { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
  .not-for .qi svg { width: 16px; height: 16px; stroke: var(--accent-deep); opacity: 0.6; fill: none; stroke-width: 2.5; }
  .is-for .qi svg { width: 16px; height: 16px; stroke: var(--pink); fill: none; stroke-width: 2.5; }

  /* ─── FAQ ─── */
  .faq-section { max-width: 660px; margin: 0 auto; padding: 60px 24px 70px; }
  .faq-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 800;
    text-align: center; margin-bottom: 36px; color: var(--ink);
  }
  .faq-section h3 em { color: var(--pink); font-style: italic; }
  .faq-item {
    border-bottom: 1px solid rgba(200, 82, 126, 0.1);
    padding: 20px 0; cursor: pointer;
  }
  .faq-item:first-of-type { border-top: 1px solid rgba(200, 82, 126, 0.1); }
  .faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .faq-q span { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.45; }
  .faq-q .faq-toggle {
    width: 24px; height: 24px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
  }
  .faq-q .faq-toggle svg { width: 16px; height: 16px; stroke: var(--pink); fill: none; stroke-width: 2; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding-top: 0; }
  .faq-item.open .faq-a { max-height: 240px; padding-top: 14px; }
  .faq-a p { font-size: 14px; line-height: 1.65; color: var(--text-body); }

  /* ─── FINAL CTA ─── */
  .final-cta {
    background: linear-gradient(180deg, transparent 0%, rgba(200, 82, 126, 0.05) 100%);
    padding: 60px 24px 80px; text-align: center;
  }
  .final-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 12px; color: var(--ink);
  }
  .final-cta h3 em { color: var(--pink); font-style: italic; }

  /* ─── SCARCITY ─── */
  .scarcity-bar {
    width: 100vw;
    position: relative;
    left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw;
    margin-bottom: 40px;
    text-align: center;
    padding: 20px 24px;
    background: rgba(200, 82, 126, 0.15);
    border-top: 1px solid rgba(200, 82, 126, 0.4);
    border-bottom: 1px solid rgba(200, 82, 126, 0.4);
    animation: bannerFlash 1.4s ease-in-out infinite;
    display: flex; align-items: center; justify-content: center;
    min-height: 70px;
    box-shadow: 0 0 30px rgba(200, 82, 126, 0.1);
  }
  .scarcity-bar p {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 800; color: var(--ink); margin: 0;
    letter-spacing: 0.05em; line-height: 1.2; text-transform: uppercase;
    max-width: 1200px; padding: 0 24px;
  }
  .scarcity-bar p strong { color: var(--pink); }
  @keyframes bannerFlash {
    0%, 100% {
      background: rgba(200, 82, 126, 0.12);
      border-top-color: rgba(200, 82, 126, 0.3);
      border-bottom-color: rgba(200, 82, 126, 0.3);
      box-shadow: 0 0 20px rgba(200, 82, 126, 0.1);
    }
    50% {
      background: rgba(200, 82, 126, 0.26);
      border-top-color: rgba(200, 82, 126, 0.75);
      border-bottom-color: rgba(200, 82, 126, 0.75);
      box-shadow: 0 0 40px rgba(200, 82, 126, 0.3);
    }
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 30px 24px; text-align: center;
    font-size: 11px; color: rgba(138,111,120,0.55);
    line-height: 1.7; max-width: 600px; margin: 0 auto;
  }
  footer a { color: rgba(200, 82, 126, 0.6); text-decoration: none; }

  /* ─── EXIT POPUP ─── */
  .exit-popup-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(253, 246, 242, 0.88);
    z-index: 10001; align-items: center; justify-content: center;
    padding: 24px; backdrop-filter: blur(6px);
  }
  .exit-popup-overlay.active { display: flex; }
  .exit-popup-card {
    background: var(--cream-mid);
    border: 1px solid rgba(200, 82, 126, 0.25);
    border-radius: 16px;
    padding: 40px 32px; max-width: 600px; text-align: center;
    box-shadow: 0 20px 60px rgba(80,30,50,0.13), 0 0 80px rgba(200, 82, 126, 0.08);
    animation: popIn 0.4s ease; position: relative;
  }
  .exit-popup-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; color: var(--text-body);
    font-size: 24px; cursor: pointer; line-height: 1; opacity: 0.6; transition: opacity 0.2s;
  }
  .exit-popup-close:hover { opacity: 1; }

  @media (max-width: 600px) {
    .mobile-stat-grid { grid-template-columns: 1fr !important; }
    .learn-grid { grid-template-columns: 1fr !important; }
    .site-header { flex-wrap: wrap; gap: 10px; padding: 12px 18px; }
    .header-countdown { order: 3; width: 100%; justify-content: center; }
    .host-section { gap: 28px; }
  }