/* ==========================================================================
   Callvix Solutions — Design System v2 (warm / human)
   Brand: navy #101C4C + teal #26A8B6, warm neutral canvas, human-first.
   ========================================================================== */

:root {
  /* Brand — sampled from the Callvix logo */
  --navy-950: #0a1235;
  --navy-900: #101c4c;
  --navy-800: #1b2c63;
  --navy-700: #2a3d7a;
  --teal-600: #1c8894;
  --teal-500: #26a8b6;
  --teal-400: #48bcc8;
  --teal-300: #83d6df;
  --teal-100: #e3f5f7;
  --teal-50:  #f1fafb;

  /* Warm neutrals (the "human" canvas) */
  --cream:   #fbf9f6;
  --sand:    #f4efe8;
  --sand-2:  #efe8de;
  --white:   #ffffff;
  --ink-900: #1c2033;   /* headings on light where not navy */
  --ink-700: #3a3f52;   /* body text — warm, not cold slate */
  --ink-500: #6b6f80;   /* muted */
  --ink-400: #8a8e9c;
  --line:    #e8e1d7;   /* warm hairline border */
  --line-2:  #ded5c8;

  /* Warm accent for highlights/quotes (used sparingly, not on CTAs) */
  --gold-500: #e0a63c;
  --gold-100: #f9edd6;

  /* Semantics */
  --bg: var(--cream);
  --text: var(--ink-700);
  --heading: var(--navy-900);
  --border: var(--line);

  /* Type */
  --font-heading: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --shadow-sm: 0 1px 3px rgba(16, 28, 76, 0.06);
  --shadow-md: 0 10px 30px rgba(16, 28, 76, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 28, 76, 0.14);
  --shadow-teal: 0 10px 26px rgba(38, 168, 182, 0.32);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.015em;
}
p { margin: 0 0 1em; }
strong { color: var(--ink-900); font-weight: 700; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 60px 0; }
.section--alt { background: var(--sand); }
.section--white { background: var(--white); }
.section--navy {
  background:
    radial-gradient(900px 500px at 88% -5%, rgba(38,168,182,0.25), transparent 60%),
    linear-gradient(165deg, var(--navy-950), var(--navy-800) 78%);
  color: #cdd3e6;
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--teal { background: linear-gradient(160deg, var(--teal-50), var(--teal-100)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--teal-600);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--teal-500); border-radius: 2px; }
.section--navy .eyebrow { color: var(--teal-300); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(29px, 3.4vw, 42px); }
.lede { font-size: 19.5px; line-height: 1.6; color: var(--ink-500); }
.section--navy .lede { color: #aeb6d0; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--lean { grid-template-columns: 1.1fr 0.9fr; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--font-heading); font-weight: 600; font-size: 15.5px;
  border: 2px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--teal-500); color: #04252a; box-shadow: var(--shadow-teal); }
.btn-primary:hover { background: var(--teal-400); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(38,168,182,0.42); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.32); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--line-2); color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,246,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px; gap: 14px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 40px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-family: var(--font-heading); font-weight: 600; font-size: 14.5px;
  color: var(--ink-700); position: relative; padding: 6px 0; white-space: nowrap;
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--navy-900); }
.main-nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--teal-500); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 7px; font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; color: var(--navy-900); white-space: nowrap; }
.header-phone svg { width: 17px; height: 17px; color: var(--teal-500); flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-900); margin: 5px 0; border-radius: 2px; }

/* Closed state is `display:none` (not an off-screen transform) so the panel
   never contributes page width and can't create horizontal scroll. */
.mobile-nav {
  position: fixed; inset: 82px 0 0 0; background: var(--cream); z-index: 99;
  padding: 24px; overflow-y: auto; display: none;
}
.mobile-nav.open { display: block; animation: mobileNavIn 0.22s ease both; }
@keyframes mobileNavIn {
  from { opacity: 0; transform: translateX(10%); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav.open { animation: none; }
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a { display: block; padding: 15px 6px; font-family: var(--font-heading); font-weight: 700; font-size: 19px; border-bottom: 1px solid var(--border); color: var(--navy-900); }
.mobile-nav .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 76px 0 84px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -180px; right: -160px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(38,168,182,0.14), transparent 66%); pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 56px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--line-2);
  padding: 8px 15px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.pill svg { width: 15px; height: 15px; color: var(--teal-500); }
.pill--live { color: var(--teal-600); }
.pill--live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(38,168,182,0.18); }
.hero h1 { font-size: clamp(31px, 3.7vw, 46px); font-weight: 700; color: var(--navy-900); line-height: 1.16; letter-spacing: -0.01em; max-width: 15ch; }
.hero h1 .u { background: linear-gradient(transparent 60%, rgba(38,168,182,0.30) 60%); padding: 0 2px; }
.hero p.lede { max-width: 500px; margin-top: 18px; font-size: 18.5px; }
.hero-cta { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-cta-note { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-500); margin-top: 16px; }
.hero-cta-note svg { width: 16px; height: 16px; color: var(--teal-500); flex-shrink: 0; }

.hero-proof { display: flex; align-items: center; gap: 22px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; color: var(--gold-500); }
.hero-proof p { margin: 0; font-size: 13.5px; color: var(--ink-500); }
.hero-proof strong { color: var(--navy-900); }

/* Avatar stack */
.avatar-stack { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.avatar-stack .avatars { display: flex; }
.avatar-stack .avatars img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--cream); margin-left: -14px; box-shadow: var(--shadow-sm);
}
.avatar-stack .avatars img:first-child { margin-left: 0; }
.avatar-stack p { margin: 0; font-size: 14px; font-weight: 600; color: var(--ink-700); font-family: var(--font-heading); }
.avatar-stack--dark .avatars img { border-color: var(--navy-800); }
.avatar-stack--dark p { color: #aeb6d0; }

/* Hero visual — call card */
.hero-visual { position: relative; }
.call-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.call-card-top { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: var(--navy-900); }
.call-card-top .who { display: flex; align-items: center; gap: 10px; }
.call-card-top .who img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); }
.call-card-top .who strong { display: block; color: #fff; font-family: var(--font-heading); font-size: 14.5px; }
.call-card-top .who span { font-size: 12px; color: #9fb8d6; }
.call-card-top .live-tag { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; background: rgba(38,168,182,0.18); color: var(--teal-300); font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; font-family: var(--font-heading); }
.call-card-top .live-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-400); }
.call-card-body { padding: 22px; }
.bubble { max-width: 88%; padding: 12px 15px; border-radius: 14px; font-size: 14.5px; margin-bottom: 12px; line-height: 1.5; }
.bubble.them { background: var(--sand); color: var(--ink-700); border-bottom-left-radius: 4px; }
.bubble.us { background: var(--teal-100); color: #0c4c53; margin-left: auto; border-bottom-right-radius: 4px; }
.bubble .lbl { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; opacity: 0.7; font-family: var(--font-heading); }
.call-result { display: flex; align-items: center; gap: 10px; margin-top: 6px; padding: 14px 16px; background: var(--navy-900); border-radius: 14px; }
.call-result svg { width: 22px; height: 22px; color: #fff; background: var(--teal-500); border-radius: 50%; padding: 4px; flex-shrink: 0; }
.call-result span { font-size: 13.5px; color: #fff; font-family: var(--font-heading); font-weight: 600; }
.hero-float {
  position: absolute; right: -14px; bottom: 34px; background: var(--white); color: var(--navy-900);
  border-radius: var(--radius-md); padding: 13px 17px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; font-family: var(--font-heading); font-weight: 700; font-size: 14px;
}
.hero-float .ico { width: 34px; height: 34px; border-radius: 10px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; }
.hero-float .ico svg { width: 18px; height: 18px; color: var(--teal-600); }
.hero-float small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11.5px; color: var(--ink-500); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-900); padding: 22px 0; }
.trust-bar ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }
.trust-bar li { display: flex; align-items: center; gap: 10px; color: #cdd3e6; font-family: var(--font-heading); font-weight: 600; font-size: 14px; }
.trust-bar svg { width: 18px; height: 18px; color: var(--teal-400); flex-shrink: 0; }

/* ---------- Stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.stat .num { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--navy-900); line-height: 1; letter-spacing: -0.03em; }
.stat .num span { color: var(--teal-500); }
.stat p { margin: 12px 0 0; font-size: 14.5px; color: var(--ink-500); line-height: 1.5; }
.stat cite { display: block; margin-top: 10px; font-size: 11.5px; color: var(--ink-400); font-style: normal; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-2); }
.card .icon-wrap {
  width: 54px; height: 54px; border-radius: 15px;
  background: linear-gradient(140deg, var(--teal-400), var(--teal-600));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(38,168,182,0.28);
}
.card .icon-wrap svg { width: 26px; height: 26px; color: #fff; }
.card h3 { font-size: 20px; margin-bottom: 9px; }
.card p { color: var(--ink-500); font-size: 15.5px; margin-bottom: 0; }
.card--navy { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.card--navy:hover { border-color: rgba(255,255,255,0.2); }
.card--navy h3 { color: #fff; }
.card--navy p { color: #aeb6d0; }

.icon-row { display: flex; gap: 16px; align-items: flex-start; }
.icon-row .icon-sm { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-row .icon-sm svg { width: 21px; height: 21px; color: var(--teal-600); }
.icon-row h4 { font-size: 17px; margin-bottom: 4px; }
.icon-row p { font-size: 14.5px; color: var(--ink-500); margin: 0; }

/* ---------- Photo frames ---------- */
.photo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.photo-split.reverse .photo-frame { order: 2; }
.photo-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-badge {
  position: absolute; left: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(16,28,76,0.86); backdrop-filter: blur(6px); color: #fff;
  padding: 11px 16px; border-radius: 999px; font-family: var(--font-heading); font-weight: 700; font-size: 13.5px;
}
.photo-badge svg { width: 18px; height: 18px; color: var(--teal-300); }

/* ---------- Human vs AI comparison (core pillar) ---------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.versus-col { border-radius: var(--radius-lg); padding: 34px; }
.versus-col h3 { display: flex; align-items: center; gap: 11px; font-size: 21px; margin-bottom: 20px; }
.versus-col h3 .badge { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.versus-col h3 .badge svg { width: 22px; height: 22px; }
.versus-col ul { display: flex; flex-direction: column; gap: 14px; }
.versus-col li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.versus-col li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.versus-them { background: var(--white); border: 1px solid var(--line); }
.versus-them h3 { color: var(--ink-700); }
.versus-them h3 .badge { background: var(--sand-2); color: var(--ink-500); }
.versus-them li { color: var(--ink-500); }
.versus-them li svg { color: var(--ink-400); }
.versus-us { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); border: 1px solid var(--navy-700); box-shadow: var(--shadow-lg); }
.versus-us h3 { color: #fff; }
.versus-us h3 .badge { background: var(--teal-500); color: #04252a; }
.versus-us li { color: #dfe4f2; }
.versus-us li svg { color: var(--teal-400); }
.versus-us .tag-top { display: inline-block; background: var(--teal-500); color: #04252a; font-family: var(--font-heading); font-weight: 700; font-size: 11.5px; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; letter-spacing: 0.03em; }

/* ---------- Steps ---------- */
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--border); }
.step:first-child { border-top: none; }
.step-num { width: 46px; height: 46px; border-radius: 50%; background: var(--navy-900); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 17px; }
.step h4 { font-size: 18.5px; margin-bottom: 6px; }
.step p { color: var(--ink-500); margin: 0; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
.compare-table th, .compare-table td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.compare-table thead th { font-family: var(--font-heading); background: var(--sand); color: var(--navy-900); font-size: 14px; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }
.compare-table .col-callvix { background: var(--teal-50); }
.compare-table thead .col-callvix { background: var(--navy-900); color: #fff; }
.compare-table tbody td:first-child { font-weight: 600; color: var(--ink-700); }
.compare-table .col-callvix { font-weight: 700; color: var(--navy-900); }
.compare-table svg.yes { width: 19px; height: 19px; color: var(--teal-500); }
.compare-table svg.no { width: 18px; height: 18px; color: var(--line-2); }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Pricing ---------- */
.plan-combo { display: flex; align-items: stretch; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--white); }
.plan-combo-item { flex: 1; padding: 32px 22px; text-align: center; }
.plan-combo-item--base { background: linear-gradient(150deg, var(--navy-900), var(--navy-800)); color: #fff; }
.plan-combo-label { display: block; font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.72; margin-bottom: 10px; }
.plan-combo-value { display: block; font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--navy-900); letter-spacing: -0.02em; }
.plan-combo-item--base .plan-combo-value { color: #fff; }
.plan-combo-value small { font-size: 14px; font-weight: 600; color: var(--ink-400); }
.plan-combo-item--base .plan-combo-value small { color: #9fb8d6; }
.plan-combo-plus { display: flex; align-items: center; justify-content: center; width: 56px; flex-shrink: 0; background: var(--sand); font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--teal-500); }
.plan-combo-note { text-align: center; font-size: 13.5px; color: var(--ink-400); margin-top: 15px; }

.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; position: relative; box-shadow: var(--shadow-sm); }
.price-card--highlight { border-color: var(--teal-500); box-shadow: var(--shadow-md); }
.price-card--highlight::before { content: 'Most popular'; position: absolute; top: -13px; left: 32px; background: var(--teal-500); color: #04252a; font-family: var(--font-heading); font-weight: 700; font-size: 12px; padding: 5px 13px; border-radius: 999px; }
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-card .price { font-family: var(--font-heading); font-size: 34px; font-weight: 800; color: var(--navy-900); margin: 10px 0 4px; letter-spacing: -0.02em; }
.price-card .price span { font-size: 14px; font-weight: 600; color: var(--ink-400); }
.price-card p.desc { color: var(--ink-500); font-size: 14.5px; margin-bottom: 20px; }
.price-card ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 4px; }
.price-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--ink-700); }
.price-card li svg { width: 18px; height: 18px; color: var(--teal-500); flex-shrink: 0; margin-top: 2px; }

.base-band { background: linear-gradient(140deg, var(--navy-900), var(--navy-800)); color: #fff; border-radius: var(--radius-lg); padding: 42px; display: grid; grid-template-columns: 1.25fr 1fr; gap: 34px; align-items: center; }
.base-band h3 { color: #fff; }
.base-band p { color: #aeb6d0; margin-bottom: 0; }
.base-band .checklist p { color: #dfe4f2; }
.tag { display: inline-block; background: var(--teal-100); color: var(--teal-600); font-family: var(--font-heading); font-weight: 700; font-size: 12px; padding: 5px 13px; border-radius: 999px; letter-spacing: 0.03em; }
.base-band .tag { background: rgba(38,168,182,0.2); color: var(--teal-300); }
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist .ck { display: flex; gap: 11px; align-items: flex-start; }
.checklist .ck svg { width: 20px; height: 20px; color: var(--teal-400); flex-shrink: 0; margin-top: 1px; }
.checklist .ck p { margin: 0; font-size: 14.5px; }

/* ---------- Testimonial / quote ---------- */
.quote-card { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--teal-500); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-sm); }
.quote-card blockquote { margin: 0 0 18px; font-size: 18px; line-height: 1.6; color: var(--ink-900); font-family: var(--font-heading); font-weight: 600; }
.quote-card .by { display: flex; align-items: center; gap: 12px; }
.quote-card .by img { width: 44px; height: 44px; border-radius: 50%; }
.quote-card .by strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.quote-card .by span { font-size: 13px; color: var(--ink-400); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; text-align: left; padding: 24px 4px; font-family: var(--font-heading); font-weight: 700; font-size: 17.5px; color: var(--heading); }
.faq-q svg { width: 22px; height: 22px; color: var(--teal-500); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 4px 24px; color: var(--ink-500); font-size: 15.5px; line-height: 1.65; }
.faq-a-inner a { color: var(--teal-600); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-xl); padding: 64px; text-align: center; overflow: hidden;
  background: radial-gradient(600px 260px at 50% 0%, rgba(38,168,182,0.28), transparent 70%), linear-gradient(150deg, var(--navy-950), var(--navy-800)); color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); }
.cta-band .lede { color: #b9c0da; max-width: 580px; margin: 0 auto; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.cta-band .eyebrow { color: var(--teal-300); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--sand); }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .kicker { font-family: var(--font-heading); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal-600); margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.25; }
.blog-card p { font-size: 14.5px; color: var(--ink-500); margin-bottom: 16px; flex: 1; }
.blog-card .more { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; }
.blog-card .more svg { width: 16px; height: 16px; color: var(--teal-500); }

/* Article body */
.article { max-width: 760px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-400); margin-bottom: 22px; }
.article-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }
.article-body { font-size: 17.5px; line-height: 1.75; color: var(--ink-700); }
.article-body h2 { font-size: 27px; margin: 44px 0 16px; }
.article-body h3 { font-size: 21px; margin: 32px 0 12px; }
.article-body p { margin: 0 0 20px; }
.article-body ul.bul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.article-body ul.bul li { display: flex; gap: 11px; align-items: flex-start; }
.article-body ul.bul li svg { width: 20px; height: 20px; color: var(--teal-500); flex-shrink: 0; margin-top: 4px; }
.article-body a { color: var(--teal-600); font-weight: 600; }
.article-callout { background: var(--teal-50); border: 1px solid var(--teal-100); border-radius: var(--radius-md); padding: 24px 26px; margin: 28px 0; }
.article-callout p:last-child { margin-bottom: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.article-body table th, .article-body table td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.article-body table th { background: var(--sand); font-family: var(--font-heading); color: var(--navy-900); }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; padding: 68px 0 60px; overflow: hidden;
  background: radial-gradient(700px 340px at 85% -20%, rgba(38,168,182,0.12), transparent 62%); }
.page-hero .eyebrow { color: var(--teal-600); }
.page-hero h1 { font-size: clamp(31px, 4.2vw, 47px); max-width: 800px; color: var(--navy-900); }
.page-hero p.lede { max-width: 640px; }
.breadcrumbs { font-size: 13px; color: var(--ink-400); margin-bottom: 18px; }
.breadcrumbs a { color: var(--ink-400); }
.breadcrumbs a:hover { color: var(--teal-600); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--border); }
.contact-method:first-child { border-top: none; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--navy-900); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--cream); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--teal-400); outline-offset: 1px; background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--ink-400); margin-top: 10px; }
.form-status { font-size: 14px; margin: 12px 0 0; min-height: 1px; }
.form-status:empty { margin: 0; }
.form-status--error { color: #b4232b; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #9aa2c0; padding: 72px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 0.9fr 0.9fr 1.3fr;
  gap: 48px; margin-bottom: 52px;
}
/* Logo: lock the real 876x299 aspect so it can never squash */
.footer-brand .flogo { display: inline-block; margin-bottom: 18px; }
.footer-brand .flogo img { height: 40px; width: auto; aspect-ratio: 876 / 299; display: block; }
.footer-brand p { font-size: 14.5px; line-height: 1.65; color: #8d96b6; margin-bottom: 0; max-width: 38ch; }

.footer-col h4 { color: #fff; font-size: 12.5px; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: #9aa2c0; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--teal-300); }

/* Contact column */
.footer-contact .footer-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: #fff;
  margin-bottom: 12px; transition: color 0.15s ease;
}
.footer-contact .footer-phone svg { width: 18px; height: 18px; color: var(--teal-400); flex-shrink: 0; }
.footer-contact .footer-phone:hover { color: var(--teal-300); }
.footer-contact .footer-email { display: block; font-size: 14.5px; color: var(--teal-300); margin-bottom: 14px; word-break: break-word; }
.footer-contact .footer-email:hover { color: #fff; }
.footer-contact .footer-area { font-size: 13.5px; color: #7f88a8; line-height: 1.55; margin-bottom: 18px; }
/* Buttons inside the footer must keep their own colours (beat `.footer-col a`) */
.site-footer .btn-primary { color: #04252a; }
.site-footer .btn-primary:hover { color: #04252a; }

.footer-badge { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.footer-badge img { width: 38px; height: auto; aspect-ratio: 202 / 228; flex-shrink: 0; }
.footer-badge span { font-size: 12.5px; color: #7f88a8; line-height: 1.45; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: 13.5px; color: #7f88a8;
}
.footer-bottom .footer-legal { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center; color: #9aa2c0;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--teal-500); color: #04252a; }
.footer-social svg { width: 16px; height: 16px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1150px) { .header-phone-wrap { display: none; } }
@media (max-width: 980px) {
  .hero .container, .split, .split--lean, .photo-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .photo-split.reverse .photo-frame { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .versus { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .base-band { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4, .stat-band, .blog-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-band { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .plan-combo { flex-direction: column; }
  .plan-combo-plus { width: 100%; height: 36px; }
  .hero-float { display: none; }
  .base-band { padding: 30px; }
}
