:root {
  --ink: #14211b;
  --muted: #5b6a62;
  --paper: #fbfcf7;
  --white: #ffffff;
  --green: #2e7d4f;
  --deep-green: #17452f;
  --lake: #2e8eb8;
  --sun: #f4b84f;
  --line: rgba(20, 33, 27, 0.14);
  --shadow: 0 20px 60px rgba(20, 33, 27, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(20, 33, 27, 0.58), rgba(20, 33, 27, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(20, 33, 27, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-weight: 800;
}

nav a {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 72px) 80px;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 24, 18, 0.82) 0%, rgba(11, 24, 18, 0.62) 38%, rgba(11, 24, 18, 0.12) 72%),
    linear-gradient(0deg, rgba(11, 24, 18, 0.4), rgba(11, 24, 18, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font: 800 0.98rem "Inter", Arial, sans-serif;
  cursor: pointer;
}

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

.button.primary,
button {
  color: var(--ink);
  background: var(--sun);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

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

.trust-band div {
  padding: 28px clamp(20px, 4vw, 48px);
  background: var(--white);
}

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

.trust-band strong {
  margin-bottom: 6px;
  font-family: "Inter", Arial, sans-serif;
}

.trust-band span {
  color: var(--muted);
}

.section,
.service-grid,
.checkout,
.terms-section,
footer {
  padding-inline: clamp(20px, 5vw, 72px);
}

.section {
  padding-top: 96px;
  padding-bottom: 36px;
}

.intro-grid,
.area-section,
.checkout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.intro-copy,
.area-copy p,
.checkout-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.small-note {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--sun);
  background: #f6faf5;
  color: var(--ink);
  font-weight: 800;
}

.route-note {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(46, 142, 184, 0.22);
  border-radius: 8px;
  background: rgba(46, 142, 184, 0.08);
}

.route-note strong {
  font-family: "Inter", Arial, sans-serif;
}

.route-note span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 26px;
  padding-bottom: 82px;
}

.service-grid article,
.plan-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(20, 33, 27, 0.06);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.service-grid h3,
.plan-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-grid p,
.plan-card p {
  color: var(--muted);
  line-height: 1.55;
}

.area-section {
  padding-top: 84px;
  padding-bottom: 84px;
  color: var(--white);
  background: var(--deep-green);
}

.area-section .eyebrow {
  color: #92d8ff;
}

.area-section h2,
.area-section p {
  color: var(--white);
}

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

.area-list span {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  max-width: 13ch;
}

.pricing-note {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

.plan-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  color: var(--white);
  background: var(--lake);
}

.plan-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.plan-card.featured .price {
  color: var(--white);
}

.price {
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.price span {
  font-size: 1rem;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.plan-card.featured li {
  color: rgba(255, 255, 255, 0.92);
}

.plan-card.featured li::before {
  color: var(--sun);
}

.plan-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: var(--deep-green);
  font: 800 0.95rem "Inter", Arial, sans-serif;
  text-align: center;
}

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

.plan-card.featured .plan-button {
  color: var(--ink);
  background: var(--sun);
}

.checkout {
  padding-top: 86px;
  padding-bottom: 86px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.service-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6faf5;
  box-shadow: 0 16px 44px rgba(20, 33, 27, 0.08);
}

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

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(46, 125, 79, 0.2);
  border-radius: 8px;
  background: var(--white);
}

.checkout-summary strong {
  flex: 0 0 auto;
  color: var(--green);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.checkout-summary span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

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

.checkout-actions .button {
  width: 100%;
}

.checkout-actions .secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

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

.faq-grid article,
.terms-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-grid h3,
.terms-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.faq-grid p,
.terms-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.terms-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 6vw, 76px);
  padding-top: 84px;
  padding-bottom: 84px;
  color: var(--white);
  background: var(--deep-green);
}

.terms-section .eyebrow {
  color: #92d8ff;
}

.terms-section h2 {
  color: var(--white);
}

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

.terms-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.terms-grid h3,
.terms-grid p {
  color: var(--white);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(46, 125, 79, 0.2);
  border-radius: 8px;
  background: var(--white);
  font-family: "Nunito", Arial, sans-serif;
  line-height: 1.45;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--white);
  font: 600 1rem "Nunito", Arial, sans-serif;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--deep-green);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--sun);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(11, 24, 18, 0.84), rgba(11, 24, 18, 0.26));
  }

  .hero-content {
    align-self: end;
  }

  .trust-band,
  .intro-grid,
  .area-section,
  .checkout,
  .terms-section,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

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

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

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

  .service-grid article,
  .plan-card {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.3rem, 14vw, 5.4rem);
  }

  h2 {
    max-width: 13ch;
  }
}

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

  .brand {
    max-width: 220px;
  }

  .hero {
    min-height: 690px;
    padding: 100px 18px 48px;
  }

  .hero-image {
    object-position: 62% center;
  }

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

  .form-grid,
  .checkout-actions {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .plan-grid,
  .faq-grid,
  .terms-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    padding: 22px 18px;
  }

  .service-grid {
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 56px;
  }

  .service-grid article,
  .plan-card,
  .service-form {
    padding: 20px;
  }

  .plan-card h3,
  .plan-card p {
    margin-bottom: 8px;
  }

  .plan-card .price {
    margin-bottom: 18px;
  }

  .plan-card > p:not(.price) {
    margin-bottom: 0;
  }

  .icon {
    margin-bottom: 22px;
  }

  .plan-card ul {
    margin-top: 16px;
  }

  .plan-button {
    margin-top: 22px;
    width: 100%;
  }

  .checkout {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section,
  .service-grid,
  .checkout,
  .terms-section,
  footer {
    padding-inline: 18px;
  }

  .section {
    padding-top: 70px;
  }

  footer {
    flex-direction: column;
  }
}
