:root {
  --bg: #edf4f1;
  --bg-alt: #dcebe4;
  --surface: #ffffff;
  --surface-strong: #0f2f23;
  --ink: #14291f;
  --muted: #4d665b;
  --line: #c8d9d0;
  --accent: #1f8a59;
  --accent-strong: #116740;
  --accent-soft: #e3f7ec;
  --danger-soft: #ffe9e7;
  --danger-ink: #8f2f28;
  --shadow: 0 20px 45px rgba(17, 39, 30, 0.11);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.52;
  background:
    radial-gradient(1000px 540px at -5% -10%, rgba(31, 138, 89, 0.2), transparent 65%),
    radial-gradient(920px 500px at 110% -16%, rgba(17, 103, 64, 0.16), transparent 66%),
    linear-gradient(180deg, var(--bg), #f4f8f6 30%, #f8fbf9 100%);
}

.background-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(transparent 94%, rgba(22, 48, 35, 0.08) 100%),
    linear-gradient(90deg, transparent 94%, rgba(22, 48, 35, 0.07) 100%);
  background-size: 18px 18px;
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(20, 41, 31, 0.12);
  backdrop-filter: blur(8px);
  background: rgba(243, 249, 246, 0.82);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: linear-gradient(145deg, #12432f, #239f65);
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 13px;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.main-nav a {
  text-decoration: none;
  color: #284338;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: #155a3b;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section {
  padding: 64px 0;
  animation: rise-in 0.6s ease both;
}

.section-alt {
  background: linear-gradient(180deg, rgba(220, 235, 228, 0.48), rgba(220, 235, 228, 0.2));
  border-top: 1px solid rgba(20, 41, 31, 0.08);
  border-bottom: 1px solid rgba(20, 41, 31, 0.08);
}

.hero {
  padding-top: 72px;
  padding-bottom: 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.chip {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(31, 138, 89, 0.3);
  background: rgba(31, 138, 89, 0.1);
  color: #135f3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #11291f;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(31px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 15ch;
}

.lead {
  margin: 16px 0 0;
  max-width: 64ch;
  font-size: 18px;
  color: #365247;
}

.check-list {
  margin: 24px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: #264438;
  font-weight: 600;
}

.hero-cta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid rgba(237, 255, 246, 0.18);
  background:
    linear-gradient(165deg, rgba(15, 47, 35, 0.95), rgba(22, 70, 51, 0.92)),
    radial-gradient(650px 180px at -10% 0%, rgba(91, 243, 160, 0.2), transparent 60%);
  box-shadow: 0 20px 45px rgba(8, 21, 16, 0.35);
  color: #e8fff2;
}

.hero-card-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(232, 255, 242, 0.82);
}

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

.facts article {
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 255, 242, 0.16);
  background: rgba(240, 255, 248, 0.05);
  padding: 12px;
}

.fact-value {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.fact-label {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(232, 255, 242, 0.82);
}

.section-head {
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #26724d;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-sub {
  margin: 12px 0 0;
  max-width: 72ch;
  color: var(--muted);
}

.section-note {
  margin: 16px 0 0;
  color: #334c41;
  font-weight: 600;
}

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

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(17, 39, 30, 0.14);
}

.card h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card p + p {
  margin-top: 6px;
}

.price-band {
  border: 1px solid rgba(17, 103, 64, 0.32);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: linear-gradient(140deg, #ebfbf1, #f7fffb);
  box-shadow: var(--shadow);
}

.price-main {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 9vw, 72px);
  line-height: 1;
  color: #0f603c;
  letter-spacing: -0.03em;
}

.price-sub {
  margin: 8px 0 0;
  font-size: 18px;
  color: #315649;
  font-weight: 600;
}

.compare-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.compare-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.compare-card.muted {
  background: #fff8f7;
  border-color: #f1cbc6;
}

.list-check,
.list-cross {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.list-check li,
.list-cross li {
  position: relative;
  padding-left: 28px;
}

.list-check li::before,
.list-cross li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.list-check li::before {
  content: "✓";
  color: #177b4e;
}

.list-cross li::before {
  content: "✕";
  color: var(--danger-ink);
}

.platform-grid .card-accent {
  background: linear-gradient(150deg, #103a2d, #1f6c4a);
  color: #ebfff3;
  border-color: rgba(235, 255, 243, 0.22);
}

.platform-grid .card-accent h3,
.platform-grid .card-accent p {
  color: inherit;
}

.partner-grid {
  align-items: stretch;
}

.partner-card {
  display: grid;
  gap: 12px;
}

.partner-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f724d;
}

.partner-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.partner-list li {
  position: relative;
  padding-left: 24px;
  color: #284338;
}

.partner-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #177b4e;
}

.partner-link {
  justify-self: start;
  margin-top: 4px;
}

.faq-list {
  display: grid;
  gap: 8px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 9px 0 0;
  color: var(--muted);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
}

.request-list {
  margin: 0;
  padding-left: 20px;
  color: #2d473b;
  display: grid;
  gap: 6px;
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #2a4338;
}

input,
textarea {
  width: 100%;
  border: 1px solid #b7cdc1;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: #13291f;
  background: #fcfffd;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(31, 138, 89, 0.28);
  outline-offset: 1px;
  border-color: #1a7e50;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

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

.site-footer {
  border-top: 1px solid rgba(20, 41, 31, 0.12);
  background: #0d271d;
  color: #e4f7ed;
}

.footer-inner {
  min-height: 108px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-brand {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  letter-spacing: 0.01em;
}

.footer-note {
  margin: 8px 0 0;
  color: rgba(228, 247, 237, 0.82);
}

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

.footer-links a {
  color: #c4f2da;
  text-decoration: none;
}

.ghost-btn,
.solid-btn,
.outline-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease, background-color 0.16s ease;
}

.ghost-btn {
  color: #1c3b2d;
  border-color: rgba(20, 41, 31, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.96);
}

.solid-btn {
  color: #ffffff;
  background: linear-gradient(150deg, var(--accent-strong), var(--accent));
}

.solid-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.outline-btn {
  color: #175e3d;
  border-color: rgba(31, 138, 89, 0.45);
  background: rgba(255, 255, 255, 0.66);
}

.outline-btn:hover {
  background: rgba(255, 255, 255, 0.94);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 66px;
    gap: 8px;
  }

  .brand-text {
    font-size: 12px;
  }

  .ghost-btn {
    display: none;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .cards-2,
  .cards-3,
  .facts,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 16px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
