:root {
  color-scheme: light;
  --page: #f8fafc;
  --paper: #ffffff;
  --ink: #0b0f16;
  --ink-soft: #303846;
  --muted: #667085;
  --line: rgba(11, 15, 22, 0.1);
  --dark: #030508;
  --dark-2: #090d14;
  --dark-card: rgba(11, 15, 22, 0.78);
  --white: #ffffff;
  --red: #c9101d;
  --red-2: #ff3446;
  --navy: #052c5c;
  --blue: #006cff;
  --blue-2: #27c9ff;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --shadow-soft: 0 18px 45px rgba(18, 24, 32, 0.12);
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.36);
  --max: 1220px;
  --wide: 1480px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(201, 16, 29, 0.045), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(0, 108, 255, 0.055), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%),
    var(--page);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 108, 255, 0.9);
  outline-offset: 4px;
}

::selection {
  background: rgba(201, 16, 29, 0.22);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: top 220ms ease;
}

.site-header.is-scrolled {
  top: 16px;
}

.nav-shell {
  position: relative;
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(24px, 4.6vw, 64px);
  border: 1px solid transparent;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58) 62%, rgba(255, 255, 255, 0.1)),
    linear-gradient(90deg, rgba(201, 16, 29, 0.08), transparent 28%, rgba(0, 108, 255, 0.08));
  box-shadow: inset 0 -1px 0 rgba(5, 44, 92, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
  pointer-events: auto;
  transition:
    width 220ms ease,
    min-height 220ms ease,
    padding 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    border-radius 220ms ease;
}

.nav-shell::after {
  content: "";
  position: absolute;
  left: clamp(24px, 4.6vw, 64px);
  right: clamp(24px, 4.6vw, 64px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0), var(--blue));
  opacity: 0.48;
  transition: opacity 220ms ease, left 220ms ease, right 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  width: min(1280px, calc(100% - 48px));
  min-height: var(--header-height);
  padding: 8px 10px 8px 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
    rgba(255, 255, 255, 0.96);
  border-color: rgba(5, 44, 92, 0.12);
  box-shadow: 0 20px 54px rgba(2, 8, 23, 0.16);
  backdrop-filter: blur(24px) saturate(140%);
  transform: translateY(0);
}

.site-header.is-scrolled .nav-shell::after {
  left: 34px;
  right: 34px;
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  min-width: 0;
  padding: 5px 0;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  width: clamp(172px, 13.6vw, 224px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(2, 8, 23, 0.14));
  transition: width 220ms ease, filter 220ms ease;
}

.site-header.is-scrolled .brand img {
  width: 174px;
  filter: drop-shadow(0 8px 16px rgba(2, 8, 23, 0.1));
}

.nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.nav-kicker {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(5, 44, 92, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.nav-kicker svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.site-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(5, 44, 92, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 28px rgba(2, 8, 23, 0.06);
  backdrop-filter: blur(16px) saturate(140%);
}

.site-header.is-scrolled .site-menu {
  background: rgba(248, 250, 252, 0.76);
  border-color: rgba(5, 44, 92, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(11, 15, 22, 0.76);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: rgba(5, 44, 92, 0.06);
  color: var(--navy);
  transform: translateY(-1px);
}

.site-menu a:hover::after,
.site-menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-assessment,
.nav-dispatch,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-assessment {
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(5, 44, 92, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  font-size: 0.84rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.nav-dispatch {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 0 17px;
  background: linear-gradient(135deg, var(--red), #920813 58%, var(--navy));
  color: var(--white);
  font-size: 0.88rem;
  box-shadow: 0 14px 28px rgba(201, 16, 29, 0.26);
}

.nav-dispatch::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

.nav-dispatch:hover::before {
  left: 112%;
}

.nav-assessment span,
.nav-dispatch span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.nav-assessment svg,
.nav-dispatch svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
}

.nav-assessment:hover,
.nav-dispatch:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(5, 44, 92, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-toggle:hover {
  background: rgba(5, 44, 92, 0.08);
  transform: translateY(-1px);
}

svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 142px 0 66px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  background: var(--dark);
  box-shadow: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(3, 5, 8, 0.26), rgba(3, 5, 8, 0.12)),
    url("assets/team-officers.jpg") center / cover no-repeat;
}

.hero-video-stage {
  position: absolute;
  inset: -1px;
  display: block;
  background: var(--dark);
  transform: none;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 4, 9, 0.9) 0%, rgba(2, 4, 9, 0.72) 32%, rgba(2, 4, 9, 0.22) 62%, rgba(2, 4, 9, 0.08) 100%),
    radial-gradient(circle at 18% 32%, rgba(201, 16, 29, 0.18), transparent 34%);
}

.hero-media::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(2, 4, 9, 0.52), transparent 30%, rgba(2, 4, 9, 0.64)),
    linear-gradient(90deg, transparent 0%, transparent 58%, rgba(2, 4, 9, 0.34) 100%),
    radial-gradient(circle at 88% 18%, rgba(0, 108, 255, 0.22), transparent 32%);
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
  filter: saturate(1.06) contrast(1.04);
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 48px 30px;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 15, 22, 0.18), transparent);
}

.hero-content {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  color: var(--white);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.emergency-cta .eyebrow {
  color: var(--white);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow: 0 0 0 7px rgba(201, 16, 29, 0.13), 0 0 22px rgba(255, 52, 70, 0.72);
}

h1 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(3rem, 4.7vw, 5.3rem);
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.hero-lede {
  max-width: 600px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  max-width: 620px;
}

.hero-proof-row span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 5, 8, 0.46);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.hero-proof-row svg {
  width: 17px;
  height: 17px;
  color: var(--red-2);
}

.hero-service-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-service-cues span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(201, 16, 29, 0.28), rgba(255, 255, 255, 0.07)),
    rgba(3, 5, 8, 0.52);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.hero-service-cues svg {
  width: 17px;
  height: 17px;
  color: var(--red-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(201, 16, 29, 0.26);
}

.btn-secondary,
.btn-mini {
  background: rgba(11, 15, 22, 0.82);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero .btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(11, 15, 22, 0.1);
  box-shadow: 0 14px 28px rgba(18, 24, 32, 0.08);
}

.btn-mini {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.85rem;
}

.hero-bottom {
  width: min(var(--max), 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-bottom article {
  min-height: 94px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-bottom strong {
  color: var(--white);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-bottom span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 700;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
}

.section {
  padding: 76px 0;
}

.partner-section {
  width: min(var(--wide), calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.partner-shell {
  position: relative;
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding: 34px 0 30px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.partner-shell::before {
  content: none;
}

.partner-heading {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.partner-heading h2 {
  color: var(--ink);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.partner-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
}

.partner-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  overflow: hidden;
  padding: 2px 0 8px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-track {
  min-width: max-content;
  display: flex;
  gap: 16px;
  animation: partnerMarquee 34s linear infinite;
}

.partner-logo {
  position: relative;
  width: 282px;
  min-height: 178px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 18px;
  border: 1px solid rgba(11, 15, 22, 0.08);
  border-radius: 22px;
  background: var(--dark);
  box-shadow: 0 18px 42px rgba(18, 24, 32, 0.12);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 16, 29, 0.28);
  box-shadow: 0 26px 62px rgba(18, 24, 32, 0.18);
}

.partner-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 4, 9, 0.02), rgba(2, 4, 9, 0.84)),
    linear-gradient(90deg, rgba(201, 16, 29, 0.22), transparent 44%);
}

.partner-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.partner-logo:hover .partner-photo {
  transform: scale(1.065);
  filter: saturate(1.08) contrast(1.04);
}

.partner-card-copy {
  display: grid;
  gap: 6px;
}

.partner-card-copy span {
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-card-copy strong {
  color: var(--white);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.08rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.48);
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: end;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  padding: 22px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.12), rgba(5, 7, 10, 0.84)),
    var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background-size 520ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(18, 24, 32, 0.24);
  background-size: 106%;
}

.feature-card h3 {
  max-width: 220px;
  font-size: 1.35rem;
}

.feature-card > a,
.icon-chip {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.icon-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  background: var(--red);
}

.feature-card > a {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
}

.service-grid.compact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.service-card,
.bento-card {
  border: 1px solid rgba(11, 15, 22, 0.08);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 320px;
  overflow: hidden;
  padding: 0;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(18, 24, 32, 0.16);
}

.service-card-media {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  background: var(--dark);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.02), rgba(3, 5, 8, 0.72)),
    linear-gradient(90deg, rgba(201, 16, 29, 0.18), transparent 48%, rgba(0, 108, 255, 0.16));
}

.service-card-media img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-media svg {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(201, 16, 29, 0.26);
}

.service-card-body {
  padding: 22px;
}

.bento-card svg {
  color: var(--red);
  margin-bottom: 20px;
}

.service-card h3,
.bento-card h3 {
  font-size: 1.17rem;
}

.service-card p,
.bento-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.advantage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
}

.advantage-card {
  min-height: 520px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.command-preview {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 240px;
  background: var(--dark);
}

.command-preview img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.command-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(3, 5, 8, 0.82));
}

.command-preview span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bento-card {
  min-height: 250px;
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bento-card.dark {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.bento-card.dark p {
  color: rgba(255, 255, 255, 0.66);
}

.bento-card.dark svg {
  color: var(--red-2);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 650ms ease;
}

.media-frame:hover img {
  transform: scale(1.045);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tech-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
}

.tech-grid span {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 10px 22px rgba(18, 24, 32, 0.07);
}

.testimonials {
  display: grid;
  gap: 30px;
  overflow: hidden;
}

.testimonial-marquee {
  width: 100%;
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 6px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track {
  min-width: max-content;
  display: flex;
  gap: 18px;
  animation: testimonialMarquee 38s linear infinite;
}

.testimonial-card {
  width: 380px;
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle, rgba(11, 15, 22, 0.055) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.86));
  background-size: 13px 13px;
  text-align: left;
  border: 1px solid rgba(11, 15, 22, 0.08);
  box-shadow: 0 18px 46px rgba(18, 24, 32, 0.1);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.testimonial-logo {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.rating {
  color: #f5b301;
  font-size: 0.9rem;
  white-space: nowrap;
}

.testimonial-card p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.testimonial-card strong {
  color: var(--ink);
}

.testimonial-card > span {
  color: var(--muted);
  font-size: 0.9rem;
}

.emergency-cta {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  min-height: 420px;
  margin: 40px auto 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  background: var(--dark);
  box-shadow: var(--shadow-strong);
}

.cta-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/command-center.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.emergency-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 3, 7, 0.96), rgba(2, 3, 7, 0.72) 46%, rgba(2, 3, 7, 0.18));
}

.cta-content {
  max-width: 620px;
  padding: 44px;
  color: var(--white);
}

.cta-content h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

.cta-content p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.faq-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 46px auto 0;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(11, 15, 22, 0.07);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 16, 29, 0.08), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(0, 108, 255, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.faq-intro {
  position: sticky;
  top: 118px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
  padding: 8px 8px 8px 2px;
}

.faq-intro h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  text-wrap: balance;
}

.faq-intro p:not(.eyebrow) {
  max-width: 410px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(11, 15, 22, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(18, 24, 32, 0.08);
}

.faq-item summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 12px 22px rgba(2, 8, 23, 0.14);
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span {
  background: linear-gradient(135deg, var(--red), var(--red-2));
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  margin: -4px 22px 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 15, 22, 0.08);
  color: var(--muted);
}

.blog-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 72px auto 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  grid-auto-rows: minmax(184px, auto);
  gap: 18px;
  margin-top: 32px;
}

.blog-card {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(11, 15, 22, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(18, 24, 32, 0.16);
}

.blog-card.featured {
  grid-row: span 3;
  grid-template-columns: 1fr;
}

.blog-media {
  min-height: 100%;
  overflow: hidden;
  background: var(--dark);
}

.blog-card.featured .blog-media {
  min-height: 360px;
}

.blog-media img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  object-fit: cover;
  transition: transform 620ms ease;
}

.blog-card:hover .blog-media img {
  transform: scale(1.055);
}

.blog-content {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.blog-card.featured .blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(201, 16, 29, 0.08);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-meta span + span {
  background: rgba(11, 15, 22, 0.06);
  color: var(--muted);
}

.blog-card h3 {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.15;
}

.blog-card.featured h3 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  position: relative;
  width: min(var(--wide), calc(100% - 44px));
  margin: 62px auto 22px;
  overflow: hidden;
  isolation: isolate;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(201, 16, 29, 0.18), transparent 28%),
    linear-gradient(225deg, rgba(0, 108, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #090d14, #030508);
  box-shadow: 0 34px 90px rgba(2, 8, 23, 0.3);
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
}

.footer-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.footer-command .eyebrow {
  color: var(--red-2);
}

.footer-command h2 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.02;
}

.footer-command-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-hotline {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-hotline span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-hotline strong {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.12rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.28fr) minmax(180px, 0.72fr) minmax(180px, 0.72fr) minmax(260px, 0.9fr);
  gap: 28px;
  margin-top: 30px;
}

.footer-brand img {
  width: 210px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.footer-brand p {
  max-width: 440px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.footer-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-trust-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-trust-list svg {
  width: 16px;
  height: 16px;
  color: var(--red-2);
}

.footer-link-group,
.footer-ops-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.site-footer h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-ops-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-ops-panel svg {
  width: 18px;
  height: 18px;
  color: var(--red-2);
}

.footer-response-card {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(201, 16, 29, 0.22), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
}

.footer-response-card span,
.footer-response-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-response-card strong {
  color: var(--white);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.footer-service-map {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-service-map span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.footer-bottom div:first-child {
  display: grid;
  gap: 5px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 14px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

@keyframes gradientSweep {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes testimonialMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 18px));
  }
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 16px));
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto auto;
    gap: 14px;
  }

  .nav-center {
    display: contents;
  }

  .nav-kicker,
  .nav-assessment,
  .nav-dispatch {
    display: none;
  }

  .nav-actions {
    justify-self: end;
  }

  .site-menu {
    position: fixed;
    top: 102px;
    left: 24px;
    right: 24px;
    width: auto;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(5, 44, 92, 0.1);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.97)),
      var(--white);
    box-shadow: 0 22px 60px rgba(2, 8, 23, 0.18);
  }

  .site-header.is-scrolled .site-menu {
    top: calc(var(--header-height) + 36px);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 16px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .hero-content,
  .partner-heading,
  .footer-command,
  .media-split,
  .faq-shell,
  .advantage {
    grid-template-columns: 1fr;
  }

  .footer-command-actions {
    justify-content: start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom-links {
    justify-content: start;
  }

  .faq-intro {
    position: static;
  }

  .service-grid.compact,
  .blog-grid,
  .bento-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card,
  .blog-card.featured {
    grid-template-columns: 1fr;
    grid-row: auto;
  }

  .blog-card.featured .blog-media,
  .blog-media img {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    top: 0;
  }

  .site-header.is-scrolled {
    top: 10px;
  }

  .nav-shell {
    width: 100%;
    min-height: 82px;
    padding: 8px 14px;
  }

  .site-header.is-scrolled .nav-shell {
    width: calc(100% - 28px);
    min-height: var(--header-height);
    padding: 7px 8px 7px 12px;
  }

  .site-menu {
    top: 88px;
    left: 14px;
    right: 14px;
  }

  .site-header.is-scrolled .site-menu {
    top: calc(var(--header-height) + 20px);
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    width: 100%;
    min-height: 100svh;
    padding: 118px 0 38px;
    border-radius: 0;
  }

  .hero-content {
    width: calc(100% - 36px);
    gap: 26px;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(2, 4, 9, 0.78), rgba(2, 4, 9, 0.58) 44%, rgba(2, 4, 9, 0.74)),
      radial-gradient(circle at 18% 18%, rgba(201, 16, 29, 0.18), transparent 38%);
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(2, 4, 9, 0.34), transparent 36%, rgba(2, 4, 9, 0.58)),
      radial-gradient(circle at 84% 20%, rgba(0, 108, 255, 0.16), transparent 34%);
  }

  .hero-video {
    object-position: 58% center;
  }

  h1 {
    font-size: 2.58rem;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof-row {
    display: flex;
    gap: 8px;
  }

  .hero-proof-row span {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .btn {
    width: 100%;
    min-height: 56px;
  }

  .section,
  .partner-section,
  .emergency-cta,
  .faq-section,
  .blog-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .feature-card-grid,
  .service-grid.compact,
  .blog-grid,
  .bento-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .partner-section {
    margin-top: 0;
  }

  .partner-shell {
    gap: 22px;
    padding: 26px 0 24px;
    border-radius: 22px;
  }

  .partner-heading {
    width: calc(100% - 36px);
    gap: 14px;
  }

  .partner-heading h2 {
    font-size: 2rem;
  }

  .partner-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .partner-logo {
    width: 238px;
    min-height: 154px;
    padding: 16px;
    border-radius: 18px;
  }

  .section-heading.row,
  .footer-bottom {
    display: grid;
    align-items: start;
  }

  .feature-card {
    min-height: 260px;
  }

  .testimonial-card {
    width: 310px;
    min-height: 270px;
    padding: 22px;
  }

  .advantage-card,
  .faq-shell,
  .site-footer {
    padding: 22px;
  }

  .footer-command {
    padding: 22px;
    border-radius: 22px;
  }

  .footer-command-actions {
    display: grid;
  }

  .footer-hotline,
  .footer-command .btn {
    width: 100%;
  }

  .footer-brand img {
    width: 176px;
  }

  .footer-service-map {
    padding: 14px;
  }

  .faq-shell {
    gap: 18px;
  }

  .faq-item summary {
    min-height: 68px;
    padding: 18px;
  }

  .faq-item p {
    margin: -2px 18px 18px;
  }

  .blog-section {
    margin-top: 58px;
  }

  .blog-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .blog-card {
    border-radius: 20px;
  }

  .blog-card.featured .blog-media,
  .blog-media img {
    min-height: 220px;
  }

  .blog-content,
  .blog-card.featured .blog-content {
    padding: 22px;
  }

  .media-frame img {
    height: 380px;
  }

  .emergency-cta {
    min-height: 500px;
  }

  .emergency-cta::before {
    background: linear-gradient(180deg, rgba(2, 3, 7, 0.88), rgba(2, 3, 7, 0.98));
  }

  .cta-content {
    padding: 26px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 128px;
  }

  h1 {
    font-size: 2.26rem;
  }

  .section-heading h2,
  .cta-content h2 {
    font-size: 2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .testimonial-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .partner-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .hero-video {
    display: none;
  }

  .testimonial-track,
  .partner-track {
    animation: none;
  }
}
