/* ==========================================================================
   FOXSECUR — MAIN STYLESHEET
   Table of contents:
   1. Custom properties (design tokens)
   2. Reset / base
   3. Typography
   4. Layout utilities
   5. Buttons & pills
   6. Header / navigation
   7. Hero
   8. Stats / trust bar
   9. Residential vs Commercial split
   10. Why FoxSecur
   11. Core solutions
   12. How it works
   13. Testimonials + partners
   14. Contact CTA
   15. FAQ
   16. Final CTA band
   17. Footer
   18. Animations
   19. Responsive (tablet + mobile)
   ========================================================================== */

/* 1. Custom properties
   ========================================================================== */
:root {
  --color-navy: #232d64;
  --color-navy-dark: #1d2552;
  --color-near-black: #001a15;
  --color-yellow: #eab21d;
  --color-yellow-text: #2b2b2b;
  --color-gray-body: #5e676d;
  --color-gray-light: #e4e4e4;
  --color-bg-light-blue: #f0f4ff;
  --color-divider: #eaf0f0;
  --color-border: #e0e0e0;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-placeholder: #9c9c9c;

  --font-heading: 'Kumbh Sans', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-alt: 'Inter', sans-serif;
  --font-nav: 'Outfit', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;

  --container-width: 1296px;
  --container-pad: 24px;
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  --section-pad-y: clamp(48px, 6vw, 96px);
}

/* 2. Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--color-navy);
  background: var(--color-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, p { margin: 0; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* 3. Typography
   ========================================================================== */
.h1-hero {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.28;
  color: var(--color-white);
}
.h1-hero .accent { color: var(--color-yellow); }

.h1-alt {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 51px);
  line-height: 1.14;
  letter-spacing: -1.02px;
}
.h1-alt .accent { color: var(--color-yellow); }

.h2-section {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.38;
  color: var(--color-navy);
  text-transform: uppercase;
}
.h2-section .accent { color: var(--color-yellow); }
.h2-section.on-dark { color: var(--color-white); }

.h3-card {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.43;
}
.h3-card .accent { color: var(--color-yellow); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: linear-gradient(90deg, rgba(234,178,29,0.6) 0%, rgba(234,178,29,0) 90%);
  padding: 8px 20px 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eyebrow.on-dark { color: var(--color-white); }
.eyebrow img, .eyebrow svg { width: 18px; height: 18px; }

.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--color-gray-body);
}
.body-text.large { font-size: 18px; }
.body-text.on-dark { color: var(--color-gray-light); }

/* 4. Layout utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: var(--section-pad-y); position: relative; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* 5. Buttons & pills
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 8px 16px 8px 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-navy);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon svg { width: 16px; height: 16px; }
.btn-outline {
  border: 1px solid var(--color-yellow);
  background: transparent;
  color: var(--color-white);
}
.btn-outline:hover { background: rgba(234,178,29,0.12); }
.btn-solid {
  background: var(--color-yellow);
  color: var(--color-yellow-text);
}
.btn-solid:hover { box-shadow: 0 8px 24px rgba(234,178,29,0.4); }
.btn-solid .btn-icon { background: var(--color-navy); }
.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-navy .btn-icon { background: var(--color-yellow); }
.btn-navy .btn-icon svg { color: var(--color-navy); }
.btn-yellow-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  transition: transform 0.2s ease;
}
.btn-yellow-block:hover { transform: translateY(-2px); }
.cta-phone {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}
.cta-label { font-size: 12px; font-weight: 400; opacity: 0.85; display: block; white-space: normal; line-height: 1.25; }
.btn-text { display: flex; flex-direction: column; max-width: 128px; white-space: normal; }

/* 6. Header / navigation
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 26px 0;
}
.site-header.is-sticky {
  position: fixed;
  background: var(--color-navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  padding: 14px 0;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo img { height: 58px; width: auto; }
.site-logo { flex: none; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-white);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav a.is-active {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
}

.header-ctas { display: flex; align-items: center; gap: 8px; flex: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,26,21,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 150;
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 82vw);
  background: var(--color-navy);
  z-index: 200;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a {
  display: block;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu nav a.is-active, .mobile-menu nav .current-menu-item a { color: var(--color-yellow); }
.mobile-menu__ctas {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__ctas .btn {
  width: 100%;
  justify-content: center;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-pill);
  flex: none;
}
.lang-switcher__btn {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switcher__btn:hover { color: var(--color-white); }
.lang-switcher__btn.is-active {
  background: var(--color-yellow);
  color: var(--color-yellow-text);
}
.mobile-menu .lang-switcher {
  width: 100%;
  margin: 24px 0 0;
  border-color: rgba(255,255,255,0.2);
}
.mobile-menu .lang-switcher .lang-switcher__btn {
  flex: 1;
  text-align: center;
  padding: 12px 9px;
}

/* Language toggle — every translatable string is authored twice in the
   markup as [data-i18n="en"]/[data-i18n="fr"] sibling <span>s; only the
   active language's span is shown. Default language is English. */
[data-i18n="fr"] { display: none; }
html[data-lang="fr"] [data-i18n="en"] { display: none; }
html[data-lang="fr"] [data-i18n="fr"] { display: inline; }
/* Symmetric English-mode overrides: without these, any component CSS
   rule that targets "span" with a class (e.g. ".footer-touch-item span")
   outranks the plain [data-i18n="fr"] base rule above on specificity,
   so the French duplicate stays visible alongside the English text. */
html[data-lang="en"] [data-i18n="fr"] { display: none; }
html[data-lang="en"] [data-i18n="en"] { display: inline; }

/* 7. Hero slider
   ========================================================================== */
.hero-slider {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
}
.hero-slider__track {
  display: grid;
}
.hero-slide {
  /* All slides share the same grid cell so the track auto-sizes to the
     tallest slide's content instead of needing a hand-tuned min-height
     per breakpoint (important once slide 2/3 get real, differently-sized copy). */
  grid-area: 1 / 1 / 2 / 2;
  position: relative;
  overflow: hidden;
  min-height: 926px;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 19%, rgba(0,26,21,0) 100%);
  z-index: 1;
}
.hero__orb {
  position: absolute;
  width: 309px;
  height: 309px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,178,29,0.24) 0%, rgba(234,178,29,0) 70%);
  z-index: 1;
  pointer-events: none;
}
.hero__orb--tl { top: -80px; right: 10%; }
.hero__orb--br { bottom: -100px; left: 5%; }
.hero-slide__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  align-self: stretch;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-slide__content { min-width: 0; }
.hero-slide__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  height: 100%;
  min-height: 420px;
}
.hero-slide__media img {
  max-height: 620px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.hero__stat {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero__stat .num { color: var(--color-yellow); font-size: 28px; }
.hero__stat .label { color: var(--color-white); font-size: 18px; margin-left: 8px; }
.hero__desc { margin-bottom: 40px; max-width: 620px; }
.hero__desc p { color: var(--color-white); font-size: 18px; line-height: 1.44; }

.hero-slider__nav {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 18px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-slider__nav button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-white);
  flex: none;
  transition: all 0.25s ease;
}
.hero-slider__nav button.is-active {
  width: 13px;
  height: 13px;
  background: var(--color-navy);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.45);
}

/* 8. Stats / trust bar
   ========================================================================== */
.stats-bar-wrap { position: relative; z-index: 3; margin-top: -93px; }
.stats-bar {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.stats-bar__list { display: flex; gap: 40px; flex-wrap: wrap; }
.stats-bar__item { display: flex; align-items: center; gap: 14px; }
.stats-bar__icon {
  width: 30px; height: 30px; flex: none;
}
.stats-bar__icon svg { width: 100%; height: 100%; }
.stats-bar__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-white);
  line-height: 1;
  display: block;
}
.stats-bar__label { font-size: 16px; color: var(--color-gray-light); }
.stats-bar__media {
  position: relative;
  width: 400px;
  max-width: 100%;
  height: 274px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: none;
}
.stats-bar__media img { width: 100%; height: 100%; object-fit: cover; }
.stats-bar__media::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.stats-bar__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.stats-bar__play:hover { transform: translate(-50%, -50%) scale(1.1); }

/* 9. Residential vs Commercial split
   ========================================================================== */
.split-section .container > .eyebrow-wrap { text-align: center; display: flex; justify-content: center; }
.split-section .section-heading { text-align: center; margin-bottom: 56px; }
.split-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.split-card {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.split-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,45,100,0.92) 0%, rgba(35,45,100,0.55) 45%, rgba(35,45,100,0.1) 100%);
  pointer-events: none;
}
.split-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 460px;
  width: 100%;
  padding: 44px;
}
.split-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  padding: 8px 18px 8px 13px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-navy);
}
.split-card__badge svg { width: 20px; height: 20px; flex: none; }
.split-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.2;
  color: var(--color-white);
}
.split-card__title .accent { color: var(--color-yellow); }
.split-card__desc {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-white);
}
.split-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.split-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
}
.split-card__feature-icon {
  width: 32px; height: 32px; flex: none;
  background: var(--color-yellow);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.split-card__feature-icon svg { width: 20px; height: 20px; color: var(--color-navy); }
.split-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  margin-top: 4px;
  transition: transform 0.2s ease;
}
.split-card__cta:hover { transform: translateY(-2px); }
.split-card__logo {
  position: absolute;
  width: 128px;
  height: auto;
  opacity: 0.9;
  mix-blend-mode: lighten;
  z-index: 1;
  pointer-events: none;
}
.split-card__logo--br { right: 32px; bottom: 32px; }
.split-card__logo--tr { right: 32px; top: 32px; }

/* 11. Why FoxSecur
   ========================================================================== */
.why-foxsecur .grid-2 { align-items: center; }
.why-foxsecur__media { position: relative; }
.why-foxsecur__media img {
  border-radius: var(--radius-lg);
  width: 100%;
}
.why-foxsecur__quote {
  position: absolute;
  left: 24px; bottom: 24px;
  right: 24px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-foxsecur__subhead {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-navy);
  margin: 16px 0;
}
.why-foxsecur .body-text { margin-bottom: 24px; }
.why-foxsecur__divider { height: 1px; background: var(--color-divider); margin: 24px 0; }
.why-foxsecur__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-navy);
  padding: 10px 0;
}
.why-foxsecur__list .check-icon { width: 24px; height: 24px; flex: none; }

/* 12. Core solutions
   ========================================================================== */
.core-solutions {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}
.core-solutions__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.core-solutions__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.85) 25%, rgba(0,26,21,0) 100%);
}
.core-solutions .container { position: relative; z-index: 1; }
.core-solutions__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
/* Left column stretches to match the (taller) features column, and the man photo
   fills whatever space is left below the heading/intro text via flex + object-fit,
   so it always reaches the section's bottom edge with no gap — regardless of how
   tall the features list ends up being — instead of a fixed height guess. */
.core-solutions__layout > div:first-child { display: flex; flex-direction: column; }
.core-solutions__media {
  flex: 1 1 auto;
  width: 400px;
  max-width: 100%;
  min-height: 240px;
  margin-top: 24px;
  overflow: hidden;
}
.core-solutions__media img { width: 100%; height: 100%; object-fit: cover; object-position: bottom center; display: block; }
.core-solutions__intro { margin: 20px 0 32px; color: var(--color-gray-light); font-size: 18px; }
.core-solutions__features { display: flex; flex-direction: column; gap: 28px; margin-bottom: 32px; }
.feature-row { display: flex; gap: 20px; align-items: flex-start; }
.feature-row__icon {
  width: 94px; height: 94px; flex: none;
  background: var(--color-yellow);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.feature-row__icon img, .feature-row__icon svg { width: 50px; height: 50px; }
.feature-row h3 { margin-bottom: 8px; }
.feature-row p { color: var(--color-gray-light); }
.core-solutions__banner {
  background: rgba(234,178,29,0.6);
  border-radius: var(--radius-pill);
  padding: 18px 32px;
  text-align: center;
  color: var(--color-white);
  font-weight: 700;
}

/* 13. How it works
   ========================================================================== */
.how-it-works__layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.how-it-works__title { margin-bottom: 28px; }
.how-it-works__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(35,45,100,0.12);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.step {
  display: flex;
  gap: 16px;
}
.step__icon {
  width: 48px; height: 48px; flex: none;
  background: var(--color-yellow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.step__icon svg { width: 22px; height: 22px; color: var(--color-navy); }
.step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-near-black);
  margin-bottom: 6px;
}
.step p { color: var(--color-gray-body); font-size: 15px; }
.step--callout {
  grid-column: 2 / 3;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  padding: 20px;
  align-items: center;
}
.step--callout p {
  color: var(--color-yellow);
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
}
.step--callout .step__icon { background: transparent; }
.step--callout .step__icon svg { color: var(--color-yellow); width: 32px; height: 32px; }
.how-it-works__media img { width: 100%; }

/* 14. Testimonials + partners
   ========================================================================== */
.testimonials {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}
.testimonials__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.testimonials__overlay { position: absolute; inset: 0; background: rgba(35,45,100,0.8); }
.testimonials .container { position: relative; z-index: 1; }
.testimonials__head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.testimonials__head .eyebrow { display: inline-flex; }
.testimonials__slider { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.testimonial-slide { display: none; }
.testimonial-slide.is-active { display: block; animation: fadeIn 0.5s ease; }
.testimonial-slide__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.testimonial-slide__stars img { width: 20px; height: 20px; }
.testimonial-slide__quote {
  font-family: var(--font-alt);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.5;
  margin-bottom: 24px;
}
.testimonial-slide__author {
  font-family: var(--font-alt);
  font-weight: 900;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.testimonials__dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testimonials__dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonials__dots button.is-active { background: var(--color-yellow); transform: scale(1.2); }
.testimonials__rating {
  position: absolute;
  top: 0; right: 0;
  text-align: right;
}
.testimonials__rating .stars-row,
.testimonial-slide__stars { color: var(--color-yellow); letter-spacing: 4px; font-size: 18px; }
.testimonials__rating .score { font-family: var(--font-accent); font-size: 40px; }
.testimonials__rating .caption1 { font-size: 20px; }
.testimonials__rating .caption2 { font-size: 14px; color: var(--color-placeholder); }

.partners {
  background: var(--color-yellow);
  padding-block: var(--section-pad-y);
  text-align: center;
}
.partners__head { max-width: 780px; margin: 0 auto 40px; }
.partners .eyebrow { background: rgba(35,45,100,0.12); color: var(--color-navy); }
.partners h2 { color: var(--color-white); }
.partners h2 .accent { color: var(--color-navy); }
.partners__sub { color: var(--color-white); font-family: var(--font-alt); font-weight: 500; font-size: 18px; margin-top: 16px; }
.partners__marquee { overflow: hidden; margin-top: 48px; }
.partners__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.partners__track img { height: 40px; width: auto; opacity: 0.9; filter: grayscale(0%); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 15. Contact CTA (rebuilt FoxSecur-branded — see build notes)
   ========================================================================== */
.contact-cta { background: var(--color-bg-light-blue); }
.contact-cta__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-cta__eyebrow { font-family: var(--font-alt); font-weight: 600; font-size: 18px; color: var(--color-navy); margin-bottom: 12px; }
.contact-cta h2 { margin-bottom: 16px; }
.contact-cta .body-text { margin-bottom: 24px; }
.contact-cta__points { display: flex; flex-direction: column; gap: 20px; }
.contact-point { display: flex; gap: 16px; align-items: flex-start; }
.contact-point__icon {
  width: 44px; height: 44px; flex: none;
  background: var(--color-yellow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-point__icon svg { width: 20px; height: 20px; color: var(--color-navy); }
.contact-point strong { display: block; font-family: var(--font-heading); font-size: 16px; }
.contact-point span { color: var(--color-gray-body); font-size: 15px; }

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(35,45,100,0.1);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: #fafafa;
  transition: border-color 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-yellow); }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 13px; color: var(--color-gray-body); margin-top: 12px; }

/* 16. FAQ
   ========================================================================== */
.faq__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.faq h1, .faq .h1-alt { margin-bottom: 32px; }
.faq__contact-rows { display: flex; flex-direction: column; gap: 16px; }
.faq-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: linear-gradient(120deg, rgba(35,45,100,0.04), transparent);
}
.faq-contact-row__icon {
  width: 44px; height: 44px; flex: none;
  background: var(--color-yellow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.faq-contact-row__icon svg { width: 20px; height: 20px; color: var(--color-navy); }
.faq-contact-row strong { display: block; font-size: 13px; text-transform: uppercase; color: var(--color-gray-body); }
.faq-contact-row span { font-family: var(--font-heading); font-weight: 700; font-size: 16px; }

.faq__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(35,45,100,0.1);
  padding: 16px 32px;
}
.faq-item { border-bottom: 1px solid var(--color-divider); }
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-alt);
  font-weight: 800;
  font-size: 17px;
  color: var(--color-navy);
}
.faq-item__question .chevron { transition: transform 0.3s ease; flex: none; width: 20px; height: 20px; }
.faq-item.is-open .chevron { transform: rotate(180deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-item__answer { max-height: 200px; }
.faq-item__answer p { padding-bottom: 22px; color: var(--color-gray-body); font-size: 15px; line-height: 1.6; }

/* 17. Final CTA band
   ========================================================================== */
.final-cta { background: var(--color-bg-light-blue); }
.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.final-cta__eyebrow { font-family: var(--font-alt); font-weight: 600; font-size: 18px; margin-bottom: 12px; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta .body-text { max-width: 480px; }
.final-cta__text { max-width: 720px; }

/* 18. Footer
   ========================================================================== */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding-top: var(--section-pad-y);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand img { height: 56px; margin-bottom: 20px; }
.footer-brand p { color: var(--color-gray-light); font-size: 15px; margin-bottom: 24px; }
.footer-brand h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: #fafafa;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--color-navy);
}
.newsletter-form button {
  width: 48px; height: 48px; flex: none;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.newsletter-form button:hover { transform: scale(1.08); }
.newsletter-form button svg { width: 18px; height: 18px; color: var(--color-navy); }
.newsletter-msg { font-size: 13px; margin-top: 10px; color: var(--color-yellow); min-height: 16px; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--color-gray-light);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--color-yellow); }
.footer-col a svg { width: 12px; height: 12px; flex: none; }

.footer-touch {
  background: var(--color-navy-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.footer-touch h4 { margin-bottom: 16px; }
.footer-touch-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-touch-item svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--color-yellow); }
.footer-touch-item strong { display: block; font-size: 13px; color: var(--color-gray-light); }
.footer-touch-item span, .footer-touch-item a { font-size: 15px; display: block; }
.footer-touch-numbers { list-style: none; margin-top: 6px; padding: 0; }
.footer-touch-numbers li { font-size: 14px; color: var(--color-gray-light); }
.footer-touch-numbers b { color: var(--color-white); }

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(234,240,240,0.15);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-gray-light);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; color: var(--color-navy); }
.footer-bottom-links { display: flex; gap: 8px; align-items: center; }

/* 19. Animations
   ========================================================================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* 20. Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .core-solutions__layout,
  .how-it-works__layout,
  .why-foxsecur .grid-2,
  .contact-cta__layout,
  .faq__layout { grid-template-columns: 1fr; }
  .core-solutions__layout > div:first-child { display: block; }
  .core-solutions__media {
    flex: none;
    width: 100%;
    max-width: 360px;
    min-height: 0;
    margin: 32px auto 0;
  }
  .core-solutions__media img { height: auto; object-fit: initial; }
  .stats-bar { flex-direction: column; align-items: stretch; }
  .stats-bar__media { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-touch { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  :root { --container-pad: 32px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .split-columns { grid-template-columns: 1fr; gap: 32px; }
  .split-card__content { padding: 32px; max-width: 100%; }
  .how-it-works__card { grid-template-columns: 1fr; }
  .step--callout { grid-column: 1 / 2; }
  .hero-slide { min-height: 760px; }
  .hero-slide__inner {
    grid-template-columns: 1fr;
    padding-top: 160px;
    padding-bottom: 48px;
    gap: 40px;
  }
  .hero-slide__media { order: 2; min-height: 0; }
  .hero-slide__media img { max-height: 420px; }
  .hero-slider__nav { right: 18px; padding: 14px 9px; gap: 13px; }
}

@media (max-width: 767px) {
  :root { --container-pad: 20px; --section-pad-y: 56px; }
  body { font-size: 15px; }

  .site-header { padding: 18px 0; }
  .site-logo img { height: 44px; }
  /* Header CTA buttons are already duplicated in the off-canvas mobile menu,
     so on narrow screens only the logo + hamburger stay in the header bar
     to avoid the phone-number button overflowing the viewport. */
  .header-ctas a.btn { display: none; }

  .hero-slide { min-height: auto; }
  .hero-slide__inner { padding-top: 130px; padding-bottom: 32px; gap: 32px; }
  .hero-slide__media img { max-height: 280px; }
  .hero__orb { display: none; }
  .hero-slider__nav { right: 10px; padding: 12px 7px; gap: 11px; }
  .hero-slider__nav button { width: 7px; height: 7px; }
  .hero-slider__nav button.is-active { width: 10px; height: 10px; box-shadow: 0 0 0 3px rgba(255,255,255,0.45); }

  .stats-bar-wrap { margin-top: -60px; }
  .stats-bar { padding: 24px; border-radius: var(--radius-md); }
  .stats-bar__list { flex-direction: column; gap: 20px; width: 100%; }
  .stats-bar__num { font-size: 30px; }
  .stats-bar__media { height: 200px; }

  .split-section .section-heading { text-align: left; }
  .split-section .container > .eyebrow-wrap { justify-content: flex-start; }
  .split-card { min-height: 480px; }
  .split-card__content { padding: 24px; gap: 16px; }
  .split-card__logo { width: 96px; }
  .split-card__logo--br { right: 20px; bottom: 20px; }
  .split-card__logo--tr { right: 20px; top: 20px; }

  .core-solutions__layout, .why-foxsecur .grid-2, .how-it-works__layout, .faq__layout, .contact-cta__layout {
    gap: 32px;
  }
  .feature-row__icon { width: 64px; height: 64px; }
  .feature-row__icon img, .feature-row__icon svg { width: 32px; height: 32px; }
  .core-solutions__media { max-width: 280px; }

  .testimonials__rating { position: static; margin-top: 32px; text-align: center; }
  .testimonials__slider { max-width: 100%; }

  .partners__track { animation-duration: 18s; gap: 40px; }
  .partners__track img { height: 28px; }

  .contact-form { padding: 24px; }

  .final-cta__inner { flex-direction: column; align-items: flex-start; }
  .final-cta .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .h1-hero { line-height: 1.25; }
}
