:root {
  --ink: #14211d;
  --muted: #5d6b65;
  --line: #dce4df;
  --bg: #f6f8f5;
  --panel: #ffffff;
  --green: #1f6b52;
  --green-dark: #114636;
  --blue: #346987;
  --warm: #efe6d5;
  --shadow: 0 18px 45px rgba(20, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(32px, 6vw, 78px) clamp(18px, 4vw, 56px) 48px;
}

.hero-copy,
.lead-form,
.hero-media {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--green);
  color: var(--green-dark);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  color: #fff;
  background: var(--green);
}

.trust-list,
.checklist {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li,
.checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.trust-list li::before,
.checklist li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  background: var(--green);
}

.hero-media {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.lead-form {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.lead-form h2 {
  font-size: 1.55rem;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--line);
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.consent input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.form-status.error {
  color: #9d2020;
}

.section {
  padding: clamp(46px, 7vw, 90px) clamp(18px, 4vw, 56px);
}

.section-head {
  max-width: 850px;
  margin-bottom: 28px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.cards article {
  min-height: 190px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.cards p,
.steps p,
.split p,
.faq p,
.final p,
.footer p {
  color: var(--muted);
}

.muted {
  background: var(--warm);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 33, 29, 0.09);
}

.steps span {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
}

.steps strong {
  display: block;
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.split figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.split img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.final {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: start;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--green-dark);
}

.final p,
.final a {
  color: rgba(255, 255, 255, 0.82);
}

.final .lead-form {
  color: var(--ink);
}

.footer {
  padding: 24px clamp(18px, 4vw, 56px);
  background: #0e2f25;
}

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

.phone-copy-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  padding: 12px 14px;
  color: #fff;
  background: var(--green-dark);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.phone-copy-notice.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero,
  .final {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 320px;
  }
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cards,
  .steps,
  .split {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 520px) {
  .hero,
  .section,
  .final {
    padding-left: 14px;
    padding-right: 14px;
  }

  .lead-form {
    padding: 16px;
  }

  .button,
  button {
    width: 100%;
  }
}
