:root{
  --bg: #070a12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: #e5e7eb;
  --muted: rgba(229,231,235,.72);
  --muted2: rgba(229,231,235,.55);
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --r: 18px;
  --r2: 26px;
  --g1: #22c55e;
  --g2: #60a5fa;
  --g3: #a78bfa;
  --max: 1120px;
}

*{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(1200px 600px at 10% -10%, rgba(34,197,94,.18), transparent 50%),
              radial-gradient(900px 450px at 95% 0%, rgba(96,165,250,.18), transparent 55%),
              radial-gradient(900px 450px at 70% 105%, rgba(167,139,250,.12), transparent 55%),
              var(--bg);
}

a{color:inherit; text-decoration:none}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.bg-glow{
  position:fixed; inset:-200px -200px auto -200px;
  height:380px;
  background: radial-gradient(circle at 30% 40%, rgba(34,197,94,.26), transparent 55%),
              radial-gradient(circle at 80% 40%, rgba(96,165,250,.22), transparent 55%);
  filter: blur(30px);
  pointer-events:none;
  z-index:-1;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,10,18,.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:18px}

.logo{display:flex; align-items:center; gap:12px}
.logo__mark{
  width:42px; height:42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(96,165,250,.18));
  border: 1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.logo__mark svg{width:22px; height:22px; color:#f3f4f6}
.logo__text{display:flex; flex-direction:column; line-height:1.05}
.logo__name{font-weight:800; letter-spacing:-.02em}
.logo__sub{font-size:12px; color:var(--muted2); font-weight:600}

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

.header__actions{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 transparent;
  font-weight:700;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
  user-select:none;
}
.btn:active{transform: translateY(1px)}

.btn--primary{
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(96,165,250,.95));
  color:#051016;
  box-shadow: 0 18px 40px rgba(34,197,94,.12);
}
.btn--primary:hover{filter: brightness(1.03)}

.btn--outline{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
  color: var(--text);
}
.btn--outline:hover{background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.22)}

.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}
.btn--ghost:hover{background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18)}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  cursor:pointer;
}
.burger span{display:block; height:2px; width:18px; background: rgba(229,231,235,.85); margin:4px auto; border-radius:99px}

.mobile{
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(7,10,18,.65);
  backdrop-filter: blur(12px);
}
.mobile__inner{display:grid; gap:10px; padding:14px 0 18px}
.mobile__inner a{padding:12px 12px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); font-weight:700}

/* Hero */
.hero{padding:56px 0 26px}
.hero__grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:28px; align-items:center}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}
.pill__dot{width:10px; height:10px; border-radius:99px; background: linear-gradient(135deg, var(--g1), var(--g2)); box-shadow: 0 0 0 4px rgba(34,197,94,.10)}

.hero h1{margin:16px 0 12px; font-size: clamp(34px, 5vw, 54px); line-height:1.02; letter-spacing:-.04em}
.hero p{margin:0; color: var(--muted); font-size: 16px; line-height:1.6; max-width: 54ch}
.hero p strong{color: var(--text)}

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

.hero__stats{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top: 18px}
.stat{padding:14px 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r); box-shadow: 0 10px 30px rgba(0,0,0,.25)}
.stat__k{font-weight:800; letter-spacing:-.02em}
.stat__k span{background: linear-gradient(135deg, var(--g1), var(--g2)); -webkit-background-clip:text; background-clip:text; color: transparent}
.stat__t{margin-top:6px; font-size:12.5px; color: var(--muted2); font-weight:600; line-height:1.35}

.hero__visual{position:relative}
.badge{
  position:absolute;
  top:-12px; left:-10px;
  background: rgba(255,255,255,.92);
  color:#0b1020;
  padding:10px 12px;
  border-radius: 14px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
  box-shadow: 0 24px 55px rgba(0,0,0,.35);
}
.badge span{display:block; font-weight:800; letter-spacing:.02em; font-size:10px; opacity:.8; margin-top:2px}

.card-visual{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-visual__top{display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid rgba(255,255,255,.10)}
.chip{width:56px; height:12px; border-radius:99px; background: linear-gradient(135deg, rgba(34,197,94,.7), rgba(96,165,250,.7))}
.lines{display:flex; gap:8px}
.lines span{width:10px; height:10px; border-radius:99px; background: rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.12)}

.card-visual__img{padding:14px 16px}
.card-visual__img svg{width:100%; height:auto; display:block}

.card-visual__bottom{display:flex; gap:10px; flex-wrap:wrap; padding:14px 16px; border-top:1px solid rgba(255,255,255,.10)}
.mini{display:flex; align-items:center; gap:8px; color: var(--muted); font-weight:700; font-size:12.5px; padding:8px 10px; border-radius: 999px; background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10)}
.mini__dot{width:8px; height:8px; border-radius:99px; background: linear-gradient(135deg, var(--g1), var(--g2))}

/* Sections */
.section{padding:56px 0}
.section--alt{background: rgba(255,255,255,.03); 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:10px; margin-bottom: 22px}
.section__head h2{margin:0; font-size: clamp(24px, 3.2vw, 34px); letter-spacing:-.03em}
.section__head p{margin:0; color: var(--muted); line-height:1.6; max-width: 72ch}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  padding:18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.card__icon{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34,197,94,.14), rgba(96,165,250,.14));
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 12px;
}
.card__icon svg{width:22px; height:22px; color:#f3f4f6}
.card h3{margin:0 0 6px; font-size:18px; letter-spacing:-.02em}
.card p{margin:0 0 12px; color: var(--muted); line-height:1.55}
.card ul{margin:0; padding-left:18px; color: rgba(229,231,235,.78); font-weight:600}
.card li{margin:6px 0}

/* Pricing table */
.table-wrap{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  overflow:auto;
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
}
.pricing{width:100%; border-collapse: collapse; min-width: 620px}
.pricing th, .pricing td{padding:14px 16px; text-align:left; border-bottom: 1px solid rgba(255,255,255,.10)}
.pricing th{font-size:13px; color: var(--muted); font-weight:800; text-transform:uppercase; letter-spacing:.08em}
.pricing td{font-weight:700}
.pricing tbody tr:hover{background: rgba(255,255,255,.04)}
.pricing td:first-child{font-weight:800}
.center{display:flex; justify-content:center; margin-top: 18px}

/* Contact */
.contact{display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; align-items:stretch}
.contact__copy{padding:22px; border-radius: var(--r2); background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); box-shadow: 0 18px 55px rgba(0,0,0,.22)}
.contact__copy h2{margin:0 0 10px}
.contact__copy p{margin:0 0 16px; color: var(--muted); line-height:1.6}

.contact__items{display:grid; gap:10px; margin-top: 10px}
.contact__item{
  display:flex; gap:12px; align-items:center;
  padding:12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.contact__item:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16)}
.contact__icon{width:34px; height:34px; border-radius: 14px; display:grid; place-items:center; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10)}
.contact__label{display:block; font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color: var(--muted2)}
.contact__value{display:block; font-weight:800; margin-top:2px}

.contact__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px}

.contact__panel .panel{
  height:100%;
  padding:22px;
  border-radius: var(--r2);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}
.panel__title{font-weight:900; font-size:16px; letter-spacing:-.02em}
.panel__hint{margin-top:8px; color: var(--muted); line-height:1.5}
.panel__form{margin-top: 14px; display:grid; gap:10px}
.panel__form label{display:grid; gap:6px}
.panel__form span{font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color: var(--muted2)}
.panel__form input{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.14);
  color: var(--text);
  outline:none;
}
.panel__form input:focus{border-color: rgba(96,165,250,.55); box-shadow: 0 0 0 4px rgba(96,165,250,.12)}
.panel__fine{margin: 0; color: var(--muted2); font-size:12px; line-height:1.4}

/* Footer */
.footer{padding:26px 0 44px; border-top:1px solid rgba(255,255,255,.06)}
.footer__inner{display:flex; justify-content:space-between; align-items:center; gap:18px; flex-wrap:wrap}
.footer__brand{font-weight:900; letter-spacing:-.02em}
.footer__muted{color: var(--muted2); font-weight:700; font-size:13px; margin-top:4px}
.footer__right{display:flex; gap:14px; flex-wrap:wrap}
.footer__right a{color: var(--muted); font-weight:700; font-size:14px; padding:8px 10px; border-radius: 12px}
.footer__right a:hover{background: rgba(255,255,255,.06); color: var(--text)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; gap:18px}
  .hero{padding-top: 36px}
  .cards{grid-template-columns: 1fr;}
  .contact{grid-template-columns: 1fr}
  .hero__stats{grid-template-columns: 1fr;}
  .badge{left: 10px}
}

@media (max-width: 820px){
  .nav{display:none}
  .burger{display:inline-grid; place-items:center}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
}
