/* ---------------------------------------------------------------
   BoundPro marketing site
   --------------------------------------------------------------- */

/* Tokens */
:root {
  --navy-900: #0a1628;
  --navy-800: #0f1d33;
  --navy-700: #18283f;
  --navy-50: #f1f5fb;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-50: #fffbeb;
  --ink: #0f172a;
  --ink-2: #1f2937;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --green-700: #047857;
  --green-600: #059669;
  --green-50: #ecfdf5;
  --rose-700: #be123c;
  --rose-600: #e11d48;
  --rose-50: #fff1f2;
  --sky-700: #0369a1;
  --sky-50: #f0f9ff;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px 0 rgb(15 23 42 / 0.05);
  --shadow-md: 0 4px 16px -4px rgb(15 23 42 / 0.08), 0 2px 6px -2px rgb(15 23 42 / 0.04);
  --shadow-lg: 0 24px 60px -20px rgb(15 23 42 / 0.18), 0 8px 24px -8px rgb(15 23 42 / 0.06);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1200px;
  --container-sm: 960px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.75rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; }
p { margin: 0; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: var(--container-sm); }

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* Top nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle:hover { background: var(--slate-100); }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 16px 24px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav.open .nav-links a { padding: 10px 12px; border-radius: 8px; }
  .nav.open .nav-links a:hover { background: var(--slate-50); }
  .nav-cta .btn-ghost { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.06s, background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-800); }
.btn-primary:active { transform: translateY(1px); }
.btn-amber {
  background: var(--amber-600);
  color: var(--white);
}
.btn-amber:hover { background: var(--amber-700); }
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--slate-300);
}
.btn-secondary:hover { background: var(--slate-50); border-color: var(--slate-400); }
.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  padding: 10px 14px;
}
.btn-ghost:hover { color: var(--ink); background: var(--slate-100); }
.btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.btn-arrow svg { width: 16px; height: 16px; transition: transform 0.15s; }
.btn-arrow:hover svg { transform: translateX(2px); }

/* Hero */
.hero {
  position: relative;
  padding: 112px 0 72px;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 70%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -200px 0 auto 0;
  height: 600px;
  background: radial-gradient(60% 50% at 50% 0%, rgba(217, 119, 6, 0.10), transparent 70%),
              radial-gradient(80% 60% at 70% 20%, rgba(10, 22, 40, 0.05), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy-50);
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid #dbe5f3;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18);
}
.hero h1 { margin-top: 24px; }
.hero h1 .accent { color: var(--amber-700); }
.hero-sub {
  margin: 24px auto 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate-600);
}
.hero-ctas { margin-top: 36px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--slate-500);
}
.hero-frame {
  position: relative;
  margin: 64px auto 0;
  max-width: 1140px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}
.hero-frame img {
  border-radius: 14px;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--slate-200);
}

/* Trust bar */
.trustbar {
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 28px 0;
}
.trustbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-size: 13px;
  color: var(--slate-600);
}
.trustbar-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.trustbar-item svg { width: 16px; height: 16px; stroke: var(--navy-700); }
.trustbar-divider { width: 1px; height: 16px; background: var(--slate-300); }
@media (max-width: 640px) { .trustbar-divider { display: none; } }

/* Section heading */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-700);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p {
  margin-top: 16px;
  color: var(--slate-600);
  font-size: 17px;
  line-height: 1.55;
}
.section-head.left { text-align: left; margin-left: 0; }

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.feature-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-50);
  color: var(--navy-700);
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.feature-card h3 { font-size: 17px; }
.feature-card p {
  margin-top: 10px;
  color: var(--slate-600);
  font-size: 14.5px;
  line-height: 1.55;
}
.feature-card a {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-700);
}
.feature-card a:hover { color: var(--amber-700); }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
}
.step h3 { margin-top: 16px; font-size: 17px; }
.step p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.55;
}
.step-image {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
}

/* Comparison teaser */
.compare-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.compare-cta::before {
  content: "";
  position: absolute;
  inset: -100px -100px auto auto;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
  pointer-events: none;
}
.compare-cta h2 { color: var(--white); }
.compare-cta p { color: #cbd5e1; margin-top: 16px; font-size: 16.5px; }
.compare-cta .compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.compare-cta .compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #e2e8f0;
}
.compare-cta .compare-list svg { width: 18px; height: 18px; color: var(--amber-500); flex-shrink: 0; }
.compare-cta .compare-buttons { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .compare-cta { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
}

/* Pricing teaser tiers */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.18s, transform 0.18s;
}
.pricing-card.featured {
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
@media (max-width: 960px) { .pricing-card.featured { transform: none; } }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-600);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.pricing-tier { font-size: 14px; font-weight: 600; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-price { margin-top: 12px; display: flex; align-items: baseline; gap: 4px; }
.pricing-price .amount { font-size: 40px; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); }
.pricing-price .period { font-size: 14px; color: var(--slate-500); }
.pricing-tag { margin-top: 10px; font-size: 14px; color: var(--slate-600); }
.pricing-features {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--slate-200);
  display: grid;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.pricing-features svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--green-600);
  margin-top: 3px;
}
.pricing-cta { margin-top: 28px; }
.pricing-cta .btn { width: 100%; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-quote { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
.testimonial-author { margin-top: 18px; font-size: 13px; color: var(--slate-500); display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px;
}
.testimonial-author strong { color: var(--ink); font-weight: 600; }

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 96px 0;
  background:
    radial-gradient(50% 80% at 50% 100%, rgba(217, 119, 6, 0.18), transparent 65%),
    var(--navy-900);
  color: var(--white);
}
.final-cta h2 { color: var(--white); }
.final-cta p { margin-top: 18px; color: #cbd5e1; font-size: 17px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta .hero-ctas { margin-top: 32px; }

/* Footer */
.footer {
  background: var(--navy-900);
  color: #94a3b8;
  padding: 64px 0 28px;
}
.final-cta + .footer { padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 28px; filter: invert(1) brightness(1.2); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.55; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: #cbd5e1; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #94a3b8;
}

/* Inline icons (svg utility) */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }

/* Generic page header (sub-pages) */
.page-hero {
  padding: 96px 0 56px;
  background: linear-gradient(180deg, #fbfcfe, #ffffff);
  border-bottom: 1px solid var(--slate-200);
}
.page-hero .container { text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
.page-hero p {
  margin: 20px auto 0;
  max-width: 680px;
  font-size: 17px;
  color: var(--slate-600);
}

/* Features deep-dive */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--slate-200);
}
.feature-block:last-child { border-bottom: 0; }
.feature-block.flip { grid-template-columns: 1.15fr 1fr; }
.feature-block.flip .feature-text { order: 2; }
.feature-block.flip .feature-visual { order: 1; }
@media (max-width: 960px) {
  .feature-block, .feature-block.flip { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .feature-block.flip .feature-text, .feature-block.flip .feature-visual { order: initial; }
}
.feature-text h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); }
.feature-text p { margin-top: 16px; font-size: 16px; color: var(--slate-600); line-height: 1.6; }
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.feature-list svg { width: 18px; height: 18px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
.feature-visual {
  padding: 12px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), transparent);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
}
.feature-visual img { border-radius: 10px; border: 1px solid var(--slate-200); }

/* Comparison table */
.compare-table-wrap {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 13.5px;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
  vertical-align: middle;
}
.compare-table thead th {
  background: var(--slate-50);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-600);
  position: sticky;
  top: 0;
  z-index: 1;
  white-space: nowrap;
}
.compare-table thead th.brand-col {
  text-align: center;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13.5px;
  font-weight: 700;
}
.compare-table thead th.brand-col.us {
  background: var(--navy-900);
  color: var(--white);
}
.compare-table thead th.brand-col .small {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--slate-500);
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.compare-table thead th.brand-col.us .small { color: #cbd5e1; }
.compare-table tbody td { color: var(--ink-2); font-size: 13.5px; }
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.compare-table tbody td.cell-center { text-align: center; }
.compare-table tbody tr:nth-child(odd) td { background: rgba(248, 250, 252, 0.5); }
.compare-table tbody tr:nth-child(odd) td.us-col { background: rgba(15, 23, 42, 0.04); }
.compare-table tbody td.us-col {
  background: rgba(15, 23, 42, 0.025);
  border-left: 1px solid rgba(15, 23, 42, 0.06);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.cell-yes svg { color: var(--green-600); width: 18px; height: 18px; }
.cell-no svg { color: var(--rose-600); width: 18px; height: 18px; opacity: 0.6; }
.cell-partial { color: var(--amber-700); font-weight: 600; }
.cell-text { font-size: 13px; color: var(--slate-600); }
sup.fn { color: var(--navy-700); font-weight: 600; font-size: 10.5px; padding-left: 2px; }
sup.fn a { color: inherit; text-decoration: none; }
sup.fn a:hover { text-decoration: underline; }

.compare-narrative h3 {
  font-size: 1.1rem;
  margin-top: 32px;
}
.compare-narrative p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate-700);
}

.footnotes {
  margin-top: 40px;
  padding: 24px;
  background: var(--slate-50);
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  font-size: 13px;
  color: var(--slate-600);
}
.footnotes h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-700);
  margin-bottom: 12px;
}
.footnotes ol { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.footnotes a { color: var(--navy-700); text-decoration: underline; text-decoration-color: rgba(10, 22, 40, 0.25); }
.footnotes a:hover { text-decoration-color: var(--navy-900); }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--slate-400);
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; color: var(--amber-700); }
.faq-item .faq-body {
  padding: 0 22px 22px;
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-grid h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); }
.about-grid p { margin-top: 16px; font-size: 16px; color: var(--slate-600); line-height: 1.7; }
.about-side {
  padding: 28px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
}
.about-side h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-600); }
.about-side ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 14px; }
.about-side li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink-2); }
.about-side li svg { width: 18px; height: 18px; color: var(--amber-700); flex-shrink: 0; margin-top: 3px; }

/* Utility */
.text-muted { color: var(--slate-500); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-12 { margin-bottom: 48px; }

/* Visually hidden (a11y) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print-tidy */
@media print {
  .nav, .footer, .final-cta { display: none; }
}
