
    /* Page-specific: faq uses standard nav from styles.css. */
    nav { transition: border-bottom .2s; border-bottom: none; }
    nav.scrolled { border-bottom: 1px solid var(--mid); }
    .section-divider { border: none; border-top: 1px solid var(--mid); margin: 0; }
    .nav-links a.active { color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

    /* Page hero */
    .page-hero { padding: 160px 0 80px; border-bottom: 1px solid var(--mid); }
    .page-hero-inner { max-width: 760px; }
    .page-hero .label { display: block; margin-bottom: 32px; animation: fadeUp .5s ease both .1s; }
    .page-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 800; line-height: 1.04; letter-spacing: -.015em; margin-bottom: 24px; animation: fadeUp .6s ease both .25s; }
    .page-hero h1 em { font-style: normal; color: var(--accent); }
    .page-hero-sub { font-size: 1.05rem; color: var(--stone); max-width: 500px; line-height: 1.65; animation: fadeUp .6s ease both .4s; }

    /* Body layout: sticky sidebar + content */
    .faq-body { display: grid; grid-template-columns: 220px 1fr; gap: 0; align-items: start; }

    /* Sidebar */
    .faq-sidebar { position: sticky; top: 80px; padding: 56px 0; border-right: 1px solid var(--mid); }
    .faq-sidebar .label { display: block; padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid var(--mid); }
    .faq-cat-nav { list-style: none; }
    .faq-cat-nav li { border-bottom: 1px solid var(--mid); }
    .faq-cat-nav a { display: block; padding: 14px 16px 14px 0; font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 500; color: var(--stone); transition: color .2s; }
    .faq-cat-nav a:hover { color: var(--ink); }
    .faq-cat-nav a.active { color: var(--accent); font-weight: 600; }

    /* FAQ content */
    .faq-content { padding: 56px var(--pad); }
    .faq-category-section { margin-bottom: 72px; scroll-margin-top: 88px; }
    .faq-category-section:last-child { margin-bottom: 0; }
    .faq-category-heading { display: flex; align-items: baseline; gap: 20px; margin-bottom: 8px; padding-bottom: 20px; border-bottom: 2px solid var(--ink); }
    .faq-category-heading h2 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15; font-size: 1.05rem; letter-spacing: .01em; }
    .faq-count { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
    .faq-list { margin-top: 4px; }

    /* Accordion */
    .faq-item { border-bottom: 1px solid var(--mid); }
    .faq-item:first-child { border-top: 1px solid var(--mid); }
    .faq-question { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; cursor: pointer; list-style: none; font-family: 'Poppins', sans-serif; font-size: .975rem; font-weight: 600; color: var(--ink); line-height: 1.4; transition: color .2s; user-select: none; }
    .faq-question::-webkit-details-marker { display: none; }
    .faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--stone); flex-shrink: 0; line-height: 1; transition: transform .25s, color .2s; }
    .faq-item[open] > .faq-question { color: var(--accent); }
    .faq-item[open] > .faq-question::after { transform: rotate(45deg); color: var(--accent); }
    .faq-question:hover { color: var(--accent); }
    .faq-answer { padding: 0 48px 28px 0; animation: answerIn .2s ease both; }
    .faq-answer p { font-size: .95rem; color: var(--stone); line-height: 1.78; }
    .faq-answer a { color: var(--accent); border-bottom: 1px solid transparent; padding-bottom: 1px; transition: border-color .2s; }
    .faq-answer a:hover { border-color: var(--accent); }
    @keyframes answerIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

    /* Still have questions strip */
    .questions-strip { background: var(--bg); border-top: 1px solid var(--mid); padding: 80px 0; }
    .questions-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; }
    .questions-inner h2 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15; font-size: clamp(1.6rem, 2.5vw, 2.1rem); margin-bottom: 10px; }
    .questions-inner p { color: var(--stone); font-size: .975rem; max-width: 520px; }

    /* Override .btn-outline padding for this page (shared base is 10px 22px) */
    .btn-outline { padding: 13px 28px; font-size: 12px; }

    /* CTA */
    .cta-section { background: var(--accent); padding: 80px 0; }
    .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
    .cta-headline { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); max-width: 560px; line-height: 1.15; }

    /* Newsletter form (page-specific until Sprint 8) */
    .newsletter-label { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,250,248,.35); margin-bottom: 12px; }
    #newsletter-form { display: flex; }
    #newsletter-email { flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 13px; padding: 10px 14px; outline: none; transition: border-color .2s; }
    #newsletter-email::placeholder { color: rgba(250,250,248,.25); }
    #newsletter-email:focus { border-color: rgba(255,255,255,.4); }
    .newsletter-btn { background: var(--accent); color: var(--white); border: none; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 10px 18px; cursor: pointer; transition: opacity .2s; }
    .newsletter-btn:hover { opacity: .85; }

    /* Footer bottom row */
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; flex-wrap: wrap; gap: 16px; }

    @media (max-width: 1100px) { :root { --pad: 48px; } .faq-body { grid-template-columns: 180px 1fr; } }
    @media (max-width: 768px) {
      .page-hero { padding: 120px 0 56px; }
      .faq-body { grid-template-columns: 1fr; }
      .faq-sidebar { display: none; }
      .faq-content { padding: 40px 0; }
      .faq-answer { padding-right: 0; }
      .questions-inner { grid-template-columns: 1fr; gap: 24px; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
  