
:root{
  --bg:#f4faf7;
  --surface:#ffffff;
  --ink:#112126;
  --muted:#66757b;
  --green:#0aa56d;
  --green2:#48c957;
  --deep:#064f45;
  --purple:#6946e8;
  --line:#dce9e3;
  --shadow:0 18px 50px rgba(11,59,48,.10);
  --radius:26px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:linear-gradient(180deg,#eef8f4 0%,#f9fbfa 55%,#eef7f3 100%);
  color:var(--ink);
}
a{color:inherit}
.container{width:min(1120px,calc(100% - 36px));margin:auto}
header{
  position:sticky;top:0;z-index:20;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(220,233,227,.9);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;font-weight:800;font-size:1.1rem}
.logo{
  width:44px;height:44px;border-radius:14px;display:grid;place-items:center;color:#fff;font-size:23px;
  background:linear-gradient(135deg,var(--green),var(--green2));box-shadow:0 9px 24px rgba(10,165,109,.24)
}
nav{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
nav a{text-decoration:none;font-weight:700;color:#46575c}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;text-decoration:none;
  border-radius:16px;padding:13px 18px;font-weight:800;border:1px solid transparent
}
.btn-primary{color:white;background:linear-gradient(90deg,var(--green),#13bd7d);box-shadow:0 12px 30px rgba(10,165,109,.22)}
.btn-secondary{background:white;border-color:var(--line)}
.hero{padding:76px 0 54px}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:54px;align-items:center}
.eyebrow{font-size:.82rem;letter-spacing:.15em;text-transform:uppercase;font-weight:900;color:var(--green)}
h1{font-size:clamp(2.8rem,6vw,5.3rem);line-height:.96;margin:14px 0 22px;letter-spacing:-.045em}
.lead{font-size:clamp(1.1rem,2vw,1.35rem);line-height:1.62;color:var(--muted);max-width:720px}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.phone-wrap{display:flex;justify-content:center}
.phone{
  width:min(360px,90vw);padding:12px;border-radius:44px;background:#10191a;box-shadow:0 28px 80px rgba(16,45,38,.22)
}
.phone img{display:block;width:100%;border-radius:34px;background:white}
.section{padding:54px 0}
.section h2{font-size:clamp(2rem,4vw,3.3rem);margin:0 0 14px;letter-spacing:-.035em}
.section-intro{color:var(--muted);font-size:1.1rem;line-height:1.6;max-width:760px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:28px}
.card{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:28px;box-shadow:var(--shadow)}
.icon{width:50px;height:50px;border-radius:16px;display:grid;place-items:center;font-size:24px;margin-bottom:18px;background:#eefaf5}
.card h3{margin:0 0 10px;font-size:1.25rem}
.card p{margin:0;color:var(--muted);line-height:1.6}
.band{background:linear-gradient(135deg,var(--deep),#0a6e5e);color:#fff;border-radius:34px;padding:38px;margin-top:26px}
.band p{color:#d5eee8;line-height:1.65}
.faq{display:grid;gap:12px;margin-top:24px}
details{background:#fff;border:1px solid var(--line);border-radius:18px;padding:18px 20px}
summary{font-weight:800;cursor:pointer}
details p{color:var(--muted);line-height:1.6}
.notice{background:#fff8df;border:1px solid #f3df9d;border-radius:18px;padding:18px 20px;color:#695b22}
.footer{padding:42px 0 60px;color:#66757b}
.footer-row{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;border-top:1px solid var(--line);padding-top:28px}
.footer a{text-decoration:none;font-weight:700}
.prose{max-width:850px}
.prose h2{font-size:1.55rem;margin-top:34px}
.prose p,.prose li{color:#53646a;line-height:1.72}
.prose ul{padding-left:22px}
@media (max-width:850px){
  .hero-grid{grid-template-columns:1fr}
  .hero{padding-top:48px}
  .cards{grid-template-columns:1fr}
  nav a:not(.btn){display:none}
}
