* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1f3c;
  --navy-soft: #173055;
  --lime: #95cf24;
  --lime-dark: #669815;
  --ink: #10213a;
  --muted: #607086;
  --line: #dce5ef;
  --paper: #f5f8fb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(13, 31, 60, .16);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-nav {
  align-items: center;
  background: var(--navy);
  border-bottom: 3px solid var(--lime);
  display: flex;
  gap: 24px;
  height: 72px;
  justify-content: space-between;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  align-items: center;
  background: var(--lime);
  border-radius: 7px;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.logo-icon svg {
  fill: var(--navy);
  height: 25px;
  width: 25px;
}

.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .3px;
  line-height: 1;
}

.logo-text span {
  color: var(--lime);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a,
.site-footer a {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--lime);
}

.nav-cta {
  background: var(--lime);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  padding: 10px 20px;
  text-decoration: none;
}

.hero {
  background: var(--navy);
  color: var(--white);
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 70px 5%;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 18, 34, .94) 0%, rgba(8, 23, 43, .82) 40%, rgba(8, 23, 43, .35) 68%, rgba(8, 23, 43, .2) 100%),
    linear-gradient(180deg, rgba(8, 23, 43, .4) 0%, rgba(8, 23, 43, .18) 55%, rgba(8, 23, 43, .85) 100%);
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 212px);
  position: relative;
  z-index: 1;
}

.eyebrow,
.form-kicker {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: 1;
}

h1 {
  color: var(--white);
  font-size: 78px;
  max-width: 760px;
}

h2 {
  color: var(--ink);
  font-size: 54px;
}

h3 {
  font-size: 28px;
}

.hero-sub {
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  margin: 22px 0 28px;
  max-width: 650px;
}

.hero-actions,
.final-actions,
.section-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--navy);
}

.btn-primary:hover {
  background: #ace33d;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
}

.btn-secondary.dark {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-small {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  min-height: 42px;
  padding: 11px 16px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 34px;
}

.trust-list li {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.quote-card {
  background: rgba(255, 255, 255, .96);
  border-radius: 12px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 26px;
}

.quote-card h2 {
  font-size: 35px;
  margin-bottom: 18px;
}

.quote-form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.quote-form label {
  display: grid;
  gap: 6px;
}

.quote-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.quote-form textarea {
  resize: vertical;
}

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

.form-note {
  color: var(--muted);
  font-size: 12px;
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.trust-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  background: var(--white);
  padding: 22px 5vw;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 16px;
  margin-bottom: 3px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 86px 5%;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.section-head {
  margin-bottom: 38px;
  max-width: 720px;
}

.section-head p,
.section-copy {
  color: var(--muted);
  font-size: 17px;
  margin-top: 12px;
}

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

.results-section,
.pricing-section {
  background: var(--paper);
}

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

.result-card,
.service-card,
.price-card,
.testimonial-grid figure,
.process-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.result-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.result-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.result-card div {
  padding: 20px;
}

.result-card p,
.service-card p,
.price-card li,
.testimonial-grid blockquote,
.process-grid p,
.cred-panel p,
.site-footer p,
.area-note,
.faq-grid p,
.text-column p {
  color: var(--muted);
  font-size: 14px;
}

.result-card h3 a,
.service-card h3 a,
.text-column a {
  color: inherit;
  text-decoration-color: rgba(102, 152, 21, .45);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.section-cta {
  justify-content: center;
  margin-top: 32px;
}

.split {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: .9fr 1.1fr;
}

.reverse {
  grid-template-columns: 1fr .9fr;
}

.support-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 26px;
  width: 100%;
}

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

.service-card {
  padding: 22px;
}

.service-card a {
  color: var(--lime-dark);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin-top: 14px;
  text-decoration: none;
}

.credibility-section,
.process-section {
  background: var(--navy);
  color: var(--white);
}

.credibility-section h2,
.process-section h2 {
  color: var(--white);
}

.cred-panel p,
.process-grid p {
  color: rgba(255, 255, 255, .72);
  margin: 16px 0 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 26px;
}

.check-list li {
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  padding-left: 26px;
  position: relative;
}

.check-list li::before {
  background: var(--lime);
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 9px;
}

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

.process-grid article {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  padding: 28px;
}

.process-grid span {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.price-anchors {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
}

.price-anchors a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
}

.price-anchors strong,
.price-anchors span {
  display: block;
}

.price-anchors span {
  color: var(--lime-dark);
  font-weight: 900;
  margin-top: 4px;
}

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

.price-card {
  overflow: visible;
  padding: 26px;
  position: relative;
}

.price-card.featured {
  border-color: var(--lime);
  box-shadow: 0 12px 34px rgba(13, 31, 60, .09);
}

.badge {
  background: var(--lime);
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  left: 20px;
  padding: 5px 12px;
  position: absolute;
  top: -14px;
}

.price {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0 14px;
}

.price-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin-bottom: 20px;
}

.price-card li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

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

.area-block,
.faq-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.area-block h3 {
  margin-bottom: 14px;
}

.area-block ul,
.footer-services ul,
.footer-areas ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.area-block a,
.footer-services a,
.footer-areas a,
.internal-links a {
  color: var(--lime-dark);
  font-weight: 900;
  text-decoration: none;
}

.area-note {
  margin-top: 14px;
}

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

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

.faq-grid details {
  overflow: hidden;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding-right: 28px;
  position: relative;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  color: var(--lime-dark);
  content: "›";
  font-size: 26px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: -2px;
  transform: rotate(90deg);
  transition: transform .18s ease;
}

.faq-grid details[open] summary::after {
  transform: rotate(270deg);
}

.faq-grid p {
  margin-top: 12px;
}

.testimonial-grid figure {
  padding: 26px;
}

.stars {
  color: var(--lime-dark);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-grid blockquote {
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-grid figcaption {
  font-weight: 900;
}

.final-cta {
  align-items: center;
  background: var(--lime);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 64px 5%;
}

.final-cta h2 {
  max-width: 700px;
}

.final-cta p {
  color: rgba(13, 31, 60, .75);
  font-size: 18px;
  margin-top: 10px;
}

.final-cta .eyebrow {
  color: var(--navy);
}

.site-footer {
  align-items: flex-start;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 2fr .9fr 1fr 1fr;
  padding: 42px 5%;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer p {
  color: rgba(255, 255, 255, .6);
  max-width: 680px;
}

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

.footer-services a,
.footer-areas a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.subpage-hero {
  background: var(--navy);
  color: var(--white);
  min-height: 430px;
  max-height: 50vh;
  overflow: hidden;
  padding: 84px 5%;
  position: relative;
}

.subpage-media,
.subpage-media img {
  inset: 0;
  position: absolute;
}

.subpage-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.subpage-hero-inner {
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  font-size: 64px;
}

.subpage-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
  margin: 18px 0 26px;
  max-width: 680px;
}

.text-column {
  max-width: 760px;
}

.text-column h2 {
  font-size: 40px;
  margin-top: 34px;
}

.text-column h2:first-child {
  margin-top: 0;
}

.text-column p {
  font-size: 17px;
  margin-top: 12px;
}

.narrow {
  max-width: 760px;
}

.mini-gallery .results-grid {
  grid-template-columns: repeat(3, 1fr);
}

.internal-links {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 5% 76px;
}

.internal-links h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.internal-links div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
}

.internal-links a {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 9px 12px;
}

.thank-you-page {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 18, 34, .9), rgba(6, 18, 34, .72)),
    url("assets/hero-burgess-hill-driveway.jpg") center / cover;
  color: var(--white);
  display: flex;
  min-height: 100vh;
  padding: 5%;
}

.thank-you-card {
  background: rgba(255, 255, 255, .96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: 620px;
  padding: 34px;
}

.thank-you-card h1 {
  color: var(--ink);
  font-size: 54px;
  margin-bottom: 14px;
}

.thank-you-card p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .hero {
    padding: 52px 5%;
  }

  .hero-inner,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 18, 34, .92) 0%, rgba(6, 18, 34, .78) 55%, rgba(6, 18, 34, .94) 100%);
  }

  .hero-form {
    max-width: 680px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 46px;
  }

  .trust-bar,
  .results-grid,
  .pricing-grid,
  .testimonial-grid,
  .price-anchors,
  .areas-grid,
  .faq-grid,
  .mini-gallery .results-grid,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .site-nav {
    height: auto;
    padding: 12px 4%;
  }

  .nav-links {
    display: none;
  }

  .logo-text {
    font-size: 19px;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  .hero {
    min-height: auto;
    padding: 44px 4%;
  }

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

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .quote-form,
  .trust-bar,
  .results-grid,
  .service-grid,
  .process-grid,
  .pricing-grid,
  .testimonial-grid,
  .price-anchors,
  .areas-grid,
  .faq-grid,
  .mini-gallery .results-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 20px;
  }

  .section {
    padding: 58px 4%;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-hero {
    max-height: none;
    min-height: 360px;
    padding: 58px 4%;
  }

  .subpage-hero h1 {
    font-size: 44px;
  }

  .final-actions,
  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
