:root{
  --bg:#0b1220;
  --card:#0f1a2d;
  --text:#e6edf6;
  --muted:#a9b4c3;
  --line:rgba(255,255,255,.10);
  --primary:#4f8cff;
  --primary2:#7aa8ff;
  --shadow: 0 10px 40px rgba(0,0,0,.35);
  --r:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
  background: radial-gradient(1200px 800px at 70% 0%, rgba(79,140,255,.35), transparent 60%),
              radial-gradient(1000px 700px at 0% 30%, rgba(122,168,255,.22), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:0 18px}

.top{
  position:sticky;top:0;z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom: 1px solid var(--line);
}
.top .wrap{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:14px 18px;
}
.brand{display:flex;align-items:center;gap:12px}
.logo{
  width:42px;height:42px;border-radius:12px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: var(--shadow);
}
.brand-name{font-weight:800;letter-spacing:.2px}
.brand-sub{font-size:12px;color:var(--muted)}
.nav{display:flex;gap:16px;color:var(--muted);font-size:14px}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  transition: transform .12s ease, background .12s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.btn-primary{
  border:none;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#071022;
  font-weight:800;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-primary:hover{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79,140,255,.4);
}
.btn-ghost{background: transparent}

.hero{padding:52px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:32px;
  align-items:start;
}
h1{font-size:44px;line-height:1.15;margin:0 0 12px;padding-top:0}
.muted{color:var(--muted);font-weight:700}
.lead{color:var(--muted);font-size:16px;margin:0 0 16px;max-width:52ch}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 16px}

.trust{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.pill{
  font-size:13px;color:var(--muted);
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  padding:7px 10px;border-radius:999px;
}

.card{
  border:1px solid var(--line);
  background: rgba(15,26,45,.75);
  box-shadow: var(--shadow);
  border-radius: var(--r);
  padding:18px;
}
.order-card{
  padding:0;
  display:flex;
  flex-direction:column;
  align-self:stretch;
}
.order-card-header{
  padding:28px 28px 22px;
  border-bottom:1px solid var(--line);
}
.card-title{font-weight:900;font-size:24px;margin:0 0 8px;letter-spacing:.2px;line-height:1.3}
.card-sub{color:var(--muted);font-size:14px;margin:0;line-height:1.6}
.order-card-content{
  padding:28px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
}

.form{display:grid;gap:12px;margin-top:14px}
label{display:grid;gap:6px;color:var(--muted);font-size:13px}
input,select,textarea{
  width:100%;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding:10px 12px;
  outline:none;
}
textarea{resize:vertical}
.hint{color:var(--muted);font-size:12px}

.section{padding:34px 0}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{font-size:26px;margin:0 0 16px}
.grid3{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:14px;
}
.feature{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  padding:16px;
}
.icon{font-size:22px}
.ftitle{font-weight:900;margin-top:8px}
.ftext{color:var(--muted);font-size:14px;margin-top:6px}

.steps{margin:0;padding-left:20px;color:var(--muted)}
.steps li{margin:10px 0}
.steps b{color:var(--text)}

.faq details{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  padding:12px 14px;
  margin:10px 0;
}
.faq summary{cursor:pointer;font-weight:800;color:var(--text)}
.faq p{color:var(--muted);margin:8px 0 0}

.footer{
  padding:26px 0 40px;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:16px;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.small{font-size:12px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr; gap:24px}
  h1{font-size:36px}
  .nav{display:none}
  .footer-grid{grid-template-columns:1fr}
  .order-card-header{padding:22px 22px 18px}
  .order-card-content{padding:22px}
  .card-title{font-size:22px}
}

.single-price{
  margin:0;
  padding:14px;
  border-radius:12px;
  background: linear-gradient(135deg,#4f8cff,#7aa8ff);
  color:#071022;
  font-weight:900;
  letter-spacing:.2px;
  font-size:18px;
  text-align:center;
  display:block;
  text-decoration:none;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.single-price:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79,140,255,.4);
}


.steps3{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-top:30px;
  flex-wrap:wrap;
}
.step-item{
  flex:1;
  text-align:center;
  min-width:220px;
}
.step-circle{
  width:90px;
  height:90px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:900;
  color:#fff;
  margin:0 auto 14px;
}
.step1{background:#4f46e5;}
.step2{background:#14b8a6;}
.step3{background:#22c55e;}

.step-title{
  font-weight:800;
  margin-bottom:6px;
}
.step-desc{
  font-size:14px;
  color:var(--muted);
}
.step-line{
  flex:0.3;
  height:6px;
  background: linear-gradient(90deg,#4f46e5,#14b8a6,#22c55e);
  border-radius:6px;
  margin-top:42px;
}

@media (max-width:900px){
  .step-line{display:none}
}

.center-title{
  text-align:center;
  font-size:34px;
  letter-spacing:.2px;
  margin-bottom:26px;
}
.card3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}
.info-card{
  background: rgba(255,255,255,0.04);
  color: #e6edf6;
  border-radius:22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  padding:26px 24px;
  text-align:center;
}
.iconball{
  width:86px;
  height:86px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin:6px auto 16px;
  color:#fff;
}
.iconball.g1{background: linear-gradient(135deg,#34d399,#3b82f6);}
.iconball.g2{background: linear-gradient(135deg,#a78bfa,#ec4899);}
.iconball.g3{background: linear-gradient(135deg,#fb923c,#ef4444);}

.ic-title{
  font-size:22px;
  font-weight:900;
  margin:0 0 10px;
}
.ic-desc{
  font-size:14px;
  color: rgba(230,237,246,.75);
  margin:0;
  line-height:1.75;
}

@media (max-width: 980px){
  .card3{grid-template-columns:1fr; gap:14px;}
  .center-title{font-size:28px;}
}


/* FAQ cards (screenshot-like) */
.faq-head{ text-align:center; margin-bottom:18px; }
.faq-title{
  font-size:36px;
  font-weight:900;
  letter-spacing:.2px;
}
.faq-sub{
  color: rgba(230,237,246,.72);
  margin-top:10px;
}
.faq-cards{ margin-top:22px; display:grid; gap:18px; }
.faq-card{
  display:flex; gap:16px;
  align-items:flex-start;
  padding:18px 18px;
  border-radius:22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
}
.faq-ico{
  width:44px;height:44px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  margin-top:2px;
}
.faq-ico.q{ color:#ff4d4f; background: rgba(255,77,79,.12); }
.faq-ico.lock{ color:#1677ff; background: rgba(22,119,255,.12); }
.faq-ico.x{ color:#ff4d4f; background: rgba(255,77,79,.12); }
.faq-ico.vs{ color:#faad14; background: rgba(250,173,20,.14); font-size:14px; }
.faq-ico.loop{ color:#52c41a; background: rgba(82,196,26,.14); }

.faq-q{ font-size:20px; font-weight:900; margin:0 0 8px; }
.faq-a{ color: rgba(230,237,246,.78); line-height:1.8; font-size:14px; }
@media (max-width: 920px){
  .faq-title{font-size:28px;}
  .faq-card{padding:16px;}
  .faq-q{font-size:18px;}
}


/* Social proof section */
.metric4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:22px;
}
.metric-card{
  border-radius:22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  padding:22px 18px;
  text-align:center;
}
.m-ico{
  font-size:28px;
  width:56px;height:56px;
  display:flex;align-items:center;justify-content:center;
  margin:2px auto 10px;
  border-radius:18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,.10);
}
.m-big{
  font-size:34px;
  font-weight:900;
  letter-spacing:.2px;
}
.m-sub{
  margin-top:6px;
  font-weight:800;
  color: rgba(230,237,246,.88);
}
.m-label{
  margin-top:8px;
  font-size:12px;
  color: rgba(230,237,246,.65);
}

.quote3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:18px;
}
.quote-card{
  border-radius:22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
  padding:18px 18px;
  text-align:center;
}
.q-text{
  color: rgba(230,237,246,.82);
  line-height:1.8;
  font-weight:600;
}
.stars{
  margin-top:12px;
  letter-spacing:2px;
  color:#f6c343;
  font-size:16px;
}

@media (max-width: 1100px){
  .metric4{grid-template-columns: repeat(2, 1fr);}
  .quote3{grid-template-columns: 1fr;}
}

.logo img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.logo{
  background: transparent !important;
  box-shadow: none !important;
}


/* Smooth anchor scrolling */
html{ scroll-behavior: smooth; }

/* Avoid being hidden under sticky header when jumping to anchors */
section[id]{ scroll-margin-top: 90px; }

/* Top bar micro-interactions */
.top{
  transition: background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.top.is-scrolled{
  background: rgba(11,18,32,.72);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  border-bottom-color: rgba(255,255,255,.16);
}
.logo img{
  transition: transform .18s ease, filter .18s ease;
}
.top.is-scrolled .logo img{
  transform: scale(.92);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
}


/* Make submit typography match the price title */
.card button,
.card .btn-submit,
form button[type="submit"]{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 18px;
}

/* Bottom disclaimer */
.disclaimer-box{
  border-radius:22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
  padding:18px 18px;
}
.disclaimer-title{
  font-weight:900;
  font-size:16px;
  margin-bottom:10px;
  color: rgba(230,237,246,.92);
}
.disclaimer-text{
  font-size:12px;
  line-height:1.8;
  color: rgba(230,237,246,.68);
}

/* ensure CTA anchor is clickable */
.cta-link{
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
  color:inherit;
}

/* verify btn - aligned with single-price */
.verify-btn{
  margin:0;
  padding:14px;
  border-radius:12px;
  display:block;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
  font-weight:900;
  letter-spacing:.2px;
  font-size:18px;
  color:#7fb1ff;
  background:transparent;
  border:1px solid rgba(127,177,255,.45);
  transition:all .12s ease;
}
.verify-btn:hover{
  background:rgba(127,177,255,.12);
  border-color:rgba(127,177,255,.8);
  color:#a9caff;
  transform: translateY(-1px);
}

/* action row */
.action-row{
  display:flex;
  gap:12px;
  margin-top:14px;
}

/* balanced footer */
.footer{
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-row{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  font-size:13px;
  color:#8fa1c7;
}
.footer-left{
  white-space:nowrap;
}
.footer-right{
  opacity:.7;
  line-height:1.8;
  max-width:800px;
}
@media (max-width: 920px){
  .footer-row{
    flex-direction:column;
    gap:16px;
  }
  .footer-left{
    white-space:normal;
  }
  .footer-right{
    max-width:100%;
  }
}
