:root{
  --bg:#0b1020;
  --bg2:#0e1630;
  --text:#0c1020;
  --muted:#4b5563;
  --line:rgba(15, 23, 42, .12);
  --card:#ffffff;
  --card2:#f7f8fb;
  --shadow: 0 14px 40px rgba(2, 6, 23, .10);
  --shadow2: 0 10px 24px rgba(2, 6, 23, .12);
  --r:18px;
  --blue:#2563eb;
  --blue2:#06b6d4;
  --ink:#0b1020;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 60%, #ffffff 100%);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1120px, 92vw); margin:0 auto}
.skip{
  position:absolute; left:-999px; top:10px;
  background:#fff; padding:10px 12px; border-radius:10px; box-shadow:var(--shadow2);
}
.skip:focus{left:14px; z-index:9999}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:1000;
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; gap:14px;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px; min-width:160px}
.brand__logo{height:40px; width:auto}
.brand__word{font-weight:900; font-size:18px; color:var(--ink); letter-spacing:-.02em; line-height:1}
@media (max-width:540px){.brand__word{font-size:17px}}
.nav{
  display:flex; gap:18px; align-items:center;
  margin-left:auto;
}
.nav a{
  font-weight:600;
  font-size:14px;
  color:#111827;
  opacity:.9;
  padding:10px 8px;
  border-radius:10px;
}
.nav a:hover{background:rgba(37,99,235,.08)}
.topbar__cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  transition:transform .08s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
  color:white;
  box-shadow: 0 10px 20px rgba(37, 99, 235, .22);
}
.btn--primary:hover{box-shadow: 0 12px 28px rgba(37, 99, 235, .28)}
.btn--ghost{
  background:rgba(255,255,255,.7);
  border-color:rgba(15,23,42,.12);
  color:#0b1020;
}
.btn--ghost:hover{background:rgba(255,255,255,1)}
.btn--lg{padding:12px 16px; font-size:15px}
.btn--full{width:100%}

.navtoggle{
  display:none;
  margin-left:auto;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.85);
}
.navtoggle span{
  display:block;
  width:6px; height:6px;
  background:#0b1020;
  margin:4px auto;
  border-radius:999px;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding:70px 0 28px;
}
.hero__bg{
  position:absolute; inset:-40% -30%;
  background:
    radial-gradient(closest-side at 20% 20%, rgba(37, 99, 235, .22), transparent 60%),
    radial-gradient(closest-side at 80% 30%, rgba(6, 182, 212, .18), transparent 55%),
    radial-gradient(closest-side at 60% 90%, rgba(37, 99, 235, .10), transparent 55%);
  filter: blur(12px);
  pointer-events:none;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(37, 99, 235, .09);
  border:1px solid rgba(37, 99, 235, .14);
  font-weight:700;
  font-size:13px;
  color:#0b1020;
  margin:0 0 14px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height:1.02;
  letter-spacing:-.02em;
}
.grad{
  background:linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lede{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.5;
  color:rgba(17,24,39,.78);
  max-width:54ch;
}
.hero__buttons{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}
.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:10px;
}
.trust__item{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:12px 12px;
}
.trust__num{font-weight:900; font-size:15px}
.trust__label{font-size:12px; color:rgba(17,24,39,.70); margin-top:2px}

.card{
  background:var(--card);
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--r);
  padding:18px;
  box-shadow: var(--shadow);
}
.card--glass{
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
}
.card__title{margin:0 0 12px; font-size:18px}
.checklist{margin:0; padding-left:18px; color:rgba(17,24,39,.82)}
.checklist li{margin:10px 0}
.mini{
  margin-top:16px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  padding:12px;
  background:rgba(37,99,235,.07);
  border:1px solid rgba(37,99,235,.12);
  border-radius:16px;
}
.mini__label{font-size:12px; font-weight:800; letter-spacing:.02em; text-transform:uppercase}
.mini__text{font-size:13px; color:rgba(17,24,39,.78)}
.mini__btn{
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
  background:linear-gradient(90deg, var(--blue) 0%, var(--blue2) 100%);
  color:#fff;
}

/* Sections */
.section{padding:64px 0}
.section--alt{background: linear-gradient(180deg, rgba(37,99,235,.06) 0%, rgba(6,182,212,.04) 100%)}
.section__head{margin-bottom:22px}
.section__head h2{margin:0 0 8px; font-size:30px; letter-spacing:-.02em}
.section__head p{margin:0; color:rgba(17,24,39,.72); max-width:70ch}
.grid{display:grid; gap:14px}
.cards{grid-template-columns: repeat(3, 1fr)}
.cards .card{padding:18px 18px 16px}
.cards h3{margin:0 0 8px}
.cards p{margin:0; color:rgba(17,24,39,.72); line-height:1.5}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.75);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow2);
}
.step__num{
  width:38px; height:38px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  background:rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
}
.step h3{margin:10px 0 6px}
.step p{margin:0; color:rgba(17,24,39,.72); line-height:1.5}

.cta-strip{
  margin-top:18px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.10);
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}
.cta-strip h3{margin:0 0 6px}
.cta-strip p{margin:0; color:rgba(17,24,39,.72)}
.cta-strip__buttons{display:flex; gap:10px; flex-wrap:wrap}

.kpis{grid-template-columns: repeat(3, 1fr)}
.kpi{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow2);
}
.kpi__big{font-size:26px; font-weight:900}
.kpi__title{font-weight:900; margin-top:6px}
.kpi__text{color:rgba(17,24,39,.72); margin-top:4px; line-height:1.5}

.note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  border:1px dashed rgba(15,23,42,.20);
  color:rgba(17,24,39,.78);
  background:rgba(255,255,255,.7);
}

.testimonials{grid-template-columns: repeat(3, 1fr)}
.quote{
  margin:0;
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.80);
  box-shadow: var(--shadow2);
}
.quote blockquote{margin:0 0 10px; font-weight:800; line-height:1.4}
.quote figcaption{color:rgba(17,24,39,.68); font-size:13px}

.faq details{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.80);
  border-radius:16px;
  padding:14px 16px;
  margin-bottom:10px;
  box-shadow: var(--shadow2);
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq__body{margin-top:10px; color:rgba(17,24,39,.72); line-height:1.5}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact h2{margin:0 0 10px; font-size:30px}
.contact p{margin:0 0 16px; color:rgba(17,24,39,.72); line-height:1.55}
.contact__cards{display:grid; gap:10px; grid-template-columns: 1fr 1fr}
.mini-card{
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  padding:14px;
  box-shadow: var(--shadow2);
}
.mini-card__label{font-size:12px; font-weight:900; color:rgba(17,24,39,.66); text-transform:uppercase; letter-spacing:.03em}
.mini-card__value{font-size:16px; font-weight:900; margin-top:6px; display:block}
.form{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.form label{display:block; font-weight:800; font-size:13px; color:rgba(17,24,39,.78); margin-bottom:10px}
.form input, .form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.14);
  background:#fff;
  font:inherit;
}
.form input:focus, .form textarea:focus{
  outline:none;
  border-color:rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.form__fineprint{margin:10px 0 0; color:rgba(17,24,39,.58); font-size:12px; line-height:1.45}

.thanks{
  max-width:700px;
  margin:0 auto;
  padding:26px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  box-shadow: var(--shadow);
}
.thanks h1{margin:0 0 10px}
.thanks p{margin:0 0 16px; color:rgba(17,24,39,.72)}

/* Footer */
.footer{
  padding:30px 0 40px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap:18px;
  align-items:start;
}
.footer__brand img{height:34px; width:auto}
.footer__word{font-weight:900; font-size:16px; margin-top:6px; color:var(--ink)}
.footer__brand p{margin:8px 0 0; color:rgba(17,24,39,.70)}
.footer__links{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.footer__links a{font-weight:800; font-size:13px; padding:8px 10px; border-radius:12px}
.footer__links a:hover{background:rgba(37,99,235,.08)}
.footer__small{grid-column: 1 / -1; color:rgba(17,24,39,.55); font-size:12px}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .kpis{grid-template-columns:1fr}
  .testimonials{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .contact__cards{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr}
  .footer__links{justify-content:flex-start}
}
@media (max-width: 860px){
  .topbar__cta{display:none}
  .navtoggle{display:inline-flex}
  .nav{
    position:absolute;
    left:0; right:0;
    top:60px;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid rgba(15,23,42,.10);
    padding:12px 4vw 18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }
  .nav a{width:100%}
  .nav.is-open{display:flex}
}
