:root {
  --navy: #001b31;
  --navy-2: #062b46;
  --orange: #ff4b05;
  --orange-2: #ff6a18;
  --ink: #14202b;
  --muted: #5e6b75;
  --line: #dfe7ed;
  --soft: #f4f7f9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 27, 49, 0.16);
  --texture-light:
    linear-gradient(90deg, rgba(0, 27, 49, 0.012) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 27, 49, 0.01) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, rgba(255, 75, 5, 0.022), transparent 30rem);
  --texture-dark:
    radial-gradient(circle at 78% 14%, rgba(255, 75, 5, 0.06), transparent 36rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 44%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 27, 49, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  justify-self: start;
}

.brand-mark {
  width: 48px;
  height: 48px;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-type {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-type span {
  color: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: 29px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-type b {
  color: var(--orange);
}

.brand-type small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: #344451;
  font-size: 14px;
  font-weight: 800;
  justify-self: center;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--orange);
}

.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 28px rgba(255, 75, 5, 0.24);
  font-size: 14px;
  font-weight: 900;
}

.header-cta {
  justify-self: end;
}

.header-cta:hover,
.primary-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: clamp(70px, 10vw, 128px) clamp(22px, 7vw, 96px);
  overflow: hidden;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 16% 22%, rgba(255, 75, 5, 0.08), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%);
  background-size: auto;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 58%, transparent 92%);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 27, 49, 0.94) 0%, rgba(0, 27, 49, 0.82) 37%, rgba(0, 27, 49, 0.36) 72%, rgba(0, 27, 49, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 27, 49, 0.45), rgba(0, 27, 49, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--orange);
  text-shadow: 0 8px 30px rgba(255, 75, 5, 0.34);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.hero-card {
  position: absolute;
  right: clamp(22px, 7vw, 96px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 570px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-card span {
  padding: 10px 13px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.logo-proof {
  display: grid;
  gap: 18px;
  padding: 28px clamp(22px, 7vw, 96px);
  border-bottom: 1px solid rgba(0, 27, 49, 0.08);
  background: var(--white);
}

.logo-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-row img {
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: 0 10px 28px rgba(0, 27, 49, 0.04);
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(22px, 7vw, 96px);
}

.problem {
  background:
    var(--texture-light),
    var(--soft);
  background-size: 58px 58px, 58px 58px, auto;
}

.section-heading h2,
.feature-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-copy p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.problem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.problem-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 27, 49, 0.16), var(--orange));
  transform: translate(-50%, -50%);
}

.problem-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 18px);
  z-index: 3;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: translate(-50%, -50%) rotate(45deg);
}

.problem-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(0, 27, 49, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(0, 27, 49, 0.07);
}

.problem-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pain-card {
  filter: saturate(0.82);
}

.pain-card::after {
  background:
    linear-gradient(135deg, rgba(0, 27, 49, 0.045), transparent 44%),
    repeating-linear-gradient(135deg, rgba(0, 27, 49, 0.035) 0 1px, transparent 1px 10px);
}

.solution-card {
  border-color: rgba(255, 75, 5, 0.28) !important;
  box-shadow: 0 24px 60px rgba(255, 75, 5, 0.12), 0 18px 46px rgba(0, 27, 49, 0.07) !important;
}

.solution-card::after {
  border-top: 5px solid var(--orange);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 75, 5, 0.1), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 75, 5, 0.035));
}

.card-signal {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 6px;
  color: var(--white);
  background: #6b7782;
  font-size: 21px;
  font-weight: 900;
}

.solution-card .card-signal {
  background: var(--orange);
}

.problem-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
}

.problem-grid p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.proof-points,
.inline-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.proof-points span,
.inline-proof span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.inline-proof {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(0, 27, 49, 0.08);
  border-radius: 8px;
  background: var(--soft);
}

.inline-proof b {
  margin-right: 8px;
  color: var(--navy);
  font-size: 14px;
}

.inline-proof span {
  background: var(--white);
}

.services {
  background: var(--white);
}

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

.service-grid article,
.steps article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 27, 49, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 40px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.service-grid h3,
.steps h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.service-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(22px, 7vw, 96px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 249, 0.96)),
    var(--soft);
}

.feature-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy h2 {
  color: var(--navy);
}

.feature-copy p {
  margin-top: 22px;
  color: var(--muted);
}

.feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 800;
}

.feature-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--orange);
  transform: rotate(45deg);
}

.standards-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(22px, 7vw, 96px);
  background:
    var(--texture-dark),
    linear-gradient(135deg, #00121f, #062b46);
  background-size: auto, auto, auto;
}

.standards-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.standards-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.standards-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 27, 49, 0.74));
}

.photo-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 27, 49, 0.62);
  backdrop-filter: blur(14px);
}

.photo-note span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.photo-note b {
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.standards-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  text-transform: uppercase;
}

.standards-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.standards-grid article {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.standards-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-family: Oswald, Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.standards-grid h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 18px;
}

.standards-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.process {
  background: var(--soft);
}

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

.steps b {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  font-family: Oswald, Inter, sans-serif;
  font-size: 50px;
  line-height: 1;
}

.testimonial-band {
  padding: clamp(70px, 9vw, 118px) clamp(22px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(244, 247, 249, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
}

.testimonial-reel {
  --cell: 122px;
  --gap: 8px;
  --step: calc((var(--cell) + var(--gap)) * 3);
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  gap: 10px;
  max-width: 1120px;
  min-height: 356px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(0, 27, 49, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 24px 70px rgba(0, 27, 49, 0.11),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

.portrait-reel {
  position: relative;
  min-height: 356px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 93, 21, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(0, 27, 49, 0.07), rgba(255, 255, 255, 0.52));
  mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
}

.portrait-columns {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
}

.portrait-column {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  transition: transform 800ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.middle-column {
  transform: translateY(calc(var(--active-index, 0) * var(--step) * -1));
}

.side-column {
  transform: translateY(calc(var(--active-index, 0) * var(--step)));
}

.portrait-cell,
.portrait-column img {
  flex: 0 0 auto;
  width: var(--cell);
  height: var(--cell);
  border-radius: 8px;
}

.portrait-cell {
  border: 1px solid rgba(0, 27, 49, 0.08);
  background:
    linear-gradient(180deg, rgba(244, 247, 249, 0.84), rgba(255, 255, 255, 0.94)),
    var(--soft);
  filter: blur(1px);
  box-shadow:
    0 1px 2px rgba(0, 27, 49, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.portrait-column img {
  object-fit: cover;
  border: 2px solid var(--white);
  background: var(--soft);
  filter: saturate(0.86);
  box-shadow:
    0 8px 16px rgba(0, 27, 49, 0.12),
    0 30px 46px rgba(0, 27, 49, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.testimonial-stage {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 5vw, 54px);
}

.quote-mark {
  display: block;
  height: 44px;
  color: rgba(0, 27, 49, 0.18);
  font-family: Georgia, serif;
  font-size: 86px;
  line-height: 0.85;
}

.testimonial-copy {
  max-width: 570px;
}

.testimonial-quote {
  min-height: 116px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.testimonial-author {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.4;
}

.testimonial-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: testimonial-char-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.testimonial-word {
  display: inline-block;
  white-space: nowrap;
}

.testimonial-copy.is-exiting {
  animation: testimonial-exit 220ms ease forwards;
}

.testimonial-controls {
  display: flex;
  gap: 8px;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(0, 27, 49, 0.16);
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.testimonial-controls button:hover:enabled {
  color: var(--orange);
  border-color: rgba(255, 93, 21, 0.52);
  transform: translateY(-1px);
}

.testimonial-controls button:disabled {
  cursor: default;
  opacity: 0.38;
}

.testimonial-controls span {
  display: block;
  transform: translateY(-1px);
  font-size: 24px;
  line-height: 1;
}

@keyframes testimonial-char-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testimonial-exit {
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.service-showcase {
  background: var(--soft);
}

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

.animated-service-card {
  display: block;
  min-height: 430px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0, 27, 49, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.animated-service-card:hover {
  border-color: rgba(255, 75, 5, 0.32);
  box-shadow: 0 26px 70px rgba(0, 27, 49, 0.12);
  transform: translateY(-4px);
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.card-topline h3 {
  max-width: 360px;
  margin: 0;
  color: var(--navy);
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.96;
  text-transform: uppercase;
}

.card-topline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-size: 18px;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease;
}

.animated-service-card:hover .card-topline span {
  background: var(--orange);
  transform: translateX(3px);
}

.image-stack {
  position: relative;
  height: 152px;
  margin: 28px 0 24px;
}

.image-stack img {
  position: absolute;
  top: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 27, 49, 0.18);
  transition: transform 260ms ease;
}

.image-stack img:nth-child(1) {
  left: 0;
  z-index: 3;
}

.image-stack img:nth-child(2) {
  left: 29%;
  z-index: 2;
}

.image-stack img:nth-child(3) {
  left: 58%;
  z-index: 1;
}

.animated-service-card:hover .image-stack img:nth-child(1) {
  transform: translateX(-4px) rotate(-4deg);
}

.animated-service-card:hover .image-stack img:nth-child(2) {
  transform: translateX(3px) rotate(2deg);
}

.animated-service-card:hover .image-stack img:nth-child(3) {
  transform: translateX(7px) rotate(5deg);
}

.service-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.service-stats span {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--navy);
  background: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.animated-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.58;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(54px, 8vw, 86px) clamp(22px, 7vw, 96px);
  color: var(--white);
  background:
    var(--texture-dark),
    linear-gradient(135deg, rgba(0, 27, 49, 0.95), rgba(6, 43, 70, 0.94)),
    url("assets/hero-clean-office.png") center / cover;
  background-size: auto, auto, cover;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 690px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 7vw, 96px);
  color: rgba(255, 255, 255, 0.72);
  background: #00101d;
  font-size: 14px;
  font-weight: 700;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .problem-grid,
  .feature-band,
  .standards-showcase {
    grid-template-columns: 1fr;
  }

  .problem-grid::before,
  .problem-grid::after {
    display: none;
  }

  .steps,
  .logo-row,
  .animated-service-grid,
  .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-reel {
    grid-template-columns: 1fr;
  }

  .portrait-reel {
    min-height: 250px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-type span {
    font-size: 23px;
  }

  .brand-type small {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    max-width: 126px;
    padding: 0 12px;
    font-size: 12px;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    padding: 82px 18px 34px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 27, 49, 0.94) 0%, rgba(0, 27, 49, 0.78) 54%, rgba(0, 27, 49, 0.58) 100%);
  }

  .hero h1 {
    font-size: clamp(49px, 16vw, 66px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .primary-cta {
    width: 100%;
  }

  .section,
  .feature-band,
  .standards-showcase {
    padding: 58px 18px;
  }

  .steps,
  .logo-row,
  .animated-service-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .steps article,
  .standards-grid article {
    min-height: auto;
  }

  .testimonial-band {
    padding: 58px 18px;
  }

  .testimonial-reel {
    --cell: 94px;
    min-height: auto;
  }

  .portrait-reel {
    min-height: 228px;
  }

  .testimonial-stage {
    padding: 24px;
  }

  .testimonial-quote {
    min-height: 174px;
    font-size: 26px;
  }

  .animated-service-card {
    min-height: auto;
    padding: 22px;
  }

  .image-stack {
    height: 132px;
  }

  .standards-photo,
  .standards-photo img {
    min-height: 360px;
  }

  .final-cta {
    display: grid;
    padding: 54px 18px;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}
