:root{
  --bg0:#0b0f16;
  --bg1:#0f1f2a;
  --card:#101826cc;
  --text:#e9eef6;
  --muted:#b7c3d7;
  --accent:#6ee7b7;
  --accent2:#60a5fa;
  --line:rgba(255,255,255,.12);
  --shadow: 0 18px 40px rgba(0,0,0,.45);
  --radius:18px;
  --max:1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(96,165,250,.28), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(110,231,183,.22), transparent 60%),
    radial-gradient(800px 500px at 70% 80%, rgba(96,165,250,.18), transparent 55%),
    linear-gradient(135deg, var(--bg0), var(--bg1));
  min-height:100%;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ width:min(var(--max), calc(100% - 32px)); margin-inline:auto; }

header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,22,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 210px;
}
.brand img{
  width:44px; height:44px; border-radius:12px;
  object-fit:cover;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.brand .name{ font-weight:800; letter-spacing:.2px; line-height:1.1; }
.brand .tag{ font-size:12px; color:var(--muted); margin-top:2px; }

.navlinks{
  display:flex; align-items:center; gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  color: var(--muted);
}
.navlinks a.active, .navlinks a:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.04);
  text-decoration:none;
}

.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:700;
  gap:10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.btn.primary{
  border-color: rgba(110,231,183,.35);
  background: linear-gradient(135deg, rgba(110,231,183,.18), rgba(96,165,250,.14));
}
.btn:hover{ text-decoration:none; filter:brightness(1.06); }

.hero{
  padding: 54px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.kicker{
  display:inline-flex;
  gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  font-size:13px;
}
.kicker .dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 5px rgba(110,231,183,.10);
}
h1{
  font-size: clamp(34px, 4vw, 54px);
  margin: 16px 0 10px;
  line-height:1.03;
  letter-spacing: -.8px;
}
.lede{
  color: var(--muted);
  font-size: 17px;
  line-height:1.6;
  max-width: 60ch;
}
.hero-actions{
  margin-top:18px;
  display:flex; gap:12px; flex-wrap:wrap;
}

.panel{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16,24,38,.55);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.panel .pad{ padding: 18px; }

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 520px){
  .stats{ grid-template-columns: 1fr; }
}
.stat{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 12px;
  background: rgba(255,255,255,.03);
}
.stat .big{ font-weight:900; font-size:18px; }
.stat .small{ color:var(--muted); font-size:12px; margin-top:3px; }

.section{ padding: 26px 0 46px; }
.section h2{
  font-size: 26px;
  margin: 0 0 14px;
}
.section p{ color: var(--muted); line-height:1.7; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 920px){
  .cards{ grid-template-columns: 1fr; }
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16,24,38,.42);
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
  padding: 18px;
}
.card h3{ margin: 0 0 8px; font-size:18px; }
.card ul{ margin: 10px 0 0 18px; color:var(--muted); line-height:1.6; }
.badge{
  display:inline-flex; padding:7px 10px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-size:12px; color:var(--muted);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 920px){
  .split{ grid-template-columns: 1fr; }
}

.media img{
  width:100%;
  height:auto;
  object-fit: contain;
  display:block;
}
.media img{
  width:100%;
  height:auto;
  object-fit: contain;
  display:block;
}

.price{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.price th, .price td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  text-align:left;
}
.price th{ color: var(--text); font-weight:800; }
.price td{ color: var(--muted); }
.price tr:last-child td{ border-bottom:none; }

.form{
  display:grid;
  gap: 12px;
}
.field{
  display:grid;
  gap: 6px;
}
label{ font-size: 13px; color: var(--muted); }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, textarea:focus{
  border-color: rgba(96,165,250,.55);
  box-shadow: 0 0 0 4px rgba(96,165,250,.14);
}

footer{
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  color: var(--muted);
  background: rgba(11,15,22,.45);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
@media (max-width: 920px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-links{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-links a{ color: var(--muted); }
.smallprint{ font-size: 12px; margin-top: 8px; }

.notice{
  border-left: 3px solid rgba(110,231,183,.55);
  padding: 12px 14px;
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  color: var(--muted);
}
