:root {
  --ink: #0f172a;
  --ink-soft: #475569;
  --muted: #94a3b8;
  --paper: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: #eff6ff;
  --sky: #0ea5e9;
  --teal: #14b8a6;
  --teal-soft: #f0fdfa;
  --emerald: #10b981;
  --emerald-soft: #ecfdf5;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --font-display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-brand: "Bricolage Grotesque", var(--font-body);
  --max: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--primary); }
.sm-break { display: none; }
@media (max-width: 640px) { .sm-break { display: block; } }

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.3s ease;
}
.site-header__inner,
.site-footer__inner,
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: 0.65rem 0;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.brand:hover { transform: scale(0.96); color: inherit; }
.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  background-image: url('/favicon.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}
.brand-logo--sm {
  width: 24px;
  height: 24px;
  border-radius: 0.35rem;
}
.brand-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(to right, #0f172a, #334155);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.01em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
}
.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--surface-soft); color: var(--ink); }

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-0.5px);
}
.btn-nav {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  border-radius: 0.6rem;
}
.btn-nav svg {
  transition: transform 0.2s ease;
}
.btn-nav:hover svg {
  transform: translate(0.5px, -0.5px);
}

/* CTA button (hero main button) */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 1rem;
  padding: 0.85rem 1.75rem;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(to right, #2563eb, #0ea5e9);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.4);
  color: white;
}
.btn-cta svg:last-child {
  transition: transform 0.2s ease;
}
.btn-cta:hover svg:last-child {
  transform: translateX(4px);
}
.btn-icon-svg {
  opacity: 0.85;
  transition: transform 0.2s ease;
}
.btn-cta:hover .btn-icon-svg {
  transform: scale(1.15);
}

/* ==================== LANDING LAYOUT ==================== */
.landing-main {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Background blobs */
.landing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.landing-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.landing-bg__blob--blue {
  width: 400px;
  height: 400px;
  left: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.10) 0%, transparent 70%);
}
.landing-bg__blob--teal {
  width: 450px;
  height: 450px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.10) 0%, rgba(20, 184, 166, 0.10) 50%, transparent 70%);
}
.landing-bg__blob--center {
  width: 600px;
  height: 180px;
  left: 50%;
  top: 25%;
  transform: translateX(-50%);
  background: rgba(37, 99, 235, 0.04);
  filter: blur(120px);
  border-radius: 50%;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0 1.5rem;
  flex: 1 1 auto;
}
@media (min-width: 1024px) {
  .hero { padding: 4rem 0 3.5rem; }
}
.hero__center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

/* Reveal animation */
.hero--reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero--reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow pill */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.05);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
}
.hero__eyebrow svg { opacity: 0.8; }

/* Hero h1 */
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
@media (min-width: 640px) {
  .hero h1 { font-size: clamp(2.25rem, 4.5vw, 3.15rem); }
}

/* Gradient highlight */
.hero__highlight {
  background: linear-gradient(to right, #2563eb, #0ea5e9, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Lead text */
.hero p.lead {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.75;
}
@media (min-width: 640px) {
  .hero p.lead { font-size: 1rem; }
}

/* Hero actions */
.hero__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

/* Trust note */
.hero__trust {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

/* ==================== SECTION ==================== */
.section { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section--compact {
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ==================== AUDIENCE GRID ==================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

/* ==================== AUDIENCE CARD ==================== */
.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 22rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.audience-card--blue {
  border: 1px solid rgba(37, 99, 235, 0.10);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.audience-card--teal {
  border: 1px solid rgba(20, 184, 166, 0.10);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.audience-card:hover {
  transform: translateY(-4px);
  color: inherit;
}
.audience-card--blue:hover {
  border-color: rgba(37, 99, 235, 0.30);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}
.audience-card--teal:hover {
  border-color: rgba(20, 184, 166, 0.30);
  box-shadow: 0 12px 32px rgba(20, 184, 166, 0.08);
}

/* Card reveal animation */
.card--reveal {
  opacity: 0;
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}
.card--reveal-left { transform: translateX(-32px); }
.card--reveal-right { transform: translateX(32px); }
.card--reveal.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Hover glow blob */
.card-hover-glow {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.3s ease;
}
.audience-card:hover .card-hover-glow { opacity: 0.10; }
.card-hover-glow--blue { background: #2563eb; }
.card-hover-glow--teal { background: #14b8a6; }

/* Card top row */
.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.card-identity {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-left: 0.75rem;
}
.card-badge {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid;
}
.card-badge--blue {
  background: rgba(37, 99, 235, 0.10);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.15);
}
.card-badge--teal {
  background: rgba(20, 184, 166, 0.10);
  color: #0d9488;
  border-color: rgba(20, 184, 166, 0.15);
}

/* Card icon */
.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.card-icon-wrap--blue {
  background: rgba(37, 99, 235, 0.10);
  color: #2563eb;
}
.card-icon-wrap--teal {
  background: rgba(20, 184, 166, 0.10);
  color: #0d9488;
}
.audience-card--blue:hover .card-icon-wrap--blue {
  background: #2563eb;
  color: white;
  transform: scale(1.1);
}
.audience-card--teal:hover .card-icon-wrap--teal {
  background: #14b8a6;
  color: white;
  transform: scale(1.1);
}

/* Card title */
.card-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.35;
  color: #1e293b;
  transition: color 0.2s ease;
}
.audience-card:hover .card-title { color: var(--primary); }

/* Card description */
.card-desc {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.8rem, 1.1vw, 0.92rem);
  line-height: 1.65;
}

/* Card features grid */
.card-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.card-feature {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.card-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.10);
  color: #10b981;
}
.card-feature span:last-child {
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
}

/* Card footer */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}
.card-footer svg {
  transition: transform 0.2s ease;
}
.audience-card:hover .card-footer svg {
  transform: translateX(4px);
}

/* ==================== FOOTER ==================== */
.site-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(226, 232, 240, 0.4);
  padding: 2rem 0;
  background: rgba(241, 245, 249, 0.2);
  font-size: 0.82rem;
  color: var(--muted);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.footer-beian {
  font-weight: 400;
  letter-spacing: 0.01em;
}
.site-footer nav {
  display: flex;
  gap: 1.5rem;
}
.site-footer a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s ease;
}
.site-footer a:hover { color: var(--ink); }

/* ==================== MOBILE ==================== */
@media (max-width: 640px) {
  .hide-sm { display: none; }
  .hero { padding: 1.5rem 0 1rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero p.lead { font-size: 0.85rem; }
  .btn-cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
  }
  .hero__actions { justify-content: stretch; }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .audience-card {
    min-height: auto;
    padding: 1.25rem;
  }
  .card-features { grid-template-columns: 1fr; }
  .card-footer { font-size: 0.8rem; }
  .site-header__inner { height: 56px; padding: 0.5rem 0; }
  .brand-name { font-size: 0.95rem; }
  .brand-logo { width: 32px; height: 32px; }
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer nav { gap: 1rem; }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  .hero--reveal,
  .card--reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-cta:hover,
  .audience-card:hover,
  .card-icon-wrap {
    transform: none;
  }
}

/* ==================== BLOG PAGES (preserved) ==================== */
.page-hero {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--primary-soft);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  max-width: 16ch;
}
.page-hero p {
  margin: 0;
  max-width: 48ch;
  color: var(--ink-soft);
}
.prose {
  max-width: 68ch;
  padding-bottom: var(--space-3xl);
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose strong { color: var(--ink); }

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}
.blog-breadcrumb a { text-decoration: none; color: var(--ink-soft); }
.blog-breadcrumb a:hover { color: var(--primary); }
.blog-breadcrumb span[aria-hidden="true"] { opacity: 0.45; }

.blog-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 18ch;
  color: #0f172a;
}
.blog-hero h1 em {
  font-style: normal;
  color: var(--primary);
}
.blog-hero .lead {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.75;
}
.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.blog-featured {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5), #ffffff 50%, rgba(240, 253, 250, 0.5));
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.blog-featured:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.10);
  color: inherit;
}
.blog-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}
.blog-featured h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.3;
  color: #0f172a;
}
.blog-featured p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.7;
}
.blog-featured__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}
.blog-featured__read {
  margin-left: auto;
  color: var(--primary);
  font-weight: 700;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}
.blog-filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  background: white;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.blog-filters button:hover { border-color: rgba(37, 99, 235, 0.3); color: var(--primary); }
.blog-filters button.is-active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.blog-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  padding-bottom: var(--space-3xl);
}
.blog-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  color: inherit;
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.blog-card__cat {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}
.blog-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.45;
  color: #0f172a;
}
.blog-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}
.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.blog-card__tags span {
  padding: 0.2rem 0.5rem;
  border-radius: 0.45rem;
  background: var(--surface-soft);
  color: #475569;
  font-size: 0.75rem;
  font-weight: 600;
}
.blog-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.blog-card__foot strong {
  color: var(--primary);
  font-weight: 700;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.article-meta .tag {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  max-width: 65ch;
}

.cta-band {
  margin: clamp(2.5rem, 5vw, 4rem) auto;
  width: min(100% - 2rem, var(--max));
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1rem;
  background: var(--primary);
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0 0 0.4rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
.cta-band p { margin: 0; opacity: 0.88; max-width: 36ch; }
.cta-band .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: none;
}

@media (max-width: 720px) {
  .cta-band { flex-direction: column; align-items: stretch; text-align: center; }
  .page-hero h1 { max-width: none; }
}
