
:root {
  --green: #246b3f;
  --green-dark: #17492b;
  --green-soft: #eaf7ee;
  --lime: #8acb55;
  --cream: #fffaf0;
  --orange: #f28b2e;
  --text: #18231d;
  --muted: #647067;
  --line: #dde8df;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 73, 43, .12);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.notice {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 14px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(221,232,223,.9);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--green);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.02;
  white-space: nowrap;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(36,107,63,.20);
}
.logo-mark svg { width: 31px; height: 31px; }
.logo span { font-size: clamp(21px, 2.2vw, 29px); }
.logo small {
  display: block;
  margin-top: -2px;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 850;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}
nav a:hover { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(36,107,63,.20);
  transition: .2s ease;
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn.secondary {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.orange {
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(242,139,46,.24);
}
.btn.orange:hover { background: #d66f18; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(138,203,85,.24), transparent 28%),
    linear-gradient(135deg, #f7fcf7 0%, #fff8ea 100%);
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 20px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 9px 18px rgba(22,73,43,.07);
}
h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .96;
  letter-spacing: -.065em;
}
.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  max-width: 650px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  background: #dfeee4;
}
.hero-card img {
  height: 520px;
  width: 100%;
  object-fit: cover;
}
.hero-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.58));
}
.hero-badges {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.badge {
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  text-align: center;
  padding: 13px 8px;
  backdrop-filter: blur(8px);
}
.badge b { display: block; color: var(--green); font-size: 22px; line-height: 1; }
.badge span { display: block; color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 20px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 470px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(22,73,43,.07);
  transition: .22s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 1.42/1; overflow: hidden; background: var(--green-soft); }
.card-img img { height: 100%; object-fit: cover; transition: .35s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 22px; }
.tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .055em;
  margin-bottom: 10px;
}
.card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.16; letter-spacing: -.025em; }
.card p { color: var(--muted); margin: 0; }

.compare {
  background: var(--green-dark);
  color: #fff;
}
.compare .section { padding-top: 64px; padding-bottom: 64px; }
.compare .section-head p { color: rgba(255,255,255,.75); }
.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.check {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 20px;
}
.check b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(138,203,85,.18);
  color: #c9f7b0;
  border-radius: 14px;
  font-size: 22px;
  margin-bottom: 12px;
}
.check h3 { margin: 0 0 8px; font-size: 18px; }
.check p { color: rgba(255,255,255,.75); margin: 0; font-size: 14px; }

.article-list { display: grid; gap: 14px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(22,73,43,.05);
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 24px;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.02em;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
summary::-webkit-details-marker { display: none; }
summary:after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  font-size: 24px;
}
details[open] summary:after { content: "–"; }
.details-content {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px 24px 24px;
}
.details-content p { margin: 0 0 16px; }
.details-content p:last-child { margin-bottom: 0; }

.cta-band {
  max-width: var(--max);
  margin: 0 auto 74px;
  padding: 0 20px;
}
.cta-box {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--cream), var(--green-soft));
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.cta-box h2 { margin: 0 0 8px; font-size: 34px; letter-spacing: -.035em; }
.cta-box p { margin: 0; color: var(--muted); }

.page-hero {
  background: linear-gradient(135deg, #f7fcf7 0%, #fff8ea 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 68px 20px 56px;
  text-align: center;
}
.page-hero h1 { margin-top: 14px; font-size: clamp(42px, 5vw, 64px); }
.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 58px 20px 82px;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 34px;
}
.legal-card h2 {
  margin: 30px 0 10px;
  font-size: 30px;
  letter-spacing: -.03em;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card ul { padding-left: 22px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 24px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  margin-bottom: 12px;
  font: inherit;
}
.contact-aside {
  background: var(--green-soft);
  border-radius: 22px;
  padding: 24px;
}

footer {
  background: #0f1f16;
  color: rgba(255,255,255,.78);
  padding: 48px 20px 32px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 36px;
}
footer .logo { color: #fff; }
footer .logo small { color: rgba(255,255,255,.55); }
footer p { margin: 14px 0 0; max-width: 480px; }
footer h3 { color: #fff; margin: 0 0 14px; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
footer a { color: rgba(255,255,255,.78); text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); }
.copyright {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

@media (max-width: 900px) {
  nav ul { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 46px; }
  .hero-card { min-height: 420px; }
  .hero-card img { height: 420px; }
  .cards { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 10px; }
  .cta-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav { padding: 12px 16px; }
  .logo-mark { width: 40px; height: 40px; border-radius: 14px; }
  .hero-grid, .section { padding-left: 16px; padding-right: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-badges { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  summary { font-size: 17px; padding: 18px; }
  .details-content { padding: 18px; }
  .cta-band { padding: 0 16px; }
  .cta-box { padding: 24px; }
  .legal-card { padding: 24px; }
}
