:root {
  --green: #008344;
  --green-dark: #006b37;
  --ink: #13221b;
  --muted: #65736c;
  --bg: #f4f7f5;
  --line: #dde6e1;
  --white: #fff;
  --shadow: 0 18px 55px rgba(15, 50, 32, 0.12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
}
.header {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: 39px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 800;
}
.logo img {
  width: 88px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}
.logo span {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
}
.nav-mini {
  display: flex;
  gap: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
}
.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 17, 0.86) 0%,
    rgba(10, 25, 17, 0.7) 42%,
    rgba(10, 25, 17, 0.18) 75%,
    rgba(10, 25, 17, 0.08) 100%
  );
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -180px -280px auto;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0, 131, 68, 0.35);
  filter: blur(5px);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 150px 0 80px;
  max-width: 760px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.02;
  margin: 20px 0 18px;
  letter-spacing: -0.045em;
}
.hero p {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 700px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.hero-points li {
  font-weight: 650;
}
.hero-points li:before {
  content: "✓";
  color: #6de59f;
  margin-right: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 23px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 131, 68, 0.27);
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}
.btn-light {
  background: #fff;
  color: var(--green);
  box-shadow: none;
}
.form-wrap {
  position: relative;
  z-index: 4;
  background: var(--ink);
}
.lead-form {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s ease, opacity 0.35s ease, padding 0.55s ease;
  padding: 0;
}
.lead-form.open {
  max-height: 900px;
  opacity: 1;
  padding: 34px 0;
}
.form-head {
  color: #fff;
  margin-bottom: 18px;
}
.form-head h2 {
  margin: 0 0 4px;
  font-size: 28px;
}
.form-head p {
  margin: 0;
  color: #cad5cf;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  color: #dce5e0;
  font-weight: 700;
}
.field input {
  border: 1px solid #53655b;
  background: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}
.privacy {
  grid-column: 1/-1;
  color: #e4ebe7;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.privacy input {
  margin-top: 5px;
}
.form-actions {
  grid-column: 1/-1;
  display: flex;
  gap: 12px;
  align-items: center;
}
.form-note {
  font-size: 12px;
  color: #aebcb5;
}
.section {
  padding: 92px 0;
}
.section.soft {
  background: var(--bg);
}
.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-head .kicker {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 850;
}
.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 8px 0 14px;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.benefit {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.benefit b {
  display: block;
  margin-bottom: 3px;
}
.benefit span {
  color: var(--muted);
  font-size: 14px;
}
.cta-band {
  background: var(--green);
  color: #fff;
  padding: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  margin: 0 0 8px;
  font-size: 34px;
}
.cta-band p {
  margin: 0;
  opacity: 0.9;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.22s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card-body {
  padding: 20px;
}
.card small {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card h3 {
  margin: 5px 0 7px;
  font-size: 21px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.step-no {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5f4ec;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 14px;
}
.step h3 {
  margin: 0 0 5px;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
}
.contact-box h3 {
  font-size: 28px;
  margin: 0 0 8px;
}
.contact-box p {
  color: #c7d2cc;
}
.contact-details {
  display: grid;
  gap: 8px;
  align-content: center;
}
.contact-details a {
  font-size: 18px;
  font-weight: 750;
}
.footer {
  padding: 34px 0;
  background: #0d1812;
  color: #b8c5be;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.sticky-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 40;
}
.sticky-cta .btn {
  width: 100%;
}
.highlight {
  color: var(--green);
}
@media (max-width: 900px) {
  .nav-mini {
    display: none;
  }
  .hero {
    min-height: 700px;
  }
  .split,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .topbar .container {
    justify-content: center;
  }
  .topbar .container span:last-child {
    display: none;
  }
  .header {
    top: 39px;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .hero {
    min-height: 680px;
    background-position: center;
  }
  .hero:before {
    background: linear-gradient(
      90deg,
      rgba(10, 25, 17, 0.88),
      rgba(10, 25, 17, 0.55)
    );
  }
  .hero-content {
    padding-top: 130px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero p {
    font-size: 18px;
  }
  .logo span {
    display: none;
  }
  .form-grid,
  .benefits,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 68px 0;
  }
  .cta-band {
    padding: 28px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 74px;
  }
  .topbar {
    font-size: 12px;
  }
}
/* =========================================================
   AS5 COOKIE CONSENT
   ========================================================= */

.as5-cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(3px);
    z-index: 9998;
}

.as5-cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    z-index: 9999;
    overflow: hidden;
}

.as5-cookie-content {
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.as5-cookie-eyebrow {
    display: inline-block;
    color: #008344;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.as5-cookie-main h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    color: #17202a;
}

.as5-cookie-main p {
    margin: 0;
    max-width: 720px;
    color: #5f6872;
    font-size: 14px;
    line-height: 1.6;
}

.as5-cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 210px;
}

.as5-btn {
    border: 0;
    border-radius: 8px;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.as5-btn-primary {
    background: #008344;
    color: #ffffff;
}

.as5-btn-primary:hover {
    background: #006c38;
}

.as5-btn-secondary {
    background: #eef1f3;
    color: #17202a;
}

.as5-btn-secondary:hover {
    background: #e1e5e8;
}

.as5-btn-link {
    background: transparent;
    color: #5f6872;
    text-decoration: underline;
    font-weight: 500;
}

.as5-cookie-settings {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.as5-cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f2;
    cursor: pointer;
}

.as5-cookie-option strong {
    display: block;
    color: #17202a;
    font-size: 14px;
    margin-bottom: 3px;
}

.as5-cookie-option small {
    display: block;
    color: #707982;
    line-height: 1.4;
}

.as5-cookie-option input {
    width: 20px;
    height: 20px;
    accent-color: #008344;
    flex-shrink: 0;
}

.as5-cookie-option.disabled {
    opacity: 0.65;
    cursor: default;
}

@media (max-width: 760px) {

    .as5-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .as5-cookie-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px;
    }

    .as5-cookie-main h2 {
        font-size: 21px;
    }

    .as5-cookie-actions {
        min-width: 0;
    }
}
/* add */
.btn.btn-light:hover { color: #FFF; }
.btn span { padding-bottom: 2px; }
.step.as5_openForm { transition-duration: 0.3s; cursor: pointer; }
.step.as5_openForm:hover { background-color: var(--green); transition-duration: 0.3s; color: #FFF; }
.step.as5_openForm p { transition-duration: 0.3s; }
.step.as5_openForm:hover p { color: #FFF; transition-duration: 0.3s; }