  :root {
    --black: #0a0a0b;
    --dark: #111114;
    --card: #16161a;
    --border: #2a2a32;
    --accent: #67d67a;
    --accent2: #ff6b35;
    --text: #e8e8ec;
    --muted: #7a7a8c;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  button { border: none; outline: none; background: none; font-family: inherit; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* PROMO BANNER */
  .promo-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    background: linear-gradient(90deg, var(--accent), #3db85a);
    color: var(--black);
    text-align: center;
    padding: 0.7rem 2.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    line-height: 1.4;
  }
  .promo-banner strong { font-weight: 700; }
  .promo-banner .promo-cta {
    background: var(--black);
    color: var(--accent) !important;
    padding: 0.3rem 0.9rem;
    border-radius: 2px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .promo-banner .promo-cta:hover { opacity: 0.8; }
  .promo-close {
    position: absolute;
    right: 0.75rem; top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(0,0,0,0.55);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
  }
  .promo-close:hover { color: var(--black); }
  body.banner-hidden .promo-banner { display: none; }
  body.banner-hidden nav { top: 0; }
  body.banner-hidden .hero { padding-top: 8rem; }

  /* NAV */
  nav {
    position: fixed;
    top: 2.85rem; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  nav.scrolled {
    background: rgba(10,10,11,0.93);
    backdrop-filter: blur(12px);
    border-color: var(--border);
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }
  .logo-live { color: var(--text); }
  .logo-icon { height: 1.5em; width: auto; display: block; position: relative; top: -0.1em; margin-right: 0.45em; }
  nav ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
  nav ul li a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav ul li a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--accent) !important;
    color: var(--black) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 2px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #52c467 !important; color: var(--black) !important; }

  /* HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE NAV DRAWER */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,11,0.97);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .nav-drawer.open { display: flex; }
  .nav-drawer a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-drawer a:hover, .nav-drawer a:active { color: var(--accent); }
  .nav-drawer .drawer-cta {
    background: var(--accent);
    color: var(--black) !important;
    padding: 0.9rem 2.5rem;
    border-radius: 2px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
  }

  /* ABOUT PAGE */
  .about-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: start;
  }
  .about-photo {
    position: sticky;
    top: 10rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    aspect-ratio: 4 / 5;
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-photo-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
  }
  .about-photo-placeholder .initials {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(103,214,122,0.12);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
  .about-photo-placeholder span.label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .about-body h2 { margin-bottom: 0.25rem; }
  .about-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
  }
  .about-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }
  .about-body p:last-of-type { margin-bottom: 0; }
  .about-signoff {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .about-signoff p { margin: 0; flex: 1; min-width: 200px; color: var(--muted); font-size: 0.9rem; }
  @media (max-width: 800px) {
    .about-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .about-photo { position: static; max-width: 280px; margin: 0 auto; aspect-ratio: 1/1; }
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10.85rem 3rem 4rem;
    position: relative;
    overflow: hidden;
   background-color: var(--black);
    background-image: url('images/LiveShowBG.jpg');
    background-size: cover;
    background-position: center 40%;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(10,10,11,0.94) 0%,
      rgba(10,10,11,0.88) 50%,
      rgba(10,10,11,0.6) 100%
    );
    z-index: 0;
    pointer-events: none;
  }
  .hero > * { position: relative; z-index: 1; }
  .hero-wave { z-index: 1; pointer-events: none; }
  .hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 0 2rem;
    opacity: 0.07;
  }
  .hero-wave span {
    flex: 1;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
    animation: wave 2s ease-in-out infinite;
  }
  @keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.3); }
  }
  .hero-eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--accent);
  }
  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 11rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    max-width: 900px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--accent);
    display: block;
  }
  .hero h1 .outline {
    -webkit-text-stroke: 2px rgba(103,214,122,0.5);
    color: transparent;
    display: block;
  }
  .hero-sub {
    max-width: 500px;
    margin-top: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--muted);
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--black);
    padding: 1rem 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-2px); background: #52c467; }
  .btn-ghost {
    color: var(--muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); }
  .btn-ghost::after { content: '→'; transition: transform 0.2s; }
  .btn-ghost:hover::after { transform: translateX(4px); }

  .price-badge {
    position: absolute;
    right: 4rem; top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    background: var(--card);
    text-align: center;
    width: 180px;
  }
  .price-badge .amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
  }
  .price-badge .label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.5rem;
  }
  .price-badge .per { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

  /* SHARED */
  section { padding: 7rem 3rem; }
  .section-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 3.5rem;
  }

  /* PROBLEM */
  .problem-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .problem-grid .section-title { margin-bottom: 1.5rem; }
  .problem-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 2rem;
  }
  .pain-points { list-style: none; }
  .pain-points li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.55;
  }
  .pain-points li::before {
    content: '—';
    color: var(--accent);
    flex-shrink: 0;
  }
  .solution-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    padding: 3rem;
  }
  .solution-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
    color: var(--accent);
  }
  .solution-box p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.25rem;
  }
  .solution-box p:last-of-type { margin-bottom: 0; }

  /* STAT STRIP */
  .stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-item {
    background: var(--accent);
    text-align: center;
    padding: 3rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.15);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: var(--black);
    line-height: 1;
    display: block;
  }
  .stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin-top: 0.5rem;
    display: block;
  }

  /* STEPS */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .step {
    background: var(--card);
    padding: 2.5rem;
    transition: background 0.3s;
  }
  .step:hover { background: #1c1c22; }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s;
  }
  .step:hover .step-num { color: var(--accent); }
  .step h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.75rem; }
  .step p { font-size: 0.875rem; line-height: 1.65; color: var(--muted); }

  /* FOR WHO */
  .forwho-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .forwho-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.3s;
  }
  .forwho-card:hover { border-color: var(--accent); }
  .forwho-card .icon { width: 40px; height: 40px; margin-bottom: 1.1rem; display: block; }
  .forwho-card h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.6rem; }
  .forwho-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

  /* WHY */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
  }
  .why-list { list-style: none; }
  .why-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .why-icon {
    width: 36px; height: 36px;
    background: var(--accent);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
    font-size: 1rem;
  }
  .why-list li h4 { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.3rem; }
  .why-list li p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  .sunday-timeline {
    position: sticky;
    top: 8rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
  }
  .timeline-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }
  .timeline-row:last-child { border-bottom: none; }
  .t-time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    color: var(--accent);
    flex-shrink: 0;
    width: 60px;
    padding-top: 0.15rem;
  }
  .t-desc { font-size: 0.875rem; color: var(--text); line-height: 1.55; }

  /* TRUST */
  .trust-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .trust-intro {
    max-width: 600px;
    margin-bottom: 3.5rem;
  }
  .trust-intro p { font-size: 1.05rem; line-height: 1.75; color: var(--muted); }
  .trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .trust-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
  }
  .trust-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
  .trust-card .attribution {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .trust-card .attribution span { color: var(--accent); }

  /* PRICING */
  .pricing-wrapper { max-width: 780px; margin: 0 auto; text-align: center; }
  .pricing-offer {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: rgba(103,214,122,0.08);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
  }
  .pricing-offer .offer-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--accent);
    background: var(--black);
    padding: 0.35rem 0.7rem;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .pricing-offer p { font-size: 0.88rem; color: var(--text); line-height: 1.5; margin: 0; }
  @media (max-width: 500px) { .pricing-offer { flex-direction: column; align-items: flex-start; } }
  .pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    text-align: left;
  }
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #3db85a);
  }
  .pricing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }
  .pricing-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }
  .pricing-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.03em;
  }
  .price-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: var(--accent);
    line-height: 1;
    text-align: right;
  }
  .price-per {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: right;
    margin-top: 0.25rem;
  }
  .features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
  }
  .features-list li {
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
  }
  .features-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .no-contract {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1.25rem;
    text-align: center;
  }
  .consult-card {
    max-width: 780px;
    margin: 1.5rem auto 0;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .consult-card h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.35rem; }
  .consult-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; max-width: 440px; }
  .consult-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }
  .consult-link:hover { opacity: 0.7; }

  /* FAQ */
  .faq-list { max-width: 700px; margin-left: auto; margin-right: auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-q .icon { color: var(--accent); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
  .faq-item.open .faq-q .icon { transform: rotate(45deg); }
  .faq-a {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-item.open .faq-a { max-height: 220px; padding-bottom: 1.5rem; }

  /* CTA */
  .cta-section {
    background: var(--accent);
    color: var(--black);
    text-align: center;
    padding: 8rem 3rem;
  }
  .cta-section .section-tag { color: rgba(0,0,0,0.45); }
  .cta-section .section-title { color: var(--black); margin-bottom: 1rem; }
  .cta-section p { font-size: 1.1rem; margin-bottom: 2.5rem; opacity: 0.65; max-width: 480px; margin-left: auto; margin-right: auto; }
  .btn-dark {
    background: var(--black);
    color: var(--accent);
    padding: 1rem 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.2s;
  }
  .btn-dark:hover { transform: translateY(-2px); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  footer p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: var(--accent); }

  /* PHOTO BREAK */
  .photo-break {
    position: relative;
    height: 360px;
    overflow: hidden;
  }
  .photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
  }
  .photo-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,10,11,0.5) 0%,
      rgba(10,10,11,0.1) 50%,
      rgba(10,10,11,0.6) 100%
    );
  }
  .photo-break-caption {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  /* INSIDE SETUP SECTION */
  .inside-setup {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }
  .inside-setup-image {
    position: relative;
    overflow: hidden;
  }
  .inside-setup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .inside-setup-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--black) 100%);
  }
  .inside-setup-content {
    background: var(--black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .inside-setup-content .section-title { margin-bottom: 1.25rem; }
  .inside-setup-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.25rem;
  }
  .inside-setup-content p:last-of-type { margin-bottom: 0; }

  /* PROBLEM IMAGE */
  .problem-image-col {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 400px;
  }
  .problem-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .problem-image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10,10,11,0.7) 100%);
    border-radius: 4px;
  }
  .problem-image-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    background: rgba(10,10,11,0.82);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    padding: 1.5rem;
  }
  .problem-image-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }
  .problem-image-overlay p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--muted);
  }

  /* WHY SECTION — swap right col to photo */
  .why-photo-col {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 600px;
    position: sticky;
    top: 7rem;
  }
  .why-photo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    position: absolute;
    inset: 0;
  }
  .why-photo-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,11,0.2) 0%, rgba(10,10,11,0.6) 100%);
    border-radius: 4px;
  }
  .why-photo-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .forwho-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .trust-cards { grid-template-columns: 1fr; }
  }
  @media (max-width: 960px) {
    nav ul { display: none; }
    .nav-hamburger { display: flex; }
    .price-badge { display: none; }
    .why-grid, .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
    .features-list { grid-template-columns: 1fr; }
    .stat-strip { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
    section { padding: 5rem 1.5rem; }
    nav { padding: 1.25rem 1.5rem; }
    .hero { padding: 9.85rem 1.5rem 4rem; }
    .promo-banner { padding: 0.6rem 2.25rem; font-size: 0.7rem; }
    body.banner-hidden .hero { padding: 7rem 1.5rem 4rem; }
    footer { flex-direction: column; text-align: center; }
    .pricing-card { padding: 2.5rem 1.5rem; }
    .pricing-header { flex-direction: column; }
    .price-main, .price-per { text-align: left; }
    .forwho-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .consult-card { flex-direction: column; }
    .inside-setup { grid-template-columns: 1fr; }
    .inside-setup-image { min-height: 280px; }
    .inside-setup-content { padding: 3rem 1.5rem; }
    .photo-break { height: 240px; }
    .why-photo-col { min-height: 300px; }
    .problem-image-col { min-height: 280px; }
  }

  /* FAQ ANSWER */
  .faq-a {
    display: none;
    padding: 0 0 1.25rem 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
  }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-q .icon { transform: rotate(45deg); }

  /* CONTACT MODAL */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
  }
  .modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
    z-index: 2;
  }
  .modal-close:hover { color: var(--text); }

  /* ── Choice screen ── */
  .modal-choice { display: block; }
  .modal-choice h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
  }
  .modal-choice .modal-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .contact-option {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
    text-align: left;
    width: 100%;
    font-family: inherit;
  }
  .contact-option:hover {
    border-color: var(--accent);
    background: #1a1a1f;
  }
  .contact-option-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
  }
  .contact-option-icon.green { background: rgba(103,214,122,0.12); color: var(--accent); }
  .contact-option-icon.orange { background: rgba(255,107,53,0.12); color: var(--accent2); }
  .contact-option-text strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
  }
  .contact-option-text span {
    font-size: 0.78rem;
    color: var(--muted);
  }

  /* ── Form screen ── */
  .modal-form { display: none; }
  .modal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1.4rem;
    transition: color 0.2s;
  }
  .modal-back:hover { color: var(--accent); }
  .modal h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
  }
  .modal p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
    line-height: 1.6;
  }
  .form-group { margin-bottom: 1.1rem; }
  .form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.45rem;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--accent); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-submit {
    width: 100%;
    background: var(--accent);
    color: var(--black);
    border: none;
    padding: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
  }
  .form-submit:hover { background: #52c467; }
  .form-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
  }
  .form-success .check {
    width: 48px; height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--black);
    font-size: 1.4rem;
  }
  .form-success h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .form-success p { font-size: 0.9rem; color: var(--muted); }

  /* BEFORE / AFTER AUDIO */
  .audio-compare-section {
    background: var(--black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .audio-compare-intro {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
  }
  .audio-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 620px;
    margin: 0 auto;
  }
  .audio-card {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    position: relative;
  }
  .audio-card.before-card { background: #d4d4d8; }
  .audio-card.after-card  { background: var(--accent); }
  .audio-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 2px;
  }
  .before-badge { background: rgba(0,0,0,0.1);  color: rgba(0,0,0,0.45); }
  .after-badge  { background: rgba(0,0,0,0.14); color: rgba(0,0,0,0.55); }
  .audio-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(0,0,0,0.65);
  }
  .audio-card-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
    margin-top: -0.5rem;
  }
  .play-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.13);
    color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    margin: 0.25rem 0;
  }
  .play-btn:hover   { background: rgba(0,0,0,0.22); transform: scale(1.07); }
  .play-btn:active  { transform: scale(0.95); }
  .after-card .play-btn {
    background: var(--black);
    color: var(--accent);
  }
  .after-card .play-btn:hover { background: #1a1a1f; transform: scale(1.07); }
  .play-btn svg { pointer-events: none; }
  .player-time {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.45);
  }
  @media (max-width: 500px) {
    .audio-compare-grid { grid-template-columns: 1fr; max-width: 300px; }
  }

  /* WHY CTA STRIP */
  .why-cta-strip {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .why-cta-strip p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
    min-width: 200px;
  }

