:root{
  --bg:#0b1220;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.12);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --accent:#5ce1ff;
  --accent2:#b1ff6a;
  --danger:#ff6a7a;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(92,225,255,.18), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(177,255,106,.14), transparent 60%),
    radial-gradient(800px 600px at 40% 120%, rgba(92,225,255,.10), transparent 55%),
    var(--bg);
}
a{color:inherit;text-decoration:none}
.container{width:min(1180px, calc(100% - 40px)); margin:0 auto}

.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.62);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{display:flex; align-items:center; gap:16px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:260px}
.brand-text{display:flex; flex-direction:column; line-height:1.05}
.brand-name{font-weight:900; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted)}
.logo{display:grid; place-items:center; width:42px; height:42px; border-radius:14px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10)}

.nav{display:flex; gap:18px; margin-left:auto}
.nav a{color:var(--muted); font-weight:700; font-size:14px}
.nav a:hover{color:var(--text)}

.lang{display:flex; gap:8px; align-items:center}
.flag{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:34px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  opacity:.88;
  transition: transform .15s ease, opacity .15s ease;
}
.flag:hover{transform: translateY(-1px); opacity:1}
.flag.active{border-color: rgba(92,225,255,.55); box-shadow: 0 0 0 4px rgba(92,225,255,.10); opacity:1}
.f{font-size:18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:10px 14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
}
.btn-ghost{background:rgba(255,255,255,.04); color:var(--text)}
.btn-ghost:hover{background:rgba(255,255,255,.06)}
.btn-primary{
  background: linear-gradient(90deg, rgba(92,225,255,.95), rgba(177,255,106,.90));
  color:#061019;
  border:0;
  box-shadow: 0 16px 40px rgba(92,225,255,.14);
}
.btn-soft{background:rgba(255,255,255,.06)}
.btn-soft:hover{background:rgba(255,255,255,.08)}

.hero{padding:46px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:stretch}
.hero h1{margin:0 0 12px; font-size:46px; line-height:1.05; letter-spacing:-.6px}
.lead{margin:0 0 18px; color:var(--muted); font-size:16px; max-width:56ch}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.pills{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px}
.pill{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px 12px;
}
.pill b{display:block; margin-bottom:4px}
.pill span{display:block; color:var(--muted); font-size:13px; line-height:1.35}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  padding:14px;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column; gap:14px;
}
.hc-top{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  font-weight:900; font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}
.hc-graphic{flex:1; display:grid; place-items:center; min-height:160px}
.hc-bottom{display:flex; gap:10px}
.stat{flex:1; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10); border-radius:16px; padding:10px}
.stat b{display:block}
.stat span{display:block; font-size:12px; color:var(--muted)}

.section{padding:34px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:16px}
.section-head h2{margin:0; font-size:28px}
.section-head p{margin:0; color:var(--muted); max-width:68ch}

.grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:12px}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
  display:flex; flex-direction:column; gap:8px;
  min-height:112px;
}
.card b{font-size:14px}
.card span{color:var(--muted); font-size:12px}
.icon{
  width:40px; height:40px; border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  display:grid; place-items:center;
}

.two-col{display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start}
.check{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.check li{margin:6px 0}

.panel{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
}
.panel-row{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.08)}
.panel-row:last-child{border-bottom:0}
.panel-k{color:var(--muted); font-weight:800}
.panel-v{font-weight:900}

.timeline{display:grid; grid-template-columns: repeat(4, 1fr); gap:10px}
.t-item{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
  display:flex; gap:10px; align-items:center;
}
.t-item b{
  width:34px; height:34px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}

.contact-cards{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:14px 0}
.cc{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
  display:flex; flex-direction:column; gap:6px;
}
.cc b{font-size:13px}
.cc span{color:var(--muted); font-size:13px}

.note{color:var(--muted)}

.form{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:14px;
}
.form label{display:block; font-weight:900; font-size:13px; margin:10px 0 6px}
.form input, .form textarea{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
.form input:focus, .form textarea:focus{border-color: rgba(92,225,255,.55); box-shadow: 0 0 0 4px rgba(92,225,255,.10)}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}

.hp{position:absolute; left:-9999px; opacity:0}

.btn-spinner{
  width:14px; height:14px;
  border:2px solid rgba(0,0,0,.18);
  border-top-color: rgba(0,0,0,.55);
  border-radius:50%;
  display:none;
  animation: spin 1s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

.form-result{margin-top:10px; font-weight:800}
.form-result.ok{color: rgba(177,255,106,.95)}
.form-result.error{color: var(--danger)}

.footer{padding:18px 0; border-top:1px solid rgba(255,255,255,.08)}
.footer-inner{display:flex; gap:12px; justify-content:space-between; align-items:center; color:var(--muted); font-weight:700; font-size:13px}
.footer-links{display:flex; gap:10px; align-items:center}
.dot{opacity:.5}

.fab{
  position:fixed;
  bottom:18px;
  padding:12px 14px;
  border-radius:999px;
  font-weight:950;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index:30;
}
.fab-call{left:18px}
.fab-wa{right:18px}
.fab:hover{transform: translateY(-1px)}

@media (max-width: 960px){
  .nav{display:none}
  .hero-grid{grid-template-columns:1fr}
  .pills{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
  .two-col{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr 1fr}
}
@media (max-width: 520px){
  .grid{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr}
  .row2{grid-template-columns:1fr}
  .brand{min-width:auto}
}
