:root {
  --ink: #090b0f;
  --panel: #11151b;
  --muted: #68707d;
  --line: #d8dde5;
  --paper: #f5f6f8;
  --white: #ffffff;
  --orange: #ff6a00;
  --orange-dark: #cc4f00;
  --shadow: 0 24px 70px rgba(4, 7, 12, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: clamp(116px, 12vw, 170px);
  height: auto;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--white);
}

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

.header-cta,
.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.header-cta,
.button-primary {
  color: var(--ink);
  background: var(--orange);
}

.header-call {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-primary:hover {
  background: #ff7f1f;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 168px clamp(20px, 6vw, 84px) 78px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.92;
  background: var(--ink);
}

.hero-media img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.08) brightness(1.08);
}

.hero-video {
  opacity: 1;
  transform: scale(1);
}

.hero-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.92) 0%, rgba(5, 7, 10, 0.74) 40%, rgba(5, 7, 10, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.68), rgba(5, 7, 10, 0.02) 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  align-self: end;
}

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

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

h1,
h2 {
  font-family: "Roboto Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.94;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

.hero-subline {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(21px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  border-top: 2px solid var(--orange);
  background: rgba(9, 11, 15, 0.48);
  backdrop-filter: blur(8px);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section-pad {
  padding: 96px clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading.light {
  color: var(--white);
}

.inspection-gap {
  background: var(--white);
}

.audience {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.audience-grid,
.service-list,
.included-grid {
  display: grid;
  gap: 18px;
}

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

.audience-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  box-shadow: 0 14px 42px rgba(17, 21, 27, 0.06);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 6px;
  font-weight: 900;
  font-size: 26px;
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-grid p,
.service-list p,
.steps p,
.faq p {
  color: var(--muted);
  line-height: 1.6;
}

.services,
.process {
  position: relative;
  color: var(--white);
  background: var(--panel);
}

.services::before,
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), transparent 42%);
  pointer-events: none;
}

.services > *,
.process > * {
  position: relative;
}

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

.service-list article {
  padding: 28px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.06);
}

.service-list p {
  color: rgba(255, 255, 255, 0.7);
}

.included {
  background: var(--paper);
}

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

.included-grid div {
  min-height: 116px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 36px rgba(17, 21, 27, 0.06);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-family: "Roboto Condensed", Impact, sans-serif;
  font-size: 46px;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.steps p {
  color: rgba(255, 255, 255, 0.7);
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  background: var(--white);
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.price-card {
  margin-top: 32px;
  padding: 26px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 5px solid var(--orange);
  box-shadow: var(--shadow);
}

.price-card span,
.price-card small {
  display: block;
}

.price-card strong {
  display: block;
  margin: 10px 0;
  color: var(--orange);
  font-family: "Roboto Condensed", Impact, sans-serif;
  font-size: 56px;
  line-height: 1;
}

.price-card small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 8px;
  color: #2e3540;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd5df;
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

details {
  border: 1px solid var(--line);
  background: var(--white);
}

summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  padding: 0 24px 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
}

.footer-meta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site-footer .footer-copy {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

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

  .audience-grid,
  .service-list,
  .included-grid,
  .steps,
  .booking {
    grid-template-columns: 1fr 1fr;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 112px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta,
  .header-call {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
    padding: 128px 18px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.9) 0%, rgba(5, 7, 10, 0.64) 100%),
      linear-gradient(0deg, rgba(5, 7, 10, 0.6), rgba(5, 7, 10, 0.08));
  }

  h1 {
    font-size: 58px;
  }

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

  .section-pad {
    padding: 68px 18px;
  }

  .audience-grid,
  .service-list,
  .included-grid,
  .steps,
  .booking,
  .form-row {
    grid-template-columns: 1fr;
  }

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