:root {
  --green-primary: #81b92a;
  --green-dark: #5e8f1f;
  --green-light: #e8f4d8;
  --blue-primary: #53acde;
  --blue-dark: #2f7da5;
  --blue-light: #eaf6fc;
  --orange-primary: #ef6b22;
  --orange-dark: #b9561e;
  --orange-light: #fff1e8;
  --black: #3c3a39;
  --black-soft: #4c4947;
  --text-soft: #6a6765;
  --text-light: #8b8784;
  --bg-page: #f4f4ef;
  --bg-card: #fff;
  --bg-soft: #f6f3ed;
  --bg-muted: #ece7df;
  --border: #ded8cf;
  --border-strong: #cfc7bc;
  --shadow-soft: 0 10px 24px #3c3a391a;
  --shadow-card: 0 8px 18px #3c3a3914;
  --shadow-strong: 0 14px 30px #3c3a3924;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --container: 1240px;
  --header-height: 110px;
  --transition-fast: .18s ease;
  --transition-base: .25s ease;
}

*, :before, :after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--bg-page);
  min-height: 100%;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  margin: 0;
  padding: 0;
  font-family: Archivo Condensed, Arial, sans-serif;
}

body {
  min-height: 100vh;
}

img, picture, svg, canvas {
  max-width: 100%;
  display: block;
}

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

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

input, textarea, select {
  width: 100%;
}

textarea {
  resize: vertical;
}

ul, ol {
  margin: 0;
  padding: 0;
}

p, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

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

.main-content {
  z-index: 2;
  background: var(--bg-page);
  padding-block: 0 36px;
  position: relative;
}

.section-shell {
  margin: 0;
}

.section-shell-content {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  width: 100%;
  box-shadow: var(--shadow-soft);
  background: var(--bg-card);
  padding: 38px 26px;
  overflow: hidden;
}

.section-gap {
  height: 24px;
}

.skip-link {
  z-index: 9999;
  color: var(--black);
  box-shadow: var(--shadow-card);
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  position: absolute;
  top: 10px;
  left: -9999px;
}

.skip-link:focus {
  left: 10px;
}

:focus-visible {
  outline-offset: 2px;
  outline: 3px solid #53acde6b;
}

h1, h2, h3, h4 {
  color: var(--black);
  letter-spacing: -.01em;
}

.section-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  display: flex;
}

.section-head h2, .section-shell-content > h2 {
  margin: 10px 0 0;
  font-size: 40px;
  line-height: 1;
}

.section-head p, .section-text, .section-text.narrow {
  color: var(--text-soft);
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

.section-text.narrow {
  max-width: 760px;
}

.section-badge, .badge-inline {
  letter-spacing: .04em;
  border-radius: 999px;
  align-items: center;
  width: fit-content;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  display: inline-flex;
}

.section-badge {
  text-transform: uppercase;
  min-height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

.badge-inline {
  min-height: 30px;
  padding: 0 12px;
  font-size: 12px;
}

.badge-blue {
  background: var(--blue-light);
  color: var(--blue-dark);
  border: 1px solid #b7deef;
}

.badge-light, .badge-green {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #b6d77c;
}

.badge-orange {
  background: var(--orange-light);
  color: #9f5228;
  border: 1px solid #f4b18d;
}

.badge-white-blue {
  color: #fff;
  background: #ffffff29;
  border: 1px solid #ffffff3d;
}

.badge-light-orange {
  color: #fff;
  background: #ffffff2e;
  border: 1px solid #ffffff47;
}

.btn, .small-btn {
  min-height: 46px;
  transition: transform var(--transition-fast),
    opacity var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
  border: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.small-btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 14px;
}

.btn:hover, .small-btn:hover {
  opacity: .96;
  transform: translateY(-1px);
}

.btn-green, .small-btn.solid {
  background: var(--green-primary);
  color: #fff;
  box-shadow: 0 8px 16px #81b92a38;
}

.btn-blue, .small-btn {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 8px 16px #53acde38;
}

.btn-orange {
  background: var(--orange-primary);
  color: #fff;
  box-shadow: 0 8px 16px #ef6b2238;
}

.btn-outline-dark {
  color: var(--black);
  border: 2px solid var(--black);
  background: none;
}

.btn-outline-dark:hover {
  background: var(--black);
  color: #fff;
}

.btn-outline-green {
  color: var(--green-dark);
  border: 2px solid var(--green-primary);
  background: none;
}

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

.btn-outline-blue {
  color: var(--blue-dark);
  border: 2px solid var(--blue-primary);
  background: none;
}

.btn-outline-blue:hover {
  background: var(--blue-primary);
  color: #fff;
}

.cards-grid {
  gap: 20px;
  display: grid;
}

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

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

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.card, .metric-card, .partner-card, .panel-card, .info-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.card, .info-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 22px;
}

.card-white {
  border: 1px solid var(--border);
  background: #fff;
}

.card-white:first-child {
  border-top: 6px solid var(--green-primary);
}

.card-white:last-child {
  border-top: 6px solid var(--blue-primary);
}

.card-top {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  display: flex;
}

.card h3, .info-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.05;
}

.card p, .info-card p {
  color: var(--text-soft);
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.card-highlight {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.card-actions {
  margin-top: 18px;
}

.color-green {
  color: var(--green-primary);
}

.color-blue {
  color: var(--blue-primary);
}

.color-orange {
  color: var(--orange-primary);
}

.icon-box {
  border-radius: 16px;
  place-items: center;
  width: 52px;
  height: 52px;
  font-size: 26px;
  font-weight: 800;
  display: grid;
}

.green-box {
  background: var(--green-light);
  color: var(--green-dark);
}

.blue-box {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.orange-box {
  background: var(--orange-light);
  color: var(--orange-primary);
}

.metric-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.metric-card:before {
  content: "";
  width: 7px;
  position: absolute;
  inset: 0 auto 0 0;
}

.metric-green:before {
  background: var(--green-primary);
}

.metric-blue:before {
  background: var(--blue-primary);
}

.metric-orange:before {
  background: var(--orange-primary);
}

.metric-dark:before {
  background: var(--black);
}

.metric-label {
  color: var(--text-soft);
  margin-bottom: 10px;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.metric-value {
  color: var(--black);
  margin-bottom: 8px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.metric-hint {
  color: var(--text-soft);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.side-panel {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 18px;
}

.panel-title {
  color: var(--black);
  margin-bottom: 14px;
  font-size: 22px;
  display: block;
}

.panel-list {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.panel-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
}

.panel-card-title {
  color: var(--black);
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.panel-card-subtitle, .panel-card-meta {
  color: var(--text-soft);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.panel-card-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  display: flex;
}

.map-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: #fff;
  margin-top: 22px;
  padding: 12px;
}

.map-box {
  background: #ddd;
  border-radius: 18px;
  width: 100%;
  min-height: 430px;
  overflow: hidden;
}

.partner-grid {
  gap: 18px;
  display: grid;
}

.partner-grid-logos {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
}

.partner-card {
  border: 1px solid var(--border);
  background: #fff;
}

.logo-card {
  border-top: 5px solid var(--green-primary);
  justify-content: center;
  align-items: center;
  min-height: 120px;
  padding: 18px;
  display: flex;
}

.logo-card:nth-child(2) {
  border-top-color: var(--blue-primary);
}

.logo-card:nth-child(3) {
  border-top-color: var(--orange-primary);
}

.logo-card:nth-child(4) {
  border-top-color: var(--black);
}

.partner-logo {
  object-fit: contain;
  width: auto;
  max-height: 58px;
}

.faq-list {
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  display: flex;
}

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

.faq-item summary {
  cursor: pointer;
  color: var(--black);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
  display: flex;
}

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

.faq-item p {
  color: var(--text-soft);
  margin: 0;
  padding: 0 20px 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.faq-icon {
  transition: transform var(--transition-fast);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.hero {
  margin: 0;
}

.hero-shell {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  width: 100%;
  box-shadow: var(--shadow-soft);
  background: #fff;
  margin-top: 18px;
  overflow: hidden;
}

.hero-split {
  grid-template-columns: 55% 45%;
  align-items: stretch;
  display: grid;
}

.hero-copy {
  flex-direction: column;
  justify-content: center;
  padding: 52px 44px 42px;
  display: flex;
}

.hero-image {
  justify-content: center;
  align-items: stretch;
  padding: 24px 28px 24px 0;
  display: flex;
}

.hero-title {
  margin: 18px 0 14px;
  line-height: .98;
}

.hero-title-line {
  color: var(--black);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  display: block;
}

.hero-title-highlight {
  color: var(--green-primary);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  display: block;
}

.hero-description {
  max-width: 620px;
  color: var(--text-soft);
  margin: 0 0 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  display: flex;
}

.hero-bottom-note {
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  padding-top: 16px;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.hero-carousel {
  background: var(--black);
  border-radius: var(--radius-xl);
  width: 100%;
  min-height: 460px;
  box-shadow: var(--shadow-soft);
  justify-content: center;
  align-items: center;
  padding: 24px 20px 58px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-carousel-track {
  width: 100%;
  min-height: 380px;
  position: relative;
}

.hero-slide {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 380px;
  display: none;
}

.hero-slide.is-active {
  display: flex;
}

.hero-slide img {
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-height: 360px;
}

.carousel-btn {
  z-index: 2;
  color: #fff;
  background: #ffffff2e;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 12px;
}

.carousel-next {
  right: 12px;
}

.carousel-dots {
  gap: 10px;
  display: flex;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-dot {
  background: #ffffff47;
  border: 0;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.carousel-dot.is-active {
  background: var(--green-primary);
}

.section-green .section-shell-content {
  background: #f8fbf1;
  border-color: #cfe4a9;
}

.section-blue .section-shell-content {
  background: #f4fbff;
  border-color: #b9def1;
}

.section-orange .section-shell-content {
  background: #fff7f1;
  border-color: #f3c8ad;
}

.section-white .section-shell-content {
  background: #fff;
}

.site-header {
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: #f4f4eff5;
  position: sticky;
  top: 0;
  box-shadow: 0 6px 18px #3c3a3914;
}

.header-inner {
  min-height: var(--header-height);
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  display: flex;
}

.brand-logo {
  width: 210px;
}

.main-nav {
  gap: 14px;
  display: flex;
}

.nav-link {
  min-height: 42px;
  transition: background var(--transition-fast), color var(--transition-fast);
  border-radius: 999px;
  align-items: center;
  padding: 0 18px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  display: flex;
}

.nav-link:hover {
  background: #e7e4de;
}

.nav-link.active {
  background: var(--green-primary);
  color: #fff;
}

.header-cta {
  background: var(--orange-primary);
  color: #fff;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 26px;
  font-family: Inter, sans-serif;
  font-weight: 900;
  box-shadow: 0 10px 22px #ef6b2259;
}

.site-footer {
  background: var(--black);
  border-radius: var(--radius-xl);
  margin-top: 30px;
}

.footer-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  display: flex;
}

.footer-title {
  color: #fff;
  font-weight: 800;
}

.footer-links a {
  color: #fff;
  margin-right: 10px;
}

[data-reveal] {
  opacity: 0;
  transition: opacity .5s, transform .5s;
  transform: translateY(18px);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

@media (width <= 1100px) {
  .hero-split, .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    padding: 0 22px 22px;
  }

  .cards-grid.four, .partner-grid-logos {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (width <= 860px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-copy, .section-shell-content {
    padding: 22px;
  }

  .cards-grid.two, .cards-grid.three, .cards-grid.four, .partner-grid-logos {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 360px;
  }

  .hero-carousel-track, .hero-slide {
    min-height: 280px;
  }

  .hero-slide img {
    max-height: 240px;
  }

  .section-gap {
    height: 18px;
  }
}

@media (width <= 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero-title-line {
    font-size: 28px;
  }

  .hero-title-highlight {
    font-size: 38px;
  }

  .hero-description, .section-head p, .section-text, .faq-item p {
    font-size: 16px;
  }

  .section-head h2, .section-shell-content > h2 {
    font-size: 28px;
  }

  .metric-value {
    font-size: 44px;
  }

  .map-box {
    min-height: 320px;
  }

  .hero-actions, .panel-card-actions {
    flex-direction: column;
  }

  .btn, .small-btn {
    width: 100%;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}
