:root {
  --navy: #071c36;
  --navy-2: #0b294f;
  --ink: #111827;
  --muted: #526173;
  --green: #26c281;
  --green-dark: #169764;
  --yellow: #f7c948;
  --paper: #ffffff;
  --mist: #f5f6fa;
  --line: #dbe3ee;
  --shadow: 0 20px 50px rgba(7, 28, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.55;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--paper);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  left: 8px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 28, 54, 0.98);
  color: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.logo {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 250px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.logo span {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #d8e4f5;
  font-size: 0.94rem;
  font-weight: 650;
}

.desktop-nav a:hover,
.footer-grid nav a:hover {
  color: var(--green);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green);
  color: #04101b;
  font-weight: 850;
  white-space: nowrap;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 28, 54, 0.95), rgba(2, 7, 18, 0.98)),
    url("images/compliance-inspection.webp") center / cover;
  color: #fff;
  padding: 92px 0 76px;
}

.sub-hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 28, 54, 0.96), rgba(2, 7, 18, 0.98)),
    url("images/compliance-inspection.webp") center / cover;
  color: #fff;
  padding: 78px 0 68px;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.sub-hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
}

.sub-hero img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #a9bee0;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #5a3b00;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.2vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 26px;
  color: #dbe7f7;
  font-size: 1.14rem;
}

.hero-actions,
.urgency-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: #031018;
  box-shadow: 0 12px 28px rgba(38, 194, 129, 0.24);
}

.btn-primary:hover {
  background: #31d891;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.btn-large {
  min-height: 56px;
  padding-inline: 25px;
  font-size: 1.05rem;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark-outline {
  border-color: rgba(7, 28, 54, 0.45);
  color: var(--navy);
}

.btn-light-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
  margin-top: 26px;
}

.hero-points span {
  position: relative;
  padding-left: 18px;
  color: #d4e1f4;
  font-size: 0.98rem;
}

.hero-points span::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.hero-card {
  position: absolute;
  right: -10px;
  bottom: -22px;
  width: min(310px, 72%);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}

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

.hero-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-strip {
  background: #020712;
  color: #edf5ff;
  padding: 16px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 750;
}

.trust-grid div {
  padding: 8px 10px;
}

.trust-grid div::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.urgency-band {
  background: var(--yellow);
  color: #162033;
  padding: 30px 0;
}

.urgency-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.urgency-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.urgency-inner p {
  margin-bottom: 0;
  max-width: 780px;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background: #eef3fb;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.proof-layout p,
.about-grid p,
.area-grid p,
.quote-grid p,
.final-inner p,
.site-footer p {
  color: var(--muted);
  font-size: 1.02rem;
}

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

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

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

.two-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 40px;
  align-items: center;
}

.split-page-grid img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-list {
  margin-top: 18px;
}

.service-link-section {
  background: #fff;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.link-card-grid a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.link-card-grid a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.1);
}

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

.service-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  min-height: 230px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card p {
  margin-bottom: 10px;
  color: var(--muted);
}

.service-card ul,
.quote-points {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #354255;
  font-size: 0.95rem;
}

.service-card li,
.quote-points li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before,
.quote-points li::before {
  position: absolute;
  left: 0;
  color: var(--green-dark);
  content: "+";
  font-weight: 900;
}

.service-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.45fr minmax(0, 1fr);
}

.text-link {
  color: var(--green-dark);
  font-weight: 850;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 22px;
  border-radius: 8px;
  background: #edf7f3;
}

.inline-cta h3 {
  margin-bottom: 0;
}

.process-section {
  background: #eef3fb;
}

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

.steps article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(7, 28, 54, 0.08);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-section {
  background: var(--paper);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.proof-list div {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

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

.proof-list span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-images {
  display: grid;
  gap: 16px;
}

.proof-images img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reviews {
  margin-top: 66px;
}

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

.review-grid article {
  padding: 22px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.review-grid p {
  color: #dbe7f7;
}

.stars {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 201, 72, 0.14);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-section {
  background: #f3f6fb;
}

.about-grid,
.area-grid,
.quote-grid,
.final-inner,
.footer-grid {
  display: grid;
  align-items: center;
  gap: 40px;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
}

.about-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-pills,
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-pills span,
.city-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #223047;
  font-size: 0.92rem;
  font-weight: 750;
}

.area-section {
  background: var(--paper);
}

.area-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.city-list {
  justify-content: flex-end;
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(7, 28, 54, 0.97), rgba(2, 7, 18, 0.96)),
    url("images/exhaust-hood-cleaning-2.webp") center / cover;
  color: #fff;
}

.quote-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.quote-grid p {
  color: #dbe7f7;
}

.quote-phone {
  display: inline-flex;
  margin: 12px 0 20px;
  color: var(--green);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 950;
  line-height: 1.05;
}

.quote-points {
  color: #dbe7f7;
}

.quote-form {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.iframe-form iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 6px;
}

.form-row {
  margin-bottom: 14px;
}

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

label {
  display: block;
  margin-bottom: 5px;
  color: #354255;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8e6;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: transparent;
  outline: 3px solid rgba(38, 194, 129, 0.28);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  text-align: center;
}

.form-note a {
  color: var(--green-dark);
  font-weight: 850;
}

.legal-page {
  background: #fff;
}

.narrow {
  max-width: 850px;
}

.legal-page h1 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.legal-page h2 {
  margin-top: 32px;
  color: var(--navy);
  font-size: 1.35rem;
}

.legal-page p {
  color: var(--muted);
}

.legal-page a {
  color: var(--green-dark);
  font-weight: 850;
}

.final-cta {
  background: var(--yellow);
  padding: 44px 0;
}

.final-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.final-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.final-inner p {
  margin-bottom: 0;
  color: #223047;
}

.site-footer {
  padding: 34px 0 88px;
  background: #020712;
  color: #d8e4f5;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.6fr) minmax(180px, 0.45fr);
  align-items: start;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-grid p {
  max-width: 520px;
  margin-bottom: 0;
  color: #aebcd0;
}

.footer-phone {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 1.28rem;
  font-weight: 900;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.mobile-call-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: #031018;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

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

  .hero {
    padding: 58px 0 62px;
  }

  .hero-grid,
  .sub-hero-grid,
  .proof-layout,
  .about-grid,
  .area-grid,
  .quote-grid,
  .split-page-grid,
  .final-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    aspect-ratio: 1.75 / 1;
  }

  .trust-grid,
  .service-grid,
  .info-grid,
  .link-card-grid,
  .city-page-grid,
  .steps,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .urgency-inner {
    grid-template-columns: 1fr;
  }

  .city-list {
    justify-content: flex-start;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 68px;
  }

  .logo {
    max-width: 180px;
    font-size: 0.9rem;
  }

  .header-call {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 34px 0 70px;
  }

  h1 {
    font-size: clamp(2.12rem, 11.2vw, 3.18rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-points {
    margin-bottom: 20px;
  }

  .hero-actions,
  .urgency-actions,
  .final-actions,
  .inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points,
  .trust-grid,
  .service-grid,
  .info-grid,
  .link-card-grid,
  .city-page-grid,
  .steps,
  .proof-list,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero {
    padding: 34px 0 58px;
  }

  .sub-hero img {
    order: -1;
    border-width: 6px;
    border-radius: 16px;
  }

  .hero-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .service-card,
  .service-card-wide {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.55 / 1;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 18px;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .mobile-call-bar {
    display: flex;
  }
}

@media (max-width: 430px) {
  .header-call {
    display: none;
  }

  .hero-media img {
    border-width: 6px;
    border-radius: 16px;
  }
}
