:root {
  --blue-600: #0078D4;
  --blue-700: #005A9E;
  --blue-500: #2B88D8;
  --blue-50:  #EFF6FC;
  --navy:     #0A2540;
  --ink:      #111827;
  --body:     #374151;
  --muted:    #6B7280;
  --line:     #E5E7EB;
  --bg:       #FFFFFF;
  --bg-soft:  #F7F9FC;
  --green:    #10B981;
  --amber:    #F59E0B;
  --red:      #EF4444;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.08);
  --shadow-md: 0 4px 8px rgba(16,24,40,.08), 0 12px 24px rgba(16,24,40,.06);
  --shadow-lg: 0 12px 32px rgba(0,120,212,.18), 0 24px 48px rgba(10,37,64,.12);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 38px; width: auto; display: block; }
footer .brand-logo { height: 34px; margin-bottom: 12px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--blue-600); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--blue-600); color: white; box-shadow: 0 1px 2px rgba(0,120,212,.4); }
.btn-primary:hover { background: var(--blue-700); color: white; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,120,212,.3); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--blue-600); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
@media (max-width: 820px) { .nav-links .hide-mobile { display: none; } }

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(0,120,212,.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(43,136,216,.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--blue-50); color: var(--blue-700);
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  margin-bottom: 20px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-600); }
h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05; letter-spacing: -.03em;
  color: var(--ink); font-weight: 800;
  margin-bottom: 20px;
}
h1 .accent { color: var(--blue-600); }
.hero p.lede {
  font-size: 19px; color: var(--muted);
  max-width: 540px; margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-row { display: flex; align-items: center; gap: 22px; margin-top: 28px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.trust-row .check { display: inline-flex; align-items: center; gap: 6px; }
.check-icon { width: 16px; height: 16px; border-radius: 50%; background: var(--green); display: inline-grid; place-items: center; color: white; font-size: 10px; font-weight: 800; }

/* UPLOAD CARD */
.upload-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
}
.upload-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,120,212,.35), transparent 40%);
  z-index: -1; filter: blur(20px); opacity: .6;
}
.upload-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.upload-head .pill { font-size: 12px; padding: 4px 10px; background: #ECFDF5; color: #047857; border-radius: var(--radius-pill); font-weight: 600; }
.upload-zone {
  border: 2px dashed #BFDBFE;
  border-radius: var(--radius);
  padding: 44px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--blue-50), white);
  transition: border-color .2s, background .2s;
}
.upload-zone:hover { border-color: var(--blue-500); background: linear-gradient(180deg, #E4F0FA, white); }
.upload-icon { width: 56px; height: 56px; margin: 0 auto 14px; }
.upload-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.upload-sub { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.upload-btn {
  display: inline-block; padding: 10px 22px; border-radius: var(--radius-pill);
  background: var(--blue-600); color: white; font-weight: 600; font-size: 14px;
}
.upload-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; font-size: 13px; color: var(--muted); }
.upload-meta strong { color: var(--ink); font-weight: 600; }

/* Clickable upload-card trigger (button reset) */
.upload-card-trigger {
  display: block; width: 100%; text-align: left;
  font: inherit; color: inherit;
  cursor: pointer; border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.upload-card-trigger:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,120,212,.22), 0 28px 56px rgba(10,37,64,.14); }
.upload-card-trigger:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 4px; }
.upload-card-trigger .upload-btn { pointer-events: none; }

/* Nav signup link */
.signup-link {
  color: var(--blue-600) !important; font-weight: 600;
}
.signup-link:hover { color: var(--blue-700) !important; }

/* Final-CTA action group + light ghost on dark gradient */
.final-actions { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-ghost-light { color: #E7F1FB; }
.btn-ghost-light:hover { color: white; }

/* Live FileTeam upload widget mount (inside modal) */
[fileteam] {
  display: grid;
  justify-content: center;
  --fileteam-uploader-frame-color: var(--blue-500);
  min-height: 280px;
  width: 100%;
}
[fileteam] .component-uploader,
[fileteam] .component-uploader--open { max-width: 100%; width: 100%; }
[fileteam] .action-bar { text-align: center; }
[fileteam] main:first-of-type { text-align: center; }
.fileteam-mount { width: 100%; }

/* MODAL */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: flex-start; justify-content: center;
  padding: 56px 20px;
  overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 37, 64, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-panel {
  position: relative; z-index: 1;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(10,37,64,.32);
  max-width: 780px; width: 100%;
  padding: 36px 28px 28px;
  animation: modal-in .22s ease-out;
}
.modal-panel iframe[fileteam] { max-width: 100% !important; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 24px; line-height: 1; color: var(--muted);
  display: grid; place-items: center;
}
.modal-close:hover { background: var(--bg-soft); color: var(--ink); }
.modal-head { text-align: center; margin-bottom: 20px; }
.modal-head h2 { color: var(--ink); font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.modal-head p { color: var(--muted); font-size: 14px; }
.modal-foot { text-align: center; color: var(--muted); font-size: 13px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.modal-foot a { color: var(--blue-600); font-weight: 600; }
@media (max-width: 520px) {
  .modal { padding: 20px 12px; }
  .modal-panel { padding: 28px 18px 20px; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 56px 0 72px; }
}

/* BREADCRUMB */
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--blue-600); }
.crumb .sep { margin: 0 6px; color: #D1D5DB; }

/* PILLARS */
.pillars { padding: 80px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 40px); color: var(--ink); letter-spacing: -.02em; font-weight: 800; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 17px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 20px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-600); }
.pillar h3 { color: var(--ink); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .pillars-grid { grid-template-columns: 1fr; } }

/* WHY / BENEFITS */
.why { padding: 96px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
.benefit .ico { width: 40px; height: 40px; border-radius: 8px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; margin-bottom: 14px; }
.benefit h4 { color: var(--ink); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.benefit p { color: var(--muted); font-size: 14px; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }

/* INDUSTRIES (home) */
.industries { padding: 96px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ind-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.ind-tab { padding: 10px 20px; border-radius: var(--radius-pill); background: white; border: 1px solid var(--line); font-weight: 600; color: var(--ink); font-size: 14px; }
.ind-tab.active { background: var(--blue-600); color: white; border-color: var(--blue-600); }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 10px; transition: transform .2s, box-shadow .2s, border-color .2s; text-decoration: none; color: var(--ink); }
.ind-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--blue-500); color: var(--ink); }
.ind-card .ind-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; }
.ind-card .ind-icon svg { width: 24px; height: 24px; }
.ind-card .label { font-weight: 700; font-size: 15px; }
.ind-card .sub { color: var(--muted); font-size: 13px; }
@media (max-width: 820px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }

/* HOW IT WORKS */
.how { padding: 96px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; padding: 24px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--blue-600); color: white; display: grid; place-items: center; font-weight: 800; font-size: 18px; margin: 0 auto 18px; box-shadow: 0 6px 16px rgba(0,120,212,.35); }
.step h3 { color: var(--ink); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; max-width: 300px; margin: 0 auto; }
@media (max-width: 820px) { .how-grid { grid-template-columns: 1fr; } }

/* TRUST */
.trust { padding: 80px 0; background: var(--navy); color: white; }
.trust .section-head h2 { color: white; }
.trust .section-head p { color: #A9B8C9; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px; }
.trust-card .stat { font-size: 36px; font-weight: 800; color: white; letter-spacing: -.02em; margin-bottom: 4px; }
.trust-card .stat-label { color: #A9B8C9; font-size: 14px; }
.trust-card .desc { color: #D3DCE6; font-size: 15px; margin-top: 12px; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }

/* FINAL CTA */
.final { padding: 80px 0; background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); color: white; text-align: center; }
.final h2 { color: white; font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; margin-bottom: 14px; letter-spacing: -.02em; }
.final p { color: #CDE7F8; font-size: 18px; margin-bottom: 28px; }
.final .btn-primary { background: white; color: var(--blue-700); }
.final .btn-primary:hover { background: #F3F8FC; color: var(--blue-700); }

/* FOOTER */
footer { padding: 48px 0 32px; background: white; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.foot-col h5 { color: var(--ink); font-size: 14px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em; }
.foot-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.foot-col a:hover { color: var(--blue-600); }
.foot-col p.tag { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 280px; }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 13px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ============ INDUSTRY PAGES ============ */
.industry-hero { padding: 64px 0 80px; }
.industry-hero .eyebrow { background: var(--blue-50); color: var(--blue-700); }

/* PAIN POINTS */
.pain { padding: 96px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pain-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; position: relative; }
.pain-card .pain-ico { width: 40px; height: 40px; border-radius: 8px; background: #FEF2F2; color: var(--red); display: grid; place-items: center; margin-bottom: 14px; }
.pain-card h4 { color: var(--ink); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pain-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pain-grid { grid-template-columns: 1fr; } }

/* USE CASES */
.usecases { padding: 96px 0; }
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.usecase-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: transform .2s, box-shadow .2s; }
.usecase-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.usecase-card .uc-ico { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; margin-bottom: 16px; }
.usecase-card h4 { color: var(--ink); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.usecase-card p { color: var(--muted); font-size: 14px; }
@media (max-width: 820px) { .usecase-grid { grid-template-columns: 1fr; } }

/* FILE TYPES */
.filetypes { padding: 64px 0 96px; }
.filetypes .section-head { margin-bottom: 32px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--radius-pill); background: white; border: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: 14px; }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-600); }

/* ============================================================
   SUB-PAGE HEADER (legal / contact)
   ============================================================ */
.page-head { padding: 72px 0 44px; text-align: center; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-head .crumb { justify-content: center; margin-bottom: 16px; }
.page-head h1 { font-size: clamp(30px, 5vw, 44px); color: var(--ink); letter-spacing: -.02em; line-height: 1.1; }
.page-head p { color: var(--muted); margin-top: 14px; max-width: 620px; margin-left: auto; margin-right: auto; }
.page-head .eff { font-size: 13px; color: var(--muted); margin-top: 18px; }

/* ============================================================
   LEGAL PROSE (terms / privacy)
   ============================================================ */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 84px; }
.legal h2 { font-size: 22px; color: var(--ink); margin: 42px 0 12px; letter-spacing: -.01em; scroll-margin-top: 90px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 17px; color: var(--ink); margin: 26px 0 8px; }
.legal p { margin: 0 0 14px; color: var(--body); }
.legal ul, .legal ol { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin: 7px 0; color: var(--body); }
.legal a { text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal .toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 44px; }
.legal .toc h4 { color: var(--muted); margin-bottom: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.legal .toc ol { columns: 2; column-gap: 36px; font-size: 14px; padding-left: 18px; margin: 0; }
.legal .toc a { text-decoration: none; color: var(--blue-600); }
.legal .toc a:hover { text-decoration: underline; }
@media (max-width: 620px) { .legal .toc ol { columns: 1; } }
.legal .lead { font-size: 17px; color: var(--body); margin-bottom: 8px; }
.legal .callout { background: var(--blue-50); border: 1px solid #d7e8f7; border-radius: var(--radius); padding: 16px 18px; font-size: 14px; color: var(--navy); margin: 8px 0 24px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 56px 24px 84px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; max-width: 1000px; margin: 0 auto; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-info h2 { font-size: 24px; color: var(--ink); margin-bottom: 14px; letter-spacing: -.01em; }
.contact-info > p { color: var(--body); margin-bottom: 26px; }
.ci-item { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 20px; }
.ci-item .ci-ico { color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }
.ci-item strong { color: var(--ink); display: block; font-size: 15px; margin-bottom: 2px; }
.ci-item span, .ci-item a { color: var(--muted); font-size: 14px; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; font-family: inherit; font-size: 15px; color: var(--ink); padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(43,136,216,.15); }
.field textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { width: 100%; justify-content: center; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.ft-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 24px rgba(16,24,40,.12); padding: 16px 24px; }
.ft-consent[hidden] { display: none; }
.ft-consent-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 24px; justify-content: space-between; flex-wrap: wrap; }
.ft-consent-text { font-size: 14px; color: var(--body); margin: 0; flex: 1 1 440px; }
.ft-consent-text a { text-decoration: underline; }
.ft-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.ft-consent-actions .btn { padding: 10px 22px; }
@media (max-width: 560px) {
  .ft-consent-inner { gap: 12px; }
  .ft-consent-actions { width: 100%; }
  .ft-consent-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   FAQ (programmatic pages)
   ============================================================ */
.faq { padding: 72px 0; background: var(--bg-soft); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--ink); font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--blue-600); font-weight: 400; line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-a { padding: 0 22px 20px; }
.faq-a p { color: var(--body); margin: 0; }

/* ============================================================
   RELATED links (programmatic pages)
   ============================================================ */
.related { padding: 64px 0; }
.related-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 900px; margin: 0 auto; }
.related-link { display: inline-flex; align-items: center; padding: 12px 20px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-weight: 600; font-size: 15px; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s, color .15s; }
.related-link:hover { border-color: var(--blue-500); color: var(--blue-700); box-shadow: var(--shadow-sm); }
