:root{
  --bg:#000000;
  --panel:#0a0a0a;
  --panel2:#111111;
  --line:#1a1a1a;
  --text:#ffffff;
  --muted:#808080;
  --accent:#ffffff;
  --green:#e0e0e0;
  --shadow: 0 12px 40px rgba(0,0,0,.65);
  --radius: 16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(900px 600px at 15% 0%, rgba(255,255,255,.03), transparent 60%),
              radial-gradient(900px 600px at 80% 10%, rgba(255,255,255,.02), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

.topbar{
  position: sticky; top:0; z-index: 50;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;padding:14px 18px;gap:16px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand__logo{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(200,200,200,.8));
  color:#000000;
  font-weight:900;
  box-shadow: var(--shadow);
}
.brand__text small{display:block;color:var(--muted);font-size:.85rem}

.nav{display:flex;gap:12px;align-items:center}
.nav a{
  text-decoration:none;color:var(--muted);
  padding:8px 10px;border-radius:12px;
}
.nav a:hover{color:var(--text);background:rgba(255,255,255,.05)}
.nav__cta{
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--text);
}

.navToggle{display:none}

.mobileNav{
  padding: 10px 18px 16px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.mobileNav a{
  text-decoration:none;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  padding:8px 10px;border-radius:12px;
}
.mobileNav a:hover{color:var(--text)}

.hero{padding:56px 0 26px}
.hero__inner{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;align-items:start}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
  font-size:.9rem;
}
.hero h1{font-size:2.35rem;line-height:1.15;margin:12px 0 10px}
.accent{color:var(--accent)}
.hero p{color:var(--muted);max-width:62ch;margin:0 0 16px}

.hero__actions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.3);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(200,200,200,.85));
  color:#000000;
  font-weight:800;
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  cursor:pointer;
}
.btn:hover{filter:brightness(1.1)}
.btn--soft{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  color:var(--text);
  box-shadow:none;
}
.btn--ghost{
  background: transparent;
  border:1px solid rgba(255,255,255,.15);
  color:var(--text);
  box-shadow:none;
}

.proof{display:flex;gap:12px;flex-wrap:wrap}
.proof__item{
  flex:1;
  min-width:140px;
  padding:12px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
}
.proof__item strong{display:block;font-size:1.05rem}
.proof__item span{color:var(--muted);font-size:.9rem}

.heroCard{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard__head{
  display:flex; gap:10px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.chip{
  font-size:.82rem;
  color: var(--muted);
  border:1px solid rgba(255,255,255,.12);
  padding:4px 8px;border-radius:999px;
  background: rgba(255,255,255,.02);
}
.chip--green{
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--text);
}
.heroCard__body{padding:14px}
.heroCard__body h3{margin:0 0 10px}
.checklist{margin:0;padding-left:18px;color:var(--muted)}
.checklist li{margin:6px 0}

.miniCtas{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.miniBtn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--text);
  text-decoration:none;
  font-weight:800;
}
.miniBtn--accent{
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}

.section{padding:46px 0}
.section--alt{background: rgba(255,255,255,.01); border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08)}
.section__head{margin-bottom:16px}
.section__head h2{margin:0 0 6px;font-size:1.8rem}
.section__head p{margin:0;color:var(--muted)}

.serviceGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.service h3{margin:0}
.service p{margin:0;color:var(--muted)}
.service .row{
  display:flex;justify-content:space-between;align-items:center;gap:10px;
}
.badge{
  font-size:.8rem;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  padding:4px 8px;border-radius:999px;
}
.serviceBtn{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight:900;
  padding:10px 12px;
  cursor:pointer;
}
.serviceBtn:hover{filter:brightness(1.15)}

.plans{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.plan{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  padding:14px;
  position:relative;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.plan--featured{
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 18px 40px rgba(255,255,255,.08);
}
.tag{
  position:absolute;top:12px;right:12px;
  padding:4px 8px;border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  font-size:.78rem;
  color: var(--text);
  font-weight:900;
}
.price{font-size:2rem;font-weight:900;margin:10px 0}
.price span{font-size:1rem;color:var(--muted);font-weight:700}
.list{margin:0;padding-left:18px;color:var(--muted)}
.list li{margin:6px 0}

.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.tCard{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  padding:14px;
}
.tCard p{margin:0 0 10px;color:var(--muted)}

.faq details{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  padding:12px;
  margin-bottom:10px;
}
.faq summary{cursor:pointer;font-weight:900}
.faq p{margin:8px 0 0}

.twoCols{display:grid;grid-template-columns: 1.05fr .95fr;gap:16px;align-items:start}

.contactCard{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  padding:14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  margin-top:14px;
}
.contactRow{display:flex;gap:10px;align-items:center;margin-bottom:12px}
.ico{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  font-weight:900;
}

.form{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  padding:14px;
}
.form h3{margin:0 0 10px}
.form label{display:block;margin:10px 0;color:var(--muted);font-weight:700}
.form input,.form textarea,.form select{
  width:100%;
  margin-top:6px;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  color: var(--text);
  outline:none;
}
.form input::placeholder,.form textarea::placeholder{color:rgba(255,255,255,.4)}

.floatingWA{
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:900;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow);
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0;
  color:var(--muted);
}
.footer__inner{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap}
.muted{color:var(--muted)}

@media (max-width: 940px){
  .hero__inner{grid-template-columns: 1fr}
  .serviceGrid{grid-template-columns: repeat(2, 1fr)}
  .plans{grid-template-columns: 1fr}
  .testimonials{grid-template-columns: 1fr}
}

@media (max-width: 720px){
  .nav{display:none}
  .navToggle{display:inline-flex}
  .twoCols{grid-template-columns: 1fr}
}

@media (max-width: 520px){
  .serviceGrid{grid-template-columns: 1fr}
  .hero h1{font-size:2rem}
}
