:root {
  --orange: #ee4f24;
  --orange-dark: #cf3f18;
  --blue: #3f8eb8;
  --blue-dark: #0b4f78;
  --navy: #0b2d42;
  --navy-deep: #061d2c;
  --ink: #18313f;
  --muted: #60737d;
  --paper: #ffffff;
  --mist: #f3f7f9;
  --line: #dce6eb;
  --shadow: 0 24px 70px rgba(8, 37, 55, 0.18);
  --shell: 1240px;
  --header-height: 98px;
  color-scheme: light;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.form-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffc044;
  outline-offset: 3px;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 1000;
  padding: 11px 18px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

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

.demo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 30px;
  padding: 5px 18px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.demo-bar__dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffc044;
  box-shadow: 0 0 12px rgba(255, 192, 68, 0.75);
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid #e8edf0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 7px 24px rgba(8, 37, 55, 0.08);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.logo-link {
  flex: 0 0 auto;
  width: min(270px, 27vw);
  text-decoration: none;
}

.logo-link img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  min-height: 44px;
  padding: 11px 0;
  color: #3f5662;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

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

.header-phone {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  gap: 11px;
  padding: 7px 16px 7px 8px;
  border: 2px solid var(--orange);
  border-radius: 9px;
  background: #fff6f2;
  color: var(--navy);
  line-height: 1.08;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(238, 79, 36, 0.13);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-phone:hover {
  background: #fff0ea;
  box-shadow: 0 14px 30px rgba(238, 79, 36, 0.2);
  transform: translateY(-2px);
}

.header-phone__icon {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

.header-phone__copy {
  display: grid;
  align-content: center;
}

.header-phone small {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.header-phone strong {
  margin-top: 4px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(238, 79, 36, 0.26);
}

.button--orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 15px 32px rgba(238, 79, 36, 0.34);
}

.button--blue {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(11, 79, 120, 0.2);
}

.button--blue:hover {
  background: #083d5e;
}

.button--light {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button--header {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  isolation: isolate;
  background: #0a2637;
}

.hero__video,
.hero__scrim,
.hero__waterline {
  position: absolute;
  inset: 0;
}

.hero__video {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: url("hero-poster.webp") center / cover no-repeat;
}

.hero__scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 22, 33, 0.88) 0%, rgba(4, 22, 33, 0.72) 38%, rgba(4, 22, 33, 0.28) 72%, rgba(4, 22, 33, 0.5) 100%),
    linear-gradient(0deg, rgba(4, 22, 33, 0.78) 0%, transparent 48%);
}

.hero__waterline {
  top: auto;
  right: 46%;
  bottom: 16%;
  z-index: -2;
  width: 62vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 202, 238, 0.95), transparent);
  box-shadow: 0 0 22px rgba(95, 202, 238, 0.58);
  transform: rotate(-1.8deg);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.74fr);
  gap: clamp(42px, 6vw, 90px);
  min-height: 790px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 70px;
}

.hero__copy {
  max-width: 730px;
  color: #fff;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(6, 29, 44, 0.46);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #68db74;
  box-shadow: 0 0 0 5px rgba(104, 219, 116, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(4.3rem, 7.6vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.86;
  text-wrap: balance;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.34);
}

.hero__subhead {
  max-width: 660px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.74rem;
  font-weight: 700;
  list-style: none;
}

.hero__trust li {
  position: relative;
  padding-left: 18px;
}

.hero__trust li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
}

.request-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.request-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--orange) 0 43%, var(--blue) 43% 100%);
}

.request-card__heading {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfc;
}

.request-card__heading > p {
  margin: 0 0 4px;
  color: var(--orange-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-card__heading h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1;
}

.request-card__heading > span {
  color: var(--muted);
  font-size: 0.76rem;
}

.request-card__heading a {
  color: var(--blue-dark);
  font-weight: 800;
}

.request-form {
  display: grid;
  gap: 13px;
  padding: 22px 32px 24px;
}

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

.field-row--split {
  grid-template-columns: 0.48fr 1.52fr;
}

.field {
  display: grid;
  gap: 5px;
}

.field label {
  color: #3e5661;
  font-size: 0.67rem;
  font-weight: 800;
}

.field label span,
.consent span span {
  margin-left: 2px;
  color: var(--orange-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cfdce2;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 66px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(63, 142, 184, 0.14);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: #536975;
  cursor: pointer;
  font-size: 0.68rem;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.button--submit {
  width: 100%;
  min-height: 48px;
}

.form-disclosure {
  margin: -3px 0 0;
  color: #788891;
  font-size: 0.61rem;
  line-height: 1.4;
  text-align: center;
}

.form-confirmation {
  min-height: 500px;
  padding: 56px 38px;
  text-align: center;
}

.form-confirmation[hidden] {
  display: none;
}

.form-confirmation__check {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: #e7f5eb;
  color: #168044;
  font-size: 1.8rem;
  font-weight: 800;
}

.form-confirmation h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.form-confirmation p {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-confirmation a {
  color: var(--blue-dark);
  font-weight: 800;
}

.form-confirmation .button {
  margin-top: 12px;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span:last-child {
  color: #fff;
  font-size: 1rem;
  animation: scrollHint 1.5s ease infinite;
}

@keyframes scrollHint {
  50% { transform: translateY(5px); }
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 38px rgba(8, 37, 55, 0.08);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 122px;
  align-items: center;
  gap: 16px;
  padding: 26px clamp(18px, 2.5vw, 34px);
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.trust-item span {
  color: #5f727c;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.section {
  padding: clamp(92px, 10vw, 150px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: -0.02em;
}

.section-heading h2,
.process__heading h2,
.people-section h2,
.service-area h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 6.2vw, 6.3rem);
  font-weight: 800;
  line-height: 0.9;
}

.section-heading > p:last-child,
.process__heading > p:last-child,
.people-section__heading > p {
  color: var(--muted);
}

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

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
  margin: 56px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-shadow: 0 16px 44px rgba(8, 37, 55, 0.08);
}

.service-tab {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border: 0;
  border-bottom: 4px solid transparent;
  background: #fff;
  color: #566a75;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.service-tab + .service-tab {
  border-left: 1px solid var(--line);
}

.service-tab:hover,
.service-tab.is-active {
  border-bottom-color: var(--orange);
  background: #fbfdfe;
  color: var(--navy);
}

.service-tab__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #e7f3f8;
  color: var(--blue-dark);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.service-tab.is-active .service-tab__icon {
  background: var(--orange);
  color: #fff;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  max-width: 1060px;
  min-height: 470px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(8, 37, 55, 0.1);
}

.service-detail__copy {
  padding: clamp(48px, 7vw, 88px);
}

.service-detail__copy h3 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.94;
}

.service-detail__copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
}

.service-detail__copy ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 32px;
  padding: 0;
  color: #4f646e;
  list-style: none;
}

.service-detail__copy li {
  position: relative;
  padding-left: 23px;
}

.service-detail__copy li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

.service-detail__visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blue-dark), #092e44);
  color: #fff;
}

.service-detail__visual::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 42px;
  content: "";
}

.service-detail__visual img {
  position: relative;
  z-index: 2;
  width: min(62%, 270px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 24px 55px rgba(2, 21, 35, 0.32);
}

.service-detail__visual strong {
  position: relative;
  z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-detail__visual small {
  position: relative;
  z-index: 2;
  margin-top: -4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.people-section {
  padding: clamp(96px, 11vw, 170px) 0;
  background: #fff;
}

.people-section__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-bottom: 56px;
}

.people-section__heading h2,
.people-section__heading > p {
  margin-top: 0;
}

.people-section__heading > p {
  margin-bottom: 10px;
}

.people-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.people-photo {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--navy);
}

.people-photo--feature {
  grid-row: 1 / span 2;
  min-height: 640px;
}

.people-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.people-photo:hover img {
  transform: scale(1.025);
}

.people-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 20, 31, 0.88), rgba(3, 20, 31, 0.08) 64%);
  content: "";
  pointer-events: none;
}

.people-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(24px, 4vw, 46px);
  color: #fff;
}

.people-photo figcaption span {
  display: block;
  margin-bottom: 10px;
  color: #ff8a67;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.people-photo figcaption strong {
  display: block;
  max-width: 600px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 0.96;
}

.people-photo:not(.people-photo--feature) figcaption strong {
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
}

.people-section__source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.people-section__source p {
  max-width: 780px;
  margin: 0;
  color: #7a8a92;
  font-size: 0.68rem;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
}

.text-link span {
  color: #ff8a67;
}

.text-link--dark {
  color: var(--navy);
}

.process {
  background: #fff;
}

.process__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(54px, 10vw, 156px);
}

.process__heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.process__heading > p:last-child {
  max-width: 500px;
}

.process__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  min-height: 200px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 2.8rem;
  line-height: 1;
}

.process-step p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.service-area {
  padding: 90px 0;
  background: var(--blue-dark);
  color: #fff;
}

.service-area__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.service-area h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem, 5.8vw, 5.8rem);
}

.service-area__inner > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.8;
}

.faq {
  background: var(--mist);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq .section-heading h2 {
  font-size: clamp(3.4rem, 5.5vw, 5.6rem);
}

.faq__list {
  border-top: 1px solid #cbd8de;
}

.faq-item {
  border-bottom: 1px solid #cbd8de;
}

.faq-item summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary span {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  margin: -2px 0 32px;
  padding-right: 40px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 670px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.final-cta > img,
.final-cta__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  z-index: -2;
  object-fit: cover;
}

.final-cta__scrim {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 22, 33, 0.9), rgba(4, 22, 33, 0.42) 72%), linear-gradient(0deg, rgba(4, 22, 33, 0.6), transparent 58%);
}

.final-cta__content {
  color: #fff;
}

.final-cta h2 {
  max-width: 860px;
  color: #fff;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.site-footer {
  padding: 60px 0 34px;
  background: #fff;
}

.site-footer__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__identity img {
  width: 245px;
  height: auto;
}

.site-footer__identity p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer__phone {
  display: grid;
  justify-items: end;
}

.site-footer__phone span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__phone a {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer__disclosure {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.site-footer__disclosure p {
  max-width: 1020px;
  margin: 0;
  color: #7a8a92;
  font-size: 0.68rem;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.76,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .logo-link {
    width: min(280px, 34vw);
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(410px, 0.8fr);
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6.3rem);
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    gap: 12px;
  }

  .header-phone {
    min-height: 52px;
    gap: 8px;
    padding: 6px 11px 6px 6px;
  }

  .header-phone__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .header-phone strong {
    font-size: 1.25rem;
  }

  .logo-link {
    width: min(240px, 34vw);
  }

  .button--header {
    padding-inline: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .request-card {
    width: min(100%, 670px);
    margin-inline: auto;
  }

  .hero__scroll {
    display: none;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .people-section__heading,
  .process__layout,
  .faq__layout,
  .service-area__inner {
    grid-template-columns: 1fr;
  }

  .people-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .people-photo--feature {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 500px;
  }

  .people-photo {
    min-height: 320px;
  }

  .people-section__source {
    align-items: flex-start;
    flex-direction: column;
  }

  .process__heading {
    position: static;
  }

  .service-area__inner {
    gap: 28px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 82px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .demo-bar {
    min-height: 38px;
    font-size: 0.58rem;
  }

  .site-header__inner {
    min-height: var(--header-height);
    gap: 8px;
  }

  .logo-link {
    width: min(180px, 48vw);
  }

  .button--header {
    display: none;
  }

  .header-phone {
    min-height: 46px;
    padding: 5px 9px;
  }

  .header-phone__icon {
    display: none;
  }

  .header-phone small {
    font-size: 0.58rem;
  }

  .header-phone strong {
    margin-top: 3px;
    font-size: 1.15rem;
  }

  .hero__video {
    object-position: 56% center;
  }

  .hero__scrim {
    background: linear-gradient(0deg, rgba(4, 22, 33, 0.96), rgba(4, 22, 33, 0.53) 72%, rgba(4, 22, 33, 0.5));
  }

  .hero__layout {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 15vw, 5.6rem);
  }

  .hero__actions,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
  }

  .request-card__heading,
  .request-form {
    padding-right: 22px;
    padding-left: 22px;
  }

  .field-row,
  .field-row--split {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner,
  .service-tabs,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-tabs {
    border-radius: 8px 8px 0 0;
  }

  .service-tab {
    justify-content: flex-start;
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0 !important;
  }

  .service-tab.is-active {
    border-bottom: 4px solid var(--orange);
  }

  .service-detail__copy {
    padding: 48px 26px;
  }

  .service-detail__visual {
    min-height: 300px;
  }

  .people-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .people-gallery {
    grid-template-columns: 1fr;
  }

  .people-photo {
    min-height: 320px;
  }

  .people-photo--feature {
    display: flex;
    min-height: 0;
    grid-column: auto;
    flex-direction: column;
  }

  .people-photo--feature img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }

  .people-photo--feature::after {
    display: none;
  }

  .people-photo--feature figcaption {
    position: static;
    background: var(--navy-deep);
  }

  .people-photo figcaption {
    padding: 26px;
  }

  .process-step {
    grid-template-columns: 56px 1fr;
  }

  .service-area {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .faq-item p {
    padding-right: 10px;
  }

  .final-cta {
    min-height: 690px;
  }

  .final-cta > img {
    object-position: 58% center;
  }

  .site-footer__layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__identity img {
    width: min(260px, 78vw);
  }

  .site-footer__phone {
    justify-items: start;
  }
}

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

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

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