:root {
  --green: #2F8F3A;
  --green-dark: #1F5F2B;
  --green-soft: #EAF5EC;
  --bg: #F7F9F7;
  --text: #1E1E1E;
  --muted: #5F6B63;
  --white: #FFFFFF;
  --border: #DDE8DE;
  --shadow: 0 18px 45px rgba(31, 95, 43, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { height: 230px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .96rem; color: var(--muted); font-weight: 700; }
.nav-links a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); border-bottom-color: var(--green); }
.hero {
  overflow: hidden;
  background: radial-gradient(circle at 80% 18%, rgba(47,143,58,.15), transparent 34%), linear-gradient(135deg, #ffffff 0%, #f7fbf8 70%, #eff8f0 100%);
  padding: 88px 0 82px;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 56px; }
.eyebrow { color: var(--green); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; margin-bottom: 14px; }
h1, h2, h3 { line-height: 1.15; margin: 0; color: var(--text); }
h1 { font-size: clamp(2.3rem, 5vw, 4.55rem); letter-spacing: -.055em; max-width: 760px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.22rem; margin-bottom: 12px; }
.lead { font-size: 1.13rem; color: var(--muted); max-width: 710px; margin-top: 24px; }
.hero-image-wrap, .banner-image-wrap {
  border: 1px solid var(--border);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.hero-image, .banner-image { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-image-wrap, .hero-image-wrap .hero-image { min-height: 430px; }
.banner-image-wrap { margin-top: 36px; max-height: 430px; }
.banner-image-wrap .banner-image { max-height: 430px; }
.section { padding: 82px 0; }
.section.alt { background: var(--bg); }
.narrow { max-width: 850px; }
.section-kicker { color: var(--green); font-weight: 900; margin-bottom: 10px; }
.section-text { color: var(--muted); font-size: 1.06rem; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 26px; padding: 30px; box-shadow: 0 12px 35px rgba(31, 95, 43, .055); }
.card p, .legal-content p, .legal-content li { color: var(--muted); }
.card-icon { width: 46px; height: 46px; border-radius: 16px; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; font-weight: 900; margin-bottom: 20px; }
.dark-band { background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.13), transparent 35%), var(--green-dark); color: var(--white); }
.dark-band h2, .dark-band h3 { color: var(--white); }
.dark-band p { color: rgba(255,255,255,.82); }
.benefits { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
.benefit { border: 1px solid rgba(255,255,255,.22); border-radius: 18px; padding: 18px; background: rgba(255,255,255,.06); font-weight: 800; font-size: .95rem; }
.page-hero { background: var(--bg); padding: 76px 0 62px; border-bottom: 1px solid var(--border); }
.page-hero p { max-width: 770px; }
.content-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: start; }
.info-box { border: 1px solid var(--border); border-radius: 24px; background: var(--white); padding: 28px; box-shadow: var(--shadow); }
.info-box strong { color: var(--green-dark); }
.info-box a, .legal-content a { color: var(--green-dark); font-weight: 800; }
.legal-content { max-width: 900px; }
.legal-content h2 { margin-top: 44px; font-size: 1.6rem; }
.legal-content h3 { margin-top: 30px; }
.placeholder { background: #fff7d6; border: 1px solid #eadb93; padding: 2px 6px; border-radius: 8px; color: #725f00; }
.site-footer { background: #0f2714; color: rgba(255,255,255,.82); padding: 48px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 34px; }
.footer-title { color: white; font-weight: 900; font-size: 1.15rem; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: white; }
.copyright { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .92rem; color: rgba(255,255,255,.62); }
@media (max-width: 860px) {
  .navbar { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { flex-wrap: wrap; gap: 14px 20px; }
  .hero { padding: 54px 0; }
  .hero-grid, .content-grid { grid-template-columns: 1fr; }
  .hero-image-wrap, .hero-image-wrap .hero-image { min-height: 280px; }
  .cards, .benefits, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}