/* ===================================================================
   NorthFlow Tech — Site Stylesheet
   Brand: Pronto kit (June 2026)
   Colors: Navy #03034E · Blue #3639DF · Cyan #00EFE9 · White
   Type:   Wix Madefor Display (headings) · Onest (body)
   =================================================================== */

:root {
  /* Brand */
  --navy: #03034E;
  --navy-hover: #0A0A6E;
  --blue: #3639DF;
  --blue-hover: #4A4DE8;
  --cyan: #00EFE9;
  --cyan-soft: rgba(0, 239, 233, 0.15);

  /* Neutrals */
  --white: #FFFFFF;
  --paper: #F7F8FB;
  --paper-2: #EDF0F7;
  --line: #E3E6EE;
  --ink: #0F1226;
  --ink-2: #3C4068;
  --muted: #6E7194;

  /* System */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --gutter: 6vw;

  /* Type scale */
  --fs-display: clamp(36px, 4.6vw, 58px);
  --fs-h1: clamp(34px, 4.2vw, 52px);
  --fs-h2: clamp(26px, 3vw, 38px);
  --fs-h3: clamp(20px, 1.8vw, 24px);
  --fs-eyebrow: 12px;
  --fs-body: 16px;
  --fs-small: 14px;

  /* Shadows */
  --shadow-card: 0 1px 0 rgba(15,18,38,0.04), 0 8px 24px -8px rgba(15,18,38,0.08);
  --shadow-pop: 0 24px 60px -28px rgba(54,57,223,0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Onest', system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: var(--fs-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display-font {
  font-family: 'Wix Madefor Display', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.12;
}

p { line-height: 1.65; color: var(--ink-2); }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

/* ===== Layout ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-paper { background: var(--paper); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo {
  height: 36px; width: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--ink); font-size: 15px; font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.has-menu::after {
  content: '';
  display: inline-block; margin-left: 6px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 14px;
  width: 320px;
  display: grid; grid-template-columns: 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px; font-weight: 500;
  line-height: 1.35;
}
.dropdown a:hover { background: var(--paper); color: var(--blue); }
.dropdown a small {
  display: block;
  font-weight: 400; color: var(--muted); font-size: 12px;
  margin-top: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.nav-phone svg { width: 14px; height: 14px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Wix Madefor Display', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-pop); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--navy); color: var(--navy); }
.btn-cyan {
  background: var(--cyan); color: var(--navy);
}
.btn-cyan:hover { background: var(--white); color: var(--navy); }
.btn-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
}
.btn-light:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  cursor: pointer;
}
.nav-mobile { display: none; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); margin: 5px auto;
  transition: all .2s;
}

/* ===== Eyebrow + section heads ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  display: inline-block;
}
.section-dark .eyebrow { color: var(--cyan); }
.section-dark .eyebrow::before { background: var(--cyan); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { font-size: var(--fs-h2); margin: 12px 0 16px; }
.section-head p { font-size: 17px; color: var(--ink-2); }
.section-dark .section-head p { color: rgba(255,255,255,0.78); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 80% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(54,57,223,0.45) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0, 239, 233, 0.08);
  border: 1px solid rgba(0, 239, 233, 0.25);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 239, 233, 0.18);
}
.hero h1 {
  font-size: var(--fs-display);
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--cyan); }
.hero h1 .accent-blue { color: #8589FF; }
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.hero-meta-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
}

/* Hero visual — credential card stack */
.hero-visual {
  position: relative;
  padding: 24px;
}
.cred-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  position: relative;
}
.cred-card-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cred-card-head img { width: 38px; height: 38px; }
.cred-card-title {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--white);
}
.cred-card-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.cred-list { list-style: none; }
.cred-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cred-list li:last-child { border-bottom: none; }
.cred-list .check {
  flex: 0 0 22px; height: 22px; border-radius: 6px;
  background: rgba(0, 239, 233, 0.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.cred-list .check svg { width: 12px; height: 12px; }
.cred-list .label-small {
  display: block;
  font-size: 12px; color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.cred-badge {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
}
.cred-badge::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--cyan);
}
.cred-badge.tl { top: -10px; left: -10px; }
.cred-badge.br { bottom: -10px; right: -10px; }

/* ===== Stat bar ===== */
.stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.stat-item { padding: 28px 24px; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-item .num .unit { color: var(--blue); font-size: 22px; }
.stat-item .label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ===== Service grid (homepage) ===== */
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.svc-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  transition: all .2s ease;
  text-decoration: none;
  display: block;
}
.svc-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
}
.svc-card-icon {
  width: 44px; height: 44px;
  background: var(--paper-2);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}
.svc-card:hover .svc-card-icon { background: var(--cyan-soft); color: var(--navy); }
.svc-card-icon svg { width: 22px; height: 22px; }
.svc-card h3 {
  font-size: 19px; margin-bottom: 8px;
  color: var(--navy);
}
.svc-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.svc-card .more {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-card .more::after {
  content: '→'; transition: transform .2s;
}
.svc-card:hover .more::after { transform: translateX(4px); }

/* ===== Four lanes ===== */
.lanes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.lane {
  padding: 28px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.lane-num {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 12px;
}
.lane h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}
.lane p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ===== Why list ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.why-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.why-item .ix {
  display: inline-block;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}
.why-item h3 {
  font-size: 17px; margin-bottom: 8px;
}
.why-item p {
  font-size: 14.5px; color: var(--ink-2);
}

/* ===== Industries strip ===== */
.industries {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.industry {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: left;
  transition: all .2s;
}
.industry:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}
.industry .icon {
  width: 40px; height: 40px;
  background: var(--cyan-soft);
  color: var(--navy);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.industry .icon svg { width: 20px; height: 20px; }
.industry h3 {
  font-size: 17px; margin-bottom: 6px;
}
.industry p {
  font-size: 13px; color: var(--muted); line-height: 1.5;
}

/* ===== Compliance band ===== */
.compliance-band {
  background: linear-gradient(135deg, #03034E 0%, #14148A 100%);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  color: var(--white);
  position: relative; overflow: hidden;
}
.compliance-band::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,239,233,0.25), transparent 70%);
  pointer-events: none;
}
.compliance-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
  position: relative;
}
.compliance-grid h2 { color: var(--white); }
.compliance-grid p { color: rgba(255,255,255,0.78); }
.compliance-pillars {
  display: grid; gap: 14px;
}
.compliance-pill {
  display: flex; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 18px;
}
.compliance-pill .glyph {
  flex: 0 0 38px; height: 38px;
  border-radius: 8px;
  background: rgba(0, 239, 233, 0.14);
  color: var(--cyan);
  display: inline-flex; align-items: center; justify-content: center;
}
.compliance-pill .glyph svg { width: 18px; height: 18px; }
.compliance-pill h4 {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.compliance-pill p {
  font-size: 13px; color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ===== CTA / Contact ===== */
.cta-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}
.contact-info h2 { font-size: var(--fs-h2); margin-bottom: 16px; }
.contact-detail {
  display: flex; gap: 14px;
  margin-top: 18px;
  align-items: flex-start;
}
.contact-detail .icon {
  width: 38px; height: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-detail .icon svg { width: 18px; height: 18px; }
.contact-detail .label {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--navy);
}
.contact-detail .value { font-size: 14px; color: var(--ink-2); }
.contact-detail a.value { color: var(--blue); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-label {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}
.form-label .req { color: #DC2626; }
.form-input,
.form-textarea {
  width: 100%;
  font-family: 'Onest', sans-serif; font-size: 14px;
  padding: 11px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-foot {
  font-size: 12px; color: var(--muted); margin-top: 12px;
}

/* ===== Page hero (interior pages) ===== */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 80% at 100% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 100% 40%, black 20%, transparent 75%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--cyan); }
.page-hero h1 {
  font-size: var(--fs-h1);
  color: var(--white);
  margin-bottom: 18px;
}
.page-hero h1 .accent { color: var(--cyan); }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

/* ===== Two-col content (service pages) ===== */
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.content-grid h2 { font-size: var(--fs-h2); margin-bottom: 20px; }
.content-grid p { font-size: 16px; margin-bottom: 16px; }

.feature-list {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
}
.feature-list li {
  padding: 14px 16px;
  display: flex; gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .ck {
  flex: 0 0 22px; height: 22px;
  background: var(--cyan-soft);
  border-radius: 6px;
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-list .ck svg { width: 12px; height: 12px; }
.feature-list strong {
  color: var(--navy);
  font-weight: 600;
  display: block;
}

/* Cards row */
.cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.info-card .tag {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.info-card h3 {
  font-size: 18px; margin-bottom: 10px;
}
.info-card p { font-size: 14px; color: var(--ink-2); }
.info-card .price {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

/* Tier comparison */
.tier-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
.tier-table th, .tier-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.tier-table th {
  font-family: 'Wix Madefor Display', sans-serif;
  background: var(--paper);
  color: var(--navy);
  font-weight: 600;
}
.tier-table th.tier {
  text-align: center;
  background: var(--paper-2);
}
.tier-table th.tier.featured {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.tier-table th.tier.featured::after {
  content: 'Most Popular';
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
}
.tier-table td.tier { text-align: center; }
.tier-table td.tier.featured { background: rgba(54,57,223,0.04); }
.tier-table tr:last-child td { border-bottom: none; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo { height: 42px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.6);
  max-width: 340px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 18px; }
.footer-bottom a:hover { color: var(--cyan); }

/* ===== Utilities ===== */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.pill {
  display: inline-block;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
  background: var(--cyan-soft);
  color: var(--navy);
  border-radius: 100px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .lanes { grid-template-columns: repeat(2, 1fr); }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .compliance-grid { grid-template-columns: 1fr; gap: 32px; }
  .compliance-band { padding: 40px 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cards-row { grid-template-columns: 1fr; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .cta-block { padding: 40px 28px; }
}

@media (max-width: 720px) {
  :root { --gutter: 5vw; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-mobile {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter);
    display: none;
  }
  .nav-mobile.open { display: block; }
  .nav-mobile a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 15px; font-weight: 500;
  }
  .nav-mobile a:last-child { border-bottom: none; }
  .nav-phone { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .lanes { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: none; }
  .industries { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { gap: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
