:root {
  --green-900: #0f3d28;
  --green-800: #125a37;
  --green-700: #137a43;
  --green-600: #1e9e5a;
  --green-500: #2bb673;
  --green-400: #3dd684;
  --green-300: #7be3a8;
  --green-100: #d6f3e3;
  --green-50: #eafaf0;
  --ink: #1f2a24;
  --muted: #5c6b63;
  --line: #e1ece6;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 34px rgba(15, 61, 40, 0.1);
  --shadow-lg: 0 26px 64px rgba(15, 61, 40, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--green-600);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  color: var(--green-900);
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}
p {
  color: var(--muted);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- utilities ---------- */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-30 { margin-bottom: 30px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: 15px; line-height: 1.6; }
.list-reset { list-style: none; padding: 0; margin: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.header-logo-image {
  height: 56px !important;
  width: auto;
}
@media (max-width: 640px) {
  .header-logo-image { height: 46px !important; }
}

/* ---------- buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  line-height: 1;
}
.button-primary {
  background: #fff;
  color: var(--green-700) !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}
.button-primary:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
  background: #f1fff7;
}
.button-green {
  background: var(--green-600);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(30, 158, 90, 0.32);
}
.button-green:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  text-decoration: none !important;
}
.button-wide-mobile {
  width: 100%;
  max-width: 320px;
}
@media (min-width: 641px) {
  .button-wide-mobile { width: auto; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0f3d28 0%, #137a43 46%, #1e9e5a 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 480px;
  height: 480px;
  background: rgba(125, 227, 168, 0.18);
  top: -170px;
  right: -120px;
}
.hero::after {
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.07);
  bottom: -180px;
  left: -110px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 84px 0 96px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #eafff3;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.hero-paragraph {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
}
.hero-trust .mdi {
  color: var(--green-300);
  font-size: 20px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eef7f1;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
}
.hero-card ul li:last-child {
  border-bottom: 0;
}
.hero-card .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-400);
  color: var(--green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0 72px;
  }
}

/* ---------- sections ---------- */
.section {
  padding: 80px 0;
}
.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  color: var(--green-600);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  margin-bottom: 14px;
}
.section-head p {
  font-size: 17px;
}

/* ---------- features ---------- */
.features {
  background: var(--green-50);
}
.features-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 1px 2px rgba(15, 61, 40, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}
.feature-inner {
  height: 100%;
}
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green-700);
}
.feature-title {
  font-size: 19px;
  margin-bottom: 8px;
}
.feature p {
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .features-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-wrap { grid-template-columns: 1fr; }
}

/* scroll reveal support */
.sr .has-animations .is-revealing {
  visibility: hidden;
}

/* ---------- form ---------- */
.pricing {
  background: #fff;
}
.form-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-card .eyebrow {
  text-align: left;
}
.form-card h3 {
  margin-bottom: 8px;
}
.form-card .form-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.form-label {
  font-weight: 600;
  color: var(--green-900);
  font-size: 14px;
  margin-bottom: 6px;
}
.form-input {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 16px;
  background: #fff;
  outline: none;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder {
  color: #9aa69e;
}
.form-input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(43, 182, 115, 0.18);
}
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}
.form-checkbox-label span {
  line-height: 1.5;
}
.form-checkbox {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--green-600);
  flex: none;
}
.success-message {
  display: none;
  text-align: center;
  color: var(--green-700);
  font-weight: 600;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .form-card { padding: 28px 22px; }
}

/* ---------- cta ---------- */
.cta {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  text-align: center;
}
.cta-inner {
  padding: 68px 24px;
}
.cta .section-title {
  color: #fff;
  margin-bottom: 14px;
}
.cta p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-cta {
  display: flex;
  justify-content: center;
}

/* ---------- modal ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(15, 40, 28, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 60px 16px;
}
.modal-content {
  background: #fff;
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 20px;
  position: relative;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.modal-content h1 {
  font-size: 23px;
  line-height: 1.3;
  color: var(--green-900);
  margin-bottom: 20px;
  padding-right: 30px;
}
.modal-content p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}
.modal-content strong {
  color: var(--green-900);
}
.close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 30px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  border: 0;
  background: none;
}
.close:hover {
  color: var(--green-700);
}
@media (max-width: 600px) {
  .modal-content { padding: 28px 20px; }
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.8);
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 56px 0 36px;
  align-items: center;
}
.footer-brand img {
  height: 56px !important;
}
.footer-info {
  text-align: right;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}
.footer-info strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.footer-info a {
  color: var(--green-300);
}
.footer-copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 760px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    justify-content: center;
  }
  .footer-info {
    text-align: center;
  }
}

/* ---------- layout ---------- */
.body-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}
