:root{
  --bg: #0b1220;
  --panel: #0f1a33;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --text: #eaf0ff;
  --muted: rgba(234,240,255,0.72);
  --line: rgba(255,255,255,0.12);
  --brand: #4f7cff;
  --brand2:#2dd4bf;
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(79,124,255,0.35), transparent 60%),
              radial-gradient(900px 700px at 80% 20%, rgba(45,212,191,0.25), transparent 55%),
              linear-gradient(180deg, var(--bg), #060a13 70%);
  color: var(--text);
}

a{ color: inherit; text-decoration:none; }
.container{ width:min(1120px, 92vw); margin:0 auto; }

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left: 12px; top: 12px;
  width:auto; height:auto; padding:10px 12px;
  background:#111a33; border:1px solid var(--line);
  border-radius:10px; z-index:9999;
}

.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,10,19,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}

.brand{ display:flex; gap:12px; align-items:center; }
.logo{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(79,124,255,0.9), rgba(45,212,191,0.75));
  font-weight: 800;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight: 800; letter-spacing: 0.2px; }
.brand-sub{ font-size: 12px; color: var(--muted); }

.nav{ display:flex; align-items:center; gap:16px; }
.nav a{ color: var(--muted); font-weight: 500; }
.nav a:hover{ color: var(--text); }

.nav-toggle{
  display:none;
  width:42px; height:42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.nav-toggle span{
  display:block; height:2px; width:18px;
  background: var(--text);
  margin: 4px auto;
  opacity: 0.9;
}
.mobile-nav{
  display:none;
  padding: 12px 0 18px;
  border-top: 1px solid var(--line);
}
.mobile-nav a{ display:block; padding: 10px 0; color: var(--muted); }
.mobile-nav .btn{ margin-top: 6px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--brand), #3b82f6);
  color: white;
  box-shadow: 0 10px 30px rgba(79,124,255,0.25);
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-outline{
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn-outline:hover{ background: rgba(255,255,255,0.06); }
.btn-ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}
.btn-ghost:hover{ color: var(--text); }
.btn-block{ width:100%; }

.hero{
  padding: 54px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: -0.6px;
  line-height: 1.08;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 10px;
}
.trust-item{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 12px;
}
.trust-title{ display:block; color: var(--muted); font-size: 12px; }
.trust-value{ display:block; margin-top: 6px; font-weight: 800; }

.fineprint{
  color: rgba(234,240,255,0.6);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
}

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.hero-card .card{ padding: 18px; }
.card-header h2{ margin: 0; font-size: 18px; }
.muted{ color: var(--muted); }
.card-header p{ margin: 8px 0 0; }

.form{ margin-top: 14px; }
.field{ margin-bottom: 12px; }
label{ display:block; font-weight: 700; font-size: 13px; margin-bottom: 6px; }
input, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  outline: none;
}
input::placeholder{ color: rgba(234,240,255,0.45); }
input:focus, select:focus{
  border-color: rgba(79,124,255,0.65);
  box-shadow: 0 0 0 3px rgba(79,124,255,0.18);
}
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.consent{
  display:flex; gap:10px; align-items:flex-start;
  margin: 10px 0 6px;
}
.consent input{ width: 18px; height: 18px; margin-top: 2px; }
.consent label{ margin: 0; font-weight: 600; color: var(--muted); }
.error{ display:block; min-height: 16px; color: #ffb4b4; font-size: 12px; margin-top: 6px; }

.disclosures{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: rgba(234,240,255,0.65);
  line-height: 1.55;
}
.disclosures p{ margin: 8px 0; }

.success{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(45,212,191,0.35);
  background: rgba(45,212,191,0.08);
  color: rgba(234,240,255,0.9);
}

.section{
  padding: 42px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{ margin-bottom: 18px; }
.section-head h2{ margin: 0 0 8px; font-size: 24px; }
.section-head p{ margin: 0; }

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.offer{ padding: 18px; position: relative; }
.offer h3{ margin: 0 0 10px; }
.price{ margin: 0 0 14px; font-weight: 800; }
.list{ margin: 0 0 16px; padding-left: 18px; color: var(--muted); }
.list li{ margin: 8px 0; }

.featured{
  border-color: rgba(79,124,255,0.45);
  background: linear-gradient(180deg, rgba(79,124,255,0.14), rgba(255,255,255,0.03));
}
.badge{
  position:absolute;
  top: 14px; right: 14px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  background: rgba(79,124,255,0.25);
  border: 1px solid rgba(79,124,255,0.35);
  padding: 6px 10px;
  border-radius: 999px;
}

.note{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: rgba(234,240,255,0.75);
  line-height: 1.55;
}
.note strong{ color: rgba(234,240,255,0.95); }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{ padding: 18px; }
.step-num{
  width:34px; height:34px; border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  font-weight: 900;
  margin-bottom: 10px;
}

.faq details{ padding: 14px 16px; }
.faq summary{
  cursor:pointer;
  font-weight: 800;
}
.faq p{ margin: 10px 0 0; }

.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 18px;
  align-items:start;
}
.footer-col h4{ margin: 0 0 10px; }
.footer-col a{
  display:block;
  color: var(--muted);
  margin: 8px 0;
}
.footer-col a:hover{ color: var(--text); }

.footer-bottom{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .trust-row{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .nav-toggle{ display:inline-block; }
  .mobile-nav{ display:block; }
}
