/* ==========================================================================
   Technology Interpreters, Inc. — Stylesheet
   Enterprise cybersecurity design system
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --brand-500: #0D8EC9;
  --brand-600: #0A76AB;
  --brand-700: #075F8B;
  --brand-400: #39A6D9;
  --brand-300: #6DC0E5;
  --brand-100: #E4F3FA;

  /* Neutrals */
  --ink-900: #0A1628;
  --ink-800: #152238;
  --ink-700: #1F2E4D;
  --ink-600: #334155;
  --ink-500: #475569;
  --ink-400: #64748B;
  --ink-300: #94A3B8;
  --ink-200: #CBD5E1;
  --ink-100: #E2E8F0;
  --ink-50:  #F1F5F9;
  --surface: #FFFFFF;
  --surface-alt: #F7F9FC;

  /* Accents for data-viz / status */
  --accent-teal: #14B8A6;
  --accent-violet: #7C3AED;
  --accent-amber: #F59E0B;
  --accent-emerald: #10B981;
  --accent-rose: #F43F5E;

  /* Gradients */
  --grad-hero: radial-gradient(ellipse at 20% 10%, rgba(13, 142, 201, 0.25) 0%, transparent 50%),
               radial-gradient(ellipse at 80% 60%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
               linear-gradient(135deg, #0A1628 0%, #152238 50%, #0A1628 100%);
  --grad-brand: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
  --grad-blue-violet: linear-gradient(135deg, #0D8EC9 0%, #7C3AED 100%);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", Menlo, Consolas, monospace;

  /* Sizes */
  --container: 1200px;
  --container-wide: 1320px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.18);
  --shadow-glow: 0 0 48px rgba(13, 142, 201, 0.4);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-600);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand-600); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--brand-700); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 0.75rem;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-title p {
  font-size: 1.125rem;
  color: var(--ink-500);
}

/* ---------- Container & Sections ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; position: relative; }
section.compact { padding: 64px 0; }
section.tight { padding: 48px 0; }

.bg-alt { background: var(--surface-alt); }
.bg-dark {
  background: var(--grad-hero);
  color: #C9D6E8;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #FFFFFF; }
.bg-dark .eyebrow { color: var(--brand-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 142, 201, 0.35);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 142, 201, 0.45);
}
.btn-secondary {
  background: #fff;
  color: var(--ink-900);
  border-color: var(--ink-200);
}
.btn-secondary:hover {
  border-color: var(--brand-500);
  color: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--brand-600);
  padding-left: 4px;
  padding-right: 4px;
}
.btn-ghost:hover { color: var(--brand-700); gap: 12px; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Top bar / announcement ---------- */
.topbar {
  background: var(--ink-900);
  color: #CBD5E1;
  font-size: 0.8125rem;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.topbar a { color: var(--brand-400); font-weight: 500; }
.topbar a:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--ink-100);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--ink-700);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: all 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--brand-700);
  background: var(--brand-100);
}
.nav-cta { display: flex; gap: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--ink-900);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--grad-hero);
  color: #C9D6E8;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 142, 201, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 142, 201, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .highlight {
  background: linear-gradient(135deg, var(--brand-400) 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.1875rem;
  color: #B8C4D9;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: #94A3B8;
  font-size: 0.875rem;
}
.hero-trust strong { color: #fff; display: block; font-size: 1.5rem; font-family: var(--font-display); }

/* Hero right: animated security card */
.hero-visual {
  position: relative;
  min-height: 460px;
}
.shield-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.6));
  border: 1px solid rgba(148, 163, 184, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.shield-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.shield-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
}
.status-pill .dot {
  width: 6px; height: 6px; background: #34D399; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
}

.threat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 0.875rem;
}
.threat-row:last-child { border-bottom: 0; }
.threat-label { color: #E2E8F0; font-weight: 500; }
.threat-meta { color: #94A3B8; font-family: var(--font-mono); font-size: 0.75rem; }
.severity {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.sev-critical { background: rgba(244, 63, 94, 0.15); color: #FB7185; }
.sev-high     { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.sev-medium   { background: rgba(13, 142, 201, 0.15); color: #60A5FA; }
.sev-resolved { background: rgba(16, 185, 129, 0.15); color: #34D399; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.stat-tile {
  padding: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: var(--radius-md);
}
.stat-tile .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}
.stat-tile .lbl {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Orbiting accent behind card */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(13, 142, 201, 0.35) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-48%, -52%) scale(1.1); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 48px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--ink-100);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar-label {
  color: var(--ink-400);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface-alt);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--ink-600);
  font-weight: 500;
}
.trust-badge svg { width: 18px; height: 18px; color: var(--brand-600); }

/* ---------- Feature / Service cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--brand-100);
  color: var(--brand-600);
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--ink-500); margin-bottom: 20px; }

.feature-card.dark {
  background: linear-gradient(145deg, #152238 0%, #0A1628 100%);
  border-color: rgba(148, 163, 184, 0.15);
  color: #B8C4D9;
}
.feature-card.dark h3 { color: #fff; }
.feature-card.dark p { color: #94A3B8; }
.feature-card.dark .feature-icon {
  background: rgba(13, 142, 201, 0.15);
  color: var(--brand-400);
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px;
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.stat-item {
  position: relative;
  text-align: center;
}
.stat-item .num {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--brand-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item .lbl {
  margin-top: 10px;
  color: #94A3B8;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- Split feature (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-hero);
  aspect-ratio: 4 / 3;
  padding: 32px;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-lg);
}

/* ---------- Checklist ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--ink-700);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--brand-100);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230A76AB'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin-top: 2px;
}
.bg-dark .check-list li { color: #CBD5E1; }
.bg-dark .check-list li::before {
  background-color: rgba(13, 142, 201, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2339A6D9'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd' /%3E%3C/svg%3E");
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -16px; left: 24px;
  padding: 6px 14px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
}
.step h4 { margin-bottom: 8px; margin-top: 8px; }
.step p { color: var(--ink-500); font-size: 0.9375rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 64px;
  border-radius: var(--radius-xl);
  background: var(--grad-hero);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.3) 0%, transparent 60%),
              radial-gradient(circle at bottom left, rgba(13, 142, 201, 0.3) 0%, transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 720px; margin: 0 auto 16px; }
.cta-band p { color: #B8C4D9; max-width: 560px; margin: 0 auto 32px; font-size: 1.125rem; }

/* ---------- Testimonial ---------- */
.quote-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.quote-card .quote {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--ink-800);
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.quote-card .quote::before { content: '"'; color: var(--brand-500); font-size: 2em; line-height: 0; vertical-align: -0.15em; margin-right: 4px; }
.quote-attr { color: var(--ink-500); font-size: 0.9375rem; }
.quote-attr strong { color: var(--ink-900); display: block; margin-bottom: 2px; }

/* ---------- Form ---------- */
.form-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--ink-900);
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(13, 142, 201, 0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* ---------- Info cards (contact) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.info-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
}
.info-card .feature-icon { width: 44px; height: 44px; margin-bottom: 16px; }
.info-card .feature-icon svg { width: 22px; height: 22px; }
.info-card h4 { margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--ink-500); font-size: 0.9375rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 100px 0 72px;
  background: var(--grad-hero);
  color: #B8C4D9;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 142, 201, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 142, 201, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.page-hero-inner {
  position: relative;
  max-width: 820px;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 1.1875rem; color: #B8C4D9; margin: 0; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #94A3B8;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--brand-400); }
.breadcrumbs .sep { color: #475569; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: #94A3B8;
  padding: 72px 0 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { color: #94A3B8; max-width: 320px; font-size: 0.9375rem; }
.footer-col h5 {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #CBD5E1; font-size: 0.9375rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748B;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(148, 163, 184, 0.08);
  border-radius: var(--radius-full);
  color: #CBD5E1;
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--brand-600); color: #fff; transform: translateY(-2px); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* Animated reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 16px;
    border-top: 1px solid var(--ink-100);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-secondary { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 24px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 28px; }
  section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 32px 24px; }
  .form-card { padding: 24px; }
  .feature-card { padding: 24px; }
}
