:root {
  --navy-950: #030b12;
  --navy-900: #06131e;
  --navy-850: #081a27;
  --navy-800: #0b2231;
  --navy-700: #123345;
  --cyan-300: #63e6ff;
  --cyan-400: #35d5f2;
  --cyan-500: #14b8d4;
  --cyan-600: #0e91ad;
  --white: #f5fcff;
  --muted: #9ab7c3;
  --line: rgba(99, 230, 255, 0.18);
  --line-strong: rgba(99, 230, 255, 0.38);
  --surface: rgba(8, 26, 39, 0.82);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--navy-950);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(20, 184, 212, 0.08), transparent 35%),
    linear-gradient(180deg, var(--navy-950), #04101a);
  content: "";
}

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.08;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--cyan-300);
  color: var(--navy-950);
  font-weight: 800;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-300), transparent);
}

.eyebrow > span:last-child:not(:first-child) {
  transform: rotate(180deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 23px;
  border: 1px solid var(--cyan-400);
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  box-shadow: 0 12px 30px rgba(20, 184, 212, 0.2);
  color: #031018;
  font-weight: 850;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(53, 213, 242, 0.3);
}

.button--small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.9rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(5, 15, 23, 0.34);
  box-shadow: none;
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--cyan-400);
  background: rgba(20, 184, 212, 0.12);
}

.button--wide {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.content-page .site-header {
  border-color: var(--line);
  background: rgba(3, 11, 18, 0.9);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-brand {
  display: block;
  width: 330px;
  max-width: 48vw;
}

.site-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #d3e3e9;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--cyan-400);
  content: "";
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active:not(.button)::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(8, 26, 39, 0.8);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--cyan-300);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 830px;
  align-items: center;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url('../media/hero/ivz-drohneninspektion-hero.png');
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 14, 0.98) 0%, rgba(2, 8, 14, 0.9) 27%, rgba(2, 8, 14, 0.39) 61%, rgba(2, 8, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 11, 18, 0.45), transparent 36%, rgba(3, 11, 18, 0.8) 100%);
}

.hero__overlay::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 230, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 230, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 82px;
  padding-bottom: 165px;
}

.hero__copy {
  width: min(680px, 62vw);
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.1vw, 6.25rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 strong {
  color: var(--cyan-400);
  font-weight: 850;
  text-shadow: 0 0 30px rgba(53, 213, 242, 0.18);
}

.hero__copy > p {
  max-width: 630px;
  margin-bottom: 32px;
  color: #c4d6dd;
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: #c6dae1;
  font-size: 0.9rem;
}

.hero__checks span::before {
  margin-right: 8px;
  color: var(--cyan-300);
  content: "✓";
  font-weight: 900;
}

.hero__rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: rgba(5, 19, 29, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__rail article {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.hero__rail article:last-child {
  border-right: 0;
}

.hero__rail-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--cyan-500);
  border-radius: 10px;
  color: var(--cyan-300);
  font-size: 1.55rem;
}

.hero__rail strong,
.hero__rail span {
  display: block;
}

.hero__rail strong {
  margin-bottom: 2px;
  font-size: 1.02rem;
}

.hero__rail article div span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

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

.section-heading h2,
.insight__copy h2,
.contact__copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}

.section-heading p,
.insight__copy > p,
.contact__copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background:
    radial-gradient(circle at 50% 10%, rgba(20, 184, 212, 0.09), transparent 35%),
    var(--navy-950);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 34px 32px;
  overflow: hidden;
  border: 1px solid rgba(154, 183, 195, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(12, 36, 51, 0.88), rgba(5, 17, 27, 0.9));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(53, 213, 242, 0.08), transparent 40%);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.32), 0 0 36px rgba(20, 184, 212, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
}

.service-card__number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(99, 230, 255, 0.22);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card svg {
  width: 65px;
  height: 65px;
  margin-bottom: 27px;
  fill: none;
  stroke: var(--cyan-300);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.32rem;
}

.service-card p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #c7dce3;
  font-size: 0.88rem;
  list-style: none;
}

.service-card li::before {
  margin-right: 8px;
  color: var(--cyan-400);
  content: "✓";
  font-weight: 800;
}

.service-card--link {
  display: block;
}

.service-card__symbol {
  display: grid;
  width: 65px;
  height: 65px;
  margin-bottom: 27px;
  place-items: center;
  border: 1px solid var(--cyan-500);
  border-radius: 16px;
  background: rgba(20, 184, 212, 0.06);
  color: var(--cyan-300);
  font-size: 1.65rem;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  color: var(--cyan-300);
  font-size: 0.85rem;
  font-weight: 800;
}

.home-page .service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .service-card {
  min-height: 365px;
}

.visual-library {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(20, 184, 212, 0.1), transparent 30%),
    #06131e;
}

.inspection-video {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 28%, rgba(20, 184, 212, 0.14), transparent 32%),
    linear-gradient(145deg, #06131e, #030b12 72%);
}

.inspection-video__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1.16fr);
  align-items: center;
  gap: clamp(48px, 6vw, 86px);
}

.inspection-video__copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}

.inspection-video__copy > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.inspection-video__points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.inspection-video__points span {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(3, 12, 19, 0.48);
  color: #d3e5eb;
  font-size: 0.88rem;
  font-weight: 750;
}

.inspection-video__points span::before {
  color: var(--cyan-300);
  content: "✓";
  font-weight: 900;
}

.inspection-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.inspection-video__media {
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(12, 38, 53, 0.94), rgba(4, 14, 22, 0.96));
  box-shadow: var(--shadow);
}

.inspection-video__frame {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #02080e;
}

.inspection-video__frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: #02080e;
  object-fit: contain;
}

.inspection-video__loading {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 13px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(3, 11, 18, 0.76), rgba(7, 42, 54, 0.8));
  color: var(--white);
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(3px);
}

.inspection-video__loading[hidden] {
  display: none;
}

.inspection-video__loading strong {
  max-width: 31ch;
  font-size: 0.92rem;
}

.inspection-video__spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--cyan-300);
  border-radius: 50%;
  animation: video-buffer-spin 0.8s linear infinite;
}

@keyframes video-buffer-spin {
  to { transform: rotate(360deg); }
}

.inspection-video__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 5px 2px;
}

.inspection-video__caption span {
  color: var(--cyan-300);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.inspection-video__caption strong {
  max-width: 390px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: right;
}

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

.visual-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--navy-850);
  box-shadow: var(--shadow);
}

.visual-card--wide {
  grid-column: span 2;
  min-height: 470px;
}

.visual-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 8, 14, 0.93) 100%);
  content: "";
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.visual-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.visual-card figcaption span,
.visual-card figcaption strong {
  display: block;
}

.visual-card figcaption span {
  margin-bottom: 7px;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visual-card figcaption strong {
  max-width: 560px;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.insight {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(20, 184, 212, 0.04), transparent 45%),
    #06131e;
}

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

.insight__visual {
  position: relative;
}

.insight__frame {
  position: relative;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.insight__frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 11, 18, 0.64));
  content: "";
}

.insight__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-300), transparent);
  box-shadow: 0 0 12px var(--cyan-300);
  animation: scan 4.8s ease-in-out infinite;
}

.target {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid var(--cyan-300);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(99, 230, 255, 0.28);
}

.target::before,
.target::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--cyan-300);
  content: "";
  transform: translate(-50%, -50%);
}

.target::before { width: 60px; height: 1px; }
.target::after { width: 1px; height: 60px; }
.target--one { top: 44%; right: 24%; }
.target--two { right: 43%; bottom: 16%; width: 28px; height: 28px; }

.insight__badge {
  position: absolute;
  right: -28px;
  bottom: -28px;
  z-index: 4;
  display: flex;
  width: 190px;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border: 1px solid var(--cyan-500);
  border-radius: 14px;
  background: rgba(5, 20, 30, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), 0 0 24px rgba(20, 184, 212, 0.12);
}

.insight__badge strong {
  color: var(--cyan-300);
  font-size: 1.8rem;
}

.insight__badge span {
  color: var(--muted);
  font-size: 0.78rem;
}

.feature-list {
  display: grid;
  gap: 21px;
  margin-top: 34px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.feature-list article > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--cyan-300);
  font-weight: 800;
}

.feature-list h3 {
  margin-bottom: 6px;
  font-size: 1.03rem;
}

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

.deliverables {
  background:
    radial-gradient(circle at 50% 100%, rgba(20, 184, 212, 0.09), transparent 40%),
    var(--navy-950);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(7, 24, 36, 0.72);
  box-shadow: var(--shadow);
}

.deliverable-grid article {
  min-height: 250px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.deliverable-grid article:last-child {
  border-right: 0;
}

.deliverable-grid article > span {
  display: block;
  margin-bottom: 35px;
  color: var(--cyan-300);
  font-size: 2.7rem;
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 0 22px rgba(99, 230, 255, 0.18);
}

.deliverable-grid h3 {
  margin-bottom: 11px;
  font-size: 1.12rem;
}

.deliverable-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #06131e;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  position: relative;
  min-height: 275px;
  padding: 28px 25px;
  border: 1px solid rgba(154, 183, 195, 0.2);
  border-radius: 15px;
  background: rgba(6, 18, 28, 0.62);
}

.process-grid article:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 62px;
  right: -25px;
  width: 34px;
  color: var(--cyan-400);
  content: "→";
  font-size: 1.2rem;
  text-align: center;
}

.process-grid__step {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(99, 230, 255, 0.25);
  font-size: 1.1rem;
  font-weight: 850;
}

.process-grid__icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid var(--cyan-500);
  border-radius: 50%;
  background: rgba(20, 184, 212, 0.07);
  color: var(--cyan-300);
  font-size: 1.35rem;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

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

.sectors {
  padding-top: 80px;
  padding-bottom: 80px;
}

.sectors__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
  align-items: center;
  gap: 70px;
  padding: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(20, 184, 212, 0.1), rgba(6, 19, 30, 0.7));
}

.sectors h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.sectors__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.sectors__tags span {
  padding: 10px 16px;
  border: 1px solid rgba(99, 230, 255, 0.25);
  border-radius: 999px;
  background: rgba(3, 11, 18, 0.45);
  color: #d4e8ee;
  font-size: 0.88rem;
}

.faq {
  border-top: 1px solid var(--line);
  background: #06131e;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(400px, 1.22fr);
  gap: 85px;
}

.accordion {
  border-top: 1px solid var(--line-strong);
}

.accordion article {
  border-bottom: 1px solid var(--line-strong);
}

.accordion button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.accordion button i {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid var(--cyan-500);
  border-radius: 50%;
}

.accordion button i::before,
.accordion button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--cyan-300);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__content {
  padding: 0 45px 22px 0;
}

.accordion__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 60%, rgba(20, 184, 212, 0.13), transparent 33%),
    var(--navy-950);
}

.contact::before {
  position: absolute;
  top: 10%;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(99, 230, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(99, 230, 255, 0.02), 0 0 0 140px rgba(99, 230, 255, 0.015);
  content: "";
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(440px, 1.22fr);
  align-items: start;
  gap: 80px;
}

.contact__copy {
  position: sticky;
  top: 130px;
}

.contact__details {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.contact__details > a,
.contact__details > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact__details > * > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--cyan-600);
  border-radius: 10px;
  color: var(--cyan-300);
}

.contact__details small,
.contact__details strong {
  display: block;
}

.contact__details small {
  color: var(--muted);
}

.contact__details strong {
  font-size: 0.97rem;
}

.contact-form {
  position: relative;
  padding: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(8, 27, 40, 0.85);
  box-shadow: var(--shadow);
}

.form-section-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 34px 0 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.form-section-heading:first-of-type {
  margin-top: 0;
}

.form-section-heading > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--cyan-500);
  border-radius: 9px;
  background: rgba(20, 184, 212, 0.08);
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 850;
}

.form-section-heading strong,
.form-section-heading small {
  display: block;
}

.form-section-heading strong {
  font-size: 0.96rem;
}

.form-section-heading small {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.form-grid--compact {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.form-field--full {
  grid-column: 1 / -1;
}

.contact-form label > span,
.contact-form legend {
  display: block;
  margin-bottom: 7px;
  color: #c7dce4;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(154, 183, 195, 0.25);
  border-radius: 8px;
  outline: 0;
  background: rgba(3, 12, 19, 0.76);
  color: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(53, 213, 242, 0.1);
}

.contact-form select option {
  background: var(--navy-900);
}

.contact-form > label,
.contact-form fieldset,
.privacy-check,
.contact-form .button {
  margin-top: 20px;
}

.contact-form fieldset {
  padding: 0;
  border: 0;
}

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

.check-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(154, 183, 195, 0.2);
  border-radius: 8px;
  background: rgba(3, 12, 19, 0.45);
  cursor: pointer;
}

.check-grid input,
.privacy-check input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  padding: 0;
  accent-color: var(--cyan-400);
}

.check-grid label span {
  margin: 0;
  font-size: 0.8rem;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.privacy-check span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.76rem !important;
  font-weight: 500 !important;
}

.privacy-check a {
  color: var(--cyan-300);
  text-decoration: underline;
}

.file-upload {
  display: block;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  background: rgba(3, 12, 19, 0.4);
}

.file-upload input[type="file"] {
  height: auto;
  padding: 10px;
  border: 0;
  background: transparent;
}

.file-upload input::file-selector-button {
  margin-right: 12px;
  padding: 8px 11px;
  border: 1px solid var(--cyan-600);
  border-radius: 7px;
  background: rgba(20, 184, 212, 0.1);
  color: var(--cyan-300);
  cursor: pointer;
}

.file-upload small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 0;
  margin-top: 14px;
  padding: 0;
  border-radius: 8px;
  font-size: 0.88rem;
}

.form-status.is-success,
.form-status.is-error {
  min-height: 45px;
  padding: 11px 13px;
}

.form-status.is-success {
  border: 1px solid rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.1);
  color: #b8f7dc;
}

.form-status.is-error {
  border: 1px solid rgba(251, 113, 133, 0.4);
  background: rgba(251, 113, 133, 0.1);
  color: #ffd1da;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #02080d;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr 0.72fr 0.62fr;
  gap: 70px;
  padding-top: 62px;
  padding-bottom: 52px;
}

.site-footer__logo {
  width: 330px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer__grid > div:nth-child(n+2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.section-actions {
  display: flex;
  margin-top: 38px;
}

.section-actions--center {
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--cyan-300);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 94px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 184, 212, 0.14), transparent 32%),
    linear-gradient(145deg, #06131e, #030b12 70%);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 230, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 230, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 80%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--cyan-300);
}

.breadcrumb span[aria-current="page"] {
  color: #d9ebf1;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 76px;
}

.page-hero__copy {
  max-width: 790px;
}

.page-hero__copy h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 5.8vw, 6.2rem);
  letter-spacing: -0.055em;
}

.page-hero__copy h1 strong {
  color: var(--cyan-400);
}

.page-hero__copy > p {
  max-width: 720px;
  margin-bottom: 30px;
  color: #b9cfd7;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.page-hero__media {
  position: relative;
  aspect-ratio: 1.12 / 0.84;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 58%, rgba(2, 8, 14, 0.58));
  content: "";
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--compact {
  min-height: 630px;
  display: flex;
  align-items: center;
}

.page-hero--compact .page-hero__copy {
  max-width: 900px;
}

.page-hero--compact .breadcrumb {
  margin-top: 18px;
}

.services--directory {
  border-bottom: 1px solid var(--line);
}

.service-content {
  background: #06131e;
}

.service-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 85px;
}

.service-content__main h2,
.page-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}

.lead-text {
  color: #b9cfd7;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.check-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.check-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--cyan-600);
  border-radius: 50%;
  color: var(--cyan-300);
  font-weight: 900;
}

.check-list p {
  margin: 0;
  color: #d2e3e9;
  font-weight: 700;
}

.service-sidebar {
  position: sticky;
  top: 125px;
  align-self: start;
  padding: 38px 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 39, 54, 0.92), rgba(5, 17, 27, 0.92));
  box-shadow: var(--shadow);
}

.service-sidebar__number {
  color: var(--cyan-300);
  font-size: 2.6rem;
  font-weight: 850;
}

.service-sidebar h2 {
  margin: 28px 0 20px;
  font-size: 1.5rem;
}

.service-sidebar ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-sidebar li {
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: #c3d8df;
}

.service-sidebar li::before {
  margin-right: 9px;
  color: var(--cyan-300);
  content: "•";
}

.service-note {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 12px;
  background: rgba(250, 204, 21, 0.055);
}

.service-note strong {
  color: #fde68a;
}

.service-note p {
  margin: 6px 0 0;
  color: #c8d8de;
}

.deliverable-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.deliverable-grid--three article:nth-child(3) {
  border-right: 0;
}

.related-services {
  border-top: 1px solid var(--line);
  background: #06131e;
}

.related-services__grid {
  display: grid;
  gap: 13px;
}

.related-services__grid > a {
  display: grid;
  grid-template-columns: 54px 1fr 40px;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(3, 12, 19, 0.48);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.related-services__grid > a:hover,
.related-services__grid > a:focus-visible {
  transform: translateX(5px);
  border-color: var(--line-strong);
  background: rgba(20, 184, 212, 0.07);
}

.related-services__grid > a > span {
  color: var(--cyan-300);
  font-weight: 850;
}

.related-services__grid h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.related-services__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.related-services__grid i {
  color: var(--cyan-300);
  font-style: normal;
  font-size: 1.3rem;
}

.page-cta {
  background:
    radial-gradient(circle at 15% 50%, rgba(20, 184, 212, 0.14), transparent 34%),
    var(--navy-950);
}

.page-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
  padding: 48px 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(20, 184, 212, 0.09), rgba(6, 19, 30, 0.72));
  box-shadow: var(--shadow);
}

.page-cta__inner h2 {
  max-width: 780px;
}

.page-cta__inner p,
.sectors__inner p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-section {
  border-bottom: 1px solid var(--line);
  background: #06131e;
}

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

.benefit-grid article {
  min-height: 265px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(3, 12, 19, 0.55);
}

.benefit-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--cyan-300);
  font-weight: 850;
}

.benefit-grid h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process--page {
  padding-top: 112px;
}

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

.process-detail-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(3, 12, 19, 0.54);
}

.process-detail-grid article > span {
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-detail-grid h3 {
  margin: 13px 0 20px;
  font-size: 1.35rem;
}

.process-detail-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.contact-page__hero {
  min-height: 560px;
  padding-bottom: 60px;
}

.contact-page .contact {
  padding-top: 90px;
}

.service-ribbon {
  position: fixed;
  z-index: 1400;
  top: 50%;
  right: 4rem;
  display: inline-flex;
  min-width: 268px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  border: 1px solid rgba(120, 7, 15, 0.28);
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #d11d27 0%, #b90f18 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.service-ribbon:hover,
.service-ribbon:focus-visible {
  background: linear-gradient(180deg, #15191d, #050607);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
}

.site-footer a:hover {
  color: var(--cyan-300);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(154, 183, 195, 0.12);
}

.legal-hero {
  padding: 180px 0 74px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 20% 20%, rgba(20, 184, 212, 0.12), transparent 30%), #06131e;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.05em;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-card {
  max-width: 900px;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-card h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #b6ccd4;
}

.legal-card a {
  color: var(--cyan-300);
}

.legal-note {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(250, 204, 21, 0.4);
  border-radius: 10px;
  background: rgba(250, 204, 21, 0.06);
}

.legal-note strong {
  color: #fde68a;
}

.legal-note p {
  margin: 6px 0 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes hero-drift {
  from { transform: scale(1.015) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-0.4%, -0.3%, 0); }
}

@keyframes scan {
  0%, 100% { top: 12%; opacity: 0; }
  15%, 85% { opacity: 0.85; }
  50% { top: 86%; opacity: 1; }
}

@media (max-width: 1060px) {
  .site-nav { gap: 17px; }
  .site-nav > a:not(.button) { font-size: 0.84rem; }
  .site-brand { width: 275px; }
  .service-grid,
  .home-page .service-grid { grid-template-columns: repeat(2, 1fr); }
  .insight__grid { gap: 50px; }
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverable-grid article:nth-child(2) { border-right: 0; }
  .deliverable-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2)::after { display: none; }
  .faq__grid,
  .contact__grid { gap: 50px; }
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 42px; }
  .site-footer__grid > div:last-child { grid-column: 3; }
  .page-hero__grid { gap: 45px; }
  .service-content__grid { gap: 50px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inspection-video__grid { grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr); gap: 42px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .site-header__inner { min-height: 74px; }
  .site-brand { width: 280px; max-width: calc(100vw - 100px); }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line-strong);
    background: rgba(3, 11, 18, 0.97);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { padding: 13px 4px; font-size: 0.97rem; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: 920px; align-items: flex-end; }
  .hero__media { background-position: 64% center; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(2, 8, 14, 0.18) 0%, rgba(2, 8, 14, 0.52) 27%, rgba(2, 8, 14, 0.97) 72%, #02080e 100%),
      linear-gradient(90deg, rgba(2, 8, 14, 0.72), transparent 80%);
  }
  .hero__content { padding-top: 190px; padding-bottom: 290px; }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: clamp(2.75rem, 11vw, 5rem); }
  .hero__rail { grid-template-columns: 1fr; width: calc(100% - 40px); }
  .hero__rail article { min-height: 82px; padding: 15px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero__rail article:last-child { border-bottom: 0; }
  .hero__rail-icon { width: 40px; height: 40px; }
  .insight__grid,
  .faq__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .insight__visual { width: calc(100% - 20px); }
  .contact__copy { position: static; }
  .sectors__inner { grid-template-columns: 1fr; gap: 30px; }
  .site-footer__grid { grid-template-columns: 1.3fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .page-hero { padding: 132px 0 76px; }
  .page-hero--compact { min-height: 560px; }
  .page-hero__grid,
  .service-content__grid { grid-template-columns: 1fr; }
  .page-hero__grid { gap: 40px; }
  .page-hero__media { aspect-ratio: 1.4 / 0.82; }
  .service-sidebar { position: static; }
  .page-cta__inner { grid-template-columns: 1fr; gap: 30px; padding: 40px 36px; }
  .page-cta__inner .button { justify-self: start; }
  .deliverable-grid--three { grid-template-columns: 1fr; }
  .deliverable-grid--three article { border-right: 0; border-bottom: 1px solid var(--line); }
  .deliverable-grid--three article:last-child { border-bottom: 0; }
  .service-ribbon { min-width: 224px; padding: 0.72rem 0.88rem; font-size: 0.79rem; }
  .inspection-video__grid { grid-template-columns: 1fr; }
  .inspection-video__media { width: min(100%, 700px); }
  .service-ribbon { right: 2.75rem; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.11em; }
  .hero { min-height: 910px; }
  .hero__content { padding-bottom: 300px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(2.25rem, 9.5vw, 3.2rem); }
  .hero__copy > p { font-size: 0.97rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__checks { display: grid; gap: 8px; }
  .hero__rail { width: calc(100% - 28px); }
  .hero__rail article { min-height: 78px; }
  .hero__rail article div span { font-size: 0.77rem; }
  .section-heading h2,
  .insight__copy h2,
  .contact__copy h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .service-grid,
  .deliverable-grid,
  .process-grid,
  .form-grid,
  .check-grid { grid-template-columns: 1fr; }
  .visual-library__grid { grid-template-columns: 1fr; }
  .visual-card,
  .visual-card--wide { grid-column: auto; min-height: 310px; }
  .visual-card figcaption { padding: 24px 21px; }
  .form-field--full { grid-column: auto; }
  .service-card { min-height: auto; padding: 28px 25px; }
  .deliverable-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .deliverable-grid article:last-child { border-bottom: 0; }
  .process-grid article:not(:last-child)::after { display: none; }
  .insight__grid { gap: 68px; }
  .insight__visual { width: 100%; }
  .insight__badge { right: 12px; bottom: -42px; width: 170px; }
  .sectors { padding: 45px 0; }
  .sectors__inner { padding: 28px 22px; }
  .contact-form { padding: 25px 20px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; gap: 5px; }
  .legal-hero { padding-top: 140px; }
  .legal-card { padding: 28px 21px; }
  .page-hero { padding-top: 118px; }
  .page-hero--compact { min-height: 520px; }
  .page-hero__copy h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .breadcrumb { margin-bottom: 32px; }
  .page-hero__media { border-radius: 16px; }
  .benefit-grid,
  .process-detail-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: auto; }
  .related-services__grid > a { grid-template-columns: 38px 1fr 20px; gap: 12px; padding: 20px 16px; }
  .related-services__grid p { display: none; }
  .page-cta__inner { padding: 30px 23px; }
  .page-cta__inner .button { width: 100%; }
  .service-sidebar { padding: 30px 24px; }
  .inspection-video__actions { flex-direction: column; }
  .inspection-video__actions .button { width: 100%; }
  .inspection-video__media { padding: 9px; border-radius: 18px; }
  .inspection-video__frame { border-radius: 12px; }
  .inspection-video__caption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .inspection-video__caption strong { text-align: left; }
  .service-ribbon { right: 2.25rem; min-width: 205px; padding: 0.62rem 0.75rem; font-size: 0.73rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
