:root {
  --green-700: #1c7d4d;
  --green-600: #239d60;
  --green-500: #29b36e;
  --green-100: #e6f6ee;
  --text-900: #0f172a;
  --text-700: #334155;
  --text-100: #f8fafc;
  --gray-200: #e5e7eb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-900);
  background: #ffffff;
  line-height: 1.6;
}

.skip-link {
  position: absolute; left: -999px; top: -999px;
}
.skip-link:focus { left: 16px; top: 16px; background: var(--green-600); color: white; padding: 8px 12px; border-radius: 6px; }

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header {
  border-bottom: 1px solid var(--gray-200);
  background: #fff;
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.brand { color: var(--green-700); font-weight: 700; text-decoration: none; font-size: 1.1rem; }
.nav-list { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.nav-list a { text-decoration: none; color: var(--text-700); padding: 8px 10px; border-radius: 6px; }
.nav-list a:hover, .nav-list a[aria-current="page"] { background: var(--green-100); color: var(--green-700); }
.menu-toggle { display: none; }

@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; border: 1px solid var(--gray-200); padding: 6px 10px; border-radius: 6px; background: white; }
  .nav-list { display: none; position: absolute; right: 4%; top: 56px; background: white; border: 1px solid var(--gray-200); border-radius: 8px; padding: 8px; flex-direction: column; }
  .nav-list.open { display: flex; }
}

.hero {
  background: linear-gradient(180deg, var(--green-100), #ffffff 70%);
  padding: 56px 0;
}
.hero-inner h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 0 0 12px; }
.hero-actions { display: flex; gap: 12px; margin-top: 20px; }

.btn { display: inline-block; border-radius: 8px; padding: 12px 16px; text-decoration: none; font-weight: 600; }
.btn-primary { background: var(--green-600); color: white; }
.btn-primary:hover { background: var(--green-700); }
.btn-secondary { border: 2px solid var(--green-600); color: var(--green-700); }
.btn-secondary:hover { background: var(--green-100); }

.features { padding: 36px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card { border: 1px solid var(--gray-200); border-radius: 12px; padding: 16px; }

.trust { background: #fff; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px 0; }
.trust-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 16px; }
.trust-item .label { color: var(--text-700); font-size: .9rem; }

.cta { padding: 36px 0; background: #fff; }
.cta-inner { text-align: center; }
.cta-inline { margin: 24px 0; text-align: center; }

.values { margin-top: 24px; }
.list { padding-left: 18px; }

.site-footer { border-top: 1px solid var(--gray-200); background: #fff; }
.footer-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px 0; }
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr; } }

.address { color: var(--text-700); }
.legal h2 { margin-top: 22px; }