/* ============================================================
   Axithorn — Design System
   Deep navy + cyan/blue gradient brand, light content sections
   ============================================================ */

:root {
  /* Brand colours (from Axithorn logo) */
  --navy-950: #061225;
  --navy-900: #0a1b33;
  --navy-800: #10294a;
  --navy-700: #173861;
  --blue-600: #1b6fbf;
  --blue-500: #2189d6;
  --cyan-500: #2aa8d8;
  --cyan-400: #3fc1e0;
  --cyan-300: #7ad7ee;

  /* Neutrals */
  --white: #ffffff;
  --grey-50: #f5f8fb;
  --grey-100: #e9eff5;
  --grey-200: #d7e0ea;
  --grey-400: #8fa1b3;
  --slate-600: #56687a;
  --slate-800: #33475b;

  /* Semantic */
  --green-600: #1e9e6a;
  --green-50: #e8f7f0;
  --amber-600: #c77c02;

  --grad-brand: linear-gradient(120deg, var(--cyan-400), var(--blue-600));
  --grad-brand-hover: linear-gradient(120deg, #58cde8, #2179c9);
  --grad-brand-active: linear-gradient(120deg, #33b5d9, #155ba0);
  --grad-hero: radial-gradient(1200px 600px at 75% -10%, rgba(42, 168, 216, 0.28), transparent 60%),
               radial-gradient(900px 500px at 10% 110%, rgba(27, 111, 191, 0.25), transparent 55%),
               linear-gradient(160deg, var(--navy-900), var(--navy-950));

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-card: 0 6px 24px rgba(10, 27, 51, 0.08);
  --shadow-card-hover: 0 14px 38px rgba(10, 27, 51, 0.16);
  --container: 1180px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate-800);
  background: var(--white);
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.18;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.3em; }
:focus-visible { outline: 3px solid var(--cyan-500); outline-offset: 2px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--grey { background: var(--grey-50); }
.section--navy { background: var(--grad-hero); color: var(--grey-100); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: var(--grey-100); }
/* White cards placed inside navy sections keep dark text */
.section--navy .card h3, .section--navy .card h4 { color: var(--navy-900); }
.section--navy .card p { color: var(--slate-600); }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.section--navy .kicker { color: var(--cyan-400); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--centre { margin-left: auto; margin-right: auto; text-align: center; }
.lede { font-size: 1.18rem; color: var(--slate-600); }
.section--navy .lede { color: var(--grey-200); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  cursor: pointer;
  isolation: isolate;
  transition: box-shadow 0.18s ease, background-color 0.18s ease, background-image 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  text-decoration: none !important;
}
.btn--primary {
  border: none;
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(33, 137, 214, 0.28);
}
.btn--primary:hover { background: var(--grad-brand-hover); box-shadow: 0 8px 22px rgba(33, 137, 214, 0.4); }
.btn--primary:active { background: var(--grad-brand-active); box-shadow: 0 3px 10px rgba(33, 137, 214, 0.3); }
.btn--ghost { border-color: var(--grey-200); color: var(--navy-900); background: var(--white); }
.btn--ghost:hover { border-color: var(--cyan-500); color: var(--blue-600); box-shadow: 0 4px 14px rgba(10, 27, 51, 0.08); }
.btn--ghost-dark { border-color: rgba(255, 255, 255, 0.4); color: var(--white); background: rgba(255, 255, 255, 0.04); }
.btn--ghost-dark:hover { border-color: var(--cyan-400); background: rgba(63, 193, 224, 0.14); }
.btn--small { min-height: 40px; padding: 0 20px; font-size: 0.9rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; padding-top: 10px; padding-bottom: 10px; }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 18, 37, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav-links > li { position: relative; flex-shrink: 0; }
.nav-links a {
  display: block;
  padding: 10px 12px;
  color: var(--grey-100);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius-s);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--cyan-300);
  text-decoration: none;
  background: rgba(63, 193, 224, 0.1);
}
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
}

/* Dropdown */
.has-dropdown > a::after { content: " ▾"; font-size: 0.7em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card-hover);
  padding: 10px;
  list-style: none;
  margin: 6px 0 0;
  display: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a { color: var(--slate-800); font-weight: 500; padding: 10px 14px; }
.dropdown a:hover { color: var(--blue-600); background: var(--grey-50); }

/* ---------- Hero ---------- */
.hero {
  background: var(--grad-hero);
  color: var(--grey-100);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero h1 { color: var(--white); max-width: 15ch; }
.hero h1 .grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede { max-width: 56ch; color: var(--grey-200); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 46px; }
.hero-badges .seal {
  display: block;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(63, 193, 224, 0.35);
}
.hero-badges .seal img { display: block; height: 148px; width: auto; }
.hero-badges .badge-note { font-size: 0.95rem; color: var(--grey-200); max-width: 24ch; }

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-l);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel h3 { color: var(--white); font-size: 1.1rem; }

/* ---------- Stats ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat-card h3 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.stat-card p { color: var(--slate-600); font-size: 0.98rem; margin: 0; }
.section--navy .stat-card p { color: var(--grey-200); }

/* ---------- Cards & grids ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-m);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--cyan-400); }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(63, 193, 224, 0.14), rgba(27, 111, 191, 0.14));
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.card .icon img { width: 32px; height: 32px; }
.card p { color: var(--slate-600); font-size: 0.99rem; }
.card .card-link { margin-top: auto; font-weight: 600; font-family: var(--font-head); font-size: 0.95rem; }
.card .card-link::after { content: " →"; }

/* ---------- Logo strip (bordered grid cells) ---------- */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 14px; }
.logo-strip img {
  height: 84px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  padding: 20px 28px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-m);
  filter: grayscale(1) opacity(0.66);
  transition: filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.logo-strip img:hover { filter: none; border-color: var(--grey-200); box-shadow: var(--shadow-card); }
.logo-strip img.logo-dark { background: var(--navy-900); border-color: var(--navy-800); filter: opacity(0.72); }
.logo-strip img.logo-dark:hover { background: var(--navy-900); border-color: var(--navy-800); filter: none; }

/* ---------- Process timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 26px 20px 20px; background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-m); box-shadow: var(--shadow-card); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--grad-brand);
  border-radius: 999px;
  padding: 4px 12px;
  position: absolute;
  top: -14px;
  left: 20px;
}
.step h4 { margin-top: 6px; }
.step p { font-size: 0.93rem; color: var(--slate-600); margin: 0; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border-left: 4px solid var(--cyan-500);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 30px 30px 24px;
}
.quote-card blockquote { margin: 0 0 16px; font-size: 1.02rem; color: var(--slate-800); font-style: italic; }
.quote-card figcaption { font-family: var(--font-head); font-weight: 600; color: var(--navy-900); font-size: 0.95rem; }
.quote-card figcaption span { display: block; font-weight: 400; color: var(--slate-600); font-size: 0.88rem; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border: 1px solid var(--grey-100); border-radius: var(--radius-m); overflow: hidden; background: var(--white); }
.accordion details { border-bottom: 1px solid var(--grey-100); }
.accordion details:last-child { border-bottom: 0; }
.accordion summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.3rem; color: var(--cyan-500); flex-shrink: 0; }
.accordion details[open] summary::after { content: "–"; }
.accordion .acc-body { padding: 0 24px 22px; color: var(--slate-600); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-m); border: 1px solid var(--grey-100); box-shadow: var(--shadow-card); }
table.data { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.97rem; min-width: 640px; }
table.data th, table.data td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--grey-100); }
table.data thead th { background: var(--navy-900); color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
table.data tbody tr:hover { background: var(--grey-50); }
table.data .highlight { background: var(--green-50); font-weight: 600; }

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--navy-900); margin-bottom: 7px; }
.field .hint { font-size: 0.85rem; color: var(--slate-600); margin-top: 5px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="number"], .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(42, 168, 216, 0.18);
  outline: none;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field .error-msg { color: #c0392b; font-size: 0.85rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .error-msg { display: block; }

/* Choice chips (radio/checkbox cards) */
.chip-group { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1.5px solid var(--grey-200);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-800);
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip input:checked + span {
  border-color: var(--blue-600);
  background: linear-gradient(135deg, rgba(63, 193, 224, 0.12), rgba(27, 111, 191, 0.12));
  color: var(--blue-600);
  font-weight: 600;
}
.chip input:focus-visible + span { outline: 3px solid var(--cyan-500); outline-offset: 2px; }

/* Option cards (bigger selectable tiles) */
.option-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.option-card { position: relative; }
.option-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.option-card .oc-body {
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-m);
  padding: 24px;
  height: 100%;
  cursor: pointer;
  transition: all 0.15s ease;
  background: var(--white);
}
.option-card input:checked + .oc-body {
  border-color: var(--blue-600);
  background: linear-gradient(135deg, rgba(63, 193, 224, 0.08), rgba(27, 111, 191, 0.08));
  box-shadow: 0 0 0 3px rgba(42, 168, 216, 0.15);
}
.option-card input:focus-visible + .oc-body { outline: 3px solid var(--cyan-500); outline-offset: 2px; }
.option-card h4 { margin-bottom: 6px; }
.option-card p { font-size: 0.92rem; color: var(--slate-600); margin: 0; }

/* Stepper */
.stepper { display: flex; gap: 8px; margin-bottom: 34px; }
.stepper .st {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: var(--grey-200);
  transition: background 0.3s ease;
}
.stepper .st.active { background: var(--grad-brand); }
.step-label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--blue-600); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.form-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; }

/* ---------- Calculator ---------- */
.calc-shell { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 34px; align-items: start; }
.calc-panel { background: var(--white); border: 1px solid var(--grey-100); border-radius: var(--radius-l); box-shadow: var(--shadow-card); padding: 34px; }
.calc-summary {
  position: sticky;
  top: 96px;
  background: var(--grad-hero);
  color: var(--white);
  border-radius: var(--radius-l);
  padding: 34px 30px;
}
.calc-summary h3 { color: var(--white); }
.calc-summary .big-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.calc-summary .sub { color: var(--grey-200); font-size: 0.95rem; }
.calc-summary hr { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.15); margin: 20px 0; }
.summary-line { display: flex; justify-content: space-between; gap: 12px; font-size: 0.97rem; padding: 5px 0; }
.summary-line strong { font-family: var(--font-head); }
.saving-positive { color: #5eeaa9; }
.saving-negative { color: #ffb3a0; }

.tool-row {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.7fr 0.8fr 40px;
  gap: 12px;
  align-items: end;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-100);
}
.tool-row label { font-size: 0.8rem; font-weight: 600; color: var(--slate-600); display: block; margin-bottom: 5px; font-family: var(--font-head); }
.tool-row select, .tool-row input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-s);
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.tool-row .remove-row {
  background: none;
  border: 0;
  color: var(--grey-400);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px 4px;
  border-radius: 6px;
}
.tool-row .remove-row:hover { color: #c0392b; background: var(--grey-50); }
.add-row-btn {
  margin-top: 18px;
  background: none;
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius-s);
  width: 100%;
  padding: 13px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blue-600);
  cursor: pointer;
  transition: all 0.15s ease;
}
.add-row-btn:hover { border-color: var(--cyan-500); background: rgba(42, 168, 216, 0.05); }

/* Employee range slider (Duolingo-style, paired with the number input) */
input[type="range"].calc-slider {
  width: 100%;
  margin-top: 14px;
  accent-color: var(--blue-600);
  cursor: pointer;
}

/* Cost comparison bars in the summary (Coda-style us-vs-them) */
.compare-bars { display: grid; gap: 12px; margin: 6px 0 4px; }
.compare-bars .cb-row { display: grid; gap: 5px; }
.compare-bars .cb-label { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--grey-200); }
.compare-bars .cb-track { height: 12px; border-radius: 99px; background: rgba(255, 255, 255, 0.12); overflow: hidden; }
.compare-bars .cb-fill { height: 100%; border-radius: 99px; transition: width 0.45s ease; }
.compare-bars .cb-fill--current { background: #ffb3a0; }
.compare-bars .cb-fill--zoho { background: var(--grad-brand); }

/* Questionnaire split layout (Jobber-style reassurance panel) */
.gs-layout { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 30px; align-items: start; }
.gs-side { position: sticky; top: 96px; display: grid; gap: 16px; }
.gs-side .fact {
  background: var(--grad-hero);
  color: var(--grey-100);
  border-radius: var(--radius-m);
  padding: 22px 22px 18px;
  font-size: 0.95rem;
}
.gs-side .fact strong { display: block; font-family: var(--font-head); color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
@media (max-width: 1024px) {
  .gs-layout { grid-template-columns: 1fr; }
  .gs-side { position: static; }
}

/* ---------- Apps directory ---------- */
.app-card { text-align: left; }
.app-card .app-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.app-card .app-head img { width: 44px; height: 44px; }
.app-card .app-head h3 { margin: 0; font-size: 1.15rem; }
.app-card .app-tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan-500); font-family: var(--font-head); }
.app-card .app-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; padding-top: 16px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-hero);
  border-radius: var(--radius-l);
  padding: 60px 52px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: var(--grey-200); margin: 0; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--grey-200); padding: 64px 0 32px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--grey-200); }
.site-footer a:hover { color: var(--cyan-300); }
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--grey-400);
}

/* ---------- Utility ---------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(63, 193, 224, 0.12);
  color: var(--cyan-300);
  border: 1px solid rgba(63, 193, 224, 0.3);
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.badge-pill--light { background: rgba(27, 111, 191, 0.08); color: var(--blue-600); border-color: rgba(27, 111, 191, 0.25); }
.text-centre { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-l { margin-bottom: 48px; }
.note { font-size: 0.85rem; color: var(--slate-600); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .calc-shell { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
  .card-grid, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 44px 32px; }
  .tool-row { grid-template-columns: 1fr 1fr; }
  .tool-row .remove-row { justify-self: end; }
}
@media (max-width: 1040px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-950);
    padding: 14px 20px 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
  }
  .nav-links.open { display: flex; }
  .nav-links a { white-space: normal; }
  .nav-toggle { display: block; }
  .dropdown { position: static; box-shadow: none; background: transparent; padding-left: 18px; display: block; margin: 0; }
  .dropdown a { color: var(--grey-200); font-size: 0.9rem; }
  .has-dropdown > a::after { content: ""; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .card-grid, .card-grid--2, .card-grid--4, .steps, .option-cards, .field-row { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .hero-badges .seal img { height: 92px; }
  .hero-badges .seal { padding: 12px 16px; }
}
