
:root{
  --bg:#0f0f10;
  --card:#151517;
  --text:#f5f5f7;
  --muted:#b6b6be;
  --line:rgba(255,255,255,.08);
  --accent:#d0442c;
  --accent2:#f0b44b;
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --container:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 80% 0%, rgba(208,68,44,.22), transparent 55%),
              radial-gradient(900px 500px at 10% 20%, rgba(240,180,75,.18), transparent 55%),
              var(--bg);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 20px}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(15,15,16,.72);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  font-weight:800;
  letter-spacing:.2px;
}
.nav{display:flex; align-items:center; gap:14px; font-weight:600; color:var(--muted)}
.nav a{padding:10px 10px; border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 18px; border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22)}
.btn--primary{background: linear-gradient(180deg, rgba(208,68,44,1), rgba(150,35,22,1)); border-color: rgba(208,68,44,.75)}
.btn--primary:hover{background: linear-gradient(180deg, rgba(228,82,56,1), rgba(150,35,22,1))}
.btn--secondary{background: rgba(240,180,75,.12); border-color: rgba(240,180,75,.55)}
.btn--small{padding:10px 12px; font-weight:800; color:var(--text)}

.hero{
  padding:44px 0 24px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:28px;
  align-items:center;
}
.badge{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:var(--muted);
  background: rgba(255,255,255,.06);
  font-weight:600;
}
h1{
  margin:14px 0 10px;
  font-size:48px;
  line-height:1.06;
  letter-spacing:-.8px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
}
.hero__img{
  width:100%;
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.10);
}

.hero__cta{margin:18px 0 14px}
.pricebox{
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius2);
  padding:16px;
  box-shadow: var(--shadow);
}
.pricebox__title{font-weight:800; margin-bottom:6px}
.pricebox__price{color:var(--muted); margin-bottom:12px}
.pricebox__note{margin-top:10px; color:var(--muted); font-size:13px}

.trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.trust__item{
  flex: 1 1 160px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px 12px;
  background: rgba(255,255,255,.04);
}
.trust__kpi{font-weight:800}
.trust__txt{color:var(--muted); font-size:13px}

.section{padding:54px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section--cta{
  padding:40px 0 60px;
}

h2{
  margin:0 0 14px;
  font-size:30px;
  letter-spacing:-.4px;
}
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top:18px;
}
.card{
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px;
  background: rgba(255,255,255,.04);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}

.contentgrid{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap:18px;
  margin-top:18px;
}
.listbox{
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(15,15,16,.55);
}
.checklist{margin:0; padding-left:18px}
.checklist li{margin:8px 0; color:var(--muted)}
.quote{
  border:1px solid rgba(240,180,75,.35);
  background: rgba(240,180,75,.08);
  border-radius: var(--radius2);
  padding:16px;
}
.quote h3{margin:0 0 8px}
.quote p{margin:0 0 14px; color:var(--muted)}

.faq details{
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:14px 14px;
  background: rgba(255,255,255,.04);
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:800}
.faq p{margin:10px 0 0; color:var(--muted)}

.cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding:18px;
  background: radial-gradient(700px 300px at 80% 0%, rgba(208,68,44,.24), transparent 60%),
              rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.cta p{margin:6px 0 0; color:var(--muted)}

.footer{
  padding:30px 0 50px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer__grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.brand--footer{color:var(--text); margin-bottom:6px}
.muted{color:var(--muted)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; }
  h1{font-size:40px}
  .cards{grid-template-columns: repeat(2,1fr)}
  .contentgrid{grid-template-columns: 1fr}
  .cta__inner{flex-direction:column; align-items:flex-start}
}
@media (max-width: 520px){
  h1{font-size:34px}
  .nav{display:none}
  .cards{grid-template-columns: 1fr}
}
