:root{
  --bg:#0B1220;
  --panel:#0F1A33;
  --card:#0E1730;
  --card2:#0C142A;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.55);
  --line:rgba(234,240,255,.12);

  /* Abrion accent: electric blue + cyan */
  --accent:#3B82F6;
  --accent2:#22D3EE;

  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 16px;
  --radius2: 22px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(34,211,238,.20), transparent 60%),
    radial-gradient(900px 500px at 70% 0%, rgba(59,130,246,.18), transparent 60%),
    linear-gradient(180deg, #070B15 0%, #0B1220 55%, #070B15 100%);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1140px, 92%); margin:0 auto; }

.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(7,11,21,.55);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  gap:12px;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  font-size:12px;
}
.sep{ opacity:.35; margin:0 8px; }
.muted{ color:var(--muted); }
.tiny{ font-size:12px; }

.toplink{
  font-size:13px;
  color:var(--muted);
}
.toplink:hover{ color:var(--text); }

.header{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
  background: rgba(11,18,32,.70);
  backdrop-filter: blur(12px);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:12px;
}
.brand-mark{
  width:38px; height:38px;
  border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display:grid; place-items:center;
  font-weight:800;
  box-shadow: 0 10px 35px rgba(34,211,238,.18);
}
.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ font-size:12px; color:var(--muted2); }

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.nav-links a:hover{ color:var(--text); }

.nav-cta{
  display:flex; align-items:center; gap:10px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:12px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-full{ width:100%; }

.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#051022;
  box-shadow: 0 20px 55px rgba(59,130,246,.20);
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-ghost{
  background: rgba(255,255,255,.03);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(234,240,255,.18);
}

.dropdown{ position:relative; }
.dropbtn{
  background: transparent;
  border:0;
  color: var(--muted);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  padding:10px 10px;
  border-radius:10px;
}
.dropbtn:hover{ color:var(--text); background: rgba(255,255,255,.04); }
.dropdown-menu{
  position:absolute;
  top:44px;
  left:0;
  min-width: 220px;
  padding:8px;
  background: rgba(8,12,22,.92);
  border:1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display:none;
}
.dropdown:hover .dropdown-menu{ display:block; }
.dropdown-menu a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  font-weight:650;
  color: var(--muted);
}
.dropdown-menu a:hover{
  background: rgba(255,255,255,.05);
  color: var(--text);
}

.chev{ opacity:.8; margin-left:6px; }

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(234,240,255,.85);
  margin:4px auto;
  border-radius: 999px;
}

.mobile-drawer{
  display:none;
  border-top:1px solid var(--line);
}
.drawer-inner{
  width:min(1140px, 92%);
  margin:0 auto;
  padding:12px 0 16px;
  display:grid;
  gap:10px;
}
.drawer-link{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  font-weight:700;
}
.drawer-link:hover{ color:var(--text); background: rgba(255,255,255,.06); }
.drawer-btn{ margin-top:4px; }

.hero{
  padding:64px 0 30px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}
.hero h1{
  font-size: clamp(34px, 4.3vw, 54px);
  line-height:1.02;
  margin: 0 0 14px;
  letter-spacing: -1px;
}
.grad{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height:1.6;
  margin: 0 0 18px;
  max-width: 58ch;
}
.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 18px 0 22px;
}
.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.trust-item{
  flex: 1 1 160px;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.03);
}
.trust-num{ font-weight:800; }
.trust-text{ font-size:12px; color: var(--muted2); margin-top:4px; }

.hero-card{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background:
    radial-gradient(600px 240px at 40% 0%, rgba(59,130,246,.18), transparent 55%),
    radial-gradient(600px 240px at 80% 10%, rgba(34,211,238,.18), transparent 55%),
    rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-header{
  padding:18px 18px 10px;
  border-bottom:1px solid var(--line);
}
.chip{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background: rgba(34,211,238,.10);
  border:1px solid rgba(34,211,238,.25);
  color: rgba(234,240,255,.92);
  margin-bottom:10px;
}
.hero-card h3{ margin:0; }
.checklist{
  list-style:none;
  padding:14px 18px 0;
  margin:0;
}
.checklist li{
  padding:10px 0 10px 28px;
  position:relative;
  border-bottom:1px dashed rgba(234,240,255,.10);
  color: var(--muted);
  font-weight:600;
}
.checklist li:last-child{ border-bottom:0; }
.checklist li:before{
  content:"✓";
  position:absolute;
  left:0; top:9px;
  width:20px; height:20px;
  border-radius:6px;
  display:grid; place-items:center;
  background: rgba(59,130,246,.12);
  border:1px solid rgba(59,130,246,.25);
  color: rgba(234,240,255,.95);
  font-weight:900;
}
.card-footer{
  padding:16px 18px 18px;
  border-top:1px solid var(--line);
  display:grid;
  gap:12px;
}
.mini-title{ font-weight:800; }
.mini-sub{ font-size:12px; color: var(--muted2); margin-top:3px; }

.logos{
  padding: 26px 0 0;
}
.logos-label{
  color: var(--muted2);
  font-size:12px;
  margin: 0 0 10px;
}
.logo-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.logo-pill{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}

.section{
  padding: 58px 0;
}
.section.alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  margin-bottom:18px;
  max-width: 70ch;
}
.section-head h2{
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -.6px;
}
.section-head p{ margin:0; line-height:1.6; }

.grid{
  display:grid;
  gap:14px;
}
.cards-4{ grid-template-columns: repeat(4, 1fr); }
.cards-3{ grid-template-columns: repeat(3, 1fr); }

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 10px; color: var(--muted); line-height:1.55; }

.mini-list{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  color: var(--muted);
}
.mini-list li{
  padding-left:18px;
  position:relative;
  margin: 8px 0;
  font-weight:600;
}
.mini-list li:before{
  content:"•";
  position:absolute;
  left:0;
  opacity:.9;
}

.steps{
  display:grid;
  gap:12px;
  margin-top: 10px;
}
.step{
  display:flex;
  gap:14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.step-num{
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  background: rgba(59,130,246,.14);
  border:1px solid rgba(59,130,246,.25);
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color: var(--muted); line-height:1.55; }

.callout{
  margin-top:16px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(34,211,238,.22);
  background:
    radial-gradient(700px 250px at 30% 0%, rgba(34,211,238,.16), transparent 60%),
    rgba(255,255,255,.03);
}
.callout h3{ margin:0 0 6px; }
.callout p{ margin:0; }

.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top: 14px;
}
.stat{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.stat-num{
  font-size:28px;
  font-weight:900;
  letter-spacing:-.8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stat-label{ margin-top:6px; color: var(--muted); font-weight:700; }

.profile{
  display:flex;
  gap:12px;
  padding:16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.avatar{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(59,130,246,.28), rgba(34,211,238,.28));
  border:1px solid rgba(234,240,255,.16);
}

.quote{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.quote p{ margin:0 0 12px; color: var(--muted); line-height:1.6; }
.quote-meta{ display:flex; gap:10px; align-items:center; }
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.quote-name{ font-weight:800; }
.quote-sub{ font-size:12px; }

.price{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  padding:18px;
  position:relative;
}
.price.highlight{
  border-color: rgba(34,211,238,.28);
  box-shadow: 0 24px 80px rgba(34,211,238,.12);
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(34,211,238,.18), transparent 60%),
    rgba(255,255,255,.03);
}
.badge{
  position:absolute;
  top:12px; right:12px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background: rgba(34,211,238,.14);
  border:1px solid rgba(34,211,238,.25);
}
.price h3{ margin:0 0 6px; }
.price-line{ margin:10px 0; color: var(--muted); font-weight:700; }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top: 14px;
}
.contact-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.form{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.field{ display:grid; gap:8px; margin-bottom:12px; }
label{ font-weight:800; font-size:13px; color: rgba(234,240,255,.86); }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(7,11,21,.45);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(34,211,238,.35);
  box-shadow: 0 0 0 4px rgba(34,211,238,.10);
}
.form-note{ margin:10px 0 0; font-size:12px; }

.faq{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.faq-q{
  width:100%;
  text-align:left;
  padding:16px 16px;
  background: transparent;
  border:0;
  border-bottom:1px solid rgba(234,240,255,.10);
  color: var(--text);
  font-weight:900;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
.faq-a{
  display:none;
  padding:14px 16px 18px;
  color: var(--muted);
  line-height:1.6;
}
.faq-q.open + .faq-a{ display:block; }
.faq-q.open .chev{ transform: rotate(180deg); }

.footer{
  padding: 40px 0;
  border-top:1px solid var(--line);
  background: rgba(7,11,21,.45);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:16px;
}
.footer-col h4{
  margin: 0 0 10px;
  font-size:14px;
}
.footer-col a{
  display:block;
  padding:8px 0;
  color: var(--muted);
  font-weight:650;
}
.footer-col a:hover{ color: var(--text); }
.footer-brand{ margin-bottom:10px; }

/* Responsive */
@media (max-width: 980px){
  .cards-4{ grid-template-columns: repeat(2, 1fr); }
  .cards-3{ grid-template-columns: repeat(2, 1fr); }
  .hero-grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .nav-links{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }
  .mobile-drawer.show{ display:block; }
}
@media (max-width: 560px){
  .cards-4, .cards-3{ grid-template-columns: 1fr; }
  .topbar-inner{ flex-direction:column; align-items:flex-start; }
}
