/* ==========================================================================
   Tagrio Marketing Site — Styles
   Design tokens per docs/brand-guidelines.md (mirrors public/index.html's
   :root tokens so the marketing site and product feel like one brand).
   ========================================================================== */

:root {
  --brand-navy: #0F172A;
  --brand-navy-2: #1E293B;
  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --gold: #D4A017;
  --gold-hover: #B8881F;
  --emerald: #059669;
  --paper: #FFFFFF;
  --bone: #F9FAFB;

  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;

  --err: #DC2626;
  --warn: #D97706;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12), 0 4px 8px rgba(15, 23, 42, 0.06);

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.75rem;

  --section-gap: 96px;
  --container-w: 1180px;
}

@media (max-width: 720px) {
  :root {
    --section-gap: 56px;
    --fs-2xl: 2rem;
    --fs-xl: 1.4rem;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--brand-navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }

/* Focus states — accessibility, never remove */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }

.btn-ghost { background: transparent; color: var(--brand-navy); border-color: var(--slate-300); }
.btn-ghost:hover { border-color: var(--brand-navy); }

.btn-ghost-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost-invert:hover { border-color: #fff; }

.btn-gold { background: var(--gold); color: var(--brand-navy); }
.btn-gold:hover { background: var(--gold-hover); }

.btn-lg { padding: 15px 30px; font-size: var(--fs-md); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 34px; height: 34px; }
.brand-word { font-weight: 800; font-size: var(--fs-lg); color: var(--brand-navy); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--slate-600);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-navy); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--paper);
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 96px;
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%);
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: float 16s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; top: -120px; right: -100px; background: var(--blue); }
.blob-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; background: var(--gold); opacity: 0.22; animation-delay: -6s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 24px) scale(1.06); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }

h1.hero-title {
  font-size: var(--fs-2xl);
  line-height: 1.12;
  font-weight: 800;
  color: var(--brand-navy);
}
h1.hero-title .accent { color: var(--blue); }

.hero-sub {
  margin-top: 20px;
  font-size: var(--fs-lg);
  color: var(--slate-600);
  max-width: 46ch;
  line-height: 1.55;
}
@media (max-width: 720px) { .hero-sub { font-size: var(--fs-md); } }

.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-mock {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--slate-200);
}
.mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bone);
  border-bottom: 1px solid var(--slate-200);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #FCA5A5; }
.mock-dot:nth-child(2) { background: #FCD34D; }
.mock-dot:nth-child(3) { background: #86EFAC; }
.mock-body { padding: 22px; display: grid; gap: 12px; }
.mock-tag-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.mock-tag-card .name { font-weight: 700; font-size: var(--fs-sm); }
.mock-tag-card .meta { font-size: var(--fs-xs); color: var(--slate-500); margin-top: 4px; }
.mock-tag-card .price-wrap { display: flex; align-items: center; gap: 8px; }
.mock-tag-card .price { font-weight: 800; color: var(--blue); transition: color 0.3s ease; }
.mock-tag-card .price.is-updating { color: var(--emerald); }
.updated-pill {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--emerald);
  padding: 3px 8px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-4px) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.updated-pill.is-shown { opacity: 1; transform: translateY(0) scale(1); }

.mock-bar { height: 10px; border-radius: 999px; background: var(--slate-100); overflow: hidden; }
.mock-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  border-radius: 999px;
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered entrance for hero mock children — driven by JS adding
   .is-visible to .hero-mock (via the shared reveal observer), which then
   cascades to each .mock-stagger child using its --d order variable. */
.mock-stagger {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--d, 1) * 90ms);
}
.hero-mock.is-visible .mock-stagger { opacity: 1; transform: translateY(0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Guest phone mockup (QR scan → menu → language switch) ---------- */
.tour-shot-phone { display: flex; align-items: center; justify-content: center; padding: 20px; }
.phone-frame {
  width: 140px;
  height: 280px;
  background: var(--brand-navy);
  border-radius: 26px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 14px;
  background: var(--brand-navy);
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
}

.phone-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.phone-state.is-active { opacity: 1; }

.phone-state-qr { justify-content: center; gap: 14px; padding: 20px; }
.qr-box { position: relative; width: 60px; height: 60px; }
.qr-svg { width: 100%; height: 100%; }
.qr-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
  top: 0;
  animation: qrScan 1.8s ease-in-out infinite;
}
@keyframes qrScan {
  0%, 100% { top: 0; opacity: 1; }
  50% { top: 96%; opacity: 0.6; }
}
.phone-hint { font-size: 9px; color: var(--slate-500); font-weight: 600; text-align: center; }

.phone-state-menu { padding: 16px 12px; gap: 8px; align-items: stretch; }
.phone-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.phone-menu-title { font-size: 11px; font-weight: 800; color: var(--brand-navy); }
.lang-pill {
  font-size: 9px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
  padding: 2px 7px;
  border-radius: 999px;
  transition: opacity 0.25s ease;
}
.lang-pill.is-fading { opacity: 0; }
.phone-menu-item {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--brand-navy);
  padding: 7px 8px;
  border-radius: 8px;
  background: var(--bone);
}
.phone-menu-item span:first-child { transition: opacity 0.25s ease; }
.phone-menu-item span:first-child.is-fading { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .qr-scan-line { animation: none; top: 50%; }
}

/* ---------- Template Editor mini demo (cycling element selection) ---------- */
.tour-shot-editor { display: flex; align-items: center; justify-content: center; padding: 22px; }
.editor-mock { width: 100%; max-width: 220px; }
.editor-canvas {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 40px 16px 20px;
  min-height: 96px;
}
.editor-el {
  position: relative;
  border-radius: 6px;
  padding: 3px 6px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.editor-el-badge {
  position: absolute;
  top: -14px; right: 10px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  padding: 2px 8px;
  border-radius: 999px;
}
.editor-el-title { font-size: 13px; font-weight: 700; color: var(--brand-navy); margin-bottom: 6px; }
.editor-el-price { font-size: 13px; font-weight: 800; color: var(--blue); }
.editor-el.is-selected {
  box-shadow: 0 0 0 2px var(--blue);
  background: rgba(37, 99, 235, 0.06);
}
.editor-el.is-selected::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1.5px dashed var(--blue);
  border-radius: 8px;
  pointer-events: none;
}
.editor-label {
  margin-top: 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}
.editor-label.is-fading { opacity: 0; }

/* ---------- Multi-Property Dashboard mini demo (active row sweep) ---------- */
.tour-shot-dash { display: flex; align-items: center; justify-content: center; padding: 22px; }
.dash-mock {
  width: 100%;
  max-width: 220px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 10px;
  display: grid;
  gap: 6px;
}
.dash-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.35s ease, transform 0.35s ease;
}
.dash-row.is-active { background: rgba(37, 99, 235, 0.08); transform: translateX(2px); }
.dash-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-300); flex-shrink: 0; transition: background 0.35s ease; }
.dash-row.is-active .dash-dot { background: var(--emerald); box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18); }
.dash-name { font-size: 10.5px; font-weight: 600; color: var(--brand-navy); flex-grow: 1; }
.dash-count { font-size: 9.5px; font-weight: 700; color: var(--slate-400); transition: color 0.35s ease; }
.dash-row.is-active .dash-count { color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  .editor-el, .editor-label, .dash-row, .dash-dot, .dash-count { transition: none; }
}

/* ---------- Section scaffolding ---------- */
.section { padding: var(--section-gap) 0; }
.section-bone { background: var(--bone); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: 12px;
}
.section-head h2 { font-size: var(--fs-xl); color: var(--brand-navy); }
.section-head p { margin-top: 14px; font-size: var(--fs-md); color: var(--slate-600); line-height: 1.6; }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 28px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--slate-600);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bone);
}
.trust-chip svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }

/* ---------- Problem / Solution ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 780px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { border-radius: var(--radius-lg); padding: 32px; }
.compare-card.old { background: var(--bone); border: 1px dashed var(--slate-300); }
.compare-card.new { background: var(--brand-navy); color: #fff; box-shadow: var(--shadow-lg); }
.compare-card h3 { font-size: var(--fs-lg); margin-bottom: 18px; }
.compare-card.old h3 { color: var(--slate-600); }
.compare-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.compare-list li { display: flex; gap: 10px; font-size: var(--fs-sm); line-height: 1.5; }
.compare-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.compare-card.old svg { color: var(--slate-400); }
.compare-card.new svg { color: var(--gold); }
.compare-card.new .price { color: var(--blue); }

/* ---------- Features grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--blue); }
.feature-card h3 { font-size: var(--fs-md); margin-bottom: 8px; }
.feature-card p { font-size: var(--fs-sm); color: var(--slate-600); line-height: 1.55; }

/* ---------- How it works ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.steps::before {
  content: "";
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 2px;
  background: var(--slate-200);
}
@media (max-width: 900px) { .steps::before { display: none; } }
.step { position: relative; text-align: center; }
@media (max-width: 900px) { .step { text-align: left; display: flex; gap: 16px; align-items: flex-start; } }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
@media (max-width: 900px) { .step-num { margin: 0; } }
.step h3 { font-size: var(--fs-md); margin-bottom: 8px; }
.step p { font-size: var(--fs-sm); color: var(--slate-600); }

/* ---------- Solutions split ---------- */
.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 780px) { .solutions-grid { grid-template-columns: 1fr; } }
.solution-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--slate-200);
  background: var(--paper);
}
.solution-card .tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.solution-card h3 { font-size: var(--fs-lg); margin-bottom: 10px; }
.solution-card p { color: var(--slate-600); font-size: var(--fs-sm); margin-bottom: 18px; line-height: 1.6; }
.solution-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.solution-list li { display: flex; gap: 8px; font-size: var(--fs-sm); color: var(--brand-navy); }
.solution-list svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; margin-top: 3px; }

/* ---------- Product tour ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .tour-grid { grid-template-columns: 1fr; } }
.tour-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm); }
.tour-shot {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bone), var(--slate-100));
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.tour-shot svg { width: 100%; height: 100%; color: var(--slate-300); }
.tour-caption { padding: 18px 20px; }
.tour-caption h3 { font-size: var(--fs-sm); margin-bottom: 4px; }
.tour-caption p { font-size: var(--fs-xs); color: var(--slate-500); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(-8px);
}
@media (max-width: 900px) { .price-card.featured { transform: none; } }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--brand-navy);
  font-size: var(--fs-xs); font-weight: 800;
  padding: 5px 14px; border-radius: 999px;
}
.price-card h3 { font-size: var(--fs-md); margin-bottom: 6px; }
.price-card .price-value { font-size: var(--fs-xl); font-weight: 800; margin: 12px 0 4px; }
.price-card .price-value span { font-size: var(--fs-sm); font-weight: 600; color: var(--slate-500); }
.price-card .price-desc { font-size: var(--fs-xs); color: var(--slate-500); margin-bottom: 20px; }
.price-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; flex-grow: 1; }
.price-list li { display: flex; gap: 8px; font-size: var(--fs-sm); }
.price-list svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--slate-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--paper);
  border: none;
  padding: 18px 22px;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--brand-navy);
  text-align: left;
  cursor: pointer;
}
.faq-q .plus { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.2s ease; color: var(--blue); }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; font-size: var(--fs-sm); color: var(--slate-600); line-height: 1.6; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- Final CTA banner ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
}
.final-cta h2 { font-size: var(--fs-xl); margin-bottom: 14px; }
.final-cta p { color: var(--slate-300); font-size: var(--fs-md); max-width: 50ch; margin: 0 auto 30px; }
.final-cta .hero-actions { justify-content: center; }

/* ---------- Contact / lead form ---------- */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: var(--fs-xl); margin-bottom: 14px; }
.contact-info p { color: var(--slate-600); font-size: var(--fs-md); line-height: 1.6; margin-bottom: 24px; }
.contact-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-points li { display: flex; gap: 12px; font-size: var(--fs-sm); }
.contact-points svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-tabs { display: flex; gap: 8px; margin-bottom: 24px; background: var(--bone); padding: 4px; border-radius: var(--radius-md); }
.form-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.form-tab.is-active { background: var(--paper); color: var(--brand-navy); box-shadow: var(--shadow-sm); }

.form-grid { display: grid; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row-2 { grid-template-columns: 1fr; } }
.field label { display: block; font-size: var(--fs-xs); font-weight: 700; color: var(--slate-600); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: var(--fs-sm);
  padding: 11px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--brand-navy);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-hidden { display: none; }
.form-note { font-size: var(--fs-xs); color: var(--slate-500); margin-top: 4px; }
.form-status { font-size: var(--fs-sm); font-weight: 600; margin-top: 14px; display: none; }
.form-status.is-success { display: block; color: var(--emerald); }
.form-status.is-error { display: block; color: var(--err); }

/* ---------- Footer ---------- */
footer { background: var(--brand-navy); color: var(--slate-300); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand svg { width: 28px; height: 28px; }
.footer-brand span { font-weight: 800; color: #fff; font-size: var(--fs-md); }
.footer-tagline { font-size: var(--fs-sm); color: var(--slate-400); max-width: 32ch; }
.footer-col h4 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-500); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; font-size: var(--fs-sm); color: var(--slate-300); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: var(--fs-xs);
  color: var(--slate-500);
}

/* ---------- Utility page (privacy/terms) ---------- */
.legal-body { max-width: 760px; margin: 0 auto; padding: 160px 24px 96px; line-height: 1.75; }
.legal-body h1 { font-size: var(--fs-xl); margin-bottom: 8px; }
.legal-body .updated { font-size: var(--fs-xs); color: var(--slate-500); margin-bottom: 40px; }
.legal-body h2 { font-size: var(--fs-lg); margin: 36px 0 12px; }
.legal-body p, .legal-body li { color: var(--slate-700); font-size: var(--fs-sm); }
.legal-body ul { padding-left: 22px; }
