:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --card:#f8fafc;
  --accent:#16a34a;
  --accent2:#2563eb;
  --shadow: 0 10px 30px rgba(2,6,23,.10);
  --radius: 18px;
  --max: 1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:18px; width:auto; height:auto; padding:10px 12px; background:#fff; border:1px solid var(--line); border-radius:12px; z-index:999}
header{
  background:#fff;
  border-bottom:1px solid var(--line);
}
.topbar{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0; flex-wrap:wrap}
.brand{flex:1 1 320px; min-width:260px}
nav{flex:1 1 520px; justify-content:center}
.cta{flex:0 0 auto}
/* If nav starts wrapping, move it to its own row */
@media (max-width: 1180px){
  nav{order:3; width:100%; justify-content:flex-start}
  .cta{order:2}
  .brand{order:1}
}
  .cta{order:2}
  .brand{order:1}
}

.brand{display:flex; gap:10px; align-items:center; text-decoration:none}
.logo{display:none}
.brand b{display:block; font-size:15px; letter-spacing:.2px}
.brand span{display:block; font-size:12px; color:var(--muted); margin-top:1px}
nav{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
nav a{
  text-decoration:none;
  font-weight:800;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
nav a:hover{background:var(--card); color:var(--text)}
nav a[aria-current="page"]{background:rgba(22,163,74,.10); color:#064e3b; border:1px solid rgba(22,163,74,.25)}
.cta{display:flex; gap:12px; align-items:center}
.phone{font-weight:950; font-size:22px; letter-spacing:.3px; color:var(--text); text-decoration:none; white-space:nowrap}
.phone small{display:block; font-weight:800; color:var(--muted); font-size:12px; margin-top:2px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  font-weight:950;
  white-space:nowrap;
}
.btn.primary{
  border-color: rgba(22,163,74,.35);
  background: linear-gradient(135deg, rgba(22,163,74,.18), rgba(22,163,74,.10));
  color: #064e3b;
}
.btn.alt{
  border-color: rgba(37,99,235,.30);
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(37,99,235,.08));
  color: #1e3a8a;
}
.hamburger{display:none}

.hero{
  padding: 36px 0 14px;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(37,99,235,.08), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(22,163,74,.08), transparent 60%);
  border-bottom:1px solid var(--line);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  align-items:stretch;
}
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: var(--shadow);
}
h1{margin:0 0 10px; font-size:40px; line-height:1.06}
.sub{margin:0 0 14px; color:var(--muted); font-size:16px}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  font-size:13px;
  font-weight:900;
  color: #0b1220;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: var(--card);
}
.kpis{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:14px}
.kpi{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--card);
}
.kpi b{display:block; font-size:14px}
.kpi span{display:block; color:var(--muted); font-size:12px; margin-top:2px}
.right .price{color:var(--muted); margin:0 0 6px}
.right .big{font-size:32px; font-weight:950; margin:0 0 6px}
.right ul{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.section{padding:26px 0}
.section h2{margin:0 0 12px; font-size:24px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--card);
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}
.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.pricecard{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:#fff;
  padding:16px;
  box-shadow: var(--shadow);
}
.pricecard .tag{
  display:inline-block;
  font-weight:950;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(37,99,235,.25);
  background: rgba(37,99,235,.08);
  color: #1e3a8a;
}
.pricecard .amt{font-size:22px; font-weight:950; margin:10px 0 4px}
.pricecard ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.callout{
  border-radius: var(--radius);
  border:1px dashed rgba(22,163,74,.45);
  background: rgba(22,163,74,.06);
  padding:14px 16px;
  color: var(--muted);
}
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
figure{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
}
figure img{display:block; width:100%; height:260px; object-fit:cover}
figcaption{
  padding:10px 12px;
  font-weight:950;
  font-size:13px;
  color: var(--muted);
  border-top:1px solid var(--line);
}
.breadcrumb{font-size:13px; color:var(--muted); margin:12px 0 0}
.breadcrumb a{color:var(--accent2); text-decoration:none; border-bottom:1px dashed rgba(37,99,235,.35)}
.breadcrumb a:hover{filter:brightness(1.05)}
.faq details{
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  padding:14px 16px;
  margin-bottom:10px;
}
.faq summary{cursor:pointer; font-weight:950}
.faq p{color:var(--muted); margin:10px 0 0}
.footer{
  border-top:1px solid var(--line);
  padding:22px 0 34px;
  color: var(--muted);
  font-size:14px;
}
.footer-grid{display:grid; grid-template-columns: 1.3fr .7fr; gap:14px; align-items:start}
.small-links a{color:var(--muted); text-decoration:none; display:inline-block; margin-right:12px; margin-bottom:8px}
.small-links a:hover{color:var(--text)}
.notice{font-size:12px; color:var(--muted); margin-top:10px}
@media (max-width: 980px){
  h1{font-size:34px}
  .hero-grid{grid-template-columns:1fr}
  .grid3, .pricing{grid-template-columns:1fr}
  .kpis{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  nav{display:none}
  nav.open{display:flex; flex-direction:column; align-items:stretch; padding:10px 0 14px}
  .hamburger{display:inline-flex}
  .cta{flex-wrap:wrap; justify-content:flex-end}
}

header .btn{padding:10px 14px}

@media (max-width: 980px){
  .phone{font-size:18px}
}
