    /* ── Reset & Base ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --space:    #1e1e38;
      --nebula:   rgba(140, 60, 220, 0.22);
      --gold:     #f5c842;
      --purple:   #8c3cdc;
      --cream:    #faf7f2;
      --white:    #ffffff;
      --ink:      #1a1a1a;
      --muted:    #666666;
      --radius:   16px;
      --radius-sm:10px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
      color: var(--ink);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Nav ──────────────────────────────────────── */
    nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background: rgba(30, 30, 56, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(245, 200, 66, 0.12);
    }

    .logo {
      font-size: 1.45rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.03em;
      text-decoration: none;
    }
    .logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-links a:not(.nav-cta) {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: color 0.2s;
    }
    .nav-links a:not(.nav-cta):hover { color: #fff; }

    .nav-cta {
      display: inline-block;
      background: var(--gold);
      color: var(--space);
      font-weight: 800;
      font-size: 0.9rem;
      padding: 0.6rem 1.4rem;
      border-radius: 100px;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(245, 200, 66, 0.45);
    }

    /* ── Hero ─────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--space);
      overflow: hidden;
    }

    #hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 7rem 1.5rem 5rem;
      max-width: 820px;
      width: 100%;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(140, 60, 220, 0.2);
      border: 1px solid rgba(140, 60, 220, 0.45);
      color: #c89dff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.75rem;
    }
    .hero-badge::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #c89dff;
      animation: pulse 2.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6.5vw, 4.5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }

    .hero-offer {
      font-size: clamp(1.05rem, 2.2vw, 1.3rem);
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.6;
      margin-bottom: 2.5rem;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-offer strong {
      color: #fff;
      font-weight: 700;
    }

    .cta-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--space);
      font-weight: 900;
      font-size: 1.05rem;
      padding: 1rem 2.5rem;
      border-radius: 100px;
      text-decoration: none;
      box-shadow: 0 0 40px rgba(245, 200, 66, 0.35);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 50px rgba(245, 200, 66, 0.55);
    }

    .hero-subtext {
      margin-top: 1.1rem;
      color: rgba(255, 255, 255, 0.38);
      font-size: 0.85rem;
    }

    .scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255, 255, 255, 0.28);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      pointer-events: none;
    }
    .scroll-hint svg { animation: bob 2.2s ease-in-out infinite; }
    @keyframes bob {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(6px); }
    }

    /* ── Offer Banner ─────────────────────────────── */
    .offer-banner {
      background: var(--space);
      padding: 2.75rem 1.5rem;
      text-align: center;
    }
    .offer-banner-inner {
      max-width: 720px;
      margin: 0 auto;
      font-size: clamp(1.05rem, 2.5vw, 1.35rem);
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.55;
      font-weight: 400;
    }
    .offer-banner-inner strong { color: var(--gold); font-weight: 700; }

    /* ── Section shared ───────────────────────────── */
    .section {
      padding: 5.5rem 1.5rem;
      position: relative;
    }
    .section--cream { background: var(--cream); }
    .section--white  { background: var(--white); }
    .section--space  { background: var(--space); }

    .container {
      max-width: 1040px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 0.6rem;
    }
    .section--space .section-label { color: var(--gold); }

    .section-title {
      font-size: clamp(1.9rem, 4.2vw, 2.8rem);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin-bottom: 0.9rem;
    }
    .section--space .section-title { color: #fff; }

    .section-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.6;
    }
    .section--space .section-sub { color: rgba(255,255,255,0.55); }

    /* ── Steps / How it works ─────────────────────── */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .step-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem 1.75rem;
      box-shadow: 0 2px 24px rgba(0,0,0,0.06);
      border: 1.5px solid rgba(0,0,0,0.04);
      position: relative;
    }

    .step-num {
      width: 44px;
      height: 44px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.2rem;
      color: var(--space);
      margin-bottom: 1.25rem;
      /* Comic book border */
      border: 2.5px solid var(--ink);
      box-shadow: 3px 3px 0 var(--ink);
    }

    .step-card h3 {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }
    .step-card p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.65;
    }

    /* ── Features / Included ──────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1.25rem;
      margin-top: 3rem;
    }

    .feature-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 1.5rem 1.5rem;
      border: 2px solid transparent;
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    }
    .feature-card:hover {
      transform: translateY(-3px);
      border-color: var(--purple);
      box-shadow: 0 10px 32px rgba(140, 60, 220, 0.1);
    }

    .feature-icon {
      flex-shrink: 0;
      width: 54px;
      height: 54px;
    }

    .feature-card h4 {
      font-size: 0.97rem;
      font-weight: 800;
      margin-bottom: 0.35rem;
      letter-spacing: -0.01em;
    }
    .feature-card p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── Pricing ──────────────────────────────────── */
    .pricing-inner {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }

    .price-block {
      margin: 2rem 0 1rem;
    }
    .price-amount {
      font-size: clamp(3.5rem, 9vw, 6rem);
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .price-suffix {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.5);
      margin-top: 0.25rem;
    }

    .price-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin: 2rem 0 2.75rem;
    }
    .price-tag {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 0.45rem 1.1rem;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.78);
    }
    .price-tag svg { flex-shrink: 0; }

    /* ── Examples ─────────────────────────────────── */
    .examples-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .example-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 3px 28px rgba(0,0,0,0.08);
      border: 1.5px solid rgba(0,0,0,0.05);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .example-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    }

    .example-preview {
      position: relative;
      aspect-ratio: 16/10;
      background: linear-gradient(140deg, #2a1a42 0%, #1e1e40 60%, #261848 100%);
      overflow: hidden;
    }
    .example-preview svg,
    .example-preview img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: top;
    }

    .example-chip {
      position: absolute;
      top: 0.85rem;
      right: 0.85rem;
      background: var(--gold);
      color: var(--space);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.28rem 0.75rem;
      border-radius: 100px;
      border: 1.5px solid var(--space);
    }

    .example-body {
      padding: 1.5rem;
    }
    .example-body h3 {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 0.4rem;
      letter-spacing: -0.01em;
    }
    .example-body p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .example-link {
      display: inline-block;
      margin-top: 0.85rem;
      color: var(--purple);
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none;
      transition: gap 0.15s;
    }
    .example-link:hover { text-decoration: underline; }

    .example-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.85rem;
      height: 100%;
    }
    .example-placeholder span {
      color: rgba(255,255,255,0.3);
      font-size: 0.82rem;
      text-align: center;
      padding: 0 2rem;
    }

    /* ── Contact ──────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-top: 3rem;
    }

    .contact-form label {
      display: block;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
      color: var(--ink);
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.82rem 1rem;
      border: 2px solid #e5e5e5;
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-family: inherit;
      color: var(--ink);
      background: var(--cream);
      margin-bottom: 1rem;
      transition: border-color 0.15s ease;
      outline: none;
      -webkit-appearance: none;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--purple);
      background: #fff;
    }
    .contact-form textarea {
      height: 130px;
      resize: vertical;
    }

    .contact-form button {
      width: 100%;
      background: var(--gold);
      color: var(--space);
      font-weight: 900;
      font-size: 1rem;
      padding: 1rem;
      border: none;
      border-radius: 100px;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      font-family: inherit;
    }
    .contact-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(245, 200, 66, 0.45);
    }
    .contact-form button:disabled {
      cursor: default;
      transform: none;
      box-shadow: none;
    }
    .form-note {
      margin-top: 0.75rem;
      text-align: center;
      font-size: 0.78rem;
      color: var(--muted);
    }

    .contact-aside h3 {
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
    }
    .contact-aside p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .contact-aside a {
      color: var(--purple);
      font-weight: 700;
      text-decoration: none;
    }
    .contact-aside a:hover { text-decoration: underline; }

    .reassurance-box {
      margin-top: 1.75rem;
      background: var(--cream);
      border-radius: var(--radius);
      padding: 1.25rem 1.4rem;
      border-left: 4px solid var(--gold);
    }
    .reassurance-box p {
      font-size: 0.88rem;
      color: var(--ink);
      line-height: 1.65;
      margin: 0;
    }
    .reassurance-box strong { font-weight: 800; }

    /* ── Footer ───────────────────────────────────── */
    footer {
      background: var(--space);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 2.5rem 1.5rem;
      text-align: center;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
    }
    footer p + p { margin-top: 0.5rem; }
    footer a {
      color: rgba(245, 200, 66, 0.65);
      text-decoration: none;
    }
    footer a:hover { color: var(--gold); }
    .footer-brand { color: rgba(245,200,66,0.7); }

    /* ── Privacy page ──────────────────────────────── */
    .privacy-section {
      min-height: 100vh;
      background: var(--cream);
      padding: 8rem 1.5rem 5rem;
    }
    .privacy-container { max-width: 720px; }
    .privacy-updated {
      color: var(--muted);
      font-size: 0.88rem;
      margin-top: 0.5rem;
      margin-bottom: 2.5rem;
    }
    .privacy-body p,
    .privacy-body ul {
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .privacy-body h2 {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--ink);
      margin-top: 2.25rem;
      margin-bottom: 0.75rem;
    }
    .privacy-body ul {
      padding-left: 1.5rem;
    }
    .privacy-body ul li { margin-bottom: 0.3rem; }
    .privacy-body a { color: var(--purple); }
    .privacy-body a:hover { color: var(--ink); }

    /* ── Support section ───────────────────────────── */
    .support-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .support-note {
      margin-top: 1rem;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .support-cards {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .support-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 1.1rem 1.25rem;
    }
    .support-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }
    .support-item strong {
      display: block;
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
      color: var(--ink);
    }
    .support-item p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── FAQ section ───────────────────────────────── */
    .faq-container { max-width: 680px; }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 1.4rem 1.75rem;
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      font-weight: 700;
      color: var(--gold);
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }
    .faq-a {
      color: rgba(255,255,255,0.7);
      font-size: 0.95rem;
      line-height: 1.65;
    }
    @media (max-width: 700px) {
      .support-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    /* ── Thanks page ───────────────────────────────── */
    .thanks-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--space);
      padding: 6rem 1.5rem 4rem;
    }
    .thanks-content {
      max-width: 540px;
      text-align: center;
    }
    .thanks-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--space);
      font-size: 1.75rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
    }
    .thanks-content h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
    }
    .thanks-content p {
      color: rgba(255,255,255,0.6);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .thanks-content a { color: var(--gold); }
    .thanks-content .thanks-home {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.75rem 1.75rem;
      background: var(--gold);
      color: var(--space);
      font-weight: 800;
      font-size: 0.95rem;
      border-radius: 100px;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .thanks-home:hover { opacity: 0.85; color: var(--space); }

    /* ── About page ───────────────────────────────── */
    .about-hero {
      background: var(--space);
      padding: 9rem 2rem 5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .about-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(140,60,220,0.18) 0%, transparent 65%),
                  radial-gradient(ellipse at 20% 80%, rgba(245,200,66,0.07) 0%, transparent 60%);
      pointer-events: none;
    }
    .about-hero .section-label { color: var(--gold); margin-bottom: 0.75rem; }
    .about-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .about-hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.72);
      max-width: 600px;
      margin: 0 auto 1rem;
      line-height: 1.7;
    }
    .about-prose {
      max-width: 720px;
    }
    .about-prose h2 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--ink);
    }
    .about-prose p {
      font-size: 1rem;
      line-height: 1.8;
      color: #333;
      margin-bottom: 1.25rem;
    }
    .about-prose p:last-child { margin-bottom: 0; }
    .founder-section {
      background: var(--cream);
      padding: 5rem 2rem;
    }
    .founder-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 4rem;
      align-items: start;
      max-width: 860px;
      margin: 0 auto;
    }
    @media (max-width: 680px) {
      .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    .founder-photo-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .founder-photo {
      width: 100%;
      max-width: 240px;
      border-radius: var(--radius);
      display: block;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }
    .founder-name {
      font-weight: 800;
      font-size: 1rem;
      color: var(--ink);
      letter-spacing: -0.01em;
      text-align: center;
    }
    .founder-title {
      font-size: 0.85rem;
      color: var(--muted);
      text-align: center;
      margin-top: -0.5rem;
    }
    .founder-copy h2 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--ink);
    }
    .founder-copy p {
      font-size: 1rem;
      line-height: 1.8;
      color: #333;
      margin-bottom: 1.25rem;
    }
    .founder-copy p:last-child { margin-bottom: 0; }
    .pull-quote {
      background: var(--space);
      padding: 4rem 2rem;
      text-align: center;
    }
    .pull-quote blockquote {
      max-width: 640px;
      margin: 0 auto;
      font-size: clamp(1.15rem, 2.5vw, 1.45rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.55;
      letter-spacing: -0.02em;
    }
    .pull-quote blockquote::before {
      content: '\201C';
      color: var(--gold);
      font-size: 3rem;
      line-height: 0;
      vertical-align: -0.6rem;
      margin-right: 0.15rem;
    }
    .pull-quote cite {
      display: block;
      margin-top: 1.25rem;
      font-size: 0.9rem;
      font-style: normal;
      color: rgba(255,255,255,0.5);
      font-weight: 600;
    }
    .values-section {
      background: var(--white);
      padding: 5rem 2rem;
    }
    .values-section .container { max-width: 860px; }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .value-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 1.75rem;
    }
    .value-card h3 {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 0.6rem;
      color: var(--ink);
    }
    .value-card p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #444;
    }
    .about-cta {
      background: var(--cream);
      padding: 5rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(0,0,0,0.06);
    }
    .about-cta h2 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 0.75rem;
    }
    .about-cta p {
      color: var(--muted);
      margin-bottom: 2rem;
      font-size: 1rem;
    }

    /* ── FAQ page ─────────────────────────────────── */
    .faqs-hero {
      background: var(--space);
      padding: 9rem 2rem 5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .faqs-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(140,60,220,0.18) 0%, transparent 65%),
                  radial-gradient(ellipse at 20% 80%, rgba(245,200,66,0.07) 0%, transparent 60%);
      pointer-events: none;
    }
    .faqs-hero .section-label { color: var(--gold); margin-bottom: 0.75rem; }
    .faqs-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .faqs-hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.72);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .faq-see-all {
      display: inline-block;
      margin-top: 1.5rem;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--gold);
      text-decoration: none;
    }
    .faq-see-all:hover { text-decoration: underline; }

    /* ── Responsive ───────────────────────────────── */
    @media (max-width: 700px) {
      nav { padding: 0.85rem 1.25rem; }
      .nav-cta { font-size: 0.82rem; padding: 0.5rem 1.1rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .contact-aside { order: -1; }
      .section { padding: 4rem 1.25rem; }
    }

    @media (max-width: 420px) {
      .logo { font-size: 1.2rem; }
      .hero-content { padding: 6rem 1.25rem 4rem; }
    }
