/* ─── TOKENS ─────────────────────────────────────────── */
    :root {
      --g1: #00c896;
      --g2: #0072ff;
      --g3: #00e5c8;
      --accent: #ff6b35;
      --accent2: #ffd166;
      --bg: #06090f;
      --bg2: #0d1117;
      --surface: rgba(255,255,255,0.04);
      --surface2: rgba(255,255,255,0.08);
      --border: rgba(255,255,255,0.08);
      --border-lit: rgba(0,200,150,0.35);
      --text: #f0f4ff;
      --muted: #8892a4;
      --faint: #2e3748;
      --grad: linear-gradient(135deg, var(--g1), var(--g2));
      --grad-warm: linear-gradient(135deg, #ff6b35, #ffd166);
      --shadow-glow: 0 0 40px rgba(0,200,150,0.18);
      --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
      --r-sm: 10px;
      --r-md: 18px;
      --r-lg: 28px;
      --r-xl: 40px;
      --ease: cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* ─── RESET ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Manrope', sans-serif;
      font-display: swap;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }

    /* ─── NOISE TEXTURE OVERLAY ──────────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* ─── AMBIENT GLOWS ─────────────────────────────────── */
    .glow-orb {
      position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
      filter: blur(80px); opacity: 0.18;
    }
    .glow-orb--1 { width: 600px; height: 600px; background: var(--g1); top: -200px; left: -150px; }
    .glow-orb--2 { width: 500px; height: 500px; background: var(--g2); bottom: 10%; right: -100px; }
    .glow-orb--3 { width: 350px; height: 350px; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.06; }

    /* ─── HEADER / NAV ───────────────────────────────────── */
    .site-header {
      position: sticky; top: 0; z-index: 200;
      background: rgba(6,9,15,0.75);
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s var(--ease);
    }
    .site-header.scrolled { box-shadow: 0 4px 40px rgba(0,200,150,0.12); }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 2rem;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem;
    }
    .logo-icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: #fff;
      box-shadow: 0 0 20px rgba(0,200,150,0.4);
    }
    .logo-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-link {
      padding: 8px 16px; border-radius: 30px;
      font-size: 0.875rem; font-weight: 500; color: var(--muted);
      transition: all 0.25s var(--ease);
    }
    .nav-link:hover { color: var(--text); background: var(--surface2); }
    .nav-cta {
      padding: 9px 20px; border-radius: 30px;
      background: var(--grad); color: #fff;
      font-size: 0.875rem; font-weight: 600;
      transition: all 0.3s var(--ease);
      box-shadow: 0 4px 20px rgba(0,200,150,0.35);
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,200,150,0.5); }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

    /* ─── HERO ──────────────────────────────────────────── */
    .hero {
      position: relative; z-index: 1;
      min-height: 92vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
      background: linear-gradient(to bottom, transparent, var(--bg));
      pointer-events: none;
    }
    .hero-grid-bg {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(0,200,150,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,150,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
    }
    .hero-content { position: relative; z-index: 2; max-width: 820px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 16px; border-radius: 30px;
      background: rgba(0,200,150,0.12); border: 1px solid rgba(0,200,150,0.25);
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--g1); margin-bottom: 1.5rem;
      animation: fadeSlideDown 0.8s var(--ease) both;
    }
    .hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g1); animation: pulse 2s infinite; }
    .hero-h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      animation: fadeSlideUp 0.9s 0.1s var(--ease) both;
    }
    .hero-h1 .grad-text {
      background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 400; color: var(--muted);
      max-width: 560px; margin: 0 auto 2.5rem;
      animation: fadeSlideUp 0.9s 0.2s var(--ease) both;
    }
    .hero-actions {
      display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
      animation: fadeSlideUp 0.9s 0.3s var(--ease) both;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 32px; border-radius: 50px;
      background: var(--grad); color: #fff;
      font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 700;
      border: none; cursor: pointer;
      box-shadow: 0 8px 40px rgba(0,200,150,0.4), 0 0 0 0 rgba(0,200,150,0);
      transition: all 0.35s var(--ease);
      position: relative; overflow: hidden;
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,200,150,0.55); }
    .btn-primary:hover::before { opacity: 1; }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 15px 30px; border-radius: 50px;
      background: var(--surface); border: 1px solid var(--border);
      color: var(--text); font-size: 1rem; font-weight: 600; cursor: pointer;
      transition: all 0.3s var(--ease);
    }
    .btn-secondary:hover { background: var(--surface2); border-color: var(--border-lit); transform: translateY(-2px); }
    .hero-stats {
      display: flex; justify-content: center; gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
      animation: fadeSlideUp 0.9s 0.4s var(--ease) both;
    }
    .stat { text-align: center; }
    .stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .stat-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
    .stat-divider { width: 1px; background: var(--border); align-self: stretch; margin: 8px 0; }

    /* ─── SECTION WRAPPER ───────────────────────────────── */
    .section-wrap { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--g1); margin-bottom: 1rem;
    }
    .section-label::before { content: ''; width: 28px; height: 2px; background: var(--grad); border-radius: 2px; }
    .section-h2 {
      font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 1rem;
    }
    .section-sub { font-size: 1.05rem; color: var(--muted); max-width: 480px; }

    /* ─── CALCULATOR GRID ───────────────────────────────── */
    .calc-section { padding-bottom: 6rem; }
    .calc-header { text-align: center; margin-bottom: 4rem; }
    .calc-header .section-label { justify-content: center; }
    .calc-header .section-sub { margin: 0 auto; }

    .calculators-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .calc-card {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 1.75rem;
      text-decoration: none; color: var(--text);
      display: flex; flex-direction: column; gap: 1rem;
      transition: all 0.35s var(--ease);
      overflow: hidden;
      cursor: pointer;
    }
    .calc-card::before {
      content: ''; position: absolute; inset: 0;
      background: var(--grad); opacity: 0;
      transition: opacity 0.35s var(--ease);
      border-radius: var(--r-lg);
    }
    .calc-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: var(--grad); opacity: 0;
      transition: opacity 0.35s var(--ease);
    }
    .calc-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0,200,150,0.3);
      box-shadow: var(--shadow-glow), var(--shadow-card);
    }
    .calc-card:hover::before { opacity: 0.05; }
    .calc-card:hover::after { opacity: 1; }
    .calc-card:hover .card-arrow { transform: translate(3px, -3px); opacity: 1; }
    .calc-card:hover .card-icon-wrap { transform: scale(1.1); box-shadow: 0 0 20px rgba(0,200,150,0.35); }

    .card-top { display: flex; justify-content: space-between; align-items: flex-start; }
    .card-icon-wrap {
      width: 52px; height: 52px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(0,200,150,0.2), rgba(0,114,255,0.2));
      border: 1px solid rgba(0,200,150,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.35rem; color: var(--g1);
      transition: all 0.3s var(--ease);
      position: relative; z-index: 1;
    }
    .card-arrow {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--surface2); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; color: var(--muted);
      opacity: 0; transition: all 0.3s var(--ease);
      position: relative; z-index: 1;
    }
    .card-body { position: relative; z-index: 1; flex: 1; }
    .card-title {
      font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700;
      margin-bottom: 0.4rem; line-height: 1.3;
    }
    .card-desc { font-size: 0.855rem; color: var(--muted); line-height: 1.55; }
    .card-cta {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 16px; border-radius: 30px;
      background: rgba(0,200,150,0.1); border: 1px solid rgba(0,200,150,0.2);
      font-size: 0.78rem; font-weight: 600; color: var(--g1);
      transition: all 0.25s var(--ease);
      position: relative; z-index: 1;
      align-self: flex-start;
    }
    .calc-card:hover .card-cta {
      background: rgba(0,200,150,0.18); border-color: rgba(0,200,150,0.4);
    }

    /* Featured card */
    .calc-card--featured {
      background: linear-gradient(135deg, rgba(0,200,150,0.1), rgba(0,114,255,0.08));
      border-color: rgba(0,200,150,0.25);
      grid-column: span 1;
    }
    .calc-card--featured .card-icon-wrap {
      background: linear-gradient(135deg, rgba(0,200,150,0.3), rgba(0,114,255,0.3));
    }
    .featured-badge {
      position: absolute; top: 16px; right: 16px;
      padding: 3px 10px; border-radius: 20px;
      background: var(--grad); color: #fff;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    }

    /* ─── HOW IT WORKS ──────────────────────────────────── */
    .steps-section { padding: 4rem 0 6rem; }
    .steps-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
      margin-top: 3.5rem;
    }
    .step-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 2rem;
      position: relative; overflow: hidden;
      animation-fill-mode: both;
    }
    .step-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--grad);
    }
    .step-num {
      font-family: 'Syne', sans-serif; font-size: 4.5rem; font-weight: 800;
      line-height: 1; color: var(--faint); margin-bottom: 1.25rem;
      user-select: none;
    }
    .step-icon { font-size: 1.5rem; color: var(--g1); margin-bottom: 0.75rem; }
    .step-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .step-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

    /* ─── ABOUT ─────────────────────────────────────────── */
    .about-section {
      position: relative; z-index: 1;
      background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 5rem 2rem;
    }
    .about-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .about-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .about-orb {
      width: 280px; height: 280px; border-radius: 50%;
      background: conic-gradient(from 0deg, var(--g1), var(--g2), var(--g3), var(--g1));
      opacity: 0.12; filter: blur(30px);
      position: absolute;
    }
    .about-icon-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; position: relative; z-index: 1;
    }
    .about-icon-cell {
      width: 70px; height: 70px; border-radius: 16px;
      background: var(--bg2); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--g1);
      transition: all 0.35s var(--ease);
    }
    .about-icon-cell:nth-child(even) { color: var(--g2); transform: translateY(8px); }
    .about-icon-cell:hover { transform: translateY(-4px) scale(1.08); border-color: var(--border-lit); }
    .about-text .section-sub { max-width: 100%; margin-top: 1rem; }
    .about-disclaimer {
      margin-top: 1.5rem; padding: 14px 18px;
      background: rgba(255,107,53,0.08); border: 1px solid rgba(255,107,53,0.2);
      border-radius: var(--r-sm);
      font-size: 0.83rem; color: rgba(255,107,53,0.9);
      display: flex; gap: 10px; align-items: flex-start;
    }

    /* ─── FLOATING CTA ──────────────────────────────────── */
    .floating-cta {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
      display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
      opacity: 0; transform: translateY(20px);
      transition: all 0.4s var(--ease);
    }
    .floating-cta.visible { opacity: 1; transform: translateY(0); }
    .floating-btn {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 22px; border-radius: 50px;
      background: var(--grad); color: #fff;
      font-size: 0.9rem; font-weight: 700; border: none; cursor: pointer;
      box-shadow: 0 8px 30px rgba(0,200,150,0.45);
      transition: all 0.3s var(--ease);
    }
    .floating-btn:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0,200,150,0.6); }
    .floating-close {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--surface2); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); font-size: 0.75rem; cursor: pointer;
      transition: all 0.25s;
    }
    .floating-close:hover { background: var(--faint); color: var(--text); }

    /* ─── FOOTER ────────────────────────────────────────── */
    .site-footer {
      position: relative; z-index: 1;
      background: var(--bg2); border-top: 1px solid var(--border);
      padding: 4rem 2rem 2rem;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
      padding-bottom: 3rem; border-bottom: 1px solid var(--border);
      margin-bottom: 2rem;
    }
    .footer-brand .logo { margin-bottom: 1rem; }
    .footer-tagline { font-size: 0.9rem; color: var(--muted); line-height: 1.7; max-width: 300px; }
    .footer-col-title {
      font-family: 'Syne', sans-serif; font-size: 0.78rem;
      font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 1.2rem;
    }
    .footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-links a { font-size: 0.9rem; color: var(--muted); transition: color 0.25s; }
    .footer-links a:hover { color: var(--g1); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 0.82rem; color: var(--faint); }
    .footer-disclaimer { font-size: 0.78rem; color: var(--faint); max-width: 500px; text-align: right; }

    /* ─── ANIMATIONS ─────────────────────────────────────── */
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.4); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 900px) {
      .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
      .about-inner { grid-template-columns: 1fr; gap: 3rem; }
      .about-visual { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero { min-height: 80vh; padding: 5rem 1.5rem 3rem; }
      .hero-stats { gap: 1.5rem; }
      .stat-divider { display: none; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn-primary, .btn-secondary { justify-content: center; }
      .calculators-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-disclaimer { text-align: center; }
      .floating-cta { bottom: 1.25rem; right: 1.25rem; }
    }
    @media (min-width: 641px) and (max-width: 900px) {
      .calculators-grid { grid-template-columns: repeat(2, 1fr); }
    }

/* ═══════════════════════════════════════════════════════════
   ADDED — SEO Audit Remediation (2026-07-10)
   Utility classes replacing inline style="" attributes, plus
   new components for calculator categories, the "Why Use"
   section, and the homepage FAQ.
   ═══════════════════════════════════════════════════════════ */

/* Utility classes replacing inline style="" attributes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.icon-align-top { margin-top: 2px; flex-shrink: 0; }
.footer-logo { margin-bottom: 1rem; display: inline-flex; }
.contact-icon { margin-right: 6px; color: var(--g1); }

/* Calculator category groups */
.calc-category { margin-bottom: 3.5rem; }
.calc-category:last-child { margin-bottom: 0; }
.category-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 10px;
}
.category-title i { color: var(--g1); font-size: 1.1rem; }
.category-intro {
  font-size: 0.92rem; color: var(--muted);
  max-width: 620px; margin-bottom: 1.5rem; line-height: 1.6;
}

/* "Why Use Free Online Health Calculators" section */
.why-section { padding: 1rem 0 5rem; }
.why-grid { margin-top: 2.5rem; display: grid; gap: 2rem; }
.why-block h3 {
  font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700;
  margin: 1.75rem 0 0.6rem; color: var(--text);
}
.why-block h4 {
  font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700;
  margin: 1.25rem 0 0.5rem; color: var(--g1);
}
.why-block h5 {
  font-size: 0.95rem; font-weight: 700;
  margin: 1rem 0 0.4rem; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.why-block h6 {
  font-size: 0.85rem; font-weight: 700;
  margin: 0.85rem 0 0.35rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.why-block p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; max-width: 720px; }

/* Homepage FAQ */
.faq-section { padding: 1rem 0 5rem; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; max-width: 780px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.25rem 1.5rem;
}
.faq-item summary {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--g1); flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 0.85rem; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }