:root{
  --blue:#1e88e5;
  --orange:#f57c00;
  --dark:#1a1a1a;
  --muted:#6b7280;
  --bg:#f8fafc;
  --white:#ffffff;
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--dark);background:var(--bg);line-height:1.6}
.container{max-width:1000px;margin:0 auto;padding:24px 16px}
header{background:var(--white);border-bottom:1px solid #e5e7eb;position:sticky;top:0;z-index:10}
.topbar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:64px;filter: drop-shadow(0 2px 8px rgba(0,0,0,.18));}
.brand .name{font-size:22px;font-weight:800;color:var(--dark);}
.phone{font-weight:800;color:var(--blue)}
nav a{margin:0 10px;text-decoration:none;color:var(--dark);font-weight:600}
nav a.active{color:var(--blue)}
.hero{background:var(--white);padding:26px;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.06);text-align:center}
.hero h1{margin:0 0 8px}
.badges{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:10px}
.badge{background:#eef2ff;color:#1e3a8a;border:1px solid #c7d2fe;padding:6px 10px;border-radius:999px;font-weight:700;font-size:13px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-top:20px}
.card{background:var(--white);border:1px solid #e5e7eb;border-radius:14px;padding:16px;box-shadow:0 6px 22px rgba(0,0,0,.05)}
.card h3{margin-top:0}
.pricing .price{font-size:32px;font-weight:900}
.cta{display:inline-block;background:var(--blue);color:#fff;text-decoration:none;font-weight:800;padding:12px 18px;border-radius:10px;margin-top:10px}
footer{background:var(--white);border-top:1px solid #e5e7eb;margin-top:30px}
footer .foot{display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between;padding:18px 0;color:var(--muted)}
.quick-call{position:fixed;right:18px;bottom:18px;background:var(--orange);color:#fff;padding:14px 18px;border-radius:999px;text-decoration:none;font-weight:900;box-shadow:0 10px 24px rgba(0,0,0,.2);z-index:999}
.quick-call::before{content:"📞 ";}

/* Buttons */
.btn-blue{background:var(--blue);color:#fff}
.btn-outline{border:2px solid var(--blue);color:var(--blue);background:transparent}
.btn{display:inline-block;text-decoration:none;font-weight:800;padding:10px 16px;border-radius:10px}

/* Table */
.table{width:100%;border-collapse:collapse}
.table th,.table td{border:1px solid #e5e7eb;padding:10px;text-align:left}
.table th{background:#f3f4f6}
