:root {
  --green: #76b900;
  --green-dark: #4d8f11;
  --green-soft: #eff8e7;
  --charcoal: #111827;
  --slate: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(17, 24, 39, .10);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--slate);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 10px;
  z-index: 100;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, .85);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; width: 178px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: .72rem .9rem;
  color: var(--slate);
  font-size: .94rem;
  font-weight: 650;
  border-radius: 999px;
}
.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--green-soft);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px auto;
  border-radius: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .82rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: .96rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: var(--charcoal);
  box-shadow: 0 12px 30px rgba(118, 185, 0, .24);
}
.btn-primary:hover { background: #86ce10; }
.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--green); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.hero {
  padding: 88px 0 70px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .96fr);
  align-items: center;
  gap: 54px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 18px;
  padding: .38rem .75rem;
  border: 1px solid #d5ecc1;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}
.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero .lead,
.page-hero .lead {
  max-width: 720px;
  margin-top: 24px;
  color: #4b5563;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 650;
}
.trust-line span {
  padding: .42rem .72rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -28px -22px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(118, 185, 0, .18);
  filter: blur(14px);
  z-index: -1;
}
.hero-visual img { border-radius: 34px; box-shadow: var(--shadow); }

.section { padding: 78px 0; }
.section-sm { padding: 54px 0; }
.section-white { background: var(--white); }
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-dark .muted,
.section-dark .section-head p { color: #cbd5e1; }
.section-dark .card { color: var(--slate); }

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-dark .section-head h2 { color: var(--white); }
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, .05);
}
.metric-card strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--slate);
  font-weight: 700;
}

.grid-3,
.grid-4,
.grid-5,
.grid-2 {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, .045);
}
.card h3 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: 1.15rem;
  line-height: 1.25;
}
.card p { color: var(--muted); margin-bottom: 0; }
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 850;
}
.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green-dark);
  font-weight: 800;
}
.card-link:hover { text-decoration: underline; }

.icon-card {
  position: relative;
  padding-top: 64px;
}
.icon-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #b6ed65);
  box-shadow: 0 10px 24px rgba(118, 185, 0, .23);
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: start;
}
.panel {
  background: linear-gradient(135deg, var(--charcoal), #253044);
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.panel h2 { margin: 0 0 16px; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.08; letter-spacing: -.035em; }
.panel p { color: #d1d5db; }
.panel .btn { margin-top: 14px; }

.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}
.step h3 { margin: 0 0 4px; color: var(--charcoal); font-size: 1.06rem; }
.step p { margin: 0; color: var(--muted); }

.region-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}
.map-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.region-list {
  display: grid;
  gap: 12px;
}
.region-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 18px;
}
.region-item strong { display: block; color: var(--charcoal); margin-bottom: 4px; }
.region-item span { color: var(--muted); font-size: .95rem; }

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--charcoal), #223047);
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-band h2 { margin: 0 0 8px; font-size: clamp(1.75rem, 3vw, 2.7rem); letter-spacing: -.035em; line-height: 1.08; }
.cta-band p { color: #d1d5db; margin: 0; max-width: 820px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero {
  padding: 74px 0 58px;
  background: radial-gradient(circle at 80% 20%, rgba(118, 185, 0, .17), transparent 34%), var(--white);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}
.breadcrumb a { color: var(--green-dark); }

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 24, 39, .04);
}
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: var(--charcoal); background: #f3f6f4; font-size: .92rem; }
td { color: var(--muted); }
tr:last-child td { border-bottom: 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--charcoal); font-weight: 750; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem .95rem;
  color: var(--slate);
  background: var(--white);
  font: inherit;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(118, 185, 0, .20);
  border-color: var(--green);
}
.form-note { margin-top: 12px; color: var(--muted); font-size: .9rem; }

.contact-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-card h2 { margin: 0 0 14px; }
.contact-card p, .contact-card a { color: #d1d5db; }
.contact-detail { margin-top: 18px; display: grid; gap: 14px; }
.contact-detail strong { display: block; color: var(--white); margin-bottom: 3px; }

.site-footer {
  padding: 56px 0 26px;
  background: #0b101a;
  color: #d1d5db;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 28px;
}
.footer-logo { width: 166px; filter: brightness(0) invert(1); opacity: .96; }
.footer-col h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}
.footer-col p { color: #9ca3af; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: #cbd5e1; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #9ca3af;
  font-size: .92rem;
}
.footer-bottom div { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .region-grid { grid-template-columns: 1fr; }
  .metrics, .grid-4, .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { max-width: 680px; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav { height: 72px; }
  .logo { width: 150px; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .9rem 1rem; }
  .nav-menu .mobile-cta { display: inline-flex; margin-top: 6px; }
  .hero { padding: 62px 0 52px; }
  .section { padding: 58px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (min-width: 821px) {
  .nav-menu .mobile-cta { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .metrics, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { letter-spacing: -.04em; }
  .hero-cta, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .card, .metric-card, .panel, .form-card, .contact-card, .cta-band { padding: 22px; border-radius: 20px; }
  .step { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
