:root {
  --navy-950: #051225;
  --navy-900: #07172f;
  --navy-800: #0c2444;
  --blue-700: #074da6;
  --blue-600: #0c61ca;
  --blue-100: #eaf2fb;
  --ink: #101a28;
  --text: #3d4858;
  --muted: #6e7886;
  --line: #dfe4ea;
  --paper: #ffffff;
  --warm: #f7f6f3;
  --soft: #f3f5f7;
  --success: #37b675;
  --shadow-sm: 0 10px 30px rgba(7, 23, 47, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 23, 47, 0.16);
  --shell: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(12, 97, 202, 0.38);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--blue-700);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy-900);
  transform: translateY(-150%);
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.75rem, 5.15vw, 5.3rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.1rem, 3.7vw, 4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
}

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

.section-pad {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.section-dark {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-900);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #8bb9f3;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 12px 28px rgba(7, 77, 166, 0.22);
}

.button-primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 16px 34px rgba(7, 77, 166, 0.3);
}

.button-ghost {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(7, 23, 47, 0.22);
}

.button-ghost:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button-light {
  color: var(--navy-900);
  background: #fff;
  border-color: #fff;
}

.button-light:hover {
  color: #fff;
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.3rem;
  color: var(--blue-700);
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link .icon,
.service-card a .icon {
  transition: transform 180ms ease;
}

.text-link:hover .icon,
.service-card a:hover .icon {
  transform: translateX(4px);
}

.text-link-light {
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(7, 23, 47, 0.09);
  transition: height 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  height: 76px;
  box-shadow: 0 8px 32px rgba(7, 23, 47, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: clamp(168px, 16vw, 222px);
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.15vw, 1.25rem);
  margin-left: 2rem;
}

.site-nav a {
  position: relative;
  padding-block: 1rem;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.65rem;
  left: 0;
  height: 2px;
  background: var(--blue-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-button {
  min-height: 42px;
  margin-left: 1.7rem;
  padding-inline: 1.05rem;
  font-size: 0.65rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
}

.menu-toggle .icon {
  width: 24px;
  height: 24px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  min-height: min(760px, calc(100vh - 88px));
  background: var(--warm);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem clamp(2.5rem, 5vw, 6rem) 5.5rem max(24px, calc((100vw - var(--shell)) / 2));
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 1.4rem;
  color: #495463;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.hero-list {
  display: grid;
  gap: 0.52rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.hero-list .icon {
  color: var(--blue-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-note span {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(55, 182, 117, 0.13);
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 63%;
  transform: scale(1.015);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 18, 37, 0.18), transparent 35%), linear-gradient(0deg, rgba(5, 18, 37, 0.38), transparent 42%);
}

.hero-badge {
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: clamp(1.25rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 250px;
  padding: 1rem 1.2rem;
  color: #fff;
  background: rgba(6, 24, 49, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-badge-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #8bb9f3;
  border: 1px solid rgba(139, 185, 243, 0.5);
}

.hero-badge strong,
.hero-badge small {
  display: block;
}

.hero-badge strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-badge small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
}

/* Trust */
.trust-strip {
  position: relative;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.trust-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 116px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.trust-grid article:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid > article > .icon {
  width: 35px;
  height: 35px;
  color: var(--blue-700);
  stroke-width: 1.45;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid small {
  color: var(--muted);
  font-size: 0.72rem;
}

/* Intro */
.intro-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
}

.intro-band::before {
  content: "JS";
  position: absolute;
  top: 50%;
  left: -0.06em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: min(42vw, 520px);
  line-height: 0.7;
  transform: translateY(-50%);
}

.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.intro-copy h2 {
  max-width: 650px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 600px;
}

.intro-copy .text-link {
  margin-top: 1rem;
}

.intro-visual {
  position: relative;
  min-height: 480px;
}

.intro-visual::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(139, 185, 243, 0.2);
}

.intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
}

.experience-card {
  position: absolute;
  bottom: -1px;
  left: -1px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  color: #fff;
  background: var(--blue-700);
}

.experience-card strong {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.experience-card span {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Services */
.services {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.ai-disclosure {
  max-width: 760px;
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: 0.72rem !important;
  letter-spacing: 0.02em;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  overflow: hidden;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:not(.service-card-image):hover {
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:not(.service-card-image):hover h3,
.service-card:not(.service-card-image):hover a {
  color: #fff;
}

.service-card h3 {
  margin: 1.3rem 0 0.85rem;
}

.service-card p {
  margin-bottom: 1.35rem;
  font-size: 0.92rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--blue-700);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border: 1px solid rgba(7, 77, 166, 0.12);
}

.service-icon .icon {
  width: 25px;
  height: 25px;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  color: #c8d0d9;
  font-family: var(--serif);
  font-size: 2rem;
}

.service-card-image {
  min-height: 470px;
  grid-row: span 1;
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy-900);
}

.service-card-image > img,
.service-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card-image > img {
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card-image:hover > img {
  transform: scale(1.045);
}

.service-card-shade {
  background: linear-gradient(0deg, rgba(5, 18, 37, 0.94) 2%, rgba(5, 18, 37, 0.32) 70%, rgba(5, 18, 37, 0.05));
}

.service-card-ai .service-card-shade {
  background: linear-gradient(0deg, rgba(5, 18, 37, 0.97) 0%, rgba(5, 18, 37, 0.62) 58%, rgba(5, 18, 37, 0.2) 100%);
}

.service-ai-badge {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.35rem 0.65rem;
  color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(5, 18, 37, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(3, 14, 30, 0.14);
  backdrop-filter: blur(12px) saturate(120%);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(3, 14, 30, 0.42);
  text-transform: uppercase;
}

.service-ai-badge::before {
  content: "✦";
  margin-right: 0.35rem;
  color: #b1d5ff;
  font-size: 0.68rem;
  line-height: 1;
}

.service-card-ai:hover .service-ai-badge {
  background: linear-gradient(135deg, rgba(78, 153, 240, 0.66), rgba(5, 42, 91, 0.62));
  border-color: rgba(177, 213, 255, 0.66);
  box-shadow: 0 12px 30px rgba(5, 18, 37, 0.22);
  transform: translateY(-2px);
}

.service-card-content {
  position: relative;
  z-index: 1;
}

.service-card-image h3,
.service-card-image a {
  color: #fff;
}

.service-card-image .service-icon {
  color: #fff;
  background: rgba(7, 77, 166, 0.78);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.service-card-classic > img {
  object-position: 52% 62%;
}

.service-card-valuation > img {
  object-position: 50% 58%;
}

.service-card-valuation .service-card-shade {
  background: linear-gradient(0deg, rgba(5, 18, 37, 0.98) 0%, rgba(5, 18, 37, 0.8) 62%, rgba(5, 18, 37, 0.38) 100%);
}

.service-card-valuation .service-icon {
  background: rgba(12, 97, 202, 0.9);
  border-color: rgba(177, 213, 255, 0.45);
}

.service-card-evidence > img {
  object-position: 50% 50%;
}

.service-card-repair > img {
  object-position: 50% 58%;
}

.service-card-leasing > img {
  object-position: 50% 47%;
}

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

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 3rem;
  align-items: end;
  max-width: none;
}

.process-heading h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.process-heading > p {
  margin-bottom: 0;
  padding-bottom: 0.35rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  min-height: 265px;
  padding: 1.7rem 1.5rem;
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  border-left: 1px solid var(--line);
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 57px;
  right: -16px;
  z-index: 2;
  width: 31px;
  height: 31px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: rotate(45deg);
}

.process-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 3rem;
  color: var(--blue-700);
  border: 1px solid rgba(7, 77, 166, 0.26);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.process-list h3 {
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.inspection-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  margin-top: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.inspection-animation {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--navy-950);
}

.inspection-animation::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset -30px 0 50px rgba(5, 18, 37, 0.22);
}

.inspection-animation img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inspection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4.5vw, 4.5rem);
}

.inspection-copy h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.inspection-copy > p:not(.eyebrow) {
  margin-bottom: 1.7rem;
  font-size: 0.9rem;
}

.inspection-copy ul {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.inspection-copy li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.inspection-copy li > span:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #8bb9f3;
  border: 1px solid rgba(139, 185, 243, 0.3);
}

.inspection-copy strong,
.inspection-copy small {
  display: block;
}

.inspection-copy strong {
  color: #fff;
  font-size: 0.78rem;
}

.inspection-copy small {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  line-height: 1.4;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 650px;
}

.benefits-media {
  min-height: 560px;
  overflow: hidden;
  background: var(--navy-950);
}

.benefits-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
  filter: saturate(0.7) contrast(1.1);
}

.benefits-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) max(24px, calc((100vw - var(--shell)) / 2));
  padding-left: clamp(3rem, 7vw, 7rem);
}

.benefits-copy h2,
.benefits-copy > p:not(.eyebrow),
.benefits-copy .check-list {
  max-width: 620px;
}

.benefits-copy > p:not(.eyebrow) {
  margin-bottom: 1.6rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 0 0 2.2rem;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 650;
}

.check-list li > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: #8bb9f3;
  border: 1px solid rgba(139, 185, 243, 0.4);
  border-radius: 50%;
}

.check-list .icon {
  width: 15px;
  height: 15px;
}

.benefits-copy .button {
  align-self: flex-start;
}

/* Comparison */
.comparison {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}

.comparison::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(7, 77, 166, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(7, 77, 166, 0.025), 0 0 0 140px rgba(7, 77, 166, 0.018);
}

.comparison .section-shell {
  position: relative;
}

.comparison-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.8rem, 5vw, 4.5rem);
}

.comparison-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.comparison-heading > p {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.comparison-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.3rem, 2.2vw, 2rem);
  align-items: start;
  padding: 1.8rem 1.1rem 3rem 0;
}

.comparison-grid::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 1.1rem;
  z-index: -2;
  width: 51%;
  height: 34px;
  background: rgba(5, 18, 37, 0.2);
  border-radius: 50%;
  filter: blur(22px);
  transform-origin: center;
  animation: comparison-shadow 6.4s ease-in-out infinite;
}

.comparison-card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 1px solid var(--line);
  transition: top 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease, border-color 300ms ease;
  will-change: translate;
}

.comparison-card-muted {
  top: 2.2rem;
  z-index: 1;
  color: var(--text);
  background: linear-gradient(145deg, #fff 0%, #fff 72%, #f8fafc 100%);
  box-shadow: 0 18px 50px rgba(7, 23, 47, 0.07);
  animation: comparison-float-muted 7.8s ease-in-out infinite;
}

.comparison-card-positive {
  top: -1.35rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.74);
  background: linear-gradient(145deg, rgba(33, 86, 148, 0.16), transparent 42%), var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 34px 75px rgba(5, 18, 37, 0.24);
  animation: comparison-float-positive 6.4s ease-in-out -1.8s infinite;
}

.comparison-card-positive::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: -1;
  border: 1px solid rgba(7, 77, 166, 0.2);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 300ms ease;
}

.comparison-card h3 {
  max-width: 19ch;
  margin: 1.2rem 0 1rem;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.comparison-card-positive h3 {
  color: #fff;
}

.comparison-card > p:not(.comparison-label) {
  max-width: 60ch;
  font-size: 0.9rem;
}

.comparison-label {
  margin: 1.5rem 0 0;
  color: var(--blue-700);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-card-positive .comparison-label {
  color: #8bb9f3;
}

.comparison-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}

.comparison-mark-negative {
  color: #b24e54;
  background: #f9ebec;
}

.comparison-mark-positive {
  color: #fff;
  background: var(--blue-700);
  animation: comparison-mark-glow 3.8s ease-in-out infinite;
}

.comparison-mark .icon {
  width: 23px;
  height: 23px;
}

.comparison-card ul {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem 0 0;
  margin: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.comparison-card-positive ul {
  border-top-color: rgba(255, 255, 255, 0.13);
}

.comparison-card li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.comparison-card li > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #b24e54;
  border: 1px solid rgba(178, 78, 84, 0.28);
  border-radius: 50%;
  font-size: 0.9rem;
}

.comparison-card-positive li > span {
  color: #8bb9f3;
  border-color: rgba(139, 185, 243, 0.35);
}

.comparison-card li .icon {
  width: 13px;
  height: 13px;
}

.comparison-card .button {
  margin-top: 2rem;
}

@keyframes comparison-float-muted {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -9px;
  }
}

@keyframes comparison-float-positive {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -15px;
  }
}

@keyframes comparison-shadow {
  0%, 100% {
    opacity: 0.62;
    transform: scaleX(0.88);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.06);
  }
}

@keyframes comparison-mark-glow {
  0%, 100% {
    box-shadow: 0 8px 22px rgba(12, 97, 202, 0.16);
  }

  50% {
    box-shadow: 0 12px 34px rgba(34, 120, 230, 0.42);
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand img,
  .hero-media > img,
  .hero-badge,
  .trust-grid article,
  .trust-grid > article > .icon,
  .intro-visual img,
  .experience-card,
  .service-card,
  .service-icon,
  .service-ai-badge,
  .process-list li,
  .process-number,
  .inspection-showcase,
  .inspection-animation img,
  .inspection-copy li,
  .inspection-copy li > span:first-child,
  .benefits-media img,
  .check-list li,
  .check-list li > span,
  .promise-grid article,
  .promise-grid article > span,
  .download-list > a,
  .download-icon,
  .download-arrow,
  .contact-details > a,
  .contact-details > a > span:first-child,
  .footer-grid a {
    transition-property: color, background, border-color, box-shadow, transform, translate, opacity, filter;
    transition-duration: 320ms;
    transition-timing-function: cubic-bezier(0.2, 0.75, 0.25, 1);
  }

  .button .icon,
  .site-nav a {
    transition: color 220ms ease, transform 220ms ease;
  }

  .button:hover {
    transform: translateY(-3px) scale(1.01);
  }

  .button-primary:hover .icon,
  .button-light:hover .icon {
    transform: translateX(3px);
  }

  .site-nav a:hover {
    color: var(--blue-700);
    transform: translateY(-1px);
  }

  .brand:hover img {
    transform: scale(1.025);
  }

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

  .hero-badge:hover {
    translate: 0 -5px;
    background: rgba(6, 24, 49, 0.94);
    border-color: rgba(139, 185, 243, 0.48);
    box-shadow: 0 18px 42px rgba(5, 18, 37, 0.28);
  }

  .trust-grid article:hover {
    z-index: 1;
    translate: 0 -4px;
    background: #f8fbff;
    box-shadow: 0 14px 34px rgba(7, 23, 47, 0.09);
  }

  .trust-grid article:hover > .icon {
    transform: translateY(-2px) scale(1.06);
  }

  .intro-visual:hover img {
    transform: scale(1.025);
  }

  .intro-visual:hover .experience-card {
    translate: 6px -6px;
    box-shadow: 0 18px 42px rgba(3, 14, 30, 0.28);
  }

  .service-card:hover {
    translate: 0 -6px;
  }

  .service-card:hover .service-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(7, 77, 166, 0.17);
  }

  .process-list li:hover {
    z-index: 4;
    translate: 0 -6px;
    border-color: rgba(7, 77, 166, 0.22);
    box-shadow: 0 18px 42px rgba(7, 23, 47, 0.11);
  }

  .process-list li:hover .process-number {
    color: #fff;
    background: var(--blue-700);
    border-color: var(--blue-700);
    transform: scale(1.05);
  }

  .inspection-showcase:hover {
    translate: 0 -5px;
    box-shadow: 0 38px 90px rgba(7, 23, 47, 0.21);
  }

  .inspection-showcase:hover .inspection-animation img {
    transform: scale(1.012);
  }

  .inspection-copy li:hover {
    translate: 5px 0;
  }

  .inspection-copy li:hover > span:first-child {
    color: #fff;
    background: rgba(12, 97, 202, 0.25);
    border-color: rgba(139, 185, 243, 0.58);
  }

  .benefits-media:hover img {
    transform: scale(1.025);
  }

  .check-list li:hover {
    translate: 4px 0;
  }

  .check-list li:hover > span {
    color: #fff;
    background: rgba(12, 97, 202, 0.3);
    border-color: rgba(139, 185, 243, 0.65);
    transform: scale(1.06);
  }

  .promise-grid article:hover {
    translate: 0 -6px;
  }

  .promise-grid article:hover > span {
    color: rgba(7, 77, 166, 0.1);
    transform: translate(-4px, -3px);
  }

  .download-list > a:hover {
    translate: 6px 0;
    box-shadow: 0 18px 42px rgba(7, 23, 47, 0.15);
  }

  .download-list > a:hover .download-icon {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(12, 97, 202, 0.2);
  }

  .download-list > a:hover .download-arrow {
    color: #fff;
    transform: translateY(3px);
  }

  .contact-details > a:hover {
    translate: 5px 0;
  }

  .contact-details > a:hover > span:first-child {
    color: #fff;
    background: rgba(12, 97, 202, 0.28);
    border-color: rgba(139, 185, 243, 0.65);
    transform: scale(1.05);
  }

  .contact-form input:hover,
  .contact-form select:hover,
  .contact-form textarea:hover {
    background: #fff;
    border-bottom-color: rgba(7, 77, 166, 0.58);
  }

  .footer-grid a:hover {
    translate: 3px 0;
  }

  .comparison-card-muted:hover {
    top: 1.65rem;
    border-color: rgba(7, 77, 166, 0.22);
    box-shadow: 0 28px 65px rgba(7, 23, 47, 0.13);
  }

  .comparison-card-positive:hover {
    top: -2rem;
    box-shadow: 0 44px 90px rgba(5, 18, 37, 0.31);
  }

  .comparison-card-positive:hover::after {
    border-color: rgba(12, 97, 202, 0.42);
    transform: translate(5px, 5px);
  }

  .comparison-card:hover .comparison-mark {
    transform: translateY(-4px);
  }

  .comparison-card-positive:hover .comparison-mark {
    box-shadow: 0 12px 30px rgba(12, 97, 202, 0.32);
  }
}

.legal-hint {
  max-width: 850px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-hint strong {
  color: var(--ink);
}

.legal-hint a {
  color: var(--blue-700);
  text-underline-offset: 0.18em;
}

/* Promise */
.promise {
  background: #fff;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.promise-grid article {
  position: relative;
  min-height: 280px;
  padding: 2.2rem;
  overflow: hidden;
  background: var(--warm);
  border-top: 3px solid var(--blue-700);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.promise-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.promise-grid article > span {
  position: absolute;
  right: 1.2rem;
  bottom: -0.35em;
  color: rgba(7, 77, 166, 0.06);
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
}

.promise-grid h3,
.promise-grid p {
  position: relative;
  z-index: 1;
}

.promise-grid h3 {
  max-width: 13ch;
  margin-top: 2.5rem;
}

.promise-grid p {
  max-width: 32ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Downloads */
.downloads {
  background: var(--soft);
}

.downloads-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.downloads-copy {
  position: sticky;
  top: 120px;
}

.downloads-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.downloads-hint {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.downloads-hint .icon {
  color: var(--blue-700);
}

.download-list {
  display: grid;
  gap: 0.85rem;
}

.download-list > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  min-height: 112px;
  padding: 1.2rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.download-list > a:hover {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateX(5px);
}

.download-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
}

.download-list strong,
.download-list small {
  display: block;
}

.download-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.25;
}

.download-list small {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.download-list > a:hover strong,
.download-list > a:hover small {
  color: inherit;
}

.download-arrow {
  color: var(--blue-700);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.contact::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -38vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(139, 185, 243, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(139, 185, 243, 0.025), 0 0 0 160px rgba(139, 185, 243, 0.02);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.contact-copy {
  padding-top: 2rem;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.contact-details > a,
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.contact-details > a > span:first-child,
.contact-details > div > span:first-child {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #8bb9f3;
  border: 1px solid rgba(139, 185, 243, 0.35);
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--text);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.form-heading {
  margin-bottom: 0.6rem;
}

.form-kicker {
  color: var(--blue-700);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form h3 {
  margin: 0.25rem 0 0;
  color: var(--ink);
  font-size: 2rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid transparent;
  border-bottom-color: #cbd3dc;
  border-radius: 0;
  outline: none;
  resize: vertical;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0.7rem 0.8rem;
}

.contact-form textarea {
  padding: 0.8rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(7, 77, 166, 0.1);
}

.contact-form .button {
  justify-self: start;
  margin-top: 0.5rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

/* Footer */
.site-footer {
  padding-block: 4rem 1.7rem;
  color: rgba(255, 255, 255, 0.57);
  background: #030d1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-brand img {
  width: min(260px, 100%);
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand p {
  max-width: 390px;
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.footer-grid h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-grid a:hover,
.photo-credit a:hover {
  color: #fff;
}

.footer-grid span {
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

.photo-credit {
  text-align: right;
}

.photo-credit a {
  color: rgba(255, 255, 255, 0.5);
}

.mobile-call {
  display: none;
}

/* Legal pages */
.legal-page {
  background: var(--warm);
}

.legal-page .site-header {
  background: rgba(255, 255, 255, 0.98);
}

.legal-back-button {
  min-height: 42px;
  padding-inline: 1rem;
  font-size: 0.65rem;
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.legal-hero::after {
  content: "";
  position: absolute;
  top: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(139, 185, 243, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(139, 185, 243, 0.025), 0 0 0 160px rgba(139, 185, 243, 0.018);
}

.legal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.legal-hero-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.legal-hero-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(139, 185, 243, 0.22);
  backdrop-filter: blur(10px);
}

.legal-hero-card strong,
.legal-hero-card span {
  display: block;
}

.legal-hero-card strong {
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.legal-hero-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.legal-content {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 860px);
  gap: clamp(2.5rem, 8vw, 7rem);
  align-items: start;
  justify-content: center;
}

.legal-toc {
  position: sticky;
  top: 120px;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.legal-toc strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding-block: 0.42rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.legal-toc a:hover {
  color: var(--blue-700);
  transform: translateX(3px);
}

.legal-document {
  min-width: 0;
}

.legal-placeholder {
  margin-bottom: 1.4rem;
  padding: 1.2rem 1.3rem;
  color: #5f4914;
  background: #fff7dd;
  border: 1px solid #ead79a;
  font-size: 0.82rem;
}

.legal-placeholder strong {
  color: #3f300d;
}

.legal-section {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.legal-section h3 {
  margin: 1.6rem 0 0.65rem;
  font-size: 1.15rem;
}

.legal-section p,
.legal-section li,
.legal-address {
  font-size: 0.9rem;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  padding-left: 1.2rem;
}

.legal-section a {
  color: var(--blue-700);
  text-underline-offset: 0.18em;
}

.legal-address {
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: var(--soft);
  border-left: 3px solid var(--blue-700);
  font-style: normal;
}

.legal-placeholder-inline {
  padding: 0.08em 0.35em;
  color: #6b4d00;
  background: #fff1bd;
  border-radius: 2px;
}

.legal-source-note {
  color: var(--muted);
  font-size: 0.74rem !important;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.legal-footer-links a:hover {
  color: #fff;
}

/* Reveal */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid [data-reveal]:nth-child(2),
.promise-grid [data-reveal]:nth-child(2),
.process-list [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.services-grid [data-reveal]:nth-child(3),
.promise-grid [data-reveal]:nth-child(3),
.process-list [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

.process-list [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

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

  .site-nav {
    margin-left: 1.25rem;
  }
}

@media (max-width: 1020px) {
  .site-header,
  .site-header.scrolled {
    height: 76px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.4rem 24px 3rem;
    margin: 0;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.99);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }

  .site-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.82fr;
  }

  .hero-copy {
    padding: 4.5rem 2.5rem 4.5rem 24px;
  }

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

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .process-list li,
  .process-list li:first-child {
    border: 1px solid var(--line);
  }

  .process-list li::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 64px;
  }

  body.legal-page {
    padding-bottom: 0;
  }

  .section-shell,
  .nav-shell,
  .trust-grid {
    width: min(calc(100% - 36px), var(--shell));
  }

  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero-grid {
    align-items: start;
  }

  .legal-toc {
    position: static;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    min-height: 610px;
    padding: 4.2rem 18px;
  }

  .hero-media {
    min-height: 520px;
  }

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

  .trust-grid article {
    justify-content: flex-start;
    min-height: 100px;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .intro-grid,
  .inspection-showcase,
  .comparison-heading,
  .comparison-grid,
  .downloads-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .comparison-heading {
    gap: 1rem;
  }

  .comparison-grid {
    gap: 1.25rem;
    padding: 0;
  }

  .comparison-grid::after,
  .comparison-card-positive::after {
    display: none;
  }

  .comparison-card,
  .comparison-mark-positive {
    animation: none;
    translate: none;
  }

  .comparison-card-muted,
  .comparison-card-positive,
  .comparison-card-muted:hover,
  .comparison-card-positive:hover {
    top: 0;
  }

  .intro-visual {
    min-height: 440px;
  }

  .inspection-animation {
    min-height: 400px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefits-media {
    min-height: 500px;
  }

  .benefits-copy {
    padding: 5rem 18px;
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-grid article {
    min-height: 245px;
  }

  .downloads-copy {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .photo-credit {
    text-align: left;
  }

  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    height: 64px;
    color: #fff;
    background: var(--blue-700);
    box-shadow: 0 -8px 30px rgba(7, 23, 47, 0.18);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (max-width: 580px) {
  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .brand img {
    width: 178px;
  }

  .hero-copy {
    min-height: 0;
    padding-block: 3.6rem 4.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-badge {
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-width: 0;
  }

  .trust-grid {
    width: 100%;
  }

  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:nth-child(odd) {
    min-height: 106px;
    padding: 1rem;
    border-left: 0;
  }

  .trust-grid article:nth-child(even) {
    border-right: 0;
  }

  .trust-grid > article > .icon {
    width: 28px;
    height: 28px;
  }

  .trust-grid strong {
    font-size: 0.67rem;
  }

  .trust-grid small {
    font-size: 0.62rem;
  }

  .intro-visual {
    min-height: 370px;
  }

  .experience-card {
    right: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-image {
    min-height: 355px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .inspection-animation {
    min-height: 300px;
  }

  .inspection-copy {
    padding: 2rem 1.4rem;
  }

  .process-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    min-height: 0;
  }

  .process-number {
    margin-bottom: 0;
  }

  .benefits-media {
    min-height: 420px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .download-list > a {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
  }

  .download-arrow {
    display: none;
  }

  .download-list strong {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

  .comparison-card,
  .comparison-grid::after,
  .comparison-mark-positive {
    animation: none !important;
    translate: none;
  }
}
