:root {
  --ink: #111827;
  --muted: #5b6472;
  --soft: #eef3f7;
  --line: #dce4ec;
  --paper: #f8fafc;
  --white: #ffffff;
  --yellow: #f7c948;
  --yellow-strong: #e3ad12;
  --blue: #163f63;
  --blue-dark: #0d263d;
  --green: #1d7a63;
  --shadow: 0 22px 60px rgba(12, 24, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 76px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid rgba(220, 228, 236, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand img {
  display: block;
  width: 226px;
  height: auto;
}

nav {
  display: flex;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

nav a:hover,
.header-call:hover {
  color: var(--blue);
}

.header-call {
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 20% 18%, rgba(247, 201, 72, 0.26), transparent 24%),
    radial-gradient(circle at 72% 82%, rgba(29, 139, 209, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(8, 18, 30, 0.94) 0%, rgba(13, 38, 61, 0.82) 46%, rgba(13, 38, 61, 0.26) 100%),
    linear-gradient(0deg, rgba(8, 18, 30, 0.48), rgba(8, 18, 30, 0.08));
}

.hero-content {
  width: min(960px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 88px);
  padding: 80px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 6.2vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.hero-services,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.primary,
button {
  color: #101820;
  background: var(--yellow);
}

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

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(940px, 100%);
  margin-top: 38px;
}

.hero-services a {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 188px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-services a:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 201, 72, 0.7);
  background: rgba(255, 255, 255, 0.15);
}

.hero-services span {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-services strong {
  color: var(--white);
  font-size: 1.34rem;
  line-height: 1.14;
}

.hero-services small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.42;
}

.hero-services em {
  align-self: end;
  margin-top: 8px;
  color: rgba(247, 201, 72, 0.92);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.section,
.feature-grid,
.inspection,
.process,
.why,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  padding: 86px 0 34px;
}

.intro p:last-child,
.inspection-copy p,
.why-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 0 86px;
}

.feature-card {
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(20, 35, 50, 0.06);
}

.feature-card h3 {
  font-size: 1.42rem;
}

.feature-card p,
.feature-card li {
  font-size: 1.02rem;
}

.feature-card.featured {
  grid-row: span 2;
  color: var(--white);
  background: linear-gradient(155deg, var(--blue-dark), var(--blue));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--yellow-strong);
  font-weight: 900;
}

.featured .tag {
  color: var(--yellow);
}

.feature-card p,
.feature-card li,
.inspection-list span,
.process p,
.stats span,
.form-note {
  color: var(--muted);
}

.featured p,
.featured li {
  color: rgba(255, 255, 255, 0.78);
}

ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

li::marker {
  color: var(--yellow-strong);
}

.inspection {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
  padding: 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inspection .eyebrow {
  color: var(--green);
}

.inspection-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inspection-list div,
.process article,
.stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.inspection-list strong,
.inspection-list span,
.stats strong,
.stats span {
  display: block;
}

.process {
  padding: 88px 0 34px;
}

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

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

.process article {
  background: var(--white);
}

.process article span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: #101820;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  margin-top: 54px;
  padding: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(247, 201, 72, 0.18), transparent 28%),
    linear-gradient(135deg, #102a43, #183b59);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.why-copy p,
.why .stats span {
  color: rgba(255, 255, 255, 0.74);
}

.stats {
  display: grid;
  gap: 14px;
}

.stats div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.stats strong {
  font-size: 1.8rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 46px;
  align-items: start;
  padding: 88px 0;
}

.contact-links a {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
}

.company-card {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.company-card strong {
  color: var(--ink);
}

.map-card {
  overflow: hidden;
  height: 190px;
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85);
}

form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(25, 39, 52, 0.08);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfcfd;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(247, 201, 72, 0.36);
  border-color: var(--yellow-strong);
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.86rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.thank-you {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 145px);
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  text-align: center;
}

.thank-you-card {
  padding: clamp(30px, 6vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.thank-you-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.price-hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 44px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 42px;
  align-items: end;
}

.price-hero h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.price-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.price-hero aside {
  display: grid;
  gap: 10px;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-hero aside strong {
  color: var(--yellow);
  font-size: 1.2rem;
}

.price-hero aside span {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.dark {
  background: var(--blue-dark);
}

.price-note,
.price-section,
.price-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.price-note {
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  color: var(--ink);
  background: #fff7df;
  border: 1px solid rgba(247, 201, 72, 0.55);
  border-radius: 8px;
}

.price-note strong {
  min-width: max-content;
}

.price-note span {
  color: #5c4a10;
}

.price-section {
  padding-top: 72px;
}

.price-table {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(25, 39, 52, 0.07);
}

.price-table div {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1.2fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table div:nth-child(even) {
  background: #fbfdff;
}

.price-table strong {
  font-size: 1.03rem;
}

.price-table span {
  color: var(--blue);
  font-weight: 900;
}

.price-table em {
  color: var(--muted);
  font-style: normal;
}

.price-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 76px;
  margin-bottom: 88px;
  padding: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(247, 201, 72, 0.22), transparent 28%),
    linear-gradient(135deg, #102a43, #183b59);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.seo-section,
.faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 0;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-links a {
  padding: 10px 14px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

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

.faq-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(20, 35, 50, 0.06);
}

.faq-grid p {
  color: var(--muted);
}

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

  .intro,
  .inspection,
  .price-hero,
  .price-cta,
  .why,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero-services {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .feature-card.featured {
    grid-row: auto;
    grid-column: span 2;
  }

  .inspection,
  .why {
    padding: 36px;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

  .brand img {
    width: 164px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 56px 0 42px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  button {
    width: 100%;
  }

  .hero-services {
    gap: 10px;
    margin-top: 26px;
  }

  .hero-services a {
    min-height: auto;
    padding: 16px;
  }

  .hero-services strong {
    font-size: 1.14rem;
  }

  .hero-services small {
    font-size: 0.94rem;
  }

  .hero-services em {
    font-size: 0.78rem;
  }

  .section,
  .feature-grid,
  .inspection,
  .process,
  .price-hero,
  .price-note,
  .price-section,
  .price-cta,
  .seo-section,
  .faq-section,
  .why,
  .contact {
    width: calc(100% - 32px);
  }

  .intro,
  .contact {
    padding: 58px 0;
  }

  .feature-grid,
  .inspection-list,
  .faq-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.featured {
    grid-column: auto;
  }

  .inspection,
  .why {
    padding: 26px;
  }

  .price-hero {
    padding-top: 58px;
  }

  .price-note {
    display: grid;
  }

  .price-cta {
    padding: 26px;
  }
}
