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

/* ── Fonts ───────────────────────────────────────────────────────────────── */

/* ── 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(--ink-900); border-bottom: 1px solid rgba(255,255,255,.08);
  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: 42px; 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: rgba(255,255,255,.85);
  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; }
/* Push the Resources / Help Centre / Contact Us group to the right */
.nav__links > li:nth-child(4) { margin-left: auto; }

/* 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: rgba(255,255,255,.85); 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: 100%; 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 spanning the full gap (incl. over the toggle) so hover never drops */
.nav__dropdown-menu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
}
.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); }

/* Phone number in the nav */
.nav__phone a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); font-size: var(--fs-small); font-weight: 600; white-space: nowrap; transition: color var(--dur-base) var(--ease-out); }
.nav__phone a:hover { color: var(--red); text-decoration: none; }
.nav__phone svg { color: var(--red); flex-shrink: 0; }

/* Global search trigger in the (dark) nav */
.nav #gs-trigger { color: rgba(255,255,255,.85); }
.nav #gs-trigger:hover { background: rgba(255,255,255,.12) !important; color: var(--red) !important; }
#gs-trigger-mob { color: rgba(255,255,255,.85); }

/* Mega-menu (Products) — grouped columns */
.nav__mega { left: 0; transform: none; width: max-content; max-width: min(840px, 94vw); padding: var(--sp-5) var(--sp-5) var(--sp-4); }
.nav__dropdown:hover .nav__mega { display: grid; }
.nav__mega { grid-template-columns: repeat(4, minmax(150px, 1fr)); gap: var(--sp-2) var(--sp-5); align-items: start; }
.nav__mega-col { display: flex; flex-direction: column; min-width: 0; }
.nav__mega-h {
  font-family: var(--font-display); font-size: var(--fs-caption); font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--tr-ultra); color: var(--red);
  padding: 0 var(--sp-3) var(--sp-2);
}
.nav__mega a { padding: 6px var(--sp-3); border-bottom: none; white-space: nowrap; }

/* 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: rgba(255,255,255,.15); 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: #fff; 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:
    radial-gradient(100% 80% at 50% 128%, rgba(237,28,36,.22) 0%, transparent 62%),
    radial-gradient(70% 60% at 88% 108%, rgba(237,28,36,.12) 0%, transparent 60%),
    linear-gradient(180deg, #0b0b0c 0%, #0f0f12 55%, #1a1a1f 100%);
  color: var(--white);
  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;
}
/* Subtle hexagon texture for integration & CRM page heroes (prominent version lives on the integrations home hero) */
.page-hero--hex::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("assets/hex-bg-lg.webp") center / cover no-repeat;
  opacity: .13;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 94%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 94%);
}
/* Faint tech circuit-line texture (matches the home hero) for selected product page heroes */
.page-hero--tech::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><g fill='none' stroke='rgba(255,255,255,0.045)' stroke-width='1' stroke-linecap='round'><path d='M0 46H64V14'/><path d='M180 112H104V162'/><path d='M44 0V64H132'/><path d='M22 180V120H78'/><path d='M132 64V134'/><path d='M104 14V62'/></g><g fill='rgba(255,255,255,0.09)'><circle cx='64' cy='46' r='2.4'/><circle cx='104' cy='112' r='2.4'/><circle cx='132' cy='64' r='2.4'/><circle cx='78' cy='120' r='2.4'/><circle cx='44' cy='64' r='2.4'/><circle cx='104' cy='62' r='2.4'/></g></svg>") 0 0 / 180px 180px;
}
.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); }

/* ── Pricing hero (plans above the fold) ─────────────────────────────────── */
.pricing-hero { padding: var(--sp-7) var(--sp-6) var(--sp-8); }
.pricing-hero h1 { font-size: var(--fs-h2); max-width: 900px; margin-bottom: var(--sp-3); }
.pricing-hero .lead { margin-bottom: var(--sp-6); max-width: 720px; }
.pricing-hero__cards { margin-top: var(--sp-6); align-items: stretch; }
.pricing-card { position: relative; padding: var(--sp-6) var(--sp-5); gap: var(--sp-4); border: 2px solid var(--ink-200); }
.pricing-card--popular { border-color: var(--red); }
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card h4 { font-family: var(--font-display); font-size: var(--fs-h3); color: var(--ink-900); }
.pricing-card__amt { font-family: var(--font-mono); font-size: var(--fs-h2); color: var(--red); }
.pricing-card__per { font-size: var(--fs-body); font-weight: 500; color: var(--fg-2); }
.pricing-card p { font-size: var(--fs-small); color: var(--fg-2); }
.pricing-card .checklist { margin-top: var(--sp-1); gap: var(--sp-2); }
.pricing-card .checklist li { font-size: var(--fs-small); }
.pricing-card .btn { margin-top: auto; align-self: stretch; justify-content: center; }
.pricing-card__badge {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  background: var(--red); color: var(--white);
  font-family: var(--font-display); font-size: var(--fs-caption); font-weight: 600;
  letter-spacing: var(--tr-wide); text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--radius-pill);
}
.pricing-hero__note {
  margin-top: var(--sp-5); max-width: 880px;
  font-size: var(--fs-small); color: rgba(255,255,255,.6); line-height: var(--lh-normal);
}
.pricing-hero__note a { color: var(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── 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); }
a.feature-card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
a.feature-card:hover h4 { color: var(--red); }
.feature-card__arrow { margin-top: auto; padding-top: var(--sp-4); color: var(--red); font-size: var(--fs-small); font-weight: 600; }
.feature-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);
  margin-bottom: var(--sp-2);
}
.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__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); flex-shrink: 0; margin-bottom: var(--sp-2);
}
.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)); }

/* ── Video grid ──────────────────────────────────────────────────────────── */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-6); margin-top: var(--sp-7);
}
.video-card {
  background: var(--white); border: var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-1); transition: box-shadow var(--dur-med), transform var(--dur-med);
}
.video-card:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); }
.video-card video {
  display: block; width: 100%; aspect-ratio: 16 / 9;
  object-fit: cover; background: var(--ink-900);
}
.video-card__body { padding: var(--sp-5) var(--sp-5) var(--sp-6); }
.video-card__body h4 { font-size: var(--fs-h5); color: var(--ink-900); margin: 0 0 var(--sp-2); }
.video-card__body p { font-size: var(--fs-small); color: var(--fg-2); margin: 0; line-height: var(--lh-normal); }
.section--dark .video-card__body h4 { color: var(--ink-900); }
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 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); }

/* ── Compare table (pricing) ─────────────────────────────────────────────── */
.cmp-table-wrap { margin-top: var(--sp-7); overflow-x: auto; border: var(--border-subtle); border-radius: var(--radius-lg); }
.cmp-table { width: 100%; border-collapse: collapse; font-size: var(--fs-body); min-width: 600px; }
.cmp-table th, .cmp-table td { padding: var(--sp-4) var(--sp-5); text-align: left; border-bottom: var(--border-subtle); vertical-align: middle; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table thead th { font-family: var(--font-display); font-weight: 600; background: var(--ink-900); color: var(--white); border-bottom: none; }
.cmp-table thead th:first-child { width: 46%; }
.cmp-table thead th:not(:first-child) { text-align: center; }
.cmp-table thead th.cmp-head-bundle { background: var(--red); }
.cmp-col-head { display: block; font-size: var(--fs-lead); }
.cmp-col-sub { display: block; font-family: var(--font-ui); font-weight: 400; font-size: var(--fs-caption); color: rgba(255,255,255,.7); text-transform: none; letter-spacing: 0; margin-top: 2px; }
.cmp-table td:not(:first-child) { text-align: center; }
.cmp-table tbody tr:hover td { background: var(--ink-50); }
.cmp-table tbody tr:hover td.cmp-bundle-col { background: var(--red-100); }
.cmp-group td { background: var(--ink-100); font-family: var(--font-display); font-weight: 700; font-size: var(--fs-small); text-transform: uppercase; letter-spacing: var(--tr-wide); color: var(--ink-600); padding-top: var(--sp-3); padding-bottom: var(--sp-3); }
.cmp-feat { color: var(--ink-900); font-weight: 500; }
.cmp-feat small { display: block; font-size: var(--fs-small); color: var(--fg-3); font-weight: 400; margin-top: 2px; }
.cmp-table td.cmp-bundle-col { background: var(--red-50); }
.cmp-yes { color: var(--red); font-weight: 600; font-size: var(--fs-small); }
.cmp-check { color: var(--red); display: inline-block; vertical-align: middle; }
.cmp-price { color: var(--ink-900); font-weight: 600; font-family: var(--font-mono); font-size: var(--fs-small); }
.cmp-na { color: var(--ink-400); }
.cmp-note { font-size: var(--fs-small); color: var(--fg-3); margin-top: var(--sp-5); line-height: var(--lh-normal); }

/* ── 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); }
}
