:root{
  --bg0:#02030a;
  --card:#0d1220;
  --muted:#9aa3b2;
  --white:#ffffff;
  --red:#e02424;
  --grad:linear-gradient(90deg,#ff4d4d,#ffb347);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,77,77,.20), transparent 40%),
    radial-gradient(circle at 80% 15%, rgba(255,179,71,.18), transparent 45%),
    radial-gradient(circle at 50% 120%, rgba(224,36,36,.10), transparent 45%),
    radial-gradient(circle at top, #0b0f1a, var(--bg0));
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity:.25;
  pointer-events:none;
  z-index:-1;
}

/* header */
header{
  position:sticky;
  top:0;
  z-index:50;
  padding:18px 28px;
  background:rgba(7,10,20,.70);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}
.nav{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.2px;
  text-transform:uppercase;
}
.logo:before{
  content:"";
  width:12px;height:12px;border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 6px rgba(224,36,36,.18);
  display:inline-block;
  margin-right:10px;
}

nav{
  display:flex;
  align-items:center;
  gap:18px;
}
nav a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}
nav a:hover{background:rgba(255,255,255,.06)}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.3px;
  color:#fff;
  background:var(--red);
  box-shadow:0 18px 40px rgba(224,36,36,.18);
  border:1px solid rgba(255,255,255,.06);
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}
.btn.outline{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}

/* hero */
.hero{
  max-width:1200px;
  margin:0 auto;
  padding:88px 20px 70px;
  text-align:center;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.78);
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.9px;
}
.badge:before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--red);
}
.hero h1{
  margin:22px 0 14px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: .95;
  font-weight:900;
  letter-spacing:-1px;
  text-transform:uppercase;
}
.hero h1 span{
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  max-width:720px;
  margin:0 auto;
  color:rgba(255,255,255,.70);
  font-size:16px;
  line-height:1.6;
}
.cta{
  margin-top:26px;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.stats{
  margin-top:54px;
  display:flex;
  justify-content:center;
  gap:70px;
  flex-wrap:wrap;
}
.stats div{
  min-width:160px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.78);
}
.stats strong{
  display:block;
  font-size:30px;
  font-weight:900;
}

/* pricing */
.pricing{
  max-width:1200px;
  margin:0 auto;
  padding:95px 20px 80px;
  text-align:center;
}
.pricing h2{
  font-size: clamp(28px, 3vw, 46px);
  text-transform:uppercase;
  letter-spacing:-.5px;
  font-weight:900;
}
.pricing h2 span{color:var(--red)}
.pricing > p{
  margin-top:10px;
  color:rgba(255,255,255,.65);
}

.cards{
  margin-top:52px;
  display:flex;
  gap:26px;
  justify-content:center;
  align-items:stretch;
  flex-wrap:wrap;
}
.card{
  width:320px;
  padding:34px 28px;
  border-radius:26px;
  background:rgba(13,18,32,.78);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 90px rgba(0,0,0,.35);
  text-align:left;
  position:relative;
}
.card h3{
  font-size:22px;
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.card small{
  display:block;
  margin-top:6px;
  color:rgba(255,255,255,.55);
}
.card h1{
  margin:18px 0 18px;
  font-size:44px;
  font-weight:900;
}
.card ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin:10px 0 26px;
}
.card ul li{
  color:rgba(255,255,255,.75);
  font-weight:600;
  font-size:13px;
  position:relative;
  padding-left:22px;
}
.card ul li:before{
  content:"";
  position:absolute;
  left:0; top:6px;
  width:10px;height:10px;border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 5px rgba(224,36,36,.16);
}
.card .btn{width:100%}

.card.highlight{
  border:2px solid rgba(224,36,36,.65);
  background:
    radial-gradient(circle at 20% 15%, rgba(224,36,36,.25), transparent 55%),
    rgba(13,18,32,.85);
  transform: translateY(-8px);
}
.popular{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:var(--red);
  color:#fff;
  font-size:11px;
  font-weight:900;
  padding:7px 14px;
  border-radius:999px;
  text-transform:uppercase;
  letter-spacing:.6px;
  box-shadow:0 18px 50px rgba(224,36,36,.25);
}

/* contact */
.contact{
  max-width:1200px;
  margin:0 auto;
  padding:90px 20px 100px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:44px;
  align-items:start;
}
.contact-left h2{
  font-size: clamp(34px, 3.4vw, 56px);
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}
.contact-left h2 span{color:var(--red)}
.contact-left p{
  margin-top:14px;
  color:rgba(255,255,255,.65);
  line-height:1.7;
  max-width:520px;
}
.info{
  margin-top:26px;
  display:grid;
  gap:14px;
  color:rgba(255,255,255,.80);
  font-weight:700;
}
.info p{
  display:flex;
  gap:12px;
  align-items:center;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  padding:14px 16px;
  border-radius:16px;
}

.contact-form{
  padding:26px;
  border-radius:26px;
  background:rgba(13,18,32,.78);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 30px 90px rgba(0,0,0,.35);
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:13px 14px;
  margin-bottom:12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  border-radius:14px;
  outline:none;
}
.contact-form textarea{min-height:120px; resize:vertical}
.contact-form input::placeholder,
.contact-form textarea::placeholder{color:rgba(255,255,255,.45)}
.contact-form .btn{width:100%}

/* footer */
footer{
  text-align:center;
  padding:26px 16px;
  color:rgba(255,255,255,.45);
  border-top:1px solid rgba(255,255,255,.06);
}

/* responsive */
@media (max-width: 900px){
  .contact{grid-template-columns:1fr}
  .card.highlight{transform:none}
}
@media (max-width: 720px){
  header{padding:14px 14px}
  nav a{display:none}
  nav .btn{display:inline-flex}
  .stats{gap:14px}
  .stats div{min-width: 48%}
}
