:root {
  --bg: #ffffff;
  --text: #162127;
  --muted: #5a6a72;
  --line: #dce6e3;
  --soft: #f5faf8;
  --soft-2: #eef7f3;
  --brand: #2f8f68;
  --brand-dark: #22684c;
  --shadow: 0 16px 40px rgba(18, 43, 33, 0.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 32px)); }
.center-text { text-align: center; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; color: #fff; font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: var(--shadow);
}
.brand-text strong, .brand-text small { display: block; }
.brand-text small { color: var(--muted); }
.site-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-nav a { color: var(--muted); font-weight: 700; }
.site-nav a:hover { color: var(--brand-dark); }
.menu-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; padding: 10px 12px; font-size: 1.1rem; cursor: pointer;
}

.hero {
  padding: 72px 0 44px;
  background:
    radial-gradient(circle at top right, rgba(47,143,104,0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; align-items: center;
}
.eyebrow {
  display: inline-block; margin-bottom: 14px; padding: 8px 14px; border-radius: 999px;
  background: var(--soft-2); color: var(--brand-dark); font-weight: 700; font-size: .95rem;
}
h1, h2, h3 { margin: 0 0 14px; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 14px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0 22px; border-radius: 999px; font-weight: 700; transition: .2s ease;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); background: var(--brand-dark); }
.btn-secondary { border: 1px solid var(--line); background: #fff; }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-dark); }
.hero-panel { display: grid; gap: 18px; }
.hero-box, .panel, .card, .stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-box { padding: 28px; }
.hero-icon {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.8rem; color: #fff; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-card { padding: 20px; }
.stat-card strong { display: block; font-size: 1.15rem; margin-bottom: 8px; }

.section { padding: 72px 0; }
.alt { background: var(--soft); }
.section-head { margin-bottom: 28px; }
.section-tag {
  display: inline-block; margin-bottom: 10px; color: var(--brand-dark); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; font-size: .82rem;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel { padding: 28px; }
.subtle-panel { background: linear-gradient(180deg, #fff, #fbfefd); }
.feature-list, .clean-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list span {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--soft-2); color: var(--brand-dark); font-weight: 700; flex-shrink: 0;
}
.clean-list li {
  position: relative; padding-left: 18px; margin: 10px 0; color: var(--text);
}
.clean-list li::before {
  content: "•"; position: absolute; left: 0; color: var(--brand);
}
.cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.small-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
.card { padding: 26px; }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--soft-2); color: var(--brand-dark); font-size: 1.45rem; margin-bottom: 16px;
}
.mission-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #fff;
}
.mission-band h2, .mission-band .section-tag { color: #fff; }
.mission-band p { color: rgba(255,255,255,.9); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 700;
}
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { text-align: left; padding: 16px; border-bottom: 1px solid var(--line); }
thead th { background: var(--soft-2); color: var(--brand-dark); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card a { display: block; margin-top: 10px; color: var(--brand-dark); font-weight: 700; word-break: break-word; }
.placeholder-panel { background: linear-gradient(180deg, #fff, #f8fbfa); }
.site-footer {
  padding: 28px 0 40px; border-top: 1px solid var(--line); background: #fff;
}
.footer-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid, .cards-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; right: 16px; top: 78px; width: min(300px, calc(100% - 32px));
    background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; box-shadow: var(--shadow);
    flex-direction: column; gap: 12px;
  }
  .site-nav.open { display: flex; }
  .hero-grid, .two-col, .contact-grid, .cards-grid, .stats-grid, .small-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  h1 { font-size: 2.35rem; }
}
