/* ============================================================
   New Filings Feed — V3 "Friendly local SaaS"
   Warm, approachable, light. Sky/teal + emerald, Plus Jakarta Sans.
   ============================================================ */

:root {
  /* palette */
  --sky: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --teal: #14b8a6;
  --emerald: #10b981;
  --emerald-600: #059669;
  --amber: #f59e0b;

  --ink: #0f2c3a;          /* warm dark navy-teal for text */
  --ink-soft: #3f5d6b;
  --muted: #65808c;

  --surface: #ffffff;
  --bg: #f4f9fb;            /* soft sky-tinted page bg */
  --bg-soft: #eef6f9;
  --bg-warm: #fef9f3;       /* gentle warm wash */
  --border: #e2edf1;
  --border-strong: #cfe1e8;

  /* gradients */
  --grad-brand: linear-gradient(135deg, var(--sky) 0%, var(--emerald) 100%);
  --grad-brand-soft: linear-gradient(135deg, #e0f3fb 0%, #e3f7ef 100%);

  /* radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;       /* rounded-2xl friendly cards */
  --r-xl: 32px;
  --r-pill: 999px;

  /* shadow — soft, low-contrast */
  --shadow-sm: 0 1px 2px rgba(15, 44, 58, 0.04), 0 2px 6px rgba(15, 44, 58, 0.05);
  --shadow-md: 0 6px 16px rgba(15, 44, 58, 0.07), 0 2px 6px rgba(15, 44, 58, 0.04);
  --shadow-lg: 0 18px 40px rgba(14, 116, 144, 0.12), 0 6px 14px rgba(15, 44, 58, 0.06);
  --shadow-glow: 0 18px 44px rgba(14, 165, 233, 0.22);

  /* type */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* motion */
  --dur: 220ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* spacing */
  --section-y: clamp(2.75rem, 1.75rem + 2.5vw, 4.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

img, svg { display: block; }

.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;
}

.container {
  width: 100%;
  max-width: min(1760px, 90vw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 0.6rem + 2vw, 2rem);
}
.container-narrow { max-width: 920px; }

/* ---------- focus ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--r-pill);
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    background-color var(--dur) var(--ease), color var(--dur) var(--ease);
  will-change: transform;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.95rem; }
.btn-lg { padding: 0.95rem 1.9rem; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(14, 165, 233, 0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
  color: var(--sky-700);
}

.btn-outline {
  background: transparent;
  color: var(--sky-700);
  border: 2px solid var(--sky);
}
.btn-outline:hover {
  background: var(--sky);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: min(1760px, 90vw);
  margin-inline: auto;
  padding: 0.7rem clamp(1.1rem, 0.6rem + 2vw, 2rem);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}
.brand-mark { display: inline-flex; filter: drop-shadow(0 4px 10px rgba(14,165,233,0.28)); }
.brand-name {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
}
.brand-name .g {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-name::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px; border-radius: 2px;
  background: var(--grad-brand);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links > a:not(.btn) {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.98rem;
  transition: color var(--dur) var(--ease);
}
.nav-links > a:not(.btn):hover { color: var(--sky-700); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 2rem + 4vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 18% 0%, rgba(14, 165, 233, 0.14), transparent 60%),
    radial-gradient(55% 65% at 92% 8%, rgba(16, 185, 129, 0.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  align-items: center;
  max-width: min(1760px, 90vw);
}
.hero-copy { max-width: 680px; }
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
}
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-700);
  background: #e2f4fb;
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.2rem;
}
.eyebrow-center { margin-inline: auto; }
.hero-title {
  font-size: clamp(2.3rem, 1.3rem + 4.6vw, 4.1rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.accent-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.08rem, 0.98rem + 0.6vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 2rem;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.trust-line {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-line .check {
  display: inline-grid;
  place-items: center;
  width: 1.3rem; height: 1.3rem;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}
.trust-line .dot { color: var(--border-strong); }

/* ---- trust row (competitor-informed microcopy) ---- */
.trust-row {
  list-style: none; padding: 0; margin: 1.4rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.55rem 1.3rem;
  font-size: 0.92rem; font-weight: 600; color: var(--muted);
}
.trust-row li { display: inline-flex; align-items: center; gap: 0.45rem; }
.trust-row .check {
  display: inline-grid; place-items: center; width: 1.2rem; height: 1.2rem;
  background: var(--emerald); color: #fff; border-radius: 50%; font-size: 0.72rem; font-weight: 800;
}
.hero-positioning {
  margin: 1.15rem 0 0; font-size: 0.95rem; color: var(--ink-soft);
  border-left: 3px solid var(--emerald); padding-left: 0.8rem;
}
.hero-positioning strong { color: var(--ink); }

/* ---- hero live-data card ---- */
.hero-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.1rem 0; overflow: hidden;
}
.hc-head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.95rem; }
.hc-title { font-weight: 800; color: var(--ink); font-size: 0.95rem; }
.hc-live { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.74rem; font-weight: 700; color: var(--emerald-600); background: #e3f7ef; padding: 0.25rem 0.6rem; border-radius: var(--r-pill); white-space: nowrap; }
.hc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.18); animation: hcpulse 1.8s ease-in-out infinite; }
@keyframes hcpulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 0.95rem; }
.hc-stat { background: var(--bg-soft); border-radius: var(--r-sm); padding: 0.7rem 0.5rem; text-align: center; }
.hc-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--sky-700); letter-spacing: -0.02em; line-height: 1; }
.hc-lbl { display: block; font-size: 0.68rem; color: var(--muted); margin-top: 0.32rem; font-weight: 600; }
.hc-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.hc-table th { text-align: left; font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 0 0.4rem 0.4rem; }
.hc-table td { padding: 0.5rem 0.4rem; border-top: 1px solid var(--border); }
.hc-table .biz { font-weight: 700; color: var(--ink); }
.hc-table .ow { color: var(--ink-soft); white-space: nowrap; }
.hc-lock { filter: grayscale(1); opacity: 0.7; font-size: 0.78rem; }
.hc-foot {
  display: block; margin: 0.6rem -1.1rem 0; padding: 0.8rem 1.1rem;
  background: var(--bg-soft); border-top: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 700; color: var(--sky-700);
  transition: background var(--dur) var(--ease);
}
.hc-foot:hover { background: #e2f4fb; }
@media (prefers-reduced-motion: reduce) { .hc-dot { animation: none; } }

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { padding-block: var(--section-y); }
.section-soft { background: var(--bg-soft); }
.section-sample { padding-top: clamp(1.5rem, 1rem + 2vw, 2.5rem); padding-bottom: var(--section-y); }

.section-head {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: clamp(2.2rem, 1.5rem + 2vw, 3.4rem);
}
.section-title {
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.85rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.section-lead {
  font-size: clamp(1.02rem, 0.96rem + 0.4vw, 1.18rem);
  color: var(--ink-soft);
}

/* ============================================================
   SAMPLE TABLE
   ============================================================ */
.sample-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.sample-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.4rem clamp(1.1rem, 0.6rem + 2vw, 2rem);
  background: var(--grad-brand-soft);
  border-bottom: 1px solid var(--border);
}
.sample-title {
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
}
.sample-meta { display: inline-flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
}
.pill-blue { background: var(--sky); color: #fff; }
.pill-green { background: var(--emerald); color: #fff; }

.table-scroll { overflow-x: auto; }
.sample-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.95rem;
}
.sample-table thead th {
  text-align: left;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.9rem 1rem;
  background: #fbfdfe;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.sample-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  vertical-align: middle;
}
.sample-table tbody tr {
  transition: background-color var(--dur) var(--ease);
}
.sample-table tbody tr:hover { background: #f3fafc; }
.sample-table tbody tr:last-child td { border-bottom: none; }
.col-num { color: var(--muted); width: 2.4rem; font-variant-numeric: tabular-nums; }
.biz { font-weight: 700; color: var(--ink); }

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.tag-trucking { background: #e0f2fe; color: #075985; }
.tag-construction { background: #fef3c7; color: #92600a; }
.tag-cleaning { background: #d1fae5; color: #065f46; }
.tag-realestate { background: #ede9fe; color: #5b21b6; }
.tag-health { background: #fce7f3; color: #9d174d; }
.tag-food { background: #ffedd5; color: #9a3412; }

.locked {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--muted);
  background: #f1f5f7;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-sm);
  border: 1px dashed var(--border-strong);
}

.sample-foot {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1.1rem clamp(1.1rem, 0.6rem + 2vw, 2rem);
  background: #fbfdfe;
  border-top: 1px solid var(--border);
}
.foot-plus { font-weight: 800; color: var(--sky-700); font-size: 1.05rem; }
.foot-note { color: var(--muted); }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  background: var(--grad-brand);
  color: #fff;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.25); }
.stat-num {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   VERTICALS
   ============================================================ */
.vert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.vert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.vert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.vert-count {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.vert-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.vert-insurance {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.4rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: -1.1rem;
  left: 1.6rem;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.step-body { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   TERRITORY
   ============================================================ */
.territory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.terr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.terr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}
.terr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}
.terr-name { font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.terr-status {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--emerald-600);
  background: #d1fae5;
  padding: 0.25rem 0.55rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.terr-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.9rem; }
.terr-vol {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--sky-700);
  letter-spacing: -0.02em;
}
.terr-vol span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.terr-foot {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin-inline: auto;
}
.terr-foot em { color: var(--ink); font-style: normal; font-weight: 700; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 820px;
  margin-inline: auto;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border: 2px solid var(--sky);
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}
.price-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-currency { font-size: 1.5rem; vertical-align: super; font-weight: 700; }
.price-period { font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.price-tagline { color: var(--ink-soft); margin-bottom: 1.4rem; }
.price-features {
  list-style: none;
  margin: 0 0 1.7rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex-grow: 1;
}
.price-features li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 1.3rem; height: 1.3rem;
  background: #d1fae5;
  color: var(--emerald-600);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}
.founding-note {
  margin-top: 1.8rem;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  background: var(--bg-warm);
  border: 1px solid #f6e6cf;
  border-radius: var(--r-lg);
  padding: 1.1rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.founding-note strong { color: var(--ink); }
.founding-star { color: var(--amber); font-size: 1.1rem; }

/* ============================================================
   WHY DIFFERENT
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  font-size: 1.5rem;
  background: var(--grad-brand-soft);
  border-radius: var(--r-md);
  margin-bottom: 1rem;
}
.why-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.why-body { font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sky-700); }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.25rem; }
.faq-answer p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   CAPTURE CTA
   ============================================================ */
.capture {
  padding-block: var(--section-y);
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(16, 185, 129, 0.12), transparent 60%),
    radial-gradient(60% 80% at 10% 100%, rgba(14, 165, 233, 0.12), transparent 60%),
    var(--bg);
}
.capture-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
  text-align: center;
}
.capture-title {
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.capture-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.capture-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 560px;
  margin-inline: auto;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.field input,
.field select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  background: #fbfdfe;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder { color: #9bb1bc; }
.field input:hover,
.field select:hover { border-color: var(--sky); }
.field input:focus,
.field select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
  outline: none;
}
.capture-form .btn { grid-column: 1 / -1; }
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 1.2rem;
}
.form-status.is-error { color: #b91c1c; }
.form-status.is-success { color: var(--emerald-600); }
.capture-fine {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 480px;
  margin-inline: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: #cbdce4;
  padding-block: 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.3rem;
}
.footer-brand .brand-name { color: #fff; font-size: 1.05rem; }
.footer-contact { font-size: 0.95rem; color: #e2eef3; }
.footer-data { font-size: 0.85rem; color: #8fb0bd; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .vert-grid,
  .why-grid,
  .territory-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step-card { padding-top: 2.2rem; }
}

@media (max-width: 680px) {
  .nav-links { gap: 0.9rem; }
  .nav-links > a:not(.btn) { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.25); }
  .stat:nth-child(even) { border-right: none; }
  .vert-grid,
  .why-grid,
  .territory-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  .capture-form { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover,
  .vert-card:hover,
  .terr-card:hover,
  .step-card:hover,
  .price-card:hover,
  .why-card:hover { transform: none; }
}
