:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #627069;
  --line: #dce5df;
  --paper: #fbfcfa;
  --surface: #f3f7f4;
  --green: #165a4a;
  --green-2: #0f3f35;
  --brass: #94681d;
  --coral: #bd634d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); letter-spacing: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(251,252,250,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { max-width: 1180px; min-height: 68px; margin: 0 auto; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-decoration: none; }
.mark { width: 32px; height: 32px; border-radius: 7px; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 950; }
.links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 750; }
.links a { text-decoration: none; }
.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; padding: 0 15px; background: var(--green); color: #fff; text-decoration: none; font-weight: 850; }
.button.secondary { background: #fff; color: var(--green); border: 1px solid #bad2c8; }
.hero { min-height: min(700px, calc(100vh - 118px)); display: grid; align-items: end; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(251,252,250,.98) 0%, rgba(251,252,250,.9) 38%, rgba(251,252,250,.18) 72%, rgba(251,252,250,.04) 100%); }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 2; max-width: 1180px; width: 100%; margin: 0 auto; padding: 84px 22px 72px; }
.eyebrow { color: var(--green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h1 { max-width: 760px; margin: 12px 0 18px; font-size: clamp(43px, 7vw, 84px); line-height: .95; letter-spacing: 0; }
.hero p { max-width: 650px; margin: 0; color: #405049; font-size: clamp(18px, 2.1vw, 23px); line-height: 1.45; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.band { padding: 74px 22px; }
.band.alt { background: #fff; border-block: 1px solid var(--line); }
.wrap { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 790px; margin-bottom: 30px; }
h2 { margin: 0 0 10px; font-size: clamp(31px, 4vw, 52px); line-height: 1.04; }
h3 { margin: 0 0 8px; font-size: 19px; }
p { color: var(--muted); line-height: 1.62; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 22px; }
.metric { display: grid; gap: 4px; }
.metric strong { color: var(--green); font-size: 31px; line-height: 1; }
.flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; counter-reset: flow; }
.step { border-top: 3px solid var(--green); padding: 14px 10px 0; counter-increment: flow; }
.step::before { content: counter(flow); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 999px; background: #eaf5f0; color: var(--green); font-weight: 950; margin-bottom: 10px; }
.plans { display: grid; grid-template-columns: .85fr 1fr 1fr 1fr; gap: 14px; align-items: stretch; }
.plan { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 22px; display: grid; gap: 14px; }
.plan.featured { border-color: #abcdbf; box-shadow: inset 0 0 0 1px #abcdbf; }
.price { font-size: 34px; color: var(--green); font-weight: 950; }
.plan ul { padding-left: 18px; margin: 0; color: var(--muted); line-height: 1.55; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: start; }
.quote { border-left: 3px solid var(--brass); padding-left: 16px; color: #3f4e47; font-size: 20px; line-height: 1.5; }
.contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding-top: 28px; }
.footer { padding: 34px 22px; color: var(--muted); }
.footer .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; }
.footer a { color: var(--muted); text-decoration: none; margin-right: 14px; }
.legal main { max-width: 880px; margin: 0 auto; padding: 64px 22px; }
.legal h1 { font-size: clamp(38px, 5vw, 58px); line-height: 1; margin-bottom: 14px; }
.legal h2 { font-size: 25px; margin-top: 34px; }
.legal li { margin: 8px 0; color: var(--muted); line-height: 1.55; }

@media (max-width: 920px) {
  .links { gap: 11px; font-size: 13px; }
  .links .hide-sm { display: none; }
  .hero { min-height: min(660px, calc(100vh - 96px)); }
  .hero::before { background: linear-gradient(180deg, rgba(251,252,250,.96) 0%, rgba(251,252,250,.88) 54%, rgba(251,252,250,.42) 100%); }
  .hero-inner { padding-top: 64px; }
  .grid, .grid.two, .split, .plans, .flow { grid-template-columns: 1fr; }
  .contact-panel { align-items: start; flex-direction: column; }
}
