:root{
  --bg:#0b1220;
  --bg2:#0e1930;
  --text:rgba(255,255,255,.90);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.56);

  --brand:#4ea3ff;      /* confidence blue */
  --brand2:#2ee59d;     /* credibility green */

  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);

  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --shadow2: 0 10px 30px rgba(0,0,0,.25);

  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(78,163,255,.25), transparent 55%),
    radial-gradient(1000px 700px at 85% 10%, rgba(78,163,255,.12), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.container{ width:100%; max-width:var(--max); margin:0 auto; padding:0 20px; }

/* NAV */
.nav-wrap{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.58);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
  letter-spacing:.2px;
  min-width: 250px;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(78,163,255,1), rgba(46,229,157,1));
  box-shadow: 0 10px 22px rgba(78,163,255,.2);
  display:grid; place-items:center;
}
.logo svg{ width:18px; height:18px; opacity:.95; }

.brand .name{ font-size:15px; }
.brand .tagline{
  font-size:12px;
  color: var(--muted2);
  font-weight:900;
  letter-spacing:.2px;
}

.nav-links{
  display:flex;
  gap:12px;
  align-items:center;
  color: var(--muted);
  font-weight:800;
  font-size:13px;
  flex-wrap:nowrap;       /* keep it one line */
  white-space:nowrap;
}
.nav-links a{
  padding:8px 10px;
  border-radius:10px;
}
.nav-links a:hover{
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.nav-cta{ display:flex; gap:10px; align-items:center; }

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:900;
  box-shadow: var(--shadow2);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease;
  font-size:14px;
  gap:10px;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.btn.primary{
  background: linear-gradient(135deg, rgba(78,163,255,1), rgba(46,229,157,1));
  border-color: rgba(255,255,255,.08);
}
.btn.primary:hover{ filter: brightness(1.04); }
.btn.small{ padding:10px 14px; border-radius:12px; }
.btn.ghost{ background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.10); box-shadow:none; }

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.74);
  font-weight:900;
  font-size:13px;
  white-space:nowrap;
}

/* PANELS / CARDS */
.panel{
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 22px;
  position:relative;
  overflow:hidden;
}
.panel:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(78,163,255,.16), transparent 55%),
    radial-gradient(600px 300px at 90% 20%, rgba(46,229,157,.12), transparent 55%);
  opacity:.9;
  pointer-events:none;
}
.panel > *{ position:relative; z-index:1; }

.card{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card h3{ margin: 0 0 8px; font-size:16px; }
.card p{ margin: 0; color: var(--muted); font-size:14px; }

.section{ padding: 58px 0; }
.section-title{ font-size: 30px; letter-spacing:-.35px; margin:0 0 10px; }
.section-sub{ color: var(--muted); margin:0 0 22px; max-width: 78ch; font-size:16px; }

.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.icon{
  width:38px; height:38px; border-radius:14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display:grid; place-items:center; margin-bottom: 12px;
}
.icon svg{ width:18px; height:18px; opacity:.9; }

.fineprint{ color: var(--muted2); font-size:13px; margin-top: 10px; }
.hr{ height:1px; background: rgba(255,255,255,.10); margin: 18px 0; }

/* HERO */
.hero{ padding: 62px 0 10px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
  align-items:stretch;
}
.headline{
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.06;
  margin: 14px 0 12px;
  letter-spacing:-.7px;
}
.subhead{
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
  margin:0 0 18px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin: 18px 0 12px; }

.trust-stack{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 8px;
}

/* “Get fast” moved down */
.hero-deliverables{
  display:grid;
  gap: 12px;
}
.deliverable{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, rgba(78,163,255,1), rgba(46,229,157,1));
  margin-top: 6px;
}

/* Chooser */
.chooser{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 18px;
}
.chooser .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

/* Fix select readability (options + text contrast) */
.select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,10,16,.65);
  color: rgba(255,255,255,.92);
  font-weight:900;
  outline:none;
  color-scheme: dark;
}
.select option{
  background: #0b1220; /* important: fixes blend issue */
  color: #ffffff;
}
.select:focus{
  border-color: rgba(78,163,255,.55);
  box-shadow: 0 0 0 4px rgba(78,163,255,.12);
}

.result{
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size:14px;
}

/* Packages */
.packages{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items:start;
}
.package-feature{
  border-radius: var(--radius2);
  padding: 22px;
  background: linear-gradient(135deg, rgba(78,163,255,.12), rgba(46,229,157,.10));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 7px 12px;
  border-radius:999px;
  background: rgba(46,229,157,.12);
  border: 1px solid rgba(46,229,157,.25);
  color: rgba(214,255,240,.92);
  font-weight:950;
  font-size:12px;
  margin-bottom: 12px;
}
.price{
  font-size: 24px;
  font-weight: 950;
  letter-spacing:-.2px;
  margin: 10px 0 10px;
}
.list{
  margin: 10px 0 0; padding-left:18px;
  color: var(--muted);
  font-size:14px;
}
.list li{ margin:7px 0; }
.tag{
  font-size:12px; font-weight:950;
  padding: 6px 10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  white-space:nowrap;
}
.package-stack{ display:grid; gap: 16px; }

/* Forms */
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.input, .textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,10,16,.55);
  color: rgba(255,255,255,.92);
  font-weight:800;
  outline:none;
}
.textarea{ min-height: 120px; resize: vertical; }
.input:focus, .textarea:focus{
  border-color: rgba(78,163,255,.55);
  box-shadow: 0 0 0 4px rgba(78,163,255,.12);
}

/* Footer */
footer{
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}
.footer-simple{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:flex-end;
}
.footer-link{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.80);
  font-weight: 950;
  font-size: 13px;
}
.footer-link:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.94);
}
.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-weight: 950;
  font-size: 12px;
}
.footer-links a{ color: rgba(255,255,255,.74); }
.footer-links a:hover{ color: rgba(255,255,255,.94); }
.footer-links span{ opacity:.6; }

/* Sticky Mobile Bottom Bar */
.mobilebar{
  display:none;
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  padding: 10px 12px;
  background: rgba(11,18,32,.78);
  border-top: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.mobilebar-inner{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobilebar .btn{ width:100%; justify-content:center; box-shadow:none; border-radius: 14px; }

/* RESPONSIVE */
@media (max-width: 980px){
  .nav-links{ display:none; }   /* clean mobile header */
}
@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
  .packages{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .chooser .row{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .mobilebar{ display:block; }
  body{ padding-bottom: 78px; }
  .footer-nav{ justify-content:flex-start; }
  .footer-bottom{ justify-content:flex-start; }
}