/* style.css */
:root{
  --bg:#0b0b0b;
  --bg2:#0f0f0f;
  --panel:#121212;
  --panel2:#161616;
  --text:#f5f5f5;
  --muted:#b6b6b6;
  --line:rgba(255,255,255,.10);
  --yellow:#ffd400;
  --yellow2:#ffea61;
  --shadow: 0 18px 70px rgba(0,0,0,.55);
  --r:18px;
  --r2:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(900px 600px at 15% 10%, rgba(255,212,0,.16), transparent 55%),
              radial-gradient(800px 550px at 85% 18%, rgba(255,234,97,.12), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

.wrap{width:min(1120px, calc(100% - 36px)); margin:0 auto}

a{color:inherit}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(11,11,11,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:1000;
  letter-spacing:.2px;
}
.logo__mark{
  width:30px;height:30px;border-radius:12px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  box-shadow: 0 16px 40px rgba(255,212,0,.20);
}
.logo__text{font-size:15px}
.accent{color:var(--yellow)}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:800;
  font-size:14px;
  padding:10px 12px;
  border-radius:14px;
  transition:.18s;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.nav__cta{
  color:#101010 !important;
  background:linear-gradient(135deg,var(--yellow),var(--yellow2));
  border:1px solid rgba(0,0,0,.35);
}
.nav__cta:hover{transform: translateY(-1px)}

.burger{
  display:none;
  width:46px;height:46px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  border-radius:999px;
  opacity:.9;
}

.mobile{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobile a{
  display:block;
  padding:12px 0;
  text-decoration:none;
  color:var(--muted);
  font-weight:900;
}
.mobile a:hover{color:var(--text)}

.hero{padding:56px 0 18px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,212,0,.28);
  background:rgba(255,212,0,.10);
  color:var(--yellow2);
  font-weight:900;
  font-size:13px;
}

h1{
  margin:16px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
  font-weight:700;
}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.4);
  background:linear-gradient(135deg,var(--yellow),var(--yellow2));
  color:#101010;
  font-weight:1000;
  text-decoration:none;
  cursor:pointer;
  transition:.18s;
  box-shadow: 0 18px 40px rgba(255,212,0,.18);
}
.btn:hover{transform: translateY(-1px)}
.btn:disabled{opacity:.65; cursor:not-allowed; transform:none}

.btn--ghost{
  background:transparent;
  border:1px solid rgba(255,212,0,.35);
  color:var(--yellow2);
  box-shadow:none;
}
.btn--ghost:hover{background:rgba(255,212,0,.08)}

.bullets{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.bullet{
  padding:14px 14px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.bullet__n{font-weight:1000; color:var(--yellow2)}
.bullet__t{margin-top:6px; color:var(--muted); font-weight:800; font-size:12px}

.panel{
  border-radius:var(--r2);
  border:1px solid rgba(255,212,0,.22);
  background: linear-gradient(180deg, rgba(255,212,0,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel__top{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.lights{display:flex; gap:7px}
.lights span{
  width:10px;height:10px;border-radius:50%;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.12);
}
.panel__title{color:var(--muted); font-weight:900; font-size:12px}

.panel__body{padding:16px; display:grid; gap:10px}
.mock{
  height:14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.mock--h{height:44px; border-radius:16px}
.mockrow{display:flex; gap:10px}
.mock--chip{height:36px; flex:1}
.mock--cta{
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(255,212,0,.55), rgba(255,234,97,.45));
  border:1px solid rgba(255,212,0,.28);
}

.panel__tags{
  padding:14px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.panel__tags span{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,212,0,.22);
  background:rgba(255,212,0,.08);
  color:var(--yellow2);
  font-weight:900;
  font-size:12px;
}

.section{padding:58px 0}
.head h2{
  margin:0;
  font-size:30px;
  letter-spacing:-.3px;
}
.head p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.6;
  font-weight:700;
}

.cards3{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:18px;
  border-radius:var(--r2);
  border:1px solid var(--line);
  background:rgba(0,0,0,.22);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.6; font-weight:700}
.card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.9; font-weight:800}

.pricing{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.price{
  padding:18px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.price--best{
  border-color: rgba(255,212,0,.45);
  box-shadow: 0 26px 90px rgba(255,212,0,.08);
}
.price__tag{
  width:max-content;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,212,0,.28);
  background:rgba(255,212,0,.08);
  color:var(--yellow2);
  font-weight:1000;
  font-size:12px;
}
.price__val{font-size:36px; font-weight:1000; letter-spacing:-.6px}
.price__desc{color:var(--muted); font-weight:900}
.price ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.9; font-weight:800}
.price .btn{margin-top:auto}

.steps{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  padding:18px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  display:flex;
  gap:14px;
}
.step__n{
  width:46px;height:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  color:#101010;
  background:linear-gradient(135deg,var(--yellow),var(--yellow2));
  border:1px solid rgba(0,0,0,.35);
}
.step__b h3{margin:2px 0 8px}
.step__b p{margin:0; color:var(--muted); line-height:1.6; font-weight:800}

.contact{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}

.form{
  padding:18px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
}

.row2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}

label span{
  display:block;
  margin:0 0 8px;
  color:var(--muted);
  font-weight:1000;
  font-size:12px;
}

input, textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.20);
  color:var(--text);
  padding:12px 12px;
  outline:none;
  font-weight:800;
  transition:.18s;
}
textarea{min-height:130px; resize:vertical}

input:focus, textarea:focus{
  border-color: rgba(255,212,0,.55);
  box-shadow: 0 0 0 4px rgba(255,212,0,.12);
}

.form__actions{
  margin-top:12px;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.status{
  min-height:18px;
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}

.side{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.side__card{
  padding:18px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
}
.side__card h3{margin:0 0 10px}
.side__card p{margin:0; color:var(--muted); line-height:1.6; font-weight:800}
.side__card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.9; font-weight:800}

.footer{padding:18px 0 0}
.footer__inner{
  padding:14px 0;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

@media (max-width: 980px){
  .nav{display:none}
  .burger{display:inline-flex}
  .hero__grid{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  h1{font-size:36px}
}

@media (max-width: 520px){
  .bullets{grid-template-columns:1fr}
  .row2{grid-template-columns:1fr}
}