:root{
  --bg:#070b14;
  --panel:#0b1220;
  --panel2:#0a1020;
  --text:#e8eefc;
  --muted:#a9b6d6;
  --line:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --primary:#6ae4ff;
  --primary2:#a78bfa;
  --radius:18px;
}
*{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% 10%, rgba(167,139,250,.24), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(106,228,255,.18), transparent 55%),
    radial-gradient(800px 500px at 50% 90%, rgba(106,228,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), #050713 70%, #040511);
  line-height:1.6;
}
a{color:inherit}
.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.skip{
  position:absolute;left:12px;top:-60px;
  padding:10px 12px;border-radius:999px;
  background:#fff;color:#000;text-decoration:none;
  z-index:9999;
  transition:top .2s ease;
}
.skip:focus{top:12px}

.container{width:min(1120px, calc(100% - 40px)); margin-inline:auto}

.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(12px);
  background:linear-gradient(180deg, rgba(7,11,20,.88), rgba(7,11,20,.55));
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand__mark{
  width:14px;height:14px;border-radius:5px;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  box-shadow:0 10px 30px rgba(106,228,255,.18);
}
.brand__text{font-weight:700;letter-spacing:.2px}
.brand--foot{opacity:.95}

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav__link{
  color:var(--muted);
  text-decoration:none;
  font-weight:500;
  padding:8px 10px;
  border-radius:999px;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover{background:rgba(255,255,255,.06); color:var(--text)}

.navToggle{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  align-items:center;
  justify-content:center;
  gap:4px;
}
.navToggle__bar{
  display:block;
  width:18px;height:2px;
  background:rgba(232,238,252,.9);
  border-radius:999px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.18)}
.btn--primary{
  border-color: rgba(106,228,255,.35);
  background:
    linear-gradient(135deg, rgba(106,228,255,.18), rgba(167,139,250,.16));
}
.btn--ghost{background:transparent}
.btn--small{padding:10px 14px}
.btn--block{width:100%}

.hero{padding:64px 0 26px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:center;
}
.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:600;
  margin:0 0 14px;
}
.hero__title{
  font-size: clamp(32px, 4vw, 54px);
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:-.6px;
}
.hero__lead{color:var(--muted); margin:0 0 22px; font-size: clamp(15px, 1.2vw, 18px)}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:22px;
}
.stat{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:14px 14px;
}
.stat__kpi{font-weight:800; letter-spacing:.2px}
.stat__label{color:var(--muted); font-weight:600; font-size:13px}

.hero__visual{position:relative; min-height:420px}
.heroPhoto{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.6);
  margin-bottom:16px;
  box-shadow:0 24px 70px rgba(0,0,0,.55);
}
.heroPhoto img{
  display:block;
  width:100%;
  height:100%;
  max-height:320px;
  object-fit:cover;
  transform:scale(1.02);
}
.cardGlass{
  position:relative;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.cardGlass__top{
  display:flex; gap:7px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.08);
}
.dot{width:10px;height:10px;border-radius:999px;opacity:.95}
.dot--r{background:#ff5f57}
.dot--y{background:#febc2e}
.dot--g{background:#28c840}
.cardGlass__body{padding:18px 18px 20px}
.spark{
  height:10px; width: 55%;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(106,228,255,.0), rgba(106,228,255,.55), rgba(167,139,250,.55), rgba(167,139,250,0));
  filter: blur(.1px);
  opacity:.9;
}
.bars{
  display:flex; align-items:flex-end;
  gap:10px;
  height:160px;
  margin:18px 0 14px;
}
.bar{
  width:18%;
  height: var(--h);
  border-radius:14px;
  background:
    linear-gradient(180deg, rgba(106,228,255,.95), rgba(167,139,250,.75));
  box-shadow: 0 20px 50px rgba(106,228,255,.14);
  opacity:.92;
}
.mini{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.14);
  border-radius:18px;
  padding:14px;
}
.mini__title{color:var(--muted); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:.12em}
.mini__value{font-weight:900; font-size:28px; margin-top:4px}
.mini__sub{color:var(--muted); font-weight:600; font-size:13px}
.glow{
  position:absolute; inset:auto;
  width:260px; height:260px;
  border-radius:999px;
  filter: blur(35px);
  opacity:.65;
  pointer-events:none;
}
.glow--a{right:-80px; top:22px; background:rgba(106,228,255,.28)}
.glow--b{left:-70px; bottom:-40px; background:rgba(167,139,250,.24)}

.section{
  padding:62px 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.section--alt{
  background:
    radial-gradient(800px 500px at 10% 0%, rgba(15,23,42,.65), transparent 60%),
    radial-gradient(800px 500px at 90% 100%, rgba(15,23,42,.75), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,.96), rgba(15,23,42,.94));
  border-top:1px solid rgba(148,163,184,.30);
  border-bottom:1px solid rgba(15,23,42,1);
}
.section--cta{
  padding:72px 0;
  background:
    radial-gradient(700px 400px at 25% 20%, rgba(106,228,255,.18), transparent 60%),
    radial-gradient(700px 400px at 85% 70%, rgba(167,139,250,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.0));
  border-top:1px solid rgba(255,255,255,.06);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}
.section__head h2{
  margin:0;
  letter-spacing:-.3px;
  font-size: clamp(22px, 2.3vw, 32px);
}
.section__head p{margin:0; color:var(--muted); max-width:60ch; font-weight:500}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.feature{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  padding:18px 18px 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
}
.feature--alt{
  box-shadow:none;
  background:rgba(255,255,255,.02);
}
.feature__icon{
  width:44px;height:44px;
  border-radius:14px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  margin-bottom:10px;
  font-weight:800;
}
.feature h3{margin:0 0 8px}
.feature p{margin:0 0 12px; color:var(--muted); font-weight:500}
.list{margin:0; padding-left:18px; color:rgba(232,238,252,.92)}
.list li{margin:6px 0}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.step{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  padding:18px;
}
.step__n{
  width:34px;height:34px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(106,228,255,.20), rgba(167,139,250,.16));
  border:1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 8px}
.step p{margin:0; color:var(--muted); font-weight:500}

.logos{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.logo{
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  padding:16px 14px;
  text-align:center;
  color:rgba(232,238,252,.9);
  font-weight:800;
  letter-spacing:.2px;
}

.cta{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.cta__copy h2{margin:0 0 10px; letter-spacing:-.2px}
.cta__copy p{margin:0 0 16px; color:var(--muted); font-weight:500; max-width:60ch}
.cta__meta{
  display:grid;
  gap:10px;
}
.metaItem{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
  border-radius:16px;
  padding:12px 14px;
}
.metaItem__k{color:var(--muted); font-weight:800; font-size:12px; letter-spacing:.12em; text-transform:uppercase}
.metaItem__v{font-weight:700; margin-top:4px}
.metaItem__v a{color:inherit; text-decoration:none}
.metaItem__v a:hover{text-decoration:underline}

.form{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  border-radius:22px;
  padding:16px;
  box-shadow: var(--shadow);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{display:block; margin-bottom:12px}
.field__label{display:block; font-weight:800; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:rgba(232,238,252,.85); margin:2px 0 8px}
.field__input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
  transition:border-color .15s ease, background .15s ease;
}
.field__input::placeholder{color:rgba(169,182,214,.70)}
.field__input:focus{
  border-color: rgba(106,228,255,.38);
  background:rgba(0,0,0,.24);
}
.field__input--area{resize:vertical; min-height:110px}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.10);
  margin:10px 0 12px;
}
.check__box{margin-top:3px}
.check__text{color:var(--muted); font-weight:600; font-size:13px}
.form__hint{margin:10px 0 0; color:var(--muted); font-weight:600; min-height:1.3em}

.case{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:center;
}
.case__media{min-width:0}
.heroPhoto--case img{max-height:260px}
.case__content h3{margin:0 0 10px}
.case__content p{margin:0 0 16px; color:var(--muted); font-weight:500}
.case__stats{
  margin-top:0;
}

.faq{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  box-shadow:0 18px 60px rgba(0,0,0,.30);
  padding:4px 4px 6px;
}
.faq__item{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  border-radius:16px;
  padding:12px 14px;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-weight:600;
  cursor:pointer;
}
.faq__item:hover{
  background:rgba(255,255,255,.04);
}
.faq__q{
  flex:1;
}
.faq__icon{
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.32);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}
.faq__a{
  max-height:0;
  overflow:hidden;
  padding:0 14px;
  color:var(--muted);
  font-weight:500;
  font-size:14px;
  transition:max-height .2s ease;
}
.faq__a--open{
  max-height:200px;
  padding-top:0;
  padding-bottom:12px;
}

.rodo{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.26);
  padding:18px 18px 20px;
  box-shadow:0 18px 60px rgba(0,0,0,.32);
}
.rodo h3{
  margin:14px 0 6px;
  font-size:16px;
}
.rodo p{
  margin:0 0 8px;
  color:var(--muted);
  font-weight:500;
}
.rodo ul{
  margin:0 0 10px 18px;
  color:var(--muted);
  font-weight:500;
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0;
  background:rgba(0,0,0,.20);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer__links{display:flex; gap:14px}
.footer__links a{color:var(--muted); text-decoration:none; font-weight:700}
.footer__links a:hover{color:var(--text); text-decoration:underline}
.muted{color:var(--muted); margin:8px 0 0; font-weight:500}

.floatingContact{
  position:fixed;
  inset:auto 16px 16px auto;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(7,11,20,.94);
  box-shadow:0 18px 50px rgba(0,0,0,.55);
  font-size:13px;
  z-index:40;
}
.floatingContact__label{
  color:var(--muted);
  font-weight:600;
}
.floatingContact__btn{
  padding:8px 12px;
  font-size:13px;
}

.cookieBanner{
  position:fixed;
  inset:auto 12px 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(7,11,20,.96);
  box-shadow:0 18px 60px rgba(0,0,0,.65);
  font-size:13px;
  z-index:45;
}
.cookieBanner__text{
  color:var(--muted);
  font-weight:500;
}
.cookieBanner__text a{
  color:var(--primary);
  text-decoration:none;
  font-weight:600;
}
.cookieBanner__text a:hover{
  text-decoration:underline;
}
.cookieBanner__actions{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.cookieBanner__btn{ white-space:nowrap; }

.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:50;
}
.modal--open{
  display:flex;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.80);
}
.modal__content{
  position:relative;
  max-width:720px;
  width:calc(100% - 40px);
  max-height:calc(100% - 80px);
  background:rgba(7,11,20,1);
  border-radius:22px;
  border:1px solid rgba(148,163,184,.45);
  box-shadow:0 30px 120px rgba(0,0,0,.85);
  display:flex;
  flex-direction:column;
}
.modal__header{
  padding:14px 18px 10px;
  border-bottom:1px solid rgba(148,163,184,.35);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.modal__header h2{
  margin:0;
  font-size:18px;
}
.modal__close{
  border:0;
  background:transparent;
  color:var(--muted);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.modal__body{
  padding:12px 18px 10px;
  overflow:auto;
}
.modal__body h3{
  margin:14px 0 6px;
  font-size:15px;
}
.modal__body p{
  margin:0 0 8px;
  color:var(--muted);
  font-weight:500;
}
.modal__body ul{
  margin:0 0 10px 18px;
  color:var(--muted);
  font-weight:500;
}
.modal__footer{
  padding:10px 18px 14px;
  border-top:1px solid rgba(148,163,184,.35);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.modal__check{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:13px;
  color:var(--muted);
  font-weight:500;
}
.modal__check input{ margin-top:3px; }

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr; gap:18px}
  .hero__visual{min-height:360px}
  .section__head{flex-direction:column; align-items:flex-start}
  .grid3{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .logos{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .cta{grid-template-columns:1fr}
  .case{grid-template-columns:1fr}
}

@media (max-width: 780px){
  .navToggle{display:inline-flex}
  .nav{
    position:fixed;
    inset:70px 14px auto 14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(7,11,20,.92);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
  }
  .nav[data-open="true"]{display:flex}
  .nav__link{padding:12px 12px}
  .hero{padding-top:44px}
  .hero__stats{grid-template-columns:1fr; }
  .form__row{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
}
