/* =========================================================================
   JET CALL TRACKING — Shared Site Styles
   ========================================================================= */

/* ── Fonts ───────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@400;500;600;700;800&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  --red:           #ED1C24;
  --red-dark:      #A71C20;
  --red-darker:    #7A1418;
  --red-100:       #FDE7E8;
  --red-50:        #FEF3F4;

  --black:         #000;
  --white:         #fff;

  --ink-950:       #050506;
  --ink-900:       #0B0B0C;
  --ink-800:       #1A1A1E;
  --ink-700:       #2A2A2E;
  --ink-600:       #4A4D55;
  --ink-500:       #6B6E76;
  --ink-400:       #9A9DA4;
  --ink-300:       #C9CCD1;
  --ink-200:       #E1E4E8;
  --ink-100:       #EEF0F3;
  --ink-50:        #F7F8FA;

  --fg-1:          var(--ink-900);
  --fg-2:          var(--ink-600);
  --fg-3:          var(--ink-500);

  --border:        1px solid var(--ink-300);
  --border-subtle: 1px solid var(--ink-200);

  --grad-logo:     linear-gradient(90deg, var(--red-dark) 0%, var(--red) 100%);
  --grad-hero:     linear-gradient(135deg, #7A1418 0%, var(--red-dark) 40%, var(--red) 100%);

  --font-display:  'Saira', 'Arial Narrow', system-ui, sans-serif;
  --font-ui:       'Barlow', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  --fs-caption:    12px;
  --fs-small:      14px;
  --fs-body:       16px;
  --fs-lead:       18px;
  --fs-h5:         20px;
  --fs-h4:         24px;
  --fs-h3:         32px;
  --fs-h2:         44px;
  --fs-h1:         64px;

  --lh-tight:      1.05;
  --lh-snug:       1.2;
  --lh-normal:     1.5;

  --tr-tight:      -0.02em;
  --tr-snug:       -0.01em;
  --tr-ultra:      0.14em;
  --tr-wide:       0.06em;

  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --radius-0:    0;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  --shadow-1:   0 1px 2px rgba(11,11,12,.06), 0 1px 3px rgba(11,11,12,.08);
  --shadow-2:   0 4px 12px rgba(11,11,12,.08), 0 2px 4px rgba(11,11,12,.06);
  --shadow-3:   0 20px 40px rgba(11,11,12,.14), 0 8px 16px rgba(11,11,12,.08);
  --shadow-4:   0 32px 64px rgba(11,11,12,.18), 0 12px 24px rgba(11,11,12,.10);
  --shadow-red: 0 8px 24px rgba(237,28,36,.24);

  --ease-out:   cubic-bezier(.2,.8,.2,1);
  --ease-io:    cubic-bezier(.4,0,.2,1);
  --dur-fast:   80ms;
  --dur-base:   140ms;
  --dur-med:    220ms;

  --max-w:      1200px;
  --nav-h:      72px;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--fs-body); -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--font-ui); color: var(--fg-1); line-height: var(--lh-normal); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: var(--white); }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: var(--tr-tight); line-height: var(--lh-tight);
  color: var(--ink-900);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: var(--tr-snug); }
h4 { font-size: var(--fs-h4); font-weight: 600; letter-spacing: var(--tr-snug); }
h5 { font-size: var(--fs-h5); font-weight: 600; }
p { color: var(--fg-1); }

.lead  { font-size: var(--fs-lead); color: var(--fg-2); line-height: var(--lh-normal); }
.small { font-size: var(--fs-small); color: var(--fg-2); }
.eyebrow {
  font-family: var(--font-display); font-size: var(--fs-small);
  font-weight: 600; letter-spacing: var(--tr-ultra); text-transform: uppercase;
  color: var(--red); display: block;
}

a { color: var(--red); text-decoration: none; transition: opacity var(--dur-base) var(--ease-out); }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.jet-gradient-text { background: var(--grad-logo); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-bottom: var(--border);
  height: var(--nav-h);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--sp-6); height: 100%;
  display: flex; align-items: center; gap: var(--sp-6);
}
.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 30px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: var(--sp-5);
  list-style: none; flex: 1;
}
.nav__links > li > a {
  font-size: var(--fs-small); font-weight: 500; color: var(--fg-1);
  text-decoration: none; white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out);
}
.nav__links > li > a:hover { color: var(--red); text-decoration: none; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font-ui); font-size: var(--fs-small); font-weight: 500;
  color: var(--fg-1); white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out);
}
.nav__dropdown-toggle:hover { color: var(--red); }
.nav__dropdown-toggle svg { transition: transform var(--dur-base) var(--ease-out); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-3); min-width: 220px; padding: var(--sp-2) 0; z-index: 300;
}
/* Invisible bridge across the gap so hover doesn't drop when moving to the menu */
.nav__dropdown-menu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-small); color: var(--fg-1); text-decoration: none;
  border-bottom: var(--border-subtle);
  transition: background var(--dur-base), color var(--dur-base);
}
.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover { background: var(--ink-50); color: var(--red); text-decoration: none; }
.nav__dropdown-menu a svg { flex-shrink: 0; color: var(--red); }

/* CTA button in nav */
.nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 var(--sp-5);
  background: var(--red); color: var(--white); border-radius: var(--radius-sm);
  font-size: var(--fs-small); font-weight: 600; text-decoration: none;
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--red-dark); box-shadow: var(--shadow-red); text-decoration: none; }

/* Spacer */
.nav__sep { width: 1px; height: 20px; background: var(--ink-200); flex-shrink: 0; }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: var(--sp-2); width: 40px; height: 40px; flex-shrink: 0; margin-left: auto;
}
.nav__burger span {
  display: block; height: 2px; background: var(--fg-1); border-radius: 2px;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-base);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); overflow-y: auto; z-index: 199;
  padding: var(--sp-5) var(--sp-6);
  flex-direction: column; gap: var(--sp-1);
  border-top: var(--border);
}
.nav__drawer.open { display: flex; }
.nav__drawer > a {
  display: block; padding: var(--sp-3) 0;
  font-size: var(--fs-lead); color: var(--fg-1); text-decoration: none;
  border-bottom: var(--border);
}
.nav__drawer > a:hover { color: var(--red); text-decoration: none; }
.nav__drawer-label {
  font-family: var(--font-display); font-size: var(--fs-caption);
  font-weight: 600; text-transform: uppercase; letter-spacing: var(--tr-ultra);
  color: var(--fg-3); margin-top: var(--sp-4); margin-bottom: var(--sp-1);
}
.nav__drawer-sub { display: flex; flex-direction: column; }
.nav__drawer-sub a {
  display: block; padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-body); color: var(--fg-2); text-decoration: none;
  border-bottom: var(--border-subtle);
}
.nav__drawer-sub a:hover { color: var(--red); text-decoration: none; }
.nav__drawer .nav__cta {
  display: flex; justify-content: center; margin-top: var(--sp-5);
  height: 50px; font-size: var(--fs-body);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 var(--sp-6);
  font-family: var(--font-ui); font-size: var(--fs-body); font-weight: 600;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform var(--dur-fast), box-shadow var(--dur-base), background var(--dur-base);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-sm { height: 40px; padding: 0 var(--sp-5); font-size: var(--fs-small); }

.btn-red    { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-dark); }
.btn-white  { background: var(--white); color: var(--red); box-shadow: var(--shadow-2); }
.btn-white:hover { box-shadow: var(--shadow-3); color: var(--red); }
.btn-ghost  { background: rgba(255,255,255,.1); color: var(--white); border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); color: var(--white); }
.btn-outline { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline:hover { background: var(--red-50); }

.cta-group { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ── Layout / Sections ───────────────────────────────────────────────────── */
.section { padding: var(--sp-9) var(--sp-6); }
.section--alt  { background: var(--ink-50); }
.section--dark { background: var(--ink-900); color: var(--white); }
.section--red  { background: var(--red); color: var(--white); }
.section--grad { background: var(--grad-hero); color: var(--white); }
.section--border-top { border-top: var(--border); }

.section__inner { max-width: var(--max-w); margin: 0 auto; }

.section__eyebrow { color: var(--red); margin-bottom: var(--sp-3); }
.section--dark .section__eyebrow,
.section--red .section__eyebrow,
.section--grad .section__eyebrow { color: rgba(255,255,255,.7); }

.section__headline {
  font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 700;
  letter-spacing: var(--tr-tight); line-height: var(--lh-tight);
  color: var(--ink-900); margin-bottom: var(--sp-5);
}
.section--dark .section__headline,
.section--red .section__headline,
.section--grad .section__headline { color: var(--white); }

.section__desc { font-size: var(--fs-lead); color: var(--fg-2); max-width: 680px; margin-bottom: var(--sp-7); }
.section--dark .section__desc,
.section--red .section__desc,
.section--grad .section__desc { color: rgba(255,255,255,.8); }

/* ── Page Hero (internal pages) ──────────────────────────────────────────── */
.page-hero {
  margin-top: var(--nav-h);
  padding: var(--sp-9) var(--sp-6) var(--sp-8);
  background: var(--grad-hero);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 .06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .4; mix-blend-mode: overlay; pointer-events: none;
}
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { color: rgba(255,255,255,.75); margin-bottom: var(--sp-4); }
.page-hero h1 { color: var(--white); font-size: var(--fs-h1); max-width: 800px; margin-bottom: var(--sp-5); }
.page-hero .lead { color: rgba(255,255,255,.85); max-width: 640px; margin-bottom: var(--sp-7); }

/* ── Feature grid ────────────────────────────────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5); margin-top: var(--sp-7);
}
.feature-card {
  background: var(--white); border: var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-6); box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur-med), transform var(--dur-med);
}
.feature-card:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); }
.feature-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--red-100); display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: var(--sp-4); flex-shrink: 0;
}
.feature-card h4 { font-size: var(--fs-h5); margin-bottom: var(--sp-3); color: var(--ink-900); }
.feature-card p { font-size: var(--fs-body); color: var(--fg-2); margin: 0; line-height: var(--lh-normal); }

/* Bordered feature card variant */
.feature-card--alt {
  border-left: 3px solid var(--red); border-radius: var(--radius-md);
}

/* ── Checklist / Use-cases ───────────────────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.checklist li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: var(--fs-body); color: var(--fg-1); line-height: var(--lh-normal);
}
.checklist li::before {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ED1C24' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.checklist--white li { color: rgba(255,255,255,.9); }
.checklist--white li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* ── Steps (How It Works) ────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-top: var(--sp-7); }
.step { position: relative; padding: var(--sp-6); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: var(--sp-6); right: calc(var(--sp-6) * -0.5);
  width: 1px; height: 60px; background: var(--ink-200);
}
.step__num {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  color: var(--red-100); line-height: 1; margin-bottom: var(--sp-4);
}
.step h4 { font-size: var(--fs-h4); margin-bottom: var(--sp-3); color: var(--ink-900); }
.step p { color: var(--fg-2); line-height: var(--lh-normal); }

/* ── Trust bar ───────────────────────────────────────────────────────────── */
.trust-bar { background: var(--ink-900); padding: var(--sp-5) var(--sp-6); }
.trust-bar__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-8); flex-wrap: wrap;
}
.trust-bar__item {
  display: flex; align-items: center; gap: var(--sp-3);
  color: rgba(255,255,255,.65); font-size: var(--fs-small); font-weight: 500;
}
.trust-bar__item svg { color: var(--red); flex-shrink: 0; }

/* ── Two-column layouts ──────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: start; }
.two-col--wide { grid-template-columns: 3fr 2fr; }
.two-col--narrow { grid-template-columns: 2fr 3fr; }

/* ── Solutions / Industries strip ───────────────────────────────────────── */
.card-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-7); }
.strip-card {
  background: var(--white); border: var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-6); text-decoration: none;
  transition: box-shadow var(--dur-med), transform var(--dur-med), border-color var(--dur-med);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.strip-card:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); border-color: var(--red); text-decoration: none; }
.strip-card__label {
  font-family: var(--font-display); font-size: var(--fs-caption); font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--tr-ultra); color: var(--red);
}
.strip-card h4 { font-size: var(--fs-h5); color: var(--ink-900); margin: 0; }
.strip-card p { font-size: var(--fs-small); color: var(--fg-2); margin: 0; line-height: var(--lh-normal); }
.strip-card__arrow { margin-top: auto; color: var(--red); font-size: var(--fs-small); font-weight: 600; }
.strip-card__logo { width: 40px; height: 40px; object-fit: contain; display: block; }

/* Logo chip on page heroes — white tile so full-colour logos stay legible on dark/red */
.page-hero__logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-2);
  margin-bottom: var(--sp-5);
}
.page-hero__logo img { width: 42px; height: 42px; object-fit: contain; }

/* Wider strip (4 or more items) */
.card-strip--4 { grid-template-columns: repeat(4, 1fr); }
.card-strip--auto { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* ── CTA strip ───────────────────────────────────────────────────────────── */
.cta-strip { text-align: center; }
.cta-strip h2 { color: var(--white); font-size: var(--fs-h2); margin-bottom: var(--sp-4); }
.cta-strip p { font-size: var(--fs-lead); color: rgba(255,255,255,.85); margin-bottom: var(--sp-7); }
.cta-strip .cta-group { justify-content: center; }

/* ── Value prop pair (icon + text) ───────────────────────────────────────── */
.vp-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.vp-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.vp-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--red-100); display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.vp-icon--dark { background: rgba(255,255,255,.1); color: var(--white); }
.vp-content h5 { font-size: var(--fs-h5); margin-bottom: var(--sp-2); color: var(--ink-900); }
.section--dark .vp-content h5,
.section--grad .vp-content h5 { color: var(--white); }
.vp-content p { font-size: var(--fs-body); color: var(--fg-2); margin: 0; line-height: var(--lh-normal); }
.section--dark .vp-content p,
.section--grad .vp-content p { color: rgba(255,255,255,.75); }

/* ── Data row (reporting page) ───────────────────────────────────────────── */
.data-table { border: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: var(--sp-6); }
.data-row {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5); border-bottom: var(--border-subtle);
}
.data-row:last-child { border-bottom: none; }
.data-row:nth-child(even) { background: var(--ink-50); }
.data-row__label { font-weight: 500; color: var(--fg-2); font-size: var(--fs-small); min-width: 180px; flex-shrink: 0; }
.data-row__val { font-size: var(--fs-body); color: var(--ink-900); }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-6); }
.faq__item { border: var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq__q {
  padding: var(--sp-5) var(--sp-6); background: var(--white);
  font-size: var(--fs-body); font-weight: 600; color: var(--ink-900);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4); list-style: none;
}
.faq__q:hover { background: var(--ink-50); }
.faq__q svg { flex-shrink: 0; color: var(--red); transition: transform var(--dur-base); }
details[open] .faq__q svg { transform: rotate(180deg); }
.faq__a { padding: var(--sp-5) var(--sp-6); border-top: var(--border-subtle); }
.faq__a p { color: var(--fg-2); line-height: var(--lh-normal); margin: 0; }

/* ── Get-started options ─────────────────────────────────────────────────── */
.get-started-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-7); }
.gs-card {
  background: var(--white); border: var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6); text-align: center;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: var(--sp-4); align-items: center;
}
.gs-card__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 700;
}
.gs-card h3 { font-size: var(--fs-h4); margin: 0; }
.gs-card p { font-size: var(--fs-body); color: var(--fg-2); margin: 0; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer { background: var(--ink-900); padding: var(--sp-7) var(--sp-6) var(--sp-6); }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--sp-7); flex-wrap: wrap;
  padding-bottom: var(--sp-6); border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: var(--sp-6);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__brand img { height: 28px; width: auto; max-width: 180px; object-fit: contain; }
.footer__brand p { color: rgba(255,255,255,.5); font-size: var(--fs-small); max-width: 280px; line-height: var(--lh-normal); }
.footer__cols { display: flex; gap: var(--sp-8); flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: var(--sp-3); min-width: 130px; }
.footer__col-label {
  font-family: var(--font-display); font-size: var(--fs-small); font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--tr-ultra);
  color: rgba(255,255,255,.4); margin-bottom: var(--sp-1);
}
.footer__col a {
  text-decoration: none; color: rgba(255,255,255,.65); font-size: var(--fs-small);
  transition: color var(--dur-base) var(--ease-out); line-height: var(--lh-snug);
}
.footer__col a:hover { color: var(--white); text-decoration: none; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-4);
}
.footer__copy { color: rgba(255,255,255,.35); font-size: var(--fs-small); }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a { color: rgba(255,255,255,.35); font-size: var(--fs-small); text-decoration: none; }
.footer__legal a:hover { color: rgba(255,255,255,.65); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .page-hero h1  { font-size: var(--fs-h2); }
  .section__headline { font-size: var(--fs-h3); }
  .section { padding: var(--sp-8) var(--sp-5); }

  .two-col, .two-col--wide, .two-col--narrow { grid-template-columns: 1fr; gap: var(--sp-6); }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .card-strip, .card-strip--4 { grid-template-columns: repeat(2, 1fr); }
  .get-started-grid { grid-template-columns: 1fr; max-width: 480px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__inner { gap: var(--sp-5); }
}

@media (max-width: 600px) {
  .page-hero { padding: var(--sp-8) var(--sp-5) var(--sp-7); }
  .page-hero h1 { font-size: var(--fs-h3); }
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; justify-content: center; }
  .card-strip, .card-strip--4 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__cols { gap: var(--sp-6); }
  .trust-bar__inner { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .trust-bar { padding: var(--sp-5); }
}
