:root {
  --green: #009c4d;
  --green-dark: #006a38;
  --yellow: #ffd221;
  --ink: #242323;
  --muted: #687176;
  --line: #dce5df;
  --paper: #f7faf6;
  --white: #ffffff;
  --sky: #e9f4f6;
  --shadow: 0 18px 60px rgba(20, 36, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 60px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 68px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(28, 46, 39, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(210px, 48vw);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  background: var(--sky);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 44, 32, 0.88) 0%, rgba(8, 69, 49, 0.64) 42%, rgba(7, 20, 24, 0.1) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 112px 0 42px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 44px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn svg {
  width: 19px;
  height: 19px;
}

.btn-primary {
  color: #173020;
  background: var(--yellow);
  box-shadow: 0 16px 40px rgba(255, 210, 33, 0.24);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(780px, 100%);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  overflow: hidden;
}

.hero-metrics div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--yellow);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 60px);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.contact-info h2,
.guarantee-content h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.contact-info p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.feature-card,
.person,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(20, 40, 35, 0.06);
}

.feature-card {
  min-height: 236px;
  padding: 26px;
}

.feature-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--green);
}

.feature-card h3,
.step h3,
.person h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p,
.step p,
.person span,
.proof-item span,
.warranty-strip span {
  color: var(--muted);
  line-height: 1.65;
}

.process {
  color: var(--white);
  background: #14352a;
}

.process .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.timeline {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.step {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 8px;
  color: #173020;
  background: var(--yellow);
  font-weight: 800;
}

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

.split {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  margin: 0 auto;
}

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

.proof-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-item svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

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

.team {
  background: var(--white);
}

.team-grid {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.person {
  padding: 28px;
}

.person p {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #e8f6ee;
  font-size: 0.9rem;
  font-weight: 800;
}

.guarantee {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #06482d, #198750);
}

.guarantee .eyebrow,
.process .eyebrow {
  color: var(--yellow);
}

.warranty-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
}

.warranty-strip div {
  min-height: 146px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.warranty-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1.7rem;
}

.warranty-strip span {
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  margin: 0 auto;
}

address {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-style: normal;
}

address a,
address span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

address svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--green);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: #4a5357;
  font-weight: 800;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfb;
  outline: 0;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 156, 77, 0.12);
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  padding: 26px 18px;
  color: #526066;
  background: var(--white);
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .feature-grid,
  .timeline,
  .warranty-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .guarantee,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 10px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 44, 32, 0.9) 0%, rgba(8, 69, 49, 0.76) 58%, rgba(7, 20, 24, 0.22) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 42%);
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-metrics,
  .feature-grid,
  .timeline,
  .team-grid,
  .warranty-strip,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 18px;
  }

  .feature-card,
  .step {
    min-height: auto;
  }

  .proof-item {
    grid-template-columns: 40px 1fr;
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 178px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  h1 {
    font-size: 2.35rem;
  }
}
