/* SiteLegible — 2026 premium navy + sky accent (visual refresh) */
:root {
  /* Navy scale */
  --navy-950: #07111f;
  --navy-900: #0a1628;
  --navy-800: #122a4a;
  --navy-700: #1a3a63;
  --navy-600: #234b7c;

  /* Sky accent — CTAs & highlights only */
  --accent: #0b9fd9;
  --accent-hover: #0887bb;
  --accent-deep: #06709a;
  --accent-soft: #e6f6fc;
  --accent-glow: rgba(11, 159, 217, 0.28);

  /* Neutrals (cool) */
  --neutral-50: #f5f7fb;
  --neutral-100: #eef1f7;
  --neutral-200: #dde3ee;
  --neutral-300: #c4cddc;
  --neutral-400: #8b97ab;
  --neutral-500: #66758c;
  --neutral-700: #3a4659;
  --neutral-900: #121a27;
  --white: #ffffff;

  --success: #15803d;
  --success-bg: #ecfdf3;
  --warning-bg: #fffbeb;
  --warning-border: #f0d78c;

  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow: 0 1px 2px rgba(10, 22, 40, 0.04), 0 8px 24px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08), 0 16px 40px rgba(10, 22, 40, 0.06);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.14);
  --shadow-accent: 0 4px 14px var(--accent-glow), 0 1px 2px rgba(11, 159, 217, 0.2);

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--neutral-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { flex: 1; }
img { max-width: 100%; height: auto; }
a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 0.15em; }
h1, h2, h3, h4 {
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 0.55em;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.05rem, 4.6vw, 3.05rem); letter-spacing: -0.035em; font-weight: 750; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.05rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }
.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--neutral-700);
  max-width: 40rem;
  line-height: 1.55;
  font-weight: 450;
}
.muted { color: var(--neutral-500); font-size: 0.95rem; }
.small { font-size: 0.9rem; }

/* Layout */
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: clamp(3.25rem, 6vw, 5rem) 0; }
.section--alt {
  background:
    linear-gradient(180deg, var(--neutral-50) 0%, #fafbfd 100%);
}
.section--navy {
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(11, 159, 217, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(35, 75, 124, 0.45), transparent 50%),
    linear-gradient(145deg, var(--navy-900) 0%, var(--navy-800) 55%, #0e2442 100%);
  color: var(--neutral-100);
  position: relative;
  overflow: hidden;
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy .muted { color: var(--neutral-300); }
.section--navy a { color: #7dd3f0; }
.section--navy a:hover { color: #b8e9f8; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.65rem;
}
.section--navy .section-eyebrow { color: #7dd3f0; }
.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.grid-3 {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .grid-2.grid-2--wide { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(221, 227, 238, 0.85);
  height: var(--header-h);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy-900);
  font-weight: 750;
  font-size: 1.18rem;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.logo:hover { text-decoration: none; color: var(--navy-700); }
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--navy-800) 0%, var(--accent) 100%);
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(11, 159, 217, 0.25);
  letter-spacing: -0.02em;
}
.nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
}
.nav a {
  color: var(--neutral-700);
  font-size: 0.93rem;
  font-weight: 550;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--navy-900);
  background: var(--neutral-100);
  text-decoration: none;
}
.nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.nav-cta { display: none; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  color: var(--navy-900);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.menu-toggle:hover {
  border-color: var(--neutral-300);
  background: var(--neutral-50);
  box-shadow: var(--shadow);
}
.menu-toggle svg { width: 22px; height: 22px; }
.nav-mobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  padding: 0.85rem 1rem 1.35rem;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: block; animation: navDrop 0.2s var(--ease); }
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mobile a {
  display: block;
  padding: 0.75rem 0.9rem;
  color: var(--neutral-700);
  font-weight: 550;
  border-radius: 8px;
  text-decoration: none;
}
.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  background: var(--neutral-100);
  color: var(--navy-900);
  text-decoration: none;
}
.nav-mobile a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.nav-mobile .btn { margin-top: 0.85rem; width: 100%; text-align: center; }
@media (min-width: 960px) {
  .nav, .nav-cta { display: flex; }
  .menu-toggle, .nav-mobile { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.3rem;
  border-radius: 10px;
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.18s var(--ease),
    border-color 0.18s var(--ease),
    color 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    transform 0.18s var(--ease);
  font-family: inherit;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, #12aee6 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: var(--shadow-accent);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(11, 159, 217, 0.38), 0 2px 4px rgba(11, 159, 217, 0.2);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--neutral-300);
  box-shadow: 0 1px 2px rgba(10, 22, 40, 0.04);
}
.btn-secondary:hover {
  background: var(--neutral-50);
  border-color: var(--neutral-400);
  color: var(--navy-900);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg { padding: 0.95rem 1.65rem; font-size: 1.02rem; border-radius: 12px; }
.btn-sm { padding: 0.48rem 0.95rem; font-size: 0.875rem; border-radius: 9px; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.25rem) 0 clamp(2.75rem, 5vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 88% 8%, rgba(11, 159, 217, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(26, 58, 99, 0.08), transparent 50%),
    linear-gradient(180deg, #f0f5fb 0%, var(--white) 72%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 42, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 42, 74, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}
.hero-copy { position: relative; z-index: 1; max-width: 38rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--white);
  border: 1px solid rgba(11, 159, 217, 0.22);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.15rem;
  box-shadow: 0 1px 3px rgba(11, 159, 217, 0.08);
}
.hero h1 { margin-bottom: 0.35rem; max-width: 16ch; }
.hero .lead { margin-bottom: 0.25rem; }
.hero-note {
  margin-top: 1.35rem;
  font-size: 0.9rem;
  color: var(--neutral-500);
  max-width: 36rem;
}
.hero-visual {
  position: relative;
  display: none;
  justify-content: center;
}
@media (min-width: 900px) {
  .hero-visual { display: flex; }
}
.hero-panel {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.35rem 1.35rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-800), var(--accent));
}
.hero-panel-label {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 1rem;
}
.hero-tool {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  margin-bottom: 0.55rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.hero-tool:last-child { margin-bottom: 0; }
.hero-tool:hover {
  border-color: rgba(11, 159, 217, 0.35);
  box-shadow: 0 4px 12px rgba(11, 159, 217, 0.1);
  transform: translateX(3px);
}
.hero-tool-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  flex-shrink: 0;
}
.hero-tool-name {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.hero-tool-desc {
  font-size: 0.78rem;
  color: var(--neutral-500);
  margin-top: 0.1rem;
}
.hero-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 159, 217, 0.22), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  pointer-events: none;
}
.hero-orb--1 { top: -40px; right: -30px; }
.hero-orb--2 { bottom: -50px; left: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(26, 58, 99, 0.15), transparent 70%); }

/* Content blocks / cards for hierarchy */
.content-block {
  max-width: 40rem;
}
.feature-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 700px) {
  .feature-cards { grid-template-columns: 1fr 1fr; }
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.45rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 159, 217, 0.25);
}
.feature-card h3 { margin-bottom: 0.4rem; font-size: 1.08rem; }
.feature-card p:last-child { margin-bottom: 0; color: var(--neutral-700); font-size: 0.98rem; }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.65rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-top: 0; }
.card-price {
  font-size: 1.9rem;
  font-weight: 750;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.75rem;
}
.card-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--neutral-500);
}
.card-meta {
  font-size: 0.88rem;
  color: var(--neutral-500);
  margin-bottom: 1rem;
}
.card.featured {
  border-color: rgba(11, 159, 217, 0.45);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(11, 159, 217, 0.08);
  position: relative;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg, rgba(11, 159, 217, 0.35), rgba(18, 42, 74, 0.12)) border-box;
}
.card.featured::before {
  content: "Most chosen";
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  background: linear-gradient(180deg, #12aee6, var(--accent));
  color: white;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px var(--accent-glow);
}
.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(11, 159, 217, 0.15);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  gap: 1.35rem;
  margin: 0.5rem 0 1.75rem;
}
@media (min-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.7rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  border-color: rgba(11, 159, 217, 0.4);
  box-shadow: var(--shadow-md);
  position: relative;
  background:
    linear-gradient(165deg, #f7fcfe 0%, var(--white) 40%);
}
.pricing-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(11, 159, 217, 0.15);
}
.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.pricing-card .card-price {
  margin: 0.5rem 0 1rem;
  font-size: 2.15rem;
}
.pricing-card p {
  color: var(--neutral-700);
  flex: 1;
  font-size: 0.98rem;
}
.pricing-card .btn { margin-top: 1.15rem; align-self: flex-start; }

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.35rem 0 1.35rem 3.75rem;
  border-bottom: 1px solid var(--neutral-200);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}
.steps h3 { margin-bottom: 0.35rem; }
.steps p:last-child { margin-bottom: 0; color: var(--neutral-700); }

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
}
th, td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--neutral-200);
  vertical-align: top;
}
th {
  background: var(--navy-900);
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--neutral-50); }
tr:hover td { background: var(--accent-soft); }
.price-cell { font-weight: 700; color: var(--navy-900); white-space: nowrap; font-size: 1.05rem; }

/* Callout / note boxes */
.callout {
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  margin: 1.5rem 0;
  border: 1px solid var(--neutral-200);
  background: var(--neutral-50);
  box-shadow: 0 1px 2px rgba(10, 22, 40, 0.03);
}
.callout--honest {
  background: var(--warning-bg);
  border-color: var(--warning-border);
}
.callout--success {
  background: var(--success-bg);
  border-color: #a8d9bf;
}
.callout strong { display: block; margin-bottom: 0.35rem; color: var(--navy-900); }

/* FAQ */
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--neutral-200);
  padding: 1.3rem 0;
  transition: background 0.15s;
}
.faq-item:first-child { padding-top: 0; }
.faq-item h3 {
  font-size: 1.08rem;
  margin: 0 0 0.55rem;
}
.faq-item p { color: var(--neutral-700); }
.faq-item p:last-child { margin-bottom: 0; }

/* Forms */
.form-card {
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--navy-900);
}
.form-group .hint {
  font-weight: 400;
  color: var(--neutral-500);
  font-size: 0.85rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--neutral-300);
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  color: var(--neutral-900);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--neutral-400);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-error {
  color: #b42318;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #b42318;
}
.form-group.has-error .form-error { display: block; }
.form-success {
  display: none;
  background: var(--success-bg);
  border: 1px solid #a8d9bf;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--navy-900);
  box-shadow: var(--shadow);
}
.form-success.show { display: block; }
.form-success h3 { color: var(--success); margin-bottom: 0.5rem; }
#lead-form.hide { display: none; }

/* Page header (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2.25rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(11, 159, 217, 0.1), transparent 50%),
    linear-gradient(180deg, var(--neutral-50) 0%, #fafbfd 100%);
  border-bottom: 1px solid var(--neutral-200);
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 0.55rem; max-width: 22ch; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin-bottom: 0.85rem;
}
.breadcrumb a { color: var(--neutral-500); }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb span { color: var(--navy-900); font-weight: 550; }

/* Footer */
.site-footer {
  background:
    radial-gradient(ellipse 50% 60% at 80% 0%, rgba(11, 159, 217, 0.12), transparent 55%),
    var(--navy-950);
  color: var(--neutral-300);
  padding: 3.25rem 0 2rem;
  margin-top: auto;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr; gap: 2.5rem; }
}
.site-footer a { color: var(--neutral-200); }
.site-footer a:hover { color: var(--white); text-decoration: none; }
.site-footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  font-weight: 650;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-brand p {
  max-width: 28rem;
  line-height: 1.55;
  color: var(--neutral-400);
}
.footer-brand .logo { color: var(--white); margin-bottom: 0.85rem; }
.footer-brand .logo:hover { color: var(--neutral-200); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--neutral-500);
}
.footer-bottom a { color: var(--neutral-400); }

/* Utilities */
.prose { max-width: 680px; }
.prose h2 { margin-top: 2.15rem; }
.prose h3 { margin-top: 1.5rem; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--neutral-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--success-bg);
  border: 1.5px solid var(--success);
  box-shadow: inset 0 0 0 2px var(--success-bg);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.22rem;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}
.divider { height: 1px; background: var(--neutral-200); margin: 2rem 0; border: none; }
.two-col-cta {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .two-col-cta { grid-template-columns: 1fr 1fr; }
}
.band-cta {
  text-align: center;
  padding: 0.5rem 0;
}
.band-cta .cta-row { justify-content: center; }
.band-cta h2 { margin-inline: auto; }
.band-cta .muted { margin-inline: auto; }
.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: var(--neutral-100);
  color: var(--neutral-700);
  border: 1px solid var(--neutral-200);
}
.demo-frame {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.demo-frame-header {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: white;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.demo-frame-body { padding: 1.5rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Honesty / limits visual */
.honesty-panel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 42rem;
  padding: 1.35rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 1.25rem;
}
.honesty-panel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #92400e;
}
.honesty-panel .lead { margin: 0; font-size: 1.05rem; }

/* Mobile polish */
@media (max-width: 699px) {
  body { font-size: 16px; }
  .hero h1 { max-width: none; }
  .page-hero h1 { max-width: none; }
  .cta-row .btn { flex: 1 1 auto; min-width: min(100%, 10rem); }
  .form-card { padding: 1.4rem; }
  .section { padding: 2.75rem 0; }
  .hero { padding: 2.5rem 0 2.25rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover, .card:hover, .feature-card:hover, .pricing-card:hover, .hero-tool:hover {
    transform: none;
  }
}
