
:root{
  --bg:#ffffff;
  --text:#0f172a;           /* slate-900 */
  --muted:#475569;          /* slate-600 */
  --border:#e2e8f0;         /* slate-200 */
  --brand:#0b66c3;          /* blue */
  --accent:#f59e0b;         /* logo orange */
  --surface:#ffffff;
  --shadow:0 10px 30px rgba(2,8,23,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text); background:var(--bg);
}
a{color:var(--brand);text-decoration:none}
.container{max-width:1080px;margin:0 auto;padding:24px}
.header{
  position:sticky; top:0; z-index:10; background:rgba(255,255,255,.9);
  backdrop-filter:saturate(180%) blur(6px); border-bottom:1px solid var(--border);
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:48px;width:auto}
.brand-name{font-weight:800; letter-spacing:.2px; font-size:22px}
.actions{display:flex; gap:10px; flex-wrap:wrap}
.btn{display:inline-flex; align-items:center; gap:8px; padding:12px 16px; border-radius:12px;
     font-weight:700; border:1px solid var(--border); box-shadow:var(--shadow);}
.btn-call{background:var(--brand); color:#fff; border-color:transparent}
.btn-sms{background:#16a34a; color:#fff; border-color:transparent}
.hero{padding:64px 0 40px; text-align:center}
h1{font-size:40px; line-height:1.1; margin:0 0 10px}
.lead{color:var(--muted); font-size:18px; margin:0 0 18px}
.badges{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:8px}
.badge{border:1px solid var(--border); border-radius:999px; padding:8px 12px; color:var(--muted); background:#fff;
       box-shadow:0 4px 12px rgba(2,8,23,.04); font-size:12px}
.section{padding:28px 0}
.grid-2{display:grid; grid-template-columns:1.1fr .9fr; gap:20px}
.card{background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:22px; box-shadow:var(--shadow)}
.card h2{margin:0 0 10px}
.card p{color:var(--muted)}
label{font-size:13px; color:var(--muted); font-weight:700}
.input, select, textarea{width:100%; padding:12px; border:1px solid var(--border); border-radius:12px; margin:6px 0 12px; font-size:16px}
.input:focus, select:focus, textarea:focus{outline:none; border-color:var(--brand); box-shadow:0 0 0 3px rgba(11,102,195,.1)}
button[type=submit]{background:var(--brand); color:#fff; border:0; padding:12px 16px; border-radius:12px; font-weight:800; cursor:pointer; width:100%}
.columns{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:10px}
.col{border:1px solid var(--border); border-radius:12px; padding:14px; background:#fff; box-shadow:var(--shadow)}
.col strong{color:var(--text)}
.center{text-align:center}
.list{columns:2; column-gap:28px; margin:10px 0 0}
.list li{break-inside:avoid; margin:8px 0}
.testimonials{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:12px}
.quote{border:1px solid var(--border); border-radius:16px; padding:16px; background:#fff; box-shadow:var(--shadow); font-size:15px; color:var(--muted)}
.cta-bar{position:sticky; bottom:0; left:0; right:0; background:rgba(255,255,255,.96); border-top:1px solid var(--border); padding:12px; display:flex; gap:10px; justify-content:center}
@media(max-width:980px){ .grid-2{grid-template-columns:1fr} .list{columns:1} .testimonials{grid-template-columns:1fr} }
footer{border-top:1px solid var(--border); margin-top:30px}
.small{color:var(--muted); font-size:13px}
