:root {
  --brand: #16a34a;
  --brand-bright: #22c55e;
  --brand-dark: #14532d;
  --brand-deep: #0b2f1a;
  --ink: #0f172a;
  --muted: #475569;
  --line: #dbe3df;
  --paper: #f6f8f7;
  --white: #fff;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--brand-dark); text-underline-offset: 3px; }
img { max-width: 100%; }
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: #fff; padding: 10px 14px; }
.skip-link:focus { left: 8px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  color: #e6fff0;
  background: rgba(20, 83, 45, .98);
  box-shadow: 0 1px 0 rgba(255,255,255,.12);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-division { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.38); font-weight: 700; letter-spacing: .02em; }
.links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.links a { color: #e6fff0; font-weight: 700; text-decoration: none; }
.links a:not(.nav-cta):hover, .links a.current { color: #fff; }
.links a.current { box-shadow: inset 0 -2px var(--brand-bright); }
.nav-cta { padding: 9px 13px; border: 1px solid rgba(255,255,255,.55); border-radius: 8px; }
.nav-cta:hover { background: #fff; color: var(--brand-dark); }
.menu-btn { display: none; margin-left: auto; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.45); border-radius: 8px; padding: 9px 12px; font: inherit; }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 86px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(34,197,94,.28), transparent 27%),
    linear-gradient(120deg, var(--brand-deep), var(--brand-dark) 68%, #0f4024);
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent 15%, #000);
}
.page-hero h1 { max-width: 900px; margin: 0; color: #fff; font-size: clamp(2.45rem, 5vw, 4.7rem); line-height: 1.03; letter-spacing: -.04em; }
.page-hero .lead { max-width: 770px; margin: 24px 0 0; color: #dcefe3; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.eyebrow { margin: 0 0 18px; color: #8cf0ad; font-size: .8rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.page-content > section { padding: 72px 0; }
.page-content > section:nth-child(even) { background: #fff; }
.page-content h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 3.5vw, 2.75rem); line-height: 1.15; letter-spacing: -.025em; }
.page-content h3 { margin: 0 0 8px; font-size: 1.18rem; line-height: 1.3; }
.page-content p { margin: 0 0 1em; color: var(--muted); }
.section-intro { max-width: 760px; font-size: 1.08rem; }
.grid { display: grid; gap: 20px; margin-top: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 8px 28px rgba(15,23,42,.055); }
.card-icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 20px; border-radius: 10px; color: var(--brand-dark); background: #dcfce7; font-size: 1.2rem; font-weight: 800; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.tag-list li { padding: 7px 11px; border: 1px solid #bbd7c4; border-radius: 999px; color: var(--brand-dark); background: #f0fdf4; font-size: .9rem; font-weight: 700; }
.split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 56px; align-items: start; }
.proof-panel { padding: 30px; color: #fff; border-radius: 16px; background: var(--brand-dark); }
.proof-panel h3, .proof-panel p { color: #fff; }
.proof-panel ul { margin: 18px 0 0; padding-left: 20px; }
.proof-panel li { margin: 8px 0; color: #dcefe3; }
.steps { counter-reset: steps; }
.step { position: relative; padding-left: 62px; }
.step::before { counter-increment: steps; content: counter(steps); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: var(--brand-dark); font-weight: 800; }
.notice { padding: 18px 20px; border-left: 4px solid var(--brand); background: #ecfdf3; }
.notice p:last-child { margin-bottom: 0; }
.cta-band { color: #fff; background: var(--brand-deep) !important; }
.cta-band .cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-band h2, .cta-band p { color: #fff; }
.button { display: inline-block; padding: 12px 18px; border-radius: 9px; color: #fff; background: var(--brand); box-shadow: 0 6px 18px rgba(22,163,74,.22); font-weight: 800; text-decoration: none; }
.button:hover { background: var(--brand-bright); }
.button-outline { margin-left: 9px; border: 1px solid rgba(255,255,255,.65); background: transparent; box-shadow: none; }
.contact-card { max-width: 820px; }
.contact-row { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row strong { color: var(--ink); }

.site-footer { padding: 54px 0 24px; color: #cbd5e1; background: #081d11; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-grid p { color: #94a3b8; }
.footer-grid h2 { margin: 0 0 12px; color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid > div > a:not(.footer-brand) { display: block; margin: 7px 0; color: #cbd5e1; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 800; text-decoration: none; }
.footer-brand img { width: 44px; height: 44px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #94a3b8; font-size: .9rem; }

@media (max-width: 820px) {
  .menu-btn { display: inline-flex; align-items: center; gap: 8px; }
  .links { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 18px 20px 22px; background: var(--brand-dark); box-shadow: 0 12px 20px rgba(0,0,0,.2); }
  .nav.open .links { display: grid; gap: 8px; }
  .links a { padding: 8px 0; }
  .links a.current { box-shadow: none; }
  .nav-cta { padding: 10px 12px !important; text-align: center; }
  .grid-3, .grid-2, .split, .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 68px 0 64px; }
  .page-content > section { padding: 54px 0; }
  .cta-band .cta-inner { display: block; }
  .cta-band .button { margin-top: 10px; }
  .contact-row { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand-division { font-size: .88rem; }
  .button-outline { margin-left: 0; }
  .footer-bottom { display: grid; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

