  :root {
    --pink:  #B52775;
    --coral: #F66B52;
    --gold:  #D6AD60;
    --navy:  #2C3E91;
    --blush: #F7E4D2;
    --rose:  #f5cac3;
    --dark:  #0c0c18;
    --white: #ffffff;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .topbar {
    background: var(--pink);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
  }
  .topbar span { color: var(--gold); }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(12,12,24,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(214,173,96,0.2);
    padding: 18px 60px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white);
  }
  .nav-brand span { color: var(--coral); }
  .nav-cta {
    background: var(--pink);
    color: var(--white);
    padding: 10px 28px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--coral); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  .hero-eyebrow-line {
    width: 40px; height: 2px;
    background: var(--gold);
  }
  .hero-eyebrow-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
  }

  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 9vw, 120px);
    line-height: 0.92;
    margin-bottom: 28px;
  }
  .hero-headline .line-white { color: var(--white); }
  .hero-headline .line-coral { color: var(--coral); }
  .hero-headline .line-pink  { color: var(--pink);  }

  .hero-sub {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--blush);
    max-width: 460px;
    margin-bottom: 40px;
    border-left: 3px solid var(--coral);
    padding-left: 20px;
  }

  .hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }
  .tag {
    border: 1px solid rgba(214,173,96,0.4);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
  }

  .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .hero-upcoming {
    font-size: 13px;
    color: var(--blush);
    margin-bottom: 10px;
  }
  .hero-upcoming-datetime {
    display: block;
    font-size: clamp(1.5rem, 2.5vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    margin-top: 6px;
    letter-spacing: 0.02em;
  }
  .hero-upcoming-time {
    padding-left: 0.5rem;
    font-weight: 300;
    font-size: clamp(1.5rem, 1vw, 4rem);
  }
  .hero-countdown {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
  }
  .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .countdown-unit-value {
    display: flex;
    flex-direction: row;
    gap: 2px;
  }
  .countdown-digit {
    width: 2ch;
    height: 2.4em;
    background: rgba(12,12,24,0.9);
    border: 1px solid rgba(214,173,96,0.35);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-variant-numeric: tabular-nums;
  }
  .countdown-digit-window {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .countdown-digit-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 2.4em;
    line-height: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    will-change: transform;
  }
  .countdown-digit-strip span {
    height: 1em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.67em;
    color: var(--gold);
    letter-spacing: 1px;
    flex-shrink: 0;
  }
  .countdown-unit-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(247,228,210,0.7);
  }
  .hero-countdown.countdown-done {
    justify-content: center;
  }
  .countdown-done-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    margin: 0;
  }
  .btn-primary {
    background: var(--pink);
    color: var(--white);
    padding: 18px 40px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--coral); transform: translateY(-2px); }
  .btn-secondary {
    color: var(--blush);
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }
  .hero-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 35%),
                linear-gradient(0deg, var(--dark) 0%, transparent 20%);
  }
  .hero-price-badge {
    position: absolute;
    bottom: 48px; left: -20px;
    background: var(--navy);
    border: 1px solid var(--gold);
    padding: 20px 28px;
    z-index: 3;
  }
  .hero-price-badge .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--gold);
    line-height: 1;
  }
   .hero-price-badge .taxes {
    font-family: 'Oswald', sans-serif;
font-weight: 400;
    font-size: 24px;
    color: var(--gold);
    line-height: 1;
  }
  .hero-price-badge .price-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blush);
    margin-top: 4px;
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--coral);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-flex;
    animation: marquee 22s linear infinite;
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--white);
    padding: 0 48px;
  }
  .marquee-item span { color: var(--dark); }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── SECTION SHARED ── */
  section { position: relative; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-label-line { width: 32px; height: 2px; background: var(--coral); }
  .section-label-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
  }

  /* ── PAIN SECTION ── */
  .pain {
    padding: 100px 80px;
    background: #0f0f1e;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .pain-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.15;
    font-weight: 700;
  }
  .pain-headline em {
    font-style: italic;
    color: var(--coral);
  }
  .pain-intro {
    font-size: 16px;
    color: var(--blush);
    line-height: 1.8;
    margin-top: 24px;
    max-width: 420px;
  }

  .pain-list { display: flex; flex-direction: column; gap: 0; }
  .pain-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .pain-item:last-child { border-bottom: none; }
  .pain-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: rgba(214,173,96,0.2);
    line-height: 1;
    min-width: 48px;
  }
  .pain-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
  }
  .pain-text span {
    font-size: 14px;
    color: rgba(247,228,210,0.65);
    line-height: 1.6;
  }

  /* ── WHAT IS THIS ── */
  .what {
    padding: 100px 80px;
    background: var(--navy);
    clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
    margin: -40px 0;
    z-index: 2;
  }
  .what-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
  }
  .what-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.95;
    margin: 20px 0 36px;
  }
  .what-headline .w1 { color: var(--white); }
  .what-headline .w2 { color: var(--gold); }
  .what-headline .w3 { color: var(--coral); }

  .what-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--blush);
    max-width: 680px;
    margin: 0 auto 48px;
  }
  .what-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
    text-align: left;
  }
  .pillar {
    background: rgba(255,255,255,0.06);
    padding: 32px 28px;
    border-top: 3px solid transparent;
    transition: border-color 0.3s;
  }
  .pillar:hover { border-top-color: var(--coral); }
  .pillar-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .pillar-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .pillar-text {
    font-size: 13px;
    color: var(--blush);
    line-height: 1.7;
  }

  /* ── SESSIONS GRID ── */
  .sessions {
    padding: 100px 80px;
    background: var(--dark);
  }
  .sessions-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }
  .sessions-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.95;
    color: var(--white);
  }
  .sessions-headline span { color: var(--pink); }
  .sessions-desc {
    font-size: 15px;
    color: var(--blush);
    line-height: 1.8;
    padding-bottom: 8px;
  }
  .sessions-disclaimer {
    font-size: 12px;
    color: rgba(247,228,210,0.6);
    line-height: 1.6;
    margin-top: 16px;
  }

  .sessions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .session-card {
    background: #13132a;
    padding: 28px 24px;
    border-left: 3px solid transparent;
    transition: all 0.25s;
    cursor: default;
  }
  .session-card:hover {
    background: #1a1a36;
    border-left-color: var(--coral);
    transform: translateX(4px);
  }
  .session-card:nth-child(3n+2):hover { border-left-color: var(--pink); }
  .session-card:nth-child(3n+3):hover { border-left-color: var(--gold); }

  .session-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(214,173,96,0.5);
    margin-bottom: 10px;
  }
  .session-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .session-sub {
    font-size: 12px;
    color: rgba(247,228,210,0.5);
    line-height: 1.5;
  }

  /* ── ABOUT ── */
  .about {
    padding: 100px 80px;
    background: #0f0f1e;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-photo-wrap {
    position: relative;
  }
  .about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .about-photo-frame {
    position: absolute;
    inset: -12px;
    border: 2px solid var(--gold);
    z-index: -1;
  }
  .about-photo-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--pink);
    padding: 16px 24px;
  }
  .about-photo-tag .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--white);
    line-height: 1;
  }
  .about-photo-tag .label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blush);
  }

  .about-content { padding-left: 20px; }
  .about-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin: 16px 0 28px;
  }
  .about-headline em {
    font-style: italic;
    color: var(--coral);
  }
  .about-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--blush);
    margin-bottom: 20px;
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
  }
  .stat {
    background: rgba(44,62,145,0.3);
    border: 1px solid rgba(44,62,145,0.6);
    padding: 20px 16px;
    text-align: center;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    color: var(--blush);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* ── SOCIAL PROOF ── */
  .proof {
    padding: 100px 80px;
    background: var(--dark);
  }
  .proof-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .proof-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px,6vw,80px);
    line-height: 0.95;
    margin: 16px 0;
  }
  .proof-headline span { color: var(--coral); }

  .proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .proof-card {
    background: #0f0f1e;
    padding: 40px 36px;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .proof-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: rgba(181,39,117,0.15);
    position: absolute;
    top: 10px; left: 24px;
    line-height: 1;
  }
  .proof-quote {
    font-size: 15px;
    line-height: 1.85;
    color: var(--blush);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
  .proof-quote strong { color: var(--white); font-weight: 600; }
  .proof-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
  }
  .proof-dot {
    width: 10px; height: 10px;
    background: var(--coral);
    flex-shrink: 0;
  }
  .proof-author-age {
    font-size: 12px;
    color: rgba(247,228,210,0.55);    
  }
  .proof-author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
  }
  .proof-author-title {
    font-size: 12px;
    color: rgba(247,228,210,0.55);
    margin-top: 2px;
  }
  .proof-card.featured {
    background: var(--navy);
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .proof-card.featured .proof-quote {
    font-size: 17px;
  }
  .proof-result-badge {
    background: rgba(181,39,117,0.2);
    border: 1px solid var(--pink);
    padding: 28px;
    text-align: center;
  }
  .proof-result-badge .result-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--gold);
    line-height: 1;
  }
  .proof-result-badge .result-label {
    font-size: 13px;
    color: var(--blush);
    margin-top: 8px;
    line-height: 1.5;
  }

  /* ── TRANSFORM TABLE ── */
  .transform {
    padding: 100px 80px;
    background: #0f0f1e;
  }
  .transform-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .transform-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px,6vw,80px);
    line-height: 0.95;
    margin: 16px 0;
  }
  .transform-headline span { color: var(--pink); }

  .transform-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 1000px;
    margin: 0 auto;
  }
  .transform-table th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 16px 24px;
    text-align: left;
  }
  .transform-table th:first-child { color: var(--coral); background: rgba(246,107,82,0.08); }
  .transform-table th:last-child  { color: var(--gold);  background: rgba(214,173,96,0.08); }
  .transform-table td {
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: top;
  }
  .transform-table td:first-child {
    color: rgba(247,228,210,0.7);
    background: rgba(246,107,82,0.04);
  }
  .transform-table td:last-child {
    color: var(--white);
    font-weight: 500;
    background: rgba(214,173,96,0.04);
  }
  .transform-table tr:hover td { background: rgba(255,255,255,0.03); }

  /* ── HOW IT WORKS ── */
  .how {
    padding: 100px 80px;
    background: var(--dark);
  }
  .how-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .how-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px,6vw,80px);
    line-height: 0.95;
    margin: 16px 0;
  }
  .how-headline span { color: var(--gold); }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
  }
  .how-step {
    background: #13132a;
    padding: 40px 28px;
    text-align: center;
    position: relative;
  }
  .how-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: rgba(214,173,96,0.12);
    line-height: 1;
    margin-bottom: 8px;
  }
  .how-step-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
  }
  .how-step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .how-step-text {
    font-size: 13px;
    color: var(--blush);
    line-height: 1.7;
  }

  /* ── CTA SECTION ── */
  .cta-section {
    padding: 120px 80px;
    background: var(--navy);
    text-align: center;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
    margin-top: -40px;
  }
  .cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .cta-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 110px);
    line-height: 0.92;
    margin-bottom: 32px;
  }
  .cta-headline .c1 { color: var(--white); }
  .cta-headline .c2 { color: var(--coral); display: block; }
  .cta-headline .c3 { color: var(--gold);  display: block; }
  .cta-sub {
    font-size: 16px;
    color: var(--blush);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }
  .cta-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  .cta-detail {
    text-align: center;
  }
  .cta-detail-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
  }
  .cta-detail-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blush);
    margin-top: 4px;
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 20px 52px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s, transform 0.2s;
  }
  .btn-gold:hover { opacity: 0.9; transform: translateY(-2px); }
  .cta-note {
    margin-top: 24px;
    font-size: 12px;
    color: rgba(247,228,210,0.5);
    letter-spacing: 1px;
  }

  /* ── FAQ ── */
  .faq {
    padding: 100px 80px;
    background: #0f0f1e;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .faq-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--white);
    margin: 16px 0;
  }
  .faq-headline span { color: var(--coral); }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .faq-q {
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
  }
  .faq-q:hover { color: var(--coral); }
  .faq-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--coral);
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-a {
    font-size: 14px;
    color: var(--blush);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-a.open {
    max-height: 300px;
    padding-bottom: 24px;
  }
  .faq-icon.open { transform: rotate(45deg); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(214,173,96,0.15);
    padding: 48px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
  }
  .footer-brand span { color: var(--coral); }
  .footer-links {
    display: flex;
    gap: 32px;
  }
  .footer-links a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(247,228,210,0.5);
    text-decoration: none;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 12px;
    color: rgba(247,228,210,0.3);
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  @media (max-width: 900px) {
    .hero, .pain, .about, .proof-card.featured,
    .what-pillars, .sessions-grid, .sessions-header,
    .how-steps, .about-stats { grid-template-columns: 1fr; }
    nav, .pain, .about, .sessions, .proof, .transform,
    .how, .cta-section, footer { padding-left: 24px; padding-right: 24px; }
    .hero-left { padding: 60px 24px; }
    .hero-right { height: 50vw; }
    .faq { padding: 60px 24px; }
    .proof-card.featured { padding: 40px 24px; }
  }
