/* ═══════════════════════════════════════════════════════════════
   BULLCHASE — MRO SUPPLY & SERVICES
   styles.css — Production stylesheet
   Built by Entelijan Studios
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────
   SELF-HOSTED FONTS
   Manrope is a variable font — one file covers all weights 400–800
───────────────────────────────── */
@font-face {
  font-family: 'Manrope';
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face { font-family: 'DM Sans'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/dmsans-400.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-weight: 500; font-style: normal; font-display: swap; src: url('../fonts/dmsans-500.woff2') format('woff2'); }

/* ─────────────────────────────────
   BASE TOKENS
───────────────────────────────── */
:root {
  --navy:         #192340;
  --navy-d:       #111a30;
  --orange:       #E85C22;
  --orange-h:     #d14e18;
  --orange-light: #FEE9DF;
  --white:        #ffffff;
  --off:          #F7F5F2;
  --dark:         #141414;
  --mid:          #444;
  --muted:        #888;
  --border:       #E3DDD6;
  --font:         'Manrope', 'DM Sans', system-ui, sans-serif;
}

/* ─────────────────────────────────
   RESET & BASE
───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-snap-type: y proximity;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
}

body {
  background: var(--navy);
  font-family: var(--font);
  font-size: 16px;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─────────────────────────────────
   STICKY MOBILE CALL BAR (hidden on desktop)
───────────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--orange);
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mobile-call-bar svg {
  flex-shrink: 0;
}

/* ─────────────────────────────────
   PAGE WRAPPER (navy padding around hero)
───────────────────────────────── */
.page-wrap {
  padding: 0;
}

/* ─────────────────────────────────
   HERO CARD
───────────────────────────────── */
.hero-card {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #1a3040;
}

/* Gradient overlay — darkens slightly on scroll via JS .scrolled class */
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(10, 20, 40, 0.85) 0%,
    rgba(10, 20, 40, 0.58) 45%,
    rgba(10, 20, 40, 0.15) 100%
  );
  border-radius: inherit;
  z-index: 1;
  transition: background 0.4s ease;
}

.hero-card.scrolled::before {
  background: linear-gradient(
    95deg,
    rgba(10, 20, 40, 0.92) 0%,
    rgba(10, 20, 40, 0.70) 45%,
    rgba(10, 20, 40, 0.30) 100%
  );
}

/* ─────────────────────────────────
   HERO GRAIN TEXTURE OVERLAY
───────────────────────────────── */
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ─────────────────────────────────
   GRADIENT TEXT UTILITY
───────────────────────────────── */
.gradient-text {
  background: linear-gradient(95deg, var(--white) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ─────────────────────────────────
   HERO VIDEO & POSTER (Ken Burns)
───────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Rotator: all videos start hidden; JS adds .active to the current one */
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
}
.hero-video.active { opacity: 1; }

/* Ken Burns poster — shown on mobile (video hidden), hidden on desktop */
.hero-poster {
  position: absolute;
  inset: 0;
  background-image: url('../video/hero-poster.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  display: none;
  animation: kenburns 22s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0%   { transform: scale(1.00) translateX(0px) translateY(0px); background-position: 50% 30%; }
  50%  { transform: scale(1.05) translateX(-8px) translateY(4px); background-position: 52% 32%; }
  100% { transform: scale(1.10) translateX(8px) translateY(-4px); background-position: 48% 28%; }
}

/* ─────────────────────────────────
   SCROLL-DOWN INDICATOR (hero bottom)
───────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
  cursor: pointer;
  transition: color .2s, opacity .3s;
  background: none;
  border: none;
  font-family: var(--font);
  padding: 0;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

.scroll-indicator:hover { color: rgba(255,255,255,0.9); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ─────────────────────────────────
   NAVIGATION
───────────────────────────────── */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  gap: 20px;
  transition: background .3s ease, padding .3s ease;
}

/* Sticky frosted nav on scroll */
.hero-card.scrolled nav {
  position: sticky;
  top: 0;
}

.nav-sticky {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(25, 35, 64, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-portal {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 11px 24px;
  border-radius: 100px;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.nav-portal:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background .2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--orange-h); transform: translateY(-1px); }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────
   MOBILE MENU OVERLAY
───────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--navy-d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-logo {
  position: absolute;
  top: 28px; left: 28px;
}

.mobile-menu-logo img {
  height: 44px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  font-size: 28px;
  transition: color .2s;
}

.mobile-menu-close:hover { color: var(--white); }

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 28px;
  font-weight: 700;
  padding: 16px 40px;
  text-align: center;
  letter-spacing: -0.02em;
  transition: color .2s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

.mobile-menu a:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a:hover { color: var(--orange); }

.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-menu-footer a.cta {
  background: var(--orange);
  color: var(--white) !important;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 100px;
  border: none;
}

.mobile-menu-footer .portal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.4) !important;
  font-weight: 500;
  border: none;
  padding: 0;
}

/* ─────────────────────────────────
   HERO BODY
───────────────────────────────── */
.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 56px 56px;
  max-width: 740px;
}

.hero-h1 {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-orange:hover { background: var(--orange-h); transform: translateY(-1px); }

.btn-glass {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.btn-glass:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }

/* ─────────────────────────────────
   TRUST BAR (bottom of hero card)
───────────────────────────────── */
.trust-bar {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .2s;
}

.trust-logo:hover { color: rgba(255,255,255,0.75); }
.trust-logo svg { opacity: 0.5; }

/* ─────────────────────────────────
   SHARED CONTENT WRAPPER
───────────────────────────────── */
.content-wrap {
  background: var(--white);
}

/* ─────────────────────────────────
   SHARED SECTION UTILITIES
───────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}

.section-h2 {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.025em;
}

/* Fade-in animation (triggered by IntersectionObserver) */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ─────────────────────────────────
   ABOUT SECTION
───────────────────────────────── */
.about-section {
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.about-h2 {
  margin-bottom: 22px;
}

.about-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

.about-feature-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 2px solid var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-dot svg {
  color: var(--orange);
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.call-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-inline-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.call-inline-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.call-inline-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* About right — photo */
.about-photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: #e8e2da;
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.about-float-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-float-lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─────────────────────────────────
   SERVICES SECTION
───────────────────────────────── */
.services-section {
  padding: 96px 56px 96px;
  max-width: 1280px;
  margin: 0 auto;
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.services-head p {
  font-size: 14px;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--off);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .2s, border-color .2s, border-top-color .2s;
  border: 1px solid transparent;
  border-top: 3px solid transparent;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  transform: translateY(-4px);
  border-color: var(--border);
  border-top: 3px solid var(--orange);
}


.service-card:hover .service-card-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card-icon {
  width: 50px; height: 50px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: background .2s, color .2s;
}

.service-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  padding-right: 40px;
}

.service-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.service-card-desc a { color: var(--orange); }


/* ─────────────────────────────────
   CERTIFICATIONS SECTION
───────────────────────────────── */
.certs-section {
  background: var(--off);
  padding: 56px;
  border-top: 1px solid var(--border);
}

.certs-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.certs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.certs-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .2s, color .2s, box-shadow .2s;
}

.cert-badge:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,92,34,0.10);
}

.cert-badge svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* ─────────────────────────────────
   STATS BAR
───────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-num sup {
  font-size: 22px;
  color: var(--orange);
  vertical-align: super;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 12px;
}

/* contracts-section styles in appended CSS below */

/* contact-section layout in appended CSS below */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form {
  background: var(--off);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group textarea,
.form-row-group input {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,92,34,0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.form-submit:hover {
  background: var(--orange-h);
  transform: translateY(-1px);
}

/* form-success in appended CSS (flex layout, .visible class) */

/* ─────────────────────────────────
   CTA SECTION
───────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 110px 56px;
  text-align: center;
  background: #0e1929;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 16px;
}

.cta-h2 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.cta-p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

/* ─────────────────────────────────
   FOOTER
───────────────────────────────── */
footer {
  background: var(--navy);
  padding: 72px 56px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.footer-brand-p {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  line-height: 1.75;
  max-width: 240px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color .2s;
  font-weight: 500;
}

.footer-col ul a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 20px;
}

.footer-contact-row:last-child { margin-bottom: 0; }

.footer-contact-row small {
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
}

.footer-contact-row a,
.footer-contact-row span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
}

.footer-contact-row a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.45); }

/* ─────────────────────────────────
   SCROLLBAR
───────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ─────────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 500;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ─────────────────────────────────
   BACK TO TOP BUTTON
───────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 200;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s, border-color .2s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

@media (max-width: 768px) {
  .back-to-top { bottom: 72px; right: 16px; } /* clear mobile call bar */
}

/* ─────────────────────────────────
   SKIP TO CONTENT (accessibility)
───────────────────────────────── */
.skip-to-content {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: top .2s;
}

.skip-to-content:focus { top: 16px; }

/* ─────────────────────────────────
   PRINT STYLES
───────────────────────────────── */
@media print {
  /* Hide everything non-essential */
  .hero-video, .hero-poster, .scroll-indicator,
  .mobile-call-bar, .mobile-menu, .nav-hamburger,
  .scroll-progress, .back-to-top,
  .cta-section::before, .contact-form,
  .products-carousel, .carousel-arrow, .carousel-dots { display: none !important; }

  /* Reset backgrounds and colors */
  body, .content-wrap, .contracts-section, .certs-section,
  .contact-section, .products-section { background: #fff !important; color: #000 !important; }
  .stats-bar, footer { background: #192340 !important; }

  /* Remove shadows and animations */
  * { box-shadow: none !important; animation: none !important; transition: none !important; }

  /* Force full opacity on fade-up elements */
  .fade-up { opacity: 1 !important; transform: none !important; }

  /* Hero — print as a simple header block */
  .hero-card {
    min-height: auto !important;
    background: var(--navy) !important;
    padding: 40px 0 !important;
  }

  .hero-card::before { display: none; }

  .hero-h1, .hero-sub { color: #fff !important; }
  .hero-btns, .trust-bar { display: none !important; }

  /* Page wrapper */
  .page-wrap { padding: 0 !important; }

  /* Nav */
  nav { position: static !important; background: transparent !important; }
  .nav-actions { display: none !important; }

  /* Typography adjustments */
  h1, h2, h3 { page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }

  /* Show URLs on links */
  .contact-section a::after { content: " (" attr(href) ")"; font-size: 11px; color: #666; }

  /* Page margins */
  @page { margin: 1in; }
}

/* ─────────────────────────────────
   WHY BULLCHASE STRIP
───────────────────────────────── */
.why-strip {
  background: var(--navy-d);
  padding: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.why-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-item {
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item:last-child { border-right: none; }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(232,92,34,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.40);
  line-height: 1.7;
}

/* ─────────────────────────────────
   TESTIMONIAL CARD (base styles)
   Section layout in appended CSS (.testimonials-*)
───────────────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 40px;
  position: relative;
  transition: border-color .2s, background .2s;
}

.testimonial-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

/* testimonial-quote, testimonial-author, testimonial-name, testimonial-role
   all defined in appended CSS below */

/* ─────────────────────────────────
   STAT COUNTER ANIMATION
───────────────────────────────── */
.count-num {
  display: inline;
}

/* ─────────────────────────────────
   DARK MODE
───────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --white:      #ffffff;
    --off:        #1a2236;
    --dark:       #e8e4de;
    --mid:        #c8c2b8;
    --muted:      #8a9ab0;
    --border:     rgba(255,255,255,0.09);
    --dm-bg:      #0f1520;
    --dm-surface: #111a2c;
    --dm-card:    #1a2640;
    --dm-text:    #e8e4de;
  }

  body { background: var(--dm-bg); }

  .content-wrap { background: var(--dm-surface); }

  .about-section,
  .services-section { background: var(--dm-surface); }

  .section-h2,
  .service-card-title,
  .contracts-right h3 { color: var(--dm-text); }

  .about-desc,
  .about-feature,
  .service-card-desc,
  .contracts-left > p,
  .contracts-right > p,
  .contact-left > p { color: var(--muted); }

  .service-card {
    background: var(--dm-card);
    border-color: rgba(255,255,255,0.06);
  }

  .service-card:hover { border-color: rgba(255,255,255,0.12); }

  .service-card-icon { background: rgba(232,92,34,0.15); }

  .certs-section { background: var(--dm-bg); border-color: rgba(255,255,255,0.06); }

  .cert-badge {
    background: var(--dm-card);
    border-color: rgba(255,255,255,0.08);
    color: var(--mid);
  }

  .contracts-section { background: var(--dm-bg); }

  .integration-list li {
    background: var(--dm-card);
    border-color: rgba(255,255,255,0.07);
    color: var(--mid);
  }

  .contact-section { background: var(--dm-surface); }

  .contact-form {
    background: var(--dm-card);
    border-color: rgba(255,255,255,0.07);
  }

  .form-group input,
  .form-group textarea,
  .form-row-group input {
    background: var(--dm-bg);
    border-color: rgba(255,255,255,0.10);
    color: var(--dm-text);
  }

  .contact-info-icon { background: rgba(232,92,34,0.15); }

  .about-float {
    background: rgba(15, 21, 32, 0.95);
  }

  .about-float-lbl { color: var(--muted); }

  .call-inline-text strong { color: var(--dm-text); }

  .products-section { background: var(--dm-bg); }
  .product-card { border-color: rgba(255,255,255,0.06); }
}

/* ─────────────────────────────────
   PRODUCTS SECTION & CAROUSEL
───────────────────────────────── */
.products-section {
  background: var(--navy);
  padding: 96px 56px;
}

.products-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.products-h2 {
  color: var(--white) !important;
  margin-top: 8px;
}

.products-head p {
  font-size: 14px;
  color: rgba(255,255,255,0.40);
  max-width: 340px;
  line-height: 1.75;
}

.products-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}

.products-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 56px; /* sits inside the arrow button */
  width: 72px;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--navy));
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 900px) {
  /* Arrows hidden at this breakpoint — fade goes to full right edge */
  .products-carousel-wrap::after {
    right: 0;
  }
}

.products-carousel {
  display: flex;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 0;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.products-carousel::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: default;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.product-card-icon {
  width: 48px; height: 48px;
  background: rgba(232,92,34,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.product-card-subs {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-top: 4px;
}

.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s;
}

.carousel-dot.active {
  background: var(--orange);
}

.products-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────
   ≤1200px — Tighten spacing
───────────────────────────────── */
@media (max-width: 1200px) {
  .about-section,
  .services-section,
  .contact-inner {
    max-width: 100%;
  }
  .stats-bar {
    padding: 64px 40px;
  }
  .stat-item {
    padding: 24px 28px;
  }
}

/* ─────────────────────────────────
   ≤1024px — Two-column grids
───────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contracts-inner {
    gap: 48px;
  }
  .contact-inner {
    gap: 48px;
  }
  nav {
    padding: 20px 28px;
  }
  .hero-body {
    padding: 20px 40px 48px;
  }
  .trust-bar {
    padding: 18px 40px;
  }
  .about-section {
    gap: 48px;
    padding: 80px 40px;
  }
  .services-section {
    padding: 80px 40px;
  }
  .certs-section {
    padding: 48px 40px;
  }
  .contracts-section {
    padding: 80px 40px;
  }
  .contact-section {
    padding: 80px 40px;
  }
  .products-section {
    padding: 80px 40px;
  }
  .cta-section {
    padding: 88px 40px;
  }
  footer {
    padding: 60px 40px 32px;
  }
}

/* ─────────────────────────────────
   ≤900px — Mobile nav kicks in
───────────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .carousel-arrow {
    display: none;
  }
  .product-card {
    flex: 0 0 200px;
  }
  .products-section {
    padding: 64px 28px;
  }
  .page-wrap {
    padding: 0;
  }
  .hero-card {
    min-height: 100vh;
    border-radius: 0;
  }
  nav {
    padding: 18px 24px;
  }
  .hero-body {
    padding: 20px 28px 40px;
    max-width: 100%;
  }
  .trust-bar {
    padding: 16px 28px;
    gap: 16px;
  }
  .trust-logos {
    gap: 20px;
  }
  .about-section,
  .contracts-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 28px;
  }
  .services-section {
    padding: 64px 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 48px 28px;
  }
  .stat-item {
    padding: 24px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child,
  .stat-item:nth-last-child(2) { border-bottom: none; }
  .certs-section {
    padding: 40px 28px;
  }
  .certs-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .certs-logos {
    justify-content: flex-start;
  }
  .contracts-section {
    padding: 64px 28px;
  }
  .contact-section {
    padding: 64px 28px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-section {
    padding: 80px 28px;
  }
  footer {
    padding: 56px 28px 80px; /* extra bottom padding for mobile call bar */
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .why-strip { padding: 40px 28px; }
  .why-strip-inner { grid-template-columns: 1fr; }
  .why-item {
    border-right: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .why-item:last-child { border-bottom: none; }
  .testimonial-section { padding: 64px 28px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────
   ≤768px — Mobile (video → poster)
───────────────────────────────── */
@media (max-width: 768px) {
  /* Show Ken Burns poster, hide video */
  .hero-video { display: none; }
  .hero-poster { display: block; }

  /* Show sticky call bar */
  .mobile-call-bar { display: flex; }

  .scroll-indicator { bottom: 70px; }

  .hero-card {
    min-height: 100svh;
  }
  .hero-h1 {
    font-size: clamp(34px, 8vw, 48px);
  }
  .trust-logo span { display: none; } /* hide text, show icon only */
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 24px;
  }
  .contact-left > p {
    max-width: 100%;
  }
}

/* ─────────────────────────────────
   ≤480px — Compact mobile
───────────────────────────────── */
@media (max-width: 600px) {
  .products-carousel {
    scroll-snap-type: x mandatory;
    padding: 0 40px;
  }
  .product-card {
    flex: 0 0 calc(100% - 80px);
    scroll-snap-align: center;
  }
}

@media (max-width: 360px) {
  .products-carousel {
    padding: 0 28px;
  }
  .product-card { flex: 0 0 calc(100% - 56px); }
}

@media (max-width: 480px) {
  .hero-card {
    min-height: 100svh;
  }
  .products-section {
    padding: 48px 20px;
  }
  .stats-bar {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 16px;
  }
  .stat-item:last-child { border-bottom: none; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .certs-logos {
    gap: 10px;
  }
  .cert-badge {
    font-size: 10px;
    padding: 7px 12px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-bar {
    gap: 12px;
  }
  .trust-logo { font-size: 11px; }
  .about-section {
    padding: 48px 20px;
  }
  .services-section {
    padding: 48px 20px;
  }
  .contracts-section,
  .contact-section {
    padding: 48px 20px;
  }
  .cta-section {
    padding: 64px 20px;
  }
  footer {
    padding: 48px 20px 80px;
  }
  .mobile-menu a {
    font-size: 22px;
    padding: 14px 28px;
  }
  .why-strip { padding: 32px 20px; }
  .testimonial-section { padding: 48px 20px; }
  .testimonial-card { padding: 28px 24px; }
  .hero-body { padding: 20px 20px 32px; }
}

/* ─────────────────────────────────
   SCROLL SNAP
───────────────────────────────── */
.snap-section {
  scroll-snap-align: start;
}

/* Disable snapping on mobile — sections overflow the viewport */
@media (max-width: 768px) {
  html { scroll-snap-type: none; }
}

/* ─────────────────────────────────
   CREDENTIALS SLIDE (certs + stats grouped)
───────────────────────────────── */
.credentials-slide {
  display: flex;
  flex-direction: column;
}

/* ─────────────────────────────────
   VERTICAL SECTION NAV DOTS
───────────────────────────────── */
.section-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}

.section-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.12);
}

.section-nav-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.section-nav-dot.active {
  background: var(--orange);
  transform: scale(1.4);
}

/* Hide on mobile */
@media (max-width: 768px) {
  .section-nav { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   ADDITIONS — multi-page redesign
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────
   DESIGN TOKENS (new)
───────────────────────────────── */
:root {
  --radius-pill: 100px;
  --radius-card: 18px;
  --shadow-card: 0 16px 48px rgba(0,0,0,0.10);
}

/* ─────────────────────────────────
   ACTIVE NAV LINK
───────────────────────────────── */
.nav-links a.active {
  color: var(--white);
  font-weight: 700;
}

/* ─────────────────────────────────
   INNER-PAGE NAV
   (nav-sticky is always on; account for its height)
───────────────────────────────── */
body.inner-page {
  padding-top: 0; /* page-hero provides top space */
}

/* ─────────────────────────────────
   INNER-PAGE HERO BANNER
───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 100%);
  padding: 148px 56px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.04;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero-h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 580px;
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 28px 60px; }
  .page-hero-h1 { font-size: clamp(28px, 7vw, 40px); }
  .page-hero-sub { font-size: 15px; }
}

/* ─────────────────────────────────
   PORTAL LOGIN MODAL
───────────────────────────────── */
.portal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,16,32,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.portal-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.portal-modal-inner {
  background: rgba(20, 30, 58, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.portal-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.portal-modal-close:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.portal-modal-logo {
  margin-bottom: 24px;
}

.portal-modal-logo img {
  height: 32px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.portal-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.portal-modal-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 28px;
}

.portal-form-group {
  margin-bottom: 14px;
}

.portal-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.portal-form-group input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color .2s, background .2s;
}

.portal-form-group input::placeholder { color: rgba(255,255,255,0.25); }

.portal-form-group input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.09);
}

.portal-modal-inner .btn-orange {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  font-size: 15px;
  padding: 14px 20px;
}

.portal-need-access {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color .2s;
}

.portal-need-access:hover { color: rgba(255,255,255,0.65); }

/* Footer portal link (button styled like a link) */
.footer-portal-link {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: color .2s;
}

.footer-portal-link:hover { color: var(--orange); }

/* Mobile menu portal button */
.mobile-menu .portal-link {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0 0;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  width: 100%;
  transition: color .2s;
}

.mobile-menu .portal-link:hover { color: var(--white); }

/* ─────────────────────────────────
   TESTIMONIALS SECTION
───────────────────────────────── */
.testimonials-section {
  background: var(--off);
  padding: 96px 56px;
}

.testimonials-head {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Reuse .testimonial-card (already defined in styles.css) */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  display: block;
  font-size: 48px;
  line-height: 0.8;
  color: var(--orange);
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Dark background for testimonials (they are on .off / light bg in page,
   but .testimonial-card uses translucent white on navy — so wrap section in navy) */
.testimonials-section {
  background: var(--navy);
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 64px 28px; }
}

/* ─────────────────────────────────
   HOME PAGE PRODUCT TEASER
───────────────────────────────── */
.home-products-teaser {
  background: var(--navy);
  padding: 80px 56px;
  text-align: center;
}

.home-products-teaser .section-h2 { color: var(--white); }

.teaser-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .home-products-teaser { padding: 56px 20px; }
}

/* ─────────────────────────────────
   PAGE-LEVEL SECTION WRAPPER
   (replaces content-wrap on inner pages)
───────────────────────────────── */
.page-section {
  padding: 80px 56px;
}

.page-section-light {
  background: var(--white);
}

.page-section-off {
  background: var(--off);
}

@media (max-width: 768px) {
  .page-section { padding: 56px 28px; }
}

@media (max-width: 480px) {
  .page-section { padding: 48px 20px; }
}

/* ─────────────────────────────────
   CONTRACTS PAGE
───────────────────────────────── */
.contracts-page-wrap {
  background: var(--white);
  padding: 80px 56px;
}

@media (max-width: 768px) {
  .contracts-page-wrap { padding: 56px 28px; }
}

/* ─────────────────────────────────
   INNER-PAGE STICKY NAV BODY OFFSET
───────────────────────────────── */
/* nav-sticky is fixed; page-hero handles top padding.
   For pages without page-hero (none currently), add:
   body.inner-page { padding-top: 76px; }
*/

/* ─────────────────────────────────
   RESPONSIVE: inner-page nav
───────────────────────────────── */
@media (max-width: 900px) {
  .page-hero { padding: 120px 28px 56px; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-h2 { margin-top: 12px; }

.about-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

.about-feature-dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 2px;
}

.about-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.call-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-inline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.call-inline-text small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.call-inline-text strong a {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
}

.call-inline-text strong a:hover { color: var(--orange); }

.about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(10, 16, 32, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
}

.about-float-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-float-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Credentials wrapper (certs + stats stacked) */
.credentials-slide {
  background: var(--off);
}

@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 40px;
  }
  .about-photo { max-width: 520px; }
}

@media (max-width: 640px) {
  .about-section { padding: 56px 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   CONTRACTS PAGE
═══════════════════════════════════════════════════════════════ */

.contracts-section {
  padding: 80px 56px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--off);
}

.contracts-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.contracts-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
}

.contracts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contract-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: box-shadow .25s, transform .2s;
}

.contract-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.contract-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contract-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.contract-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contract-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.contract-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

/* B2B Section */
.b2b-section {
  background: var(--off);
  padding: 80px 56px;
}

.b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.b2b-text .section-h2 { margin-top: 12px; }

.b2b-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 28px;
}

.b2b-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.b2b-platform {
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}

.b2b-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.b2b-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-diagram {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}

.b2b-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.b2b-node span {
  font-size: 11px;
  font-weight: 700;
  color: var(--mid);
  line-height: 1.3;
}

.b2b-node svg { color: var(--mid); }

.b2b-node-bullchase {
  background: rgba(255, 102, 0, 0.05);
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 14px;
  padding: 16px 20px;
}

.b2b-arrow { color: var(--border); }

@media (max-width: 1024px) {
  .contracts-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-inner { grid-template-columns: 1fr; gap: 48px; }
  .b2b-visual { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .contracts-section, .b2b-section { padding: 56px 28px; }
}

@media (max-width: 640px) {
  .contracts-grid { grid-template-columns: 1fr; }
  .b2b-diagram { flex-direction: column; }
  .b2b-arrow { transform: rotate(90deg); }
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding: 80px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-info-icon-emergency {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
  display: block;
}

a.contact-info-value:hover { color: var(--orange); }

.contact-channels {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-channels-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-channel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}

/* Contact Form */
.contact-form-wrap h2 { margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-row { display: flex; flex-direction: column; gap: 16px; }

.form-row-2col {
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row-2col .form-group { flex: 1; }

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mid);
  margin-bottom: 6px;
}

.form-group label span { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--dark);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='0 1 6 7 12 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #15803d;
  margin-top: 16px;
}

.form-success.visible { display: flex; }

.form-success svg { color: #22c55e; flex-shrink: 0; }

@media (max-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .contact-section { padding: 56px 28px; }
  .form-row-2col { flex-direction: column; }
}

@media (max-width: 480px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 48px 20px; }
}


/* ─────────────────────────────────
   FOCUS-VISIBLE RINGS (accessibility)
   Suppresses the default outline on mouse clicks (`:focus`)
   while showing a clear ring for keyboard navigation (`:focus-visible`).
───────────────────────────────── */
:focus { outline: none; }

.btn-orange:focus-visible,
.btn-glass:focus-visible,
.btn-white-outline:focus-visible,
.nav-cta:focus-visible,
.nav-portal:focus-visible,
.nav-hamburger:focus-visible,
.back-to-top:focus-visible,
.portal-modal-close:focus-visible,
.mobile-menu-close:focus-visible,
.form-submit:focus-visible,
.carousel-arrow:focus-visible,
.carousel-dot:focus-visible,
.scroll-indicator:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.portal-form-group input:focus-visible {
  outline: none; /* box-shadow focus state already handles these */
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.18);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 4px;
}

