:root {
  --bg: #f3f6ef;
  --ink: #172018;
  --muted: #59645b;
  --green: #0f6b44;
  --green-dark: #083d28;
  --lime: #dff2a6;
  --panel: #ffffff;
  --line: #d7dfd4;
  --max: 1140px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Aptos", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  padding-bottom: 88px;
}

a { color: inherit; }

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--green-dark);
  border: 1px solid #c9e86d;
  border-radius: 8px;
  font-weight: 950;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
  color: var(--muted);
}

.nav a,
.footer-links a {
  text-decoration: none;
}

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

.call-banner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.call-banner div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 13px 16px;
  border: 1px solid #c9e86d;
  border-radius: 8px;
  background: var(--lime);
  color: var(--green-dark);
}

.call-banner span {
  color: #314735;
}

.call-banner a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 7px;
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip div {
  min-height: 88px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(340px, calc(100vw - 36px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #c9e86d;
  border-radius: 8px;
  background: var(--lime);
  color: var(--green-dark);
  box-shadow: 0 20px 44px rgba(15, 93, 60, 0.18);
}

.sticky-cta span {
  font-weight: 900;
}

.sticky-cta a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 7px;
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.home-hero,
.offer-hero,
.content,
.final-cta,
.site-footer,
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.home-hero,
.offer-hero {
  padding-top: 82px;
  padding-bottom: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

h1,
h2,
h3 {
  line-height: 1.04;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(30px, 3.6vw, 50px);
}

h2 {
  font-size: clamp(20px, 2.2vw, 30px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 25px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  margin-top: 18px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 7px;
  font-weight: 900;
}

.button:hover {
  background: var(--green-dark);
}

.check-panel,
.inline-check {
  margin-top: 30px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 93, 60, 0.1);
}

.check-panel label,
.inline-check label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.check-row {
  display: flex;
  gap: 10px;
}

.check-row input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
}

.check-row button {
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.check-row button:hover {
  background: var(--green-dark);
}

.check-panel p,
.inline-check p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin: 28px 0 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 500;
}

.form-consent input {
  width: auto;
  min-height: 0;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.form-hp {
  position: absolute;
  left: -9999px;
}

.hero-stack {
  display: grid;
  gap: 20px;
}

.hero-visual,
.feature-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(15, 93, 60, 0.14);
  background: var(--panel);
}

.hero-visual img,
.feature-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.diagnostic {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 28px;
}

.diagnostic ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #dce8de;
}

.check-preview {
  max-width: var(--max);
  margin: 0 auto;
  padding: 68px 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.check-preview p {
  color: var(--muted);
  font-size: 19px;
}

.report-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.report-card ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.report-card li {
  color: var(--muted);
}

.report-card span {
  display: inline-block;
  min-width: 112px;
  color: var(--green-dark);
  font-weight: 900;
}

.visual-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-section p {
  color: var(--muted);
  font-size: 19px;
}

.section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.package {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.package strong {
  color: var(--green-dark);
}

.package a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.content {
  max-width: 850px;
  padding-top: 20px;
  padding-bottom: 76px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 18px;
}

.content h2,
.content h3 {
  margin-top: 46px;
}

.content h2 {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.16;
}

.content h3 {
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.22;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 16px 18px 18px;
}

.final-cta {
  margin-bottom: 78px;
  padding-top: 50px;
  padding-bottom: 54px;
  background: var(--lime);
  border-radius: 8px;
}

.site-footer {
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}


.content-media {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 18px auto 42px;
}

.content-media picture,
.content-media img {
  display: block;
  width: 100%;
}

.content-media img {
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .call-banner,
  .trust-strip,
  .home-hero,
  .offer-hero,
  .check-preview,
  .visual-section {
    display: block;
  }

  .nav,
  .call-banner a,
  .trust-strip div,
  .hero-stack,
  .diagnostic,
  .feature-visual {
    margin-top: 22px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .packages {
    grid-template-columns: 1fr;
  }

  .check-row {
    display: grid;
  }

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