:root{
  --bg0:#070b14;
  --bg1:#0a1020;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.58);
  --green:#52d08a;
  --green2:#2fbf78;
  --blue: rgba(78,126,255,.55);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:14px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 65% 20%, rgba(78,126,255,.28), transparent 55%),
    radial-gradient(900px 600px at 20% 5%, rgba(82,208,138,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 16px}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.20));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; flex-direction:column; gap:4px; min-width: 230px;}
.brand__title{font-weight:900; letter-spacing:.2px; font-size:22px}
.brand__tag{color:var(--muted); font-size:13px}

.nav{display:flex; gap:8px; align-items:center; flex-wrap:wrap;}
.nav a{
  padding:8px 12px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav a:hover{color:var(--text); border-color:rgba(255,255,255,.10)}
.nav a.active{
  color:var(--text);
  background: rgba(82,208,138,.16);
  border-color: rgba(82,208,138,.28);
}

/* HERO */
.hero{padding:18px 0 10px}
.heroCard{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(82,208,138,.18), rgba(78,126,255,.16));
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"FA";
  position:absolute;
  right:-40px; top:-40px;
  font-size:220px;
  font-weight:900;
  letter-spacing:-8px;
  color: rgba(255,255,255,.06);
  transform: rotate(-12deg);
  pointer-events:none;
}
.heroCard:after{
  content:"";
  position:absolute; inset:-40px;
  background: radial-gradient(700px 350px at 75% 30%, rgba(82,208,138,.22), transparent 60%);
  transform: rotate(-8deg);
  pointer-events:none;
}
.heroLeft,.heroRight{position:relative}

.pills{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
  font-size:13px;
}
.pill b{color:var(--text); font-weight:800}

.lead{margin:0; color:var(--muted); line-height:1.55; font-size:14px}

.h1{
  margin:10px 0 10px;
  font-size:22px;
  font-weight:900;
  line-height:1.25;
}

.btnRow{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color:var(--text);
  font-weight:800;
  font-size:14px;
}
.btn:hover{border-color:rgba(255,255,255,.22)}
.btn--green{
  background: linear-gradient(180deg, rgba(82,208,138,.90), rgba(47,191,120,.75));
  border-color: rgba(82,208,138,.35);
  color:#06110c;
}
.btn--ghost{background:rgba(0,0,0,.18)}

.section{margin-top:12px; padding:14px 0}
.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.card h3{margin:0 0 10px; font-size:16px}
.small{color:var(--muted2); font-size:13px; margin:6px 0 0}
.list{margin:8px 0 0; padding-left:18px; color:var(--muted); line-height:1.55}
.hr{height:1px; background:rgba(255,255,255,.08); margin:14px 0}

/* Quick buttons */
.quick{margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; align-items:center;}
.quick .qtitle{min-width:170px; color:var(--muted); font-weight:800}
.iconBtn{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:var(--text);
  font-weight:800;
  font-size:14px;
}
.iconBtn:hover{border-color:rgba(255,255,255,.22)}
.icon{width:18px; height:18px; display:inline-block; opacity:.95}

/* Grids */
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:14px;}
.grid3{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;}
@media (max-width: 980px){
  .heroCard{grid-template-columns:1fr}
  .grid2,.grid3{grid-template-columns:1fr}
  .brand{min-width:auto}
}

/* Badges + Timer */
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:var(--muted);
  margin-right:8px;
}
.badge--hot{
  background: rgba(82,208,138,.16);
  border-color: rgba(82,208,138,.30);
  color: var(--text);
}
.timer{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:var(--muted);
}

/* Feature blocks */
.feature{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  border-radius: var(--radius);
  padding:14px;
  position:relative;
  overflow:hidden;
}
.feature:before{
  content:"";
  position:absolute; inset:-40px;
  background: radial-gradient(420px 220px at 20% 10%, rgba(78,126,255,.22), transparent 60%);
  pointer-events:none;
}
.feature h4{margin:0 0 8px; font-size:14px; font-weight:900}
.feature p{margin:0; color:var(--muted); line-height:1.5; font-size:13.5px}

/* Tariffs */
.tariffs{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;}
@media (max-width: 980px){ .tariffs{grid-template-columns:1fr} }

.tCard{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  padding:16px;
  position:relative;
  overflow:hidden;
}
.tCard:before{
  content:"";
  position:absolute; inset:-40px;
  background: radial-gradient(520px 260px at 10% 0%, rgba(82,208,138,.14), transparent 60%);
  pointer-events:none;
}
.tCard--vip{
  background: linear-gradient(135deg, rgba(82,208,138,.14), rgba(78,126,255,.14));
  border-color: rgba(82,208,138,.18);
}
.tLogo{
  width:44px; height:44px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900; letter-spacing:.4px;
  color:#06110c;
  background: linear-gradient(180deg, rgba(82,208,138,.95), rgba(47,191,120,.78));
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  flex: 0 0 auto;
}
.tTop{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; position:relative}
.tLeft{display:flex; gap:12px; align-items:flex-start}
.tName{font-weight:900; font-size:16px}
.tHint{color:var(--muted2); font-size:13px; margin-top:4px}
.price{font-weight:900; font-size:22px; letter-spacing:.2px;}
.old{font-size:13px; color:var(--muted2); text-decoration: line-through; margin-right:8px;}
.tList{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.55}
.tCta{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.tip{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  color: rgba(255,255,255,.70);
  font-size:13px;
  line-height:1.45;
}

/* FAQ */
.faqItem{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  border-radius: 14px;
  padding:12px;
  margin-top:10px;
}
.faqQ{font-weight:900; display:flex; align-items:center; justify-content:space-between; gap:10px; cursor:pointer}
.faqA{margin-top:10px; color:var(--muted); line-height:1.55; display:none}
.faqItem.open .faqA{display:block}
.chev{opacity:.7}

/* Footer */
.footer{padding:18px 0 40px; color:rgba(255,255,255,.45); font-size:12px;}
.note{margin-top:12px; color:rgba(255,255,255,.60); font-size:12.5px; line-height:1.45}

/* Floating chat button + drawer */
.floatBtn{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:80;
  padding:12px 14px;
  border-radius: 14px;
  font-weight:900;
  border: 1px solid rgba(82,208,138,.35);
  background: linear-gradient(180deg, rgba(82,208,138,.90), rgba(47,191,120,.78));
  color:#07110c;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.floatBtn:hover{filter:brightness(1.03)}

.drawerMask{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index:90;
  display:none;
}
.drawer{
  position:fixed;
  right:16px;
  bottom:70px;
  width: 360px;
  max-width: calc(100vw - 32px);
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,14,26,.92);
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  z-index:95;
  display:none;
  overflow:hidden;
}
.drawerHead{
  padding:12px 12px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawerTitle{font-weight:900}
.drawerClose{
  padding:6px 10px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: var(--text);
  font-weight:800;
  cursor:pointer;
}
.drawerBody{padding:12px}
.msg{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.86);
  font-size:13.5px;
  line-height:1.35;
  margin:8px 0;
}
.msg.me{
  background: rgba(82,208,138,.12);
  border-color: rgba(82,208,138,.20);
}
.drawerActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.drawerActions a{flex:1 1 auto; text-align:center}
.h1{
  font-size:22px;
  line-height:1.2;
  font-weight:900;
  margin:10px 0 10px;
}

.feature{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  border-radius:16px;
  padding:12px;
}
.feature h4{margin:0 0 6px; font-size:14px; font-weight:900;}
.feature p{margin:0; color:rgba(255,255,255,.70); font-size:13px; line-height:1.35;}

.grid3{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;}
@media (max-width: 980px){ .grid3{grid-template-columns:1fr;} }

.faqItem{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  border-radius:16px;
  padding:12px;
  margin-top:10px;
}
.faqQ{
  font-weight:900;
  color:rgba(255,255,255,.85);
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faqA{
  display:none;
  margin-top:8px;
  color:rgba(255,255,255,.70);
  line-height:1.4;
  font-size:13px;
}
.faqItem.open .faqA{display:block;}
.chev{opacity:.6}
