  :root {
    --ink: #0e1a24;
    --ink-soft: #334155;
    --ink-mute: #64748b;
    --paper: #ffffff;
    --cream: #f4f6f8;
    --accent: #e87b3e;
    --accent-deep: #c8571b;
    --sky: #2563a8;
    --sky-soft: #eef3f9;
    --mint: #4a7c5f;
    --line: #eaecef;
    --shadow-sm: 0 1px 2px rgba(14,26,36,.04);
    --shadow: 0 12px 40px -12px rgba(14,26,36,.1);
    --shadow-lg: 0 30px 80px -20px rgba(14,26,36,.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter Tight', -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .display { font-family: 'Fraunces', Georgia, serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
  .display em { font-style: italic; font-weight: 300; color: var(--accent-deep); }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* ---------- TOPBAR ---------- */
  .topbar {
    background: var(--ink);
    color: #cbd5e1;
    font-size: 13px;
    padding: 10px 0;
  }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
  .topbar-left { display: flex; gap: 24px; align-items: center; }
  .topbar-left span { display: flex; align-items: center; gap: 6px; }
  .topbar-left svg { width: 14px; height: 14px; opacity: 0.7; }
  .lang-switch { display: flex; gap: 4px; font-weight: 500; }
  .lang-switch a { color: #94a3b8; text-decoration: none; padding: 2px 8px; border-radius: 4px; }
  .lang-switch a.active { background: rgba(255,255,255,.1); color: white; }

  /* ---------- NAV ---------- */
  nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 10px;
  }
  .logo-mark {
    width: 34px; height: 34px;
    background: var(--ink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--paper);
    font-size: 16px;
  }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
    position: relative;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width .25s;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    display: flex; align-items: center; gap: 14px;
  }
  .btn {
    font-family: inherit;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14.5px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
  .btn-ghost:hover { background: var(--cream); }
  .btn-primary { background: var(--ink); color: var(--paper); }
  .btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
  .btn-accent { background: var(--accent); color: white; }
  .btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); }
  .btn-lg { padding: 16px 32px; font-size: 15.5px; }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,123,62,.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 10%; left: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,168,.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center; gap: 10px;
    padding: 6px 14px;
    background: rgba(232,123,62,.12);
    color: var(--accent-deep);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
  }
  .eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  h1.hero-title {
    font-size: clamp(48px, 6vw, 82px);
    margin-bottom: 28px;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }

  .social-proof { display: flex; align-items: center; gap: 16px; }
  .avatars { display: flex; }
  .avatars .av {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 3px solid var(--paper);
    margin-left: -12px;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--ink);
  }
  .avatars .av:first-child { margin-left: 0; }
  .av-1 { background: linear-gradient(135deg, #fde68a, #f59e0b); }
  .av-2 { background: linear-gradient(135deg, #bfdbfe, #3b82f6); color: white; }
  .av-3 { background: linear-gradient(135deg, #fecaca, #ef4444); color: white; }
  .av-4 { background: linear-gradient(135deg, #bbf7d0, #10b981); color: white; }
  .av-5 { background: linear-gradient(135deg, #e9d5ff, #a855f7); color: white; }
  .proof-text { font-size: 14px; color: var(--ink-soft); }
  .proof-text strong { color: var(--ink); font-weight: 600; }
  .stars { color: #f59e0b; letter-spacing: 2px; }

  /* HERO FORM CARD */
  .form-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .form-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--sky), var(--mint));
    border-radius: 20px 20px 0 0;
  }

  .form-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .form-title { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; }
  .form-step-label { font-size: 13px; color: var(--ink-mute); font-weight: 500; }

  .progress-track { height: 3px; background: var(--cream); border-radius: 2px; margin-bottom: 28px; overflow: hidden; }
  .progress-fill { height: 100%; width: 33%; background: var(--accent); border-radius: 2px; transition: width .3s; }

  .step-dots { display: flex; gap: 6px; margin-bottom: 28px; }
  .step-dot {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--cream);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-mute);
    display: flex; align-items: center; gap: 8px;
    transition: all .2s;
  }
  .step-dot.active { background: var(--ink); color: var(--paper); }
  .step-dot.done { background: var(--mint); color: white; }
  .step-dot .num {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px;
  }
  .step-dot:not(.active):not(.done) .num { background: white; color: var(--ink-mute); }

  .form-question { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 400; margin-bottom: 6px; letter-spacing: -0.01em; }
  .form-hint { font-size: 14px; color: var(--ink-mute); margin-bottom: 20px; }

  .item-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
  .item-chip {
    padding: 16px 10px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all .15s;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .item-chip:hover { border-color: var(--ink); transform: translateY(-1px); }
  .item-chip.selected { border-color: var(--accent); background: rgba(232,123,62,.06); color: var(--accent-deep); }
  .item-chip.selected svg { stroke: var(--accent-deep); }
  .item-chip svg { width: 22px; height: 22px; stroke: var(--ink-soft); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: stroke .15s; }

  .form-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); }
  .form-help { font-size: 13px; color: var(--ink-mute); }

  /* ---------- MARQUEE / AIRLINES ---------- */
  .marquee-section {
    background: var(--ink);
    color: white;
    padding: 60px 0;
    overflow: hidden;
  }
  .marquee-label {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 32px;
  }
  .marquee {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .marquee-item {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 400;
    color: #cbd5e1;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 60px;
    font-style: italic;
  }
  .marquee-item::after {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
  }

  /* ---------- STATS ---------- */
  .stats-section { padding: 100px 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .stat {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
  }
  .stat-num sup { font-size: 24px; color: var(--accent); vertical-align: super; font-style: italic; }
  .stat-label { font-size: 14px; color: var(--ink-soft); line-height: 1.5; max-width: 220px; }

  /* ---------- HOW IT WORKS ---------- */
  .how-section { padding: 120px 0; background: var(--paper); position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
  .section-kicker {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-deep);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .section-title { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 20px; }
  .section-intro { font-size: 18px; color: var(--ink-soft); line-height: 1.6; }

  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 40px; left: 10%; right: 10%;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--ink-mute) 0, var(--ink-mute) 4px, transparent 4px, transparent 10px);
    opacity: 0.3;
    z-index: 0;
  }
  .step-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    z-index: 1;
    transition: transform .3s;
  }
  .step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
  .step-num {
    width: 48px; height: 48px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    margin-bottom: 24px;
  }
  .step-card:nth-child(1) .step-num { background: var(--accent); }
  .step-card:nth-child(2) .step-num { background: var(--sky); }
  .step-card:nth-child(3) .step-num { background: var(--mint); }
  .step-card:nth-child(4) .step-num { background: var(--ink); }
  .step-card h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
  .step-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

  /* ---------- COVERAGE ---------- */
  .coverage-section { padding: 120px 0; }
  .coverage-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
  .coverage-visual {
    aspect-ratio: 1;
    background: white;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
  }
  .coverage-visual svg { width: 100%; height: 100%; }

  .coverage-list { display: grid; gap: 4px; }
  .coverage-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    cursor: pointer;
    transition: padding-left .2s;
  }
  .coverage-item:hover { padding-left: 12px; }
  .coverage-item:last-child { border-bottom: none; }
  .coverage-num { font-family: 'Fraunces', serif; color: var(--ink-mute); font-size: 15px; font-style: italic; }
  .coverage-content h4 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 500; margin-bottom: 4px; }
  .coverage-content p { font-size: 14px; color: var(--ink-mute); }
  .coverage-arrow { color: var(--ink-mute); transition: transform .2s, color .2s; }
  .coverage-item:hover .coverage-arrow { transform: translateX(4px); color: var(--accent); }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials-section { padding: 120px 0; background: var(--paper); position: relative; overflow: hidden; }
  .testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(232,123,62,.05), transparent 60%);
  }

  .reviews-head {
    display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px;
    gap: 40px; flex-wrap: wrap;
  }
  .reviews-head .section-head { text-align: left; margin: 0; max-width: 600px; }
  .trust-box {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex; align-items: center; gap: 18px;
    min-width: 280px;
  }
  .trust-rating { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 400; line-height: 1; color: var(--ink); }
  .trust-rating span { color: var(--accent); font-size: 20px; vertical-align: top; }
  .trust-meta { font-size: 13px; color: var(--ink-mute); }
  .trust-meta strong { color: var(--ink); display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }

  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
  .testimonial {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    transition: all .3s;
  }
  .testimonial:hover { border-color: var(--ink-mute); transform: translateY(-4px); box-shadow: var(--shadow); }
  .testimonial.featured { background: var(--ink); color: white; border-color: var(--ink); }
  .testimonial.featured .t-author-name { color: white; }
  .testimonial.featured .t-meta { color: #94a3b8; }
  .testimonial.featured .t-body { color: #e2e8f0; }
  .testimonial.featured .quote-mark { color: var(--accent); }
  .quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 60px;
    line-height: 0.5;
    color: var(--accent);
    margin-bottom: 12px;
    font-style: italic;
  }
  .t-body { font-size: 16px; line-height: 1.6; margin-bottom: 24px; color: var(--ink-soft); }
  .t-author { display: flex; align-items: center; gap: 14px; }
  .t-author .av {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 18px; font-weight: 500;
  }
  .t-author-name { font-weight: 600; color: var(--ink); font-size: 15px; }
  .t-meta { font-size: 13px; color: var(--ink-mute); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
  .t-verified { color: var(--mint); display: inline-flex; align-items: center; gap: 4px; font-weight: 500; }
  .t-verified svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  /* ---------- CTA BANNER ---------- */
  .cta-section { padding: 120px 0; }
  .cta-banner {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    top: -120px;
    right: -120px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .cta-banner::after {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    top: -40px;
    right: -40px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .cta-banner h2 { font-size: clamp(36px, 4.5vw, 52px); margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
  .cta-banner p { font-size: 17px; color: var(--ink-soft); max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }

  /* ---------- FAQ ---------- */
  .faq-section { padding: 120px 0; background: var(--paper); border-top: 1px solid var(--line); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  .faq-grid .section-head { text-align: left; margin: 0; }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  .faq-item summary {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    list-style: none;
    color: var(--ink);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--ink-mute);
    transition: transform .2s;
  }
  .faq-item[open] summary::after { content: '–'; color: var(--accent); }
  .faq-body { padding-top: 14px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ink);
    color: #cbd5e1;
    padding: 80px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .logo { color: var(--paper); margin-bottom: 20px; }
  .footer-brand .logo-mark { background: var(--paper); color: var(--ink); }
  .footer-brand p { font-size: 14px; line-height: 1.6; max-width: 340px; color: #94a3b8; }
  .footer-col h5 { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500; color: white; margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: #94a3b8; text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 16px;
  }
  .disclaimer {
    font-size: 12px;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
    line-height: 1.6;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .hero-grid, .coverage-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
    .stats-grid, .steps-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .steps-grid::before { display: none; }
    .cta-banner { padding: 48px 28px; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .stats-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .item-grid { grid-template-columns: repeat(2, 1fr); }
    .topbar-left { display: none; }
  }

/* ---------- INNER PAGE HEADER ---------- */
.page-header {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,123,62,.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 32px;
  position: relative;
}
.breadcrumbs a { color: var(--ink-mute); text-decoration: none; transition: color .2s; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--ink); }

.page-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 24px;
  position: relative;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-deep);
}
.page-header .lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.6;
  position: relative;
}

/* ---------- PAGE SECTIONS ---------- */
.page-section { padding: 100px 0; }
.page-section + .page-section { border-top: 1px solid var(--line); }

.prose {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-top: 56px;
  margin-bottom: 20px;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; font-weight: 300; color: var(--accent-deep); }
.prose h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 10px;
}
.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 24px 20px; padding: 0; }
.prose li { margin-bottom: 10px; line-height: 1.6; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------- COVERAGE PAGE SPECIFIC ---------- */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.region-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: all .3s;
}
.region-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.region-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.region-card .count {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--accent-deep);
  font-style: italic;
  margin-bottom: 14px;
}
.region-card ul { list-style: none; padding: 0; margin: 0; }
.region-card li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.region-card li:first-child { border-top: none; padding-top: 0; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.location-cell {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.location-cell:nth-child(3n) { border-right: none; }
.location-cell:nth-last-child(-n+3) { border-bottom: none; }
.location-cell h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.location-cell h4 svg {
  width: 18px; height: 18px;
  stroke: var(--accent); stroke-width: 1.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.location-cell p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ---------- REVIEWS PAGE ---------- */
.reviews-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  margin-bottom: 56px;
}
.review-score-big {
  text-align: center;
}
.review-score-big .num {
  font-family: 'Fraunces', serif;
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.review-score-big .num span { color: var(--accent); font-size: 40px; vertical-align: top; }
.review-score-big .label {
  font-size: 14px;
  color: var(--ink-mute);
}
.review-score-big .label strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

.rating-breakdown { display: flex; flex-direction: column; gap: 10px; }
.rating-row { display: grid; grid-template-columns: 60px 1fr 50px; gap: 14px; align-items: center; font-size: 13px; color: var(--ink-soft); }
.rating-bar { height: 6px; background: var(--cream); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.rating-row .count { text-align: right; color: var(--ink-mute); font-variant-numeric: tabular-nums; }

.review-filters {
  display: flex; gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  background: white;
  cursor: pointer;
  transition: all .15s;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active { background: var(--ink); color: white; border-color: var(--ink); }

.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.review-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}
.review-stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
.review-date { font-size: 13px; color: var(--ink-mute); }
.review-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.review-body { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 20px; }
.review-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-author .av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 14px; font-weight: 500;
}
.review-author .name { font-weight: 600; color: var(--ink); }

/* ---------- FAQ PAGE ---------- */
.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.faq-cat {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  background: white;
  cursor: pointer;
  transition: all .15s;
}
.faq-cat:hover { border-color: var(--ink); }
.faq-cat.active { background: var(--ink); color: white; border-color: var(--ink); }

.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

/* ---------- ABOUT PAGE ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.value-card .num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-member {
  text-align: left;
}
.team-portrait {
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.team-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,123,62,.08), rgba(37,99,168,.08));
}
.team-portrait .initials {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 96px;
  font-weight: 300;
  color: var(--ink-soft);
  opacity: 0.4;
  letter-spacing: -0.03em;
}
.team-member .name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.team-member .role {
  font-size: 14px;
  color: var(--accent-deep);
  font-style: italic;
  margin-bottom: 12px;
}
.team-member .bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.timeline {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  max-width: 800px;
}
.timeline-year {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--accent-deep);
  letter-spacing: -0.02em;
  padding-top: 24px;
}
.timeline-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.timeline-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.timeline-item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- HOW IT WORKS PAGE ---------- */
.how-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  max-width: 900px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.how-detail:first-child { border-top: none; padding-top: 0; }
.how-detail-num {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.how-detail h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.how-detail .when {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
  font-weight: 500;
}
.how-detail .body {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.how-detail .body p { margin-bottom: 14px; }
.how-detail-aside {
  background: var(--cream);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 20px;
}
.how-detail-aside .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.how-detail-aside p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 960px) {
  .region-grid, .team-grid, .value-grid, .reviews-list { grid-template-columns: 1fr 1fr; }
  .reviews-summary { grid-template-columns: 1fr; gap: 24px; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .location-cell:nth-child(2n) { border-right: none; }
  .how-detail { grid-template-columns: 1fr; gap: 16px; }
  .how-detail-num { font-size: 48px; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline-year { padding-top: 16px; font-size: 26px; }
}
@media (max-width: 600px) {
  .region-grid, .team-grid, .value-grid, .reviews-list { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-cell { border-right: none !important; }
  .location-cell:not(:last-child) { border-bottom: 1px solid var(--line); }
}
