/* assets/styles.css */
:root{
  --bg:#0B1220;
  --panel:#0F172A;
  --panel2:#111C33;
  --text:#EAF0FF;
  --muted:#B7C3E2;
  --brand:#2563EB;
  --brand2:#60A5FA;
  --accent:#F97316;
  --ok:#22C55E;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 20px;
  --radius2: 28px;
  --max: 1120px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(37,99,235,.28), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(249,115,22,.22), transparent 55%),
              linear-gradient(180deg, #070B14 0%, #0B1220 50%, #070B14 100%);
  color:var(--text);
  line-height:1.55;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}


a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:76px 0}
.small{font-size:.92rem; color:var(--muted)}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 14px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.pill i{width:10px; height:10px; background:var(--ok); border-radius:50%}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(7,11,20,.60);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:800; letter-spacing:.2px;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(96,165,250,1));
  box-shadow: 0 10px 30px rgba(37,99,235,.35);
  display:grid; place-items:center;
}
.logo svg{opacity:.95}
.navlinks{
  display:flex; gap:16px; align-items:center;
}
.navlinks a{
  padding:10px 12px; border-radius:12px;
  color:var(--muted);
  transition: .2s ease;
}
.navlinks a:hover{color:var(--text); background: rgba(255,255,255,.06)}
.ctaRow{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
  transition: transform .2s ease, background .2s ease, border .2s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18)}
.btnPrimary{
  background: linear-gradient(135deg, rgba(37,99,235,1), rgba(96,165,250,1));
  border-color: rgba(96,165,250,.55);
  box-shadow: 0 18px 40px rgba(37,99,235,.35);
}
.btnPrimary:hover{background: linear-gradient(135deg, rgba(37,99,235,1), rgba(37,99,235,1))}
.btnAccent{
  background: linear-gradient(135deg, rgba(249,115,22,1), rgba(251,146,60,1));
  border-color: rgba(251,146,60,.55);
  box-shadow: 0 18px 40px rgba(249,115,22,.28);
}
.btnGhost{background: rgba(255,255,255,.04)}
.btnIcon{
  width:42px; height:42px; padding:0; border-radius:14px;
}
.hamburger{display:none}
.mobileMenu{display:none}

.hero{
  padding:70px 0 20px;
  position:relative;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:24px;
  align-items:stretch;
}
.card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard{
  padding:28px;
  position:relative;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(900px 300px at 20% 0%, rgba(96,165,250,.20), transparent 55%),
              radial-gradient(800px 260px at 90% 40%, rgba(249,115,22,.16), transparent 60%);
  z-index:0;
}
.heroCard > *{position:relative; z-index:1}
.h1{
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height:1.1;
  margin:14px 0 12px;
  letter-spacing: -0.6px;
}
.lead{
  color:var(--muted);
  font-size:1.06rem;
  margin:0 0 18px;
  max-width: 62ch;
}
.heroBadges{
  display:flex; gap:10px; flex-wrap:wrap;
  margin: 16px 0 18px;
}
.badge{
  padding:10px 12px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  color:var(--muted);
  display:inline-flex; align-items:center; gap:10px;
}
.badge b{color:var(--text)}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.heroNote{margin-top:12px; color:var(--muted); font-size:.92rem}

.sideCard{
  padding:18px;
  display:flex; flex-direction:column; gap:14px;
}
.kpiGrid{
  display:grid; grid-template-columns:1fr 1fr; gap:10px;
}
.kpi{
  padding:14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(17,28,51,.60);
}
.kpi .n{font-weight:800; font-size:1.1rem}
.kpi .t{color:var(--muted); font-size:.9rem}
.quickList{display:grid; gap:10px}
.quickItem{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px; border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(15,23,42,.55);
}
.icon{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(37,99,235,.18);
  border:1px solid rgba(37,99,235,.30);
}
.icon.orange{
  background: rgba(249,115,22,.16);
  border-color: rgba(249,115,22,.30);
}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}
.h2{font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin:0 0 12px; letter-spacing:-.3px}
.h3{font-size:1.15rem; margin:0 0 8px}
.panel{padding:18px; border-radius: var(--radius); background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10)}
.panel p{color:var(--muted); margin:0}
.panel .link{color:var(--brand2); font-weight:600}
.panel .link:hover{text-decoration:underline}
.list{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.list li{
  color:var(--muted);
  padding-left:18px;
  position:relative;
}
.list li:before{
  content:"";
  width:8px; height:8px;
  border-radius:3px;
  background: rgba(96,165,250,.75);
  position:absolute; left:0; top:.55em;
}

.callout{
.callout { flex-wrap: wrap; }
.callout .btn { width: 100%; justify-content: center; }
  margin-top:18px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(249,115,22,.12));
  border:1px solid rgba(255,255,255,.12);
}
.callout b{display:block}
.callout span{color:var(--muted); font-size:.94rem}
.callout .btn{flex:0 0 auto}

.steps{counter-reset: step}
.step{
  padding:18px; border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(17,28,51,.55);
  position:relative;
  overflow:hidden;
}
.step:before{
  counter-increment: step;
  content: counter(step);
  position:absolute; right:14px; top:10px;
  font-weight:900; font-size:2.2rem;
  color: rgba(255,255,255,.08);
}
.step p{color:var(--muted); margin:0}

.faq{display:grid; gap:12px}
.faqItem{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.faqQ{
  width:100%;
  padding:16px 16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  background:transparent;
  border:0;
  color:var(--text);
  cursor:pointer;
  font-weight:700;
  text-align:left;
}
.faqA{
  max-height:0;
  overflow:hidden;
  transition: max-height .35s ease;
}
.faqA > div{padding:0 16px 16px; color:var(--muted)}
.chev{transition: transform .25s ease}
.faqItem.open .chev{transform: rotate(180deg)}
.faqItem.open .faqA{max-height: 220px}

.footer{
  padding:34px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(7,11,20,.55);
}
.footerGrid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:16px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.subtle{color:rgba(183,195,226,.75)}
.hr{height:1px; background: rgba(255,255,255,.10); margin:18px 0}

.toast{
  position:fixed;
  bottom:16px; left:50%;
  transform:translateX(-50%);
  z-index:70;
  padding:12px 14px;
  border-radius:999px;
  background: rgba(15,23,42,.85);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  display:none;
  gap:10px;
  color:var(--muted);
}
.toast.show{display:inline-flex}
.toast b{color:var(--text)}

.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity:1;
  transform:none;
}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr; }
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
  .navlinks{display:none}
  .hamburger{display:inline-flex}
  .mobileMenu{
    display:none;
    padding: 8px 0 18px;
  }
  .mobileMenu.open{display:block}
  .mobileMenu a{
    display:block;
    padding:12px 12px;
    border-radius:14px;
    margin-top:8px;
    color:var(--muted);
    background: rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
  }
  .mobileMenu a:hover{color:var(--text)}
}
/* Sticky mobile call bar */
.stickyCall {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: space-between;

  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 23, 42, .88);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.stickyCall .left {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.stickyCall .title {
  font-weight: 800;
  font-size: .98rem;
  line-height: 1.1;
}

.stickyCall .sub {
  color: var(--muted);
  font-size: .85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stickyCall .actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.stickyCall a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .stickyCall { display: flex; }
  /* leave space so bar doesn't cover content */
  body { padding-bottom: 92px; }
}
.container { overflow-x: hidden; }
.card, .panel { max-width: 100%; }
img { max-width: 100%; height: auto; }
}
@media (max-width: 980px) {
  .hideOnMobile { display: none !important; }
}



