:root {
  --green: #0f7a4a;
  --green-dark: #075d38;
  --green-soft: #eaf7f0;
  --lime: #b5e36b;
  --ink: #163024;
  --text: #42544b;
  --muted: #6d7d74;
  --line: #dfe9e3;
  --white: #ffffff;
  --bg: #f7fbf8;
  --shadow: 0 18px 50px rgba(18, 67, 45, .10);
  --radius: 22px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: inherit
}

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

button,
input,
textarea {
  font: inherit
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto
}

.topbar {
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
}

.topbar .container {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  margin-right: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 8px 22px rgba(15, 122, 74, .25);
}

.menu {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 700
}

.menu a {
  color: #2c4036
}

.menu a:hover,
.menu a.active {
  color: var(--green)
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--green-soft);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 13px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--green-dark)
}

.btn-light {
  background: #fff;
  border-color: var(--line);
  color: var(--green-dark)
}

.btn-soft {
  background: var(--green-soft);
  color: var(--green-dark)
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 80% 20%, rgba(181, 227, 107, .28), transparent 26%),
    linear-gradient(135deg, #f5fff9 0%, #ffffff 72%);
}

.hero:after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(15, 122, 74, .05);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
}

.eyebrow:before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor
}

.hero h1 {
  font-size: clamp(24px,4vw, 46px);
  line-height: 1.02;
  letter-spacing: -2.8px;
  margin: 0;
}

.hero p {
  max-width: 720px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px
}

.hero-card {
  background: #fff;
  border: 1px solid rgba(15, 122, 74, .12);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card .visual {
  min-height: 360px;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.visual:after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(181, 227, 107, .20)
}

.visual-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.visual h2 {
  font-size: 28px;
  line-height: 1.08;
  margin: 22px 0 12px;
  max-width: 360px
}

.visual p {
  color: #dff4e8;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 360px
}

.visual-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 2
}

.visual-list div {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat {
  padding: 24px 22px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border-right: 0
}

.stat strong {
  display: block;
  font-size: 24px;
  color: var(--green-dark)
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px
}

.section {
  padding: 86px 0
}

.section.alt {
  background: var(--bg)
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px
}

.section-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -1.8px
}

.section-head p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 25px;
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 900;
}

.card h3 {
  margin: 18px 0 9px;
  font-size: 20px
}

.card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  margin: 0
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.info-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow)
}

.info-box h3 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 14px
}

.info-box p {
  color: #e2f5ea
}

.info-box ul {
  padding-left: 18px
}

.info-box li {
  margin: 10px 0
}

.content h2 {
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -1.3px;
  margin: 0 0 16px
}

.content p {
  color: var(--text)
}

.content ul {
  color: var(--text);
  padding-left: 20px
}

.content li {
  margin: 8px 0
}

.quote-box {
  margin-top: 26px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  padding: 20px 22px;
  border-radius: 0 16px 16px 0;
  color: #315343
}

.cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center
}

.cta h2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0
}

.cta p {
  color: #def2e7;
  margin: 10px 0 0
}

.cta .btn {
  background: #fff;
  color: var(--green-dark)
}

.page-hero {
  padding: 72px 0 58px;
  background: linear-gradient(135deg, #f3fff8, #fff);
  border-bottom: 1px solid var(--line)
}

.page-hero h1 {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 14px
}

.page-hero p {
  max-width: 780px;
  color: var(--text);
  font-size: 17px
}

.legal-wrap {
  padding: 30px 0
}

.legal-content {
  margin: auto
}

.legal-content h2 {
  font-size: 22px;
  margin: 34px 0 10px
}

.legal-content h3 {
  font-size: 20px;
  margin: 26px 0 8px
}

.legal-content p,
.legal-content li {
  color: var(--text);
  line-height: 1.85
}

.legal-content ul {
  padding-left: 22px
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px
}

.contact-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px
}

.contact-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff
}

.contact-card p {
  color: #dff4e8
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px
}

.contact-item {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 15px;
  border-radius: 14px
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px
}

.field label {
  font-size: 13px;
  font-weight: 800
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  background: #fff
}

.field input:focus,
.field textarea:focus {
  border-color: var(--green)
}

.field textarea {
  min-height: 140px;
  resize: vertical
}

.notice {
  display: none;
  margin-top: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: auto
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff
}

.faq-q {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease
}

.faq-a p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text)
}

.faq-item.open .faq-a {
  max-height: 220px
}

.site-footer {
  background: #10281d;
  color: #cad9d0;
  padding: 58px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 36px
}

.footer-brand {
  color: #fff;
  margin-bottom: 14px
}

.site-footer p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 420px
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 14px
}

.site-footer a {
  display: block;
  font-size: 13px;
  margin: 8px 0;
  color: #d7e5dc
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: #aebeb4
}

@media(max-width:980px) {
  .menu {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .menu.open {
    display: flex;
    position: absolute;
    top: 75px;
    left: 5px;
    right: 5px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow)
  }

  .menu.open a {
    padding: 10px
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .card-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .stat:nth-child(2) {
    border-right: 0
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:680px) {
  .container {
    width: min(100% - 28px, 1180px)
  }

  .topbar .container {
    font-size: 11px
  }

  .navbar {
    min-height: 68px
  }

  .brand {
    font-size: 18px
  }

  .brand-mark {
    width: 36px;
    height: 36px
  }

  .hero {
    padding: 56px 0 42px
  }

  .hero h1 {
    font-size: 24px;
    letter-spacing: -1.8px
  }

  .hero p {
    font-size: 16px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-card .visual {
    min-height: 320px
  }

  .stats-grid {
    grid-template-columns: 1fr
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important
  }

  .stat:last-child {
    border-bottom: 0 !important
  }

  .section {
    padding: 64px 0
  }

  .card-grid {
    grid-template-columns: 1fr
  }

  .page-hero {
    padding: 54px 0 40px
  }

  .page-hero h1 {
    font-size: 32px
  }

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

  .cta h2 {
    font-size: 26px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column
  }
}