:root{
  --bg:#f4f7fb;
  --surface:#ffffff;
  --ink:#14253a;
  --muted:#5f728b;
  --accent:#ff7a1a;
  --accent-dark:#ff6600;
  --line:rgba(22,37,58,.10);
  --shadow:0 22px 50px rgba(18,29,48,.10);
  --radius-xl:28px;
  --radius-lg:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,122,26,.10), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(17,94,255,.08), transparent 16%),
    var(--bg);
  color:var(--ink);
  font:16px/1.55 "Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{width:min(calc(100% - 48px),1180px);margin:0 auto}
.topbar{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.88);backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(22,37,58,.08)
}
.topbar-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.brand img{height:56px;width:auto}
.phone{display:flex;align-items:flex-start;gap:8px;line-height:1.15}
.phone-icon{width:16px;height:16px;flex:0 0 auto;margin-top:2px}
.phone-link{font-weight:800;color:var(--ink);font-size:15px;line-height:1.1;white-space:nowrap}
.phone-subtitle{font-size:12px;color:var(--muted);margin-top:4px;white-space:nowrap}
.hero{padding:34px 0 18px}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(290px,.85fr);gap:18px;align-items:start}
.card{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(22,37,58,.08);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow)
}
.hero-copy,.price-card,.section-card{padding:24px}
.back-link{display:inline-flex;align-items:center;gap:8px;color:var(--accent-dark);font-weight:800;margin-bottom:10px}
.eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:800;color:#173052;margin-bottom:10px}
.eyebrow::before{content:"";width:10px;height:10px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 5px rgba(255,122,26,.14)}
h1,h2,h3{font-family:"Manrope",sans-serif;letter-spacing:-.04em;margin:0}
h1{font-size:clamp(32px,4vw,52px);line-height:1}
.lead{color:#4e6078;font-size:17px;line-height:1.6;margin:14px 0 0}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.button{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 18px;border-radius:14px;font-weight:800;line-height:1.1
}
.button.primary{background:linear-gradient(180deg,var(--accent),var(--accent-dark));color:#fff}
.button.ghost{background:#fff;border:1px solid rgba(22,37,58,.14);color:var(--ink)}
.price-card h2{font-size:24px;line-height:1.05;margin-bottom:14px}
.price-card ul{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.price-card li{
  display:flex;justify-content:space-between;gap:14px;
  padding:10px 0;border-bottom:1px solid rgba(22,37,58,.08)
}
.price-card li:last-child{border-bottom:0;padding-bottom:0}
.price-card strong{font-weight:800}
.price-card span{color:var(--muted);text-align:right}
.grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.section-card h2{font-size:28px;margin-bottom:10px}
.section-card p,.section-card li{color:#405167}
.section-card ul{margin:0;padding-left:18px;display:grid;gap:8px}
.footer{
  padding:28px 0 40px;margin-top:18px
}
.footer-inner{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding-top:18px;border-top:1px solid rgba(22,37,58,.08)
}
.footer-note{color:var(--muted);font-size:14px}
.footer-actions{display:flex;gap:12px;flex-wrap:wrap}
@media (max-width:900px){
  .hero-grid,.grid{grid-template-columns:1fr}
  .topbar-inner,.footer-inner{flex-direction:column;align-items:flex-start}
  .phone{align-items:flex-start}
  .button{width:100%}
}
