:root{
  --bg:#0b0f17;
  --bg2:#0f1626;
  --card:#121a2d;
  --text:#e9eefc;
  --muted:#a8b3cf;
  --line: rgba(255,255,255,.10);
  --primary:#5b8cff;
  --primary2:#3dd6a6;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --radius:18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 20% 10%, rgba(91,140,255,.25), transparent 55%),
    radial-gradient(900px 600px at 80% 0%, rgba(61,214,166,.18), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, 92%); margin-inline:auto; }

.header{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,15,23,.6);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.2px; }
.brand__mark{
  width:36px; height:36px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, var(--primary), rgba(61,214,166,.9));
  color:#07111f;
  box-shadow: 0 10px 30px rgba(91,140,255,.25);
}
.brand__text{ opacity:.95; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{ color:var(--muted); font-weight:600; transition:.15s ease; }
.nav a:hover{ color:var(--text); }

.nav__toggle{
  display:none; width:44px; height:44px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:14px; cursor:pointer;
}
.nav__toggle span{
  display:block; height:2px; width:18px;
  background: var(--text);
  margin:4px auto; border-radius:2px;
}

.hero{ padding:64px 0 22px; }
.hero__grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap:26px; align-items:stretch;
}
.pill{
  display:inline-flex; gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700; font-size:13px;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  line-height:1.04;
}
.subtitle{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
  max-width:56ch;
}

.hero__cta{ display:flex; flex-wrap:wrap; gap:12px; margin:18px 0 22px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:.15s ease;
  user-select:none;
}
.btn--full{ width:100%; }
.btn--primary{
  background: linear-gradient(135deg, var(--primary), rgba(61,214,166,.9));
  color:#07111f;
  box-shadow: 0 12px 30px rgba(91,140,255,.20);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--secondary{
  border-color: var(--line);
  background: rgba(255,255,255,.04);
}
.btn--secondary:hover{ background: rgba(255,255,255,.07); }
.btn--ghost{
  border-color: var(--line);
  background: transparent;
  padding:10px 14px;
  border-radius: 12px;
}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.stat{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  padding:12px;
}
.stat__num{ font-size:18px; font-weight:900; }
.stat__label{ color:var(--muted); font-size:13px; margin-top:4px; }

.hero__card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(91,140,255,.22), transparent 45%),
    radial-gradient(700px 450px at 100% 30%, rgba(61,214,166,.18), transparent 52%),
    rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass{ padding:18px; }
.glass h3{ margin:0 0 10px; font-size:18px; }
.checklist{ margin:0; padding:0 0 0 18px; color:var(--muted); line-height:1.7; }
.hint{ color: var(--muted); font-size: 12px; margin-top:10px; }

.trust{ padding: 18px 0 0; }
.trust__grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; }
.trust__item{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.trust__item h3{ margin:0 0 8px; }
.trust__item p{ margin:0; color: var(--muted); line-height:1.6; }

.section{ padding:56px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 60%);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.section__head h2{ margin:0; font-size: clamp(24px, 2.8vw, 34px); }
.section__head p{ margin:0; color:var(--muted); max-width:70ch; line-height:1.6; }

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}
.price{ padding:16px; position:relative; }
.price__top h3{ margin:0; font-size:18px; }
.muted{ color:var(--muted); }
.price__top p{ margin:6px 0 0; line-height:1.6; }

.price__value{ display:flex; align-items:baseline; gap:6px; margin:14px 0 12px; }
.currency{ color:var(--muted); font-weight:800; }
.amount{ font-size:44px; font-weight:950; letter-spacing:-1px; }
.per{ color:var(--muted); font-weight:800; }

.features{ margin:0 0 14px; padding:0 0 0 18px; color:var(--muted); line-height:1.75; }
.tiny{ font-size:12px; }

.price--highlight{
  border-color: rgba(91,140,255,.45);
  background: radial-gradient(900px 500px at 20% 0%, rgba(91,140,255,.18), transparent 60%),
              rgba(255,255,255,.03);
}
.badge{
  position:absolute; top:14px; right:14px;
  font-size:12px; font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(91,140,255,.22);
  border:1px solid rgba(91,140,255,.35);
}

.note{
  margin-top:14px;
  border:1px dashed rgba(255,255,255,.20);
  border-radius:16px;
  padding:12px 14px;
  color:var(--muted);
  line-height:1.6;
}

.table{ border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; }
.row{
  display:grid;
  grid-template-columns: 1.3fr .6fr .6fr .6fr;
  gap:10px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.row:nth-child(even){ background: rgba(255,255,255,.03); }
.row--head{ font-weight:900; background: rgba(255,255,255,.05); }
.row:last-child{ border-bottom:none; }

.contact__box{ padding:18px; }
.contact__grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.contact__item{
  border:1px solid rgba(255,255,255,.07);
  border-radius:16px;
  padding:12px;
  background: rgba(255,255,255,.02);
}
.label{ font-size:12px; color:var(--muted); font-weight:900; text-transform:uppercase; letter-spacing:.8px; }
.link{ font-weight:900; display:inline-block; margin-top:6px; }

.faq{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }
details{ padding:14px; }
summary{ cursor:pointer; font-weight:900; }
details p{ color:var(--muted); line-height:1.6; margin:10px 0 0; }

.footer{ padding:26px 0; border-top:1px solid rgba(255,255,255,.06); }
.footer__inner{ display:flex; justify-content:space-between; align-items:center; gap:14px; }

.whats-float{
  position: fixed; right: 18px; bottom: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(61,214,166,.18);
  border:1px solid rgba(61,214,166,.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
  font-weight: 950;
}

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .trust__grid{ grid-template-columns: 1fr; }
  .contact__grid{ grid-template-columns: 1fr; }
  .faq{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1.2fr .6fr .6fr .6fr; }
  .nav{ display:none; }
  .nav__toggle{ display:block; }
  .nav.nav--open{
    display:flex;
    position:absolute;
    right:4%;
    top:64px;
    flex-direction:column;
    gap:12px;
    padding:14px;
    border:1px solid var(--line);
    border-radius: 16px;
    background: rgba(11,15,23,.92);
    width: min(320px, 92vw);
  }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; scroll-behavior:auto !important; }
}
