.logo {
  height: 48px;
  width: auto;
  display: block;
}
:root{
  --bg:#0b1220;
  --bg2:#0f1a2e;
  --card:#0f1a2e;
  --border:rgba(255,255,255,.10);
  --text:#eaf1ff;
  --muted:rgba(234,241,255,.72);
  --muted2:rgba(234,241,255,.55);
  --accent:#6ee7ff;
  --accent2:#a78bfa;
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --radius:16px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(110,231,255,.16), transparent 55%),
              radial-gradient(1200px 600px at 80% 0%, rgba(167,139,250,.16), transparent 55%),
              linear-gradient(180deg, var(--bg), #070b14 70%);
  color:var(--text);
  line-height:1.55;
}

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

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom:1px solid var(--border);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:10px; align-items:center; font-weight:700}
.brand-mark{
  display:grid; place-items:center;
  width:34px; height:34px; border-radius:10px;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(110,231,255,.18), rgba(167,139,250,.18));
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.brand-name{letter-spacing:.2px}
.nav-links{display:flex; gap:18px; align-items:center}
.nav-links a{color:var(--muted); font-weight:500}
.nav-links a.btn{color:var(--text)}

.nav-toggle{
  display:none;
  width:44px; height:48px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px; width:20px; margin:5px auto;
  background: rgba(234,241,255,.85);
  border-radius:2px;
}

.hero{padding:64px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:stretch;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px; font-weight:600;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.grad{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.lead{color:var(--muted); font-size:18px; margin:0 0 18px}

.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px}
.btn{
  display:inline-flex; justify-content:center; align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  background: linear-gradient(90deg, rgba(110,231,255,.22), rgba(167,139,250,.22));
  color:var(--text);
  font-weight:700;
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
}
.btn:hover{transform: translateY(-1px)}
.btn-ghost{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  box-shadow:none;
  color:var(--text);
}
.btn-small{padding:10px 12px; border-radius:12px; font-weight:700}
.w100{width:100%}

.hero-proof{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.proof-item{
  display:flex; gap:8px; align-items:center;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.proof-kpi{color:var(--text)}

.card{
  background: rgba(15,26,46,.78);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h3{margin:0 0 8px}
.muted{color:var(--muted)}
.tiny{font-size:12px}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

.receipt{
  margin-top:10px;
  border-radius:14px;
  border:1px solid var(--border);
  overflow:hidden;
}
.receipt .row{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 12px;
  background: rgba(255,255,255,.02);
  border-bottom:1px solid var(--border);
  font-size:13px;
  color:var(--muted);
}
.receipt .row:last-child{border-bottom:none}
.ok{color:#8bffb7}

.strip{
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(110,231,255,.08), rgba(167,139,250,.08));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.strip-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.strip-item h4{margin:0 0 6px}
.strip-item p{margin:0}

.section{padding:64px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px; font-size:30px}
.section-head p{margin:0}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{position:relative}
.step-num{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px}
.step p{margin:0}

.callout{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius);
  border:1px dashed rgba(255,255,255,.20);
  background: rgba(255,255,255,.03);
}
.callout h3{margin:0 0 6px}
.callout p{margin:0}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.price h3{margin:0 0 8px}
.price ul{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.price li{margin:8px 0}
.price-tag{margin:0}
.big{font-size:26px; font-weight:800; color:var(--text)}
.sep{margin:0 8px; color:var(--muted2)}
.featured{
  outline: 2px solid rgba(110,231,255,.22);
  background: linear-gradient(180deg, rgba(110,231,255,.10), rgba(167,139,250,.07));
}
.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(110,231,255,.16);
  border:1px solid rgba(110,231,255,.25);
  color:var(--text);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}

.enterprise{margin-top:14px}
.enterprise .card{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}

.faq{display:grid; grid-template-columns: 1fr; gap:12px}
details summary{
  cursor:pointer;
  font-weight:700;
  color:var(--text);
}
details p{margin:10px 0 0}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contact-cards{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:14px}
.form label{display:block; font-weight:700; margin:10px 0 6px}
.form input,.form textarea,.form select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
.form input::placeholder,.form textarea::placeholder{color: rgba(234,241,255,.45)}
.form button{margin-top:12px}

.footer{
  padding:26px 0;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.18);
}
.footer-grid{
  display:flex; justify-content:space-between; align-items:center; gap:10px;
}
.footer-links{display:flex; gap:14px}
.footer-links a{color:var(--muted)}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr; }
  .steps{grid-template-columns: 1fr 1fr}
  .pricing{grid-template-columns: 1fr}
  .strip-grid{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
  .contact-cards{grid-template-columns: 1fr}
}

@media (max-width: 760px){
  .nav-toggle{display:block}
  .nav-links{
    display:none;
    position:absolute;
    left:20px; right:20px; top:64px;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:14px;
    border-radius:16px;
    border:1px solid var(--border);
    background: rgba(11,18,32,.92);
    box-shadow: var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:10px 10px; border-radius:12px; background: rgba(255,255,255,.03)}
  .nav-links a.btn{background: rgba(110,231,255,.18); border:1px solid rgba(110,231,255,.25)}
}
