/* ============================================================
   CIRRUS LAKE SOLUTIONS — Site bundle
   Combines fonts, core, and chrome into a single file so the
   browser only blocks render on one stylesheet instead of three.
   Loaded on EVERY page.

   Sections:
     1. @font-face                (formerly fonts.css)
     2. Tokens, reset, layout,
        buttons, animations,
        prose, scroll-top,
        cookie consent, Turnstile (formerly core.css)
     3. Header, nav, mobile menu,
        footer, page header,
        CTA banner, hero trust bar (formerly chrome.css)
   ============================================================ */


/* ============================================================
   1. FONTS — Self-hosted Inter (variable weight 400–900)
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/InterVariable.woff2') format('woff2');
}


/* ============================================================
   2. CORE — Foundations
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand */
  --primary-900: #001c2b;
  --primary-800: #002336;
  --primary:     #003049;
  --primary-600: #004567;
  --primary-500: #005a87;
  --primary-400: #1a7fb0;
  --secondary:   #87ceeb;
  --secondary-dark: #5ab4e0;
  --accent:      #50c878;
  --accent-dark: #3aaa5a;
  --accent-light: #72d994;

  /* Neutrals */
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-300:  #cbd5e1;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1e293b;
  --gray-900:  #0f172a;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07), 0 8px 28px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.09), 0 18px 52px rgba(0,0,0,0.07);
  --shadow-xl: 0 20px 52px rgba(0,0,0,0.13), 0 40px 80px rgba(0,0,0,0.09);

  /* Shape & Motion */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition:      all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--gray-800);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.15; }
input, button, textarea, select { font-family: inherit; }

/* ===== ACCESSIBILITY UTILITIES ===== */

/* Visually hidden but available to screen readers. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link. Hidden until keyboard-focused. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Visible keyboard focus on every interactive element. We default to
   :focus-visible so the focus ring only shows for keyboard users (not
   mouse clicks), then fall back to :focus for browsers that don't
   support :focus-visible. */
:focus { outline: 2px solid transparent; outline-offset: 2px; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
/* Buttons and link buttons get a slightly tighter ring. */
.btn:focus-visible,
.cookie-btn:focus-visible,
.form-submit-btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
/* Dark-context interactive elements: ring uses the lighter accent so it
   stays visible on the navy header / hero / footer. */
.nav-menu-link:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.mobile-menu-link:focus-visible,
.mobile-menu-cta:focus-visible,
.footer-col-link:focus-visible,
.footer-cap-link:focus-visible,
.btn-ghost:focus-visible,
.accordion-header:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 2px;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad    { padding: 96px 0; }
.section-pad-lg { padding: 120px 0; }
.bg-white { background: white; }
.bg-gray  { background: var(--gray-50); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(80,200,120,0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(80,200,120,0.38);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.68);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}
.btn-lg {
  padding: 15px 34px;
  font-size: 0.975rem;
}

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--accent); }
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.section-heading.light { color: white; }
.section-subtext {
  font-size: 1.02rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 560px;
}
.section-subtext.light { color: rgba(255,255,255,0.6); }
.section-subtext.centered { margin: 0 auto; }
.section-head-center { text-align: center; margin-bottom: 56px; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ===== PROSE (text-heavy pages) ===== */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 {
  font-size: 1.25rem; font-weight: 800; color: var(--gray-900);
  margin: 40px 0 12px; letter-spacing: -0.015em;
}
.prose h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--gray-800);
  margin: 28px 0 8px;
}
.prose p { font-size: 0.94rem; color: var(--gray-500); line-height: 1.78; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 24px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 0.94rem; color: var(--gray-500); line-height: 1.78; margin-bottom: 6px; }
.prose a { color: var(--primary-500); }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--gray-700); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,48,73,0.3);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 6px 22px rgba(80,200,120,0.35);
}

/* ===== CLOUDFLARE TURNSTILE ===== */
.cf-turnstile { margin-bottom: 18px; }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: var(--primary-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 28px rgba(0,0,0,0.22);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.cookie-banner-text a {
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-color: rgba(135,206,235,0.4);
  text-underline-offset: 2px;
  transition: var(--transition-fast);
}
.cookie-banner-text a:hover {
  color: white;
  text-decoration-color: white;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.cookie-btn-accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn-accept:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(80,200,120,0.3);
}
.cookie-btn-accept:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
body.has-cookie-banner .scroll-top.visible {
  bottom: 100px;
}

/* ===== TOAST (accessible inline notification) ===== */
/* Used by consent.js to announce cookie preference changes
   without blocking the page. role=status / aria-live=polite. */
.cls-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 260;
  min-width: 280px;
  max-width: 480px;
  padding: 14px 18px 14px 22px;
  background: var(--primary-900);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cls-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cls-toast-text {
  flex: 1;
}
.cls-toast-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.cls-toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.cls-toast-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .cls-toast {
    left: 16px;
    right: 16px;
    transform: translateY(20px);
    min-width: 0;
    max-width: none;
  }
  .cls-toast--visible {
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE — CORE ===== */
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .section-pad-lg { padding: 88px 0; }
  .container { padding: 0 20px; }
  .btn { justify-content: center; }
}
@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px 22px;
    gap: 16px;
  }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}

/* ===== REDUCED MOTION ===== */
/* Honor the user's preference. Animations and transitions are
   collapsed to nearly-instant so the visuals still settle in their
   final state but nothing slides, fades, or pulses. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-kicker-dot,
  .hero-scroll {
    animation: none !important;
  }
  html { scroll-behavior: auto !important; }
}


/* ============================================================
   3. CHROME — Site-wide header, nav, footer, page header
   ============================================================ */

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header--solid,
.site-header.is-scrolled {
  background: rgba(0, 48, 73, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.28);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo-pill {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}
.nav-logo:hover .nav-logo-img { opacity: 0.82; }
.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-left: 10px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu-link {
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition-fast);
}
.nav-menu-link:hover,
.nav-menu-link.active { color: white; background: rgba(255,255,255,0.1); }
.nav-cta {
  margin-left: 10px;
  padding: 9px 20px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
/* Active state used on the contact page to indicate the user is already
   on the Contact destination. JS does not auto-apply this — it's set in
   the contact.html markup directly. */
.nav-cta.is-active { background: var(--accent-dark); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  padding: 4px;
  margin-left: 10px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  /* Explicit width — iOS Safari does not reliably stretch flex
     children to fill the cross-axis when the flex container is a
     <button>, so the bars rendered at 0 width without this. */
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(0, 48, 73, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 190;
}
.mobile-menu.open { display: block; }
.mobile-menu-link {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition-fast);
}
.mobile-menu-link:hover { color: white; }
.mobile-menu-cta {
  display: block;
  margin-top: 16px;
  padding: 14px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
/* Color values are tuned for WCAG AA contrast against
   --primary-900 (#001c2b) — see comments per line. */
.site-footer {
  background: var(--primary-900);
  padding: 72px 0 32px;
  color: rgba(255,255,255,0.72);  /* 8.0:1 — body color */
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo-pill {
  display: inline-flex;
  margin-bottom: 16px;
}
.footer-logo-img { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-brand > p {
  font-size: 0.85rem; line-height: 1.78;
  max-width: 270px; margin-bottom: 26px;
}
.footer-ids { display: flex; flex-direction: column; gap: 5px; }
.footer-id { font-size: 0.76rem; color: rgba(255,255,255,0.6); }   /* 5.7:1 — id labels */
.footer-id span { color: rgba(255,255,255,0.92); }                 /* 14.6:1 — id values */
.footer-col-head {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.13em;
  color: white; margin-bottom: 18px;
}
.footer-col-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);  /* 8.0:1 — column links */
  padding: 5px 0;
  transition: var(--transition-fast);
}
.footer-col-link:hover { color: white; }
/* Variant used for non-link spans (e.g. NAICS codes in the footer). */
.footer-col-link.is-static { cursor: default; }
.footer-col-link.is-static:hover { color: rgba(255,255,255,0.72); }
/* Sub-heading inside a column (e.g. "NAICS" under the Company column). */
.footer-col-head--sub { margin-top: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px; font-size: 0.78rem;
  color: rgba(255,255,255,0.72);  /* 8.0:1 — copyright text */
}
.footer-bottom a { color: rgba(255,255,255,0.78); transition: var(--transition-fast); }  /* 9.4:1 — email */
.footer-bottom a:hover { color: white; }

/* ===== FOOTER CAPABILITY LINK ===== */
.footer-cap-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  background: rgba(80,200,120,0.12);
  border: 1px solid rgba(80,200,120,0.3);
  border-radius: var(--radius-sm);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition-fast);
}
.footer-cap-link:hover {
  background: rgba(80,200,120,0.18);
  border-color: rgba(80,200,120,0.5);
  color: white;
}

/* ===== PAGE HEADER (interior pages) ===== */
.page-header {
  padding: 148px 0 80px;
  background: linear-gradient(145deg, var(--primary-900) 0%, var(--primary-600) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800; color: white;
  letter-spacing: -0.025em; margin-bottom: 14px;
}
.page-header p {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  max-width: 500px; margin: 0 auto; line-height: 1.72;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  position: relative; overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-banner-inner {
  position: relative; z-index: 1;
  text-align: center;
}
/* Spacing inside the CTA banner is consistent across pages — bumping
   .section-heading and .section-subtext margins so individual pages
   don't need inline style overrides. */
.cta-banner-inner .section-heading { margin-bottom: 18px; }
.cta-banner-inner .section-subtext { margin-bottom: 36px; }
/* Centered button row used inside CTA banners and on the 404 page. */
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== HERO TRUST BAR ===== */
.hero-trustbar {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.hero-trust-sep {
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}
@media (max-width: 640px) {
  .hero-trustbar { font-size: 0.72rem; gap: 8px; }
}

/* ===== RESPONSIVE — CHROME ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .nav-logo-img { height: 32px; }
  .nav-logo-text { font-size: 0.85rem; }
}
