
:root{
  --bg:#f8fafc;
  --fg:#0f172a;
  --muted:#475569;
  --brand:#0ea5e9;
  --card:#ffffff;
  --ring: rgba(14,165,233,.35);
}
*{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";
  color:var(--fg);
  background:var(--bg);
  line-height:1.6;
}
a{color:var(--brand); text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.btn{
  display:inline-block; padding:12px 18px; border-radius:12px; background:var(--fg); color:white; font-weight:600;
  transition: transform .15s ease, box-shadow .2s ease; box-shadow:0 8px 24px rgba(2,6,23,.12);
}
.btn:hover{ transform:translateY(-1px) }
.btn.alt{ background:var(--brand) }
.nav{
  position:sticky; top:0; backdrop-filter:saturate(180%) blur(6px);
  background:rgba(248,250,252,.75); border-bottom:1px solid #e2e8f0; z-index:50;
}
.nav .wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.nav .links{display:flex; gap:18px; align-items:center; flex-wrap:wrap}
.nav a{font-weight:600; color:#0f172a}
.logo{display:flex; gap:10px; align-items:center}
.logo img{max-height:56px; height:auto; width:auto; display:block;}
.hero{
  background: url('../img/abstract-bg.svg') center/cover no-repeat;
  border-bottom:1px solid #e2e8f0;
}
.hero .wrap{display:grid; grid-template-columns: 1.2fr .8fr; gap:40px; padding:80px 0}
.badge{
  display:inline-flex; gap:8px; align-items:center; font-size:12px; padding:6px 10px; border-radius:999px;
  background:#e0f2fe; color:#075985; font-weight:700; letter-spacing:.02em
}
h1{font-size: clamp(32px, 4vw, 56px); line-height:1.05; margin:12px 0 16px}
.lead{font-size: clamp(16px, 2.1vw, 20px); color:var(--muted)}
.card{
  background:var(--card); border:1px solid #e2e8f0; border-radius:16px; padding:20px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}
.grid{ display:grid; gap:22px }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr) }
.grid.cols-2{ grid-template-columns: repeat(2, 1fr) }
.section{ padding:72px 0 }
.section h2{ font-size: clamp(26px, 3vw, 36px); margin:0 0 10px}
.section p{ color: var(--muted) }
.kpis{ display:grid; grid-template-columns: repeat(4,1fr); gap:16px }
.kpi{ text-align:center; padding:16px; border-radius:16px; background:#f1f5f9 }
.kpi strong{ font-size: clamp(18px, 2.4vw, 22px); display:block }
.footer{ padding:32px 0; border-top:1px solid #e2e8f0; color:var(--muted) }
.cta{ text-align:center; padding:60px 0 }
.hero-cta{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top:10px}

/* Reveal on scroll */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease }
.reveal.visible{ opacity:1; transform: translateY(0) }

/* Simple icon circle */
.icircle{ width:44px; height:44px; border-radius:50%; display:grid; place-items:center; background:#e0f2fe; color:#075985; font-weight:900 }

/* Responsive */
@media (max-width: 900px){
  .hero .wrap{ grid-template-columns: 1fr }
  .kpis{ grid-template-columns: repeat(2,1fr) }
  .grid.cols-3{ grid-template-columns: 1fr }
  .grid.cols-2{ grid-template-columns: 1fr }
}

.logo span{font-weight:800; letter-spacing:.2px}
@media (max-width: 560px){
  .logo span{display:none}
}






.hero-cta .btn:hover .btn-glow {
  opacity: 1;
}


.hero-cta .btn{
  position: relative;
  will-change: transform;
  transition: transform 0.18s ease-out;
  transform-style: preserve-3d;
  overflow: visible; /* allow glow to extend beyond edges */
  --rx: 0deg;
  --ry: 0deg;
  --px: 50%;
  --py: 50%;
}

/* Under-glow behind the button */
.hero-cta .btn::before{
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  transform: translate(-15%, -25%) scale(1.3); /* extend glow beyond edges */
  background: radial-gradient(circle at var(--px) var(--py),
              rgba(14,165,233,0.45) 0%,
              rgba(14,165,233,0.20) 25%,
              rgba(14,165,233,0.06) 50%,
              rgba(14,165,233,0.0) 70%);
  filter: blur(22px);
  z-index: -1;   /* sits behind the button itself */
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.hero-cta .btn:hover::before{ opacity: 1; }

/* Business name next to logo */
.logo-text { display: inline-block; color: #0f172a; }

/* Hide on small screens */
@media (max-width: 600px){
  .logo-text { display: none; }
}


/* Process page upgrades (v16) */
.process-layout{display:grid; grid-template-columns: 260px 1fr; gap:24px}
.process-toc{position:sticky; top:80px; align-self:start}
.process-toc .card{padding:14px}
.process-toc a{display:block; padding:8px 10px; border-radius:10px; color:#0f172a; font-weight:600; text-decoration:none}
.process-toc a.active{background:#e0f2fe; color:#075985}
.step-card{display:grid; grid-template-columns: 56px 1fr; gap:16px; align-items:flex-start}
.step-num{width:56px; height:56px; border-radius:14px; display:grid; place-items:center; font-weight:800; background:#e0f2fe; color:#075985; box-shadow: inset 0 0 0 2px rgba(14,165,233,.2)}
.step-title{margin:0 0 6px}
.step-meta{margin:8px 0 0; padding-left:18px; color:var(--muted)}
.step-icon{width:20px; height:20px; margin-right:6px; vertical-align:-3px}
.process-section{display:grid; gap:18px}
@media (max-width: 980px){
  .process-layout{grid-template-columns: 1fr}
  .process-toc{position:static}
}


/* Contact page centering fix */
.contact-centered{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.contact-centered .card{
  max-width:500px;
  width:100%;
}


/* Contact page full centering fix */
.contact-centered{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.contact-centered .card{
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}


/* v20: Center the contact form and remove right-side gap */
.contact-center{ display:flex; justify-content:center; }
.contact-center form.card{ max-width:540px; width:100%; margin:0 auto; }
