:root{
  --bg:#0b1220;
  --panel:#101a2e;
  --card:#111e36;
  --text:#eaf0ff;
  --muted:#a8b3d6;
  --brand:#22c55e;
  --brand2:#06b6d4;
  --danger:#ef4444;
  --border:rgba(255,255,255,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.45);
  --radius:18px;
  --max:1160px;
  --ring: 0 0 0 4px rgba(34,197,94,.18);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 600px at 15% 15%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(700px 500px at 85% 15%, rgba(6,182,212,.18), transparent 60%),
    radial-gradient(900px 700px at 50% 85%, rgba(147,51,234,.12), transparent 60%),
    var(--bg);
  line-height:1.5;
}

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

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; min-width: 210px;
}
.brand-badge{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 24px rgba(34,197,94,.18);
}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand-sub{color:var(--muted); font-size:12px; margin-top:-2px}

.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border:1px solid var(--border);
  background: rgba(16,26,46,.55);
  border-radius:999px;
  flex-wrap:wrap;
}
.nav-links a{
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  white-space:nowrap;
}
.nav-links a.active, .nav-links a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
}
.nav-actions{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.btn:hover{transform: translateY(-1px)}
.btn:focus{outline:none; box-shadow: var(--shadow), var(--ring)}
.btn.primary{
  background: linear-gradient(135deg, rgba(34,197,94,.95), rgba(6,182,212,.92));
  border-color: rgba(255,255,255,.12);
  color:#07120f;
  font-weight:800;
}
.btn.secondary{
  background: rgba(255,255,255,.06);
}
.btn.danger{
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.25);
  color:#ffd2d2;
}

.hero{padding:44px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.card{
  border:1px solid var(--border);
  background: rgba(17,30,54,.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.3px; font-size:12px; text-transform:uppercase}
h1{font-size:40px; line-height:1.12; margin:10px 0 10px}
h2{font-size:26px; margin:0 0 10px}
p{color:rgba(234,240,255,.9)}
.lead{font-size:16px; color:rgba(234,240,255,.92)}
.pills{display:flex; flex-wrap:wrap; gap:8px; margin:14px 0}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  background: rgba(255,255,255,.03);
  font-size:13px;
}
.highlight{
  border: 1px solid rgba(34,197,94,.25);
  background: linear-gradient(180deg, rgba(34,197,94,.10), rgba(17,30,54,.72));
}

.grid3{
  display:grid; gap:12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 14px 0 0;
}
.feature{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.feature .t{font-weight:800; margin-bottom:6px}
.feature .d{color:var(--muted); font-size:14px}

.section{padding:18px 0 36px}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:10px}
.section-title .meta{color:var(--muted); font-size:13px}

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  vertical-align:top;
}
.table th{color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.3px}
.table tr:last-child td{border-bottom:none}

.form{
  display:grid; gap:12px;
}
.label{font-size:13px; color:var(--muted); font-weight:700}
.input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: rgba(11,18,32,.6);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.input:focus, select:focus, textarea:focus{box-shadow: var(--ring); border-color: rgba(34,197,94,.35)}

.flash{
  padding:12px 14px; border-radius:14px; border:1px solid var(--border);
  background: rgba(255,255,255,.04); margin: 12px 0;
}
.flash.success{border-color: rgba(34,197,94,.28); background: rgba(34,197,94,.10)}
.flash.error{border-color: rgba(239,68,68,.28); background: rgba(239,68,68,.10)}

.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
}
.footer a{color:var(--text)}
.footer-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:12px;
}
.small{font-size:13px; color:var(--muted)}
.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,.03);
  color: var(--muted);
  font-size: 13px;
}
.dot{width:10px; height:10px; border-radius:999px; background: var(--brand)}
.dot.red{background: var(--danger)}
.hr{height:1px; background: var(--border); margin: 14px 0}

@media (max-width: 960px){
  h1{font-size:34px}
  .hero-grid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .brand{min-width:auto}
}
.hero-image{
  margin-top:20px;
}

.hero-image img{
  width:100%;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}

.hero-image img:hover{
  transform: scale(1.02);
}
.steps-vertical{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:14px;
}

.step-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:16px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  transition: all .3s ease;
}

.step-item:hover{
  background: rgba(255,255,255,.05);
  transform: translateX(6px);
}

.step-number{
  min-width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#07120f;
  font-size:16px;
}

.step-content .t{
  font-weight:800;
  margin-bottom:4px;
}

.step-content .d{
  color:var(--muted);
  font-size:14px;
}
.anti-spam-card{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:14px;
  align-items:center;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(6,182,212,.22);
  background: linear-gradient(180deg, rgba(6,182,212,.10), rgba(17,30,54,.55));
}

.anti-spam-right{
  display:flex;
  justify-content:center;
  align-items:center;
}

.anti-spam-right img{
  width:100%;
  max-width:220px;
  height:auto;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
  padding:10px;
}

@media (max-width: 960px){
  .anti-spam-card{
    grid-template-columns: 1fr;
  }
  .anti-spam-right img{
    max-width:200px;
  }
}
.audience-title{
  font-size:clamp(20px, 2.2vw, 30px);
  font-weight:900;
  margin-bottom:14px;
  letter-spacing:.3px;

  background: linear-gradient(90deg, var(--brand), var(--brand2));

  background-clip: text;              /* standard */
  -webkit-background-clip: text;      /* safari / chrome */
  
  color: transparent;                 /* standard */
  -webkit-text-fill-color: transparent;
}
.guarantee-box{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px;
  margin-top:18px;
  border-radius:18px;
  border:1px solid rgba(34,197,94,.35);
  background: linear-gradient(180deg, rgba(34,197,94,.12), rgba(17,30,54,.6));
  box-shadow: var(--shadow);
  animation: softPulse 4s ease-in-out infinite;
}

@keyframes softPulse{
  0% {
    box-shadow:
      var(--shadow),
      0 0 0 0 rgba(34,197,94,.12);
  }
  50% {
    box-shadow:
      var(--shadow),
      0 0 30px 6px rgba(34,197,94,.18);
  }
  100% {
    box-shadow:
      var(--shadow),
      0 0 0 0 rgba(34,197,94,.12);
  }
}
.status-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  font-size:13px;
  font-weight:800;
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

.status-badge.active{
  border-color: rgba(34,197,94,.30);
  background: rgba(34,197,94,.12);
  color: rgba(234,240,255,.95);
}

.status-badge.none{
  border-color: rgba(239,68,68,.25);
  background: rgba(239,68,68,.10);
  color: rgba(255,210,210,.95);
}
.btn.arrow{
  padding:8px 10px;
  min-width:auto;
}
.price-free{
  font-weight:900;
  color:#22c55e;
}
.price-cell{
  white-space: nowrap;
}