:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --text:#e9eefc;
  --muted:#b7c3e6;
  --accent:#4aa3ff;
  --accent2:#31d0aa;
  --border:rgba(255,255,255,.12);
  --shadow:0 12px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html, body{
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(74,163,255,.18), transparent 55%),
    radial-gradient(1000px 700px at 90% 10%, rgba(49,208,170,.12), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
  overflow-x:hidden;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

iframe{
  display:block;
  width:100%;
  border:0;
}

a{
  color:inherit;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,18,32,.78);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
  .header{
    background:rgba(11,18,32,.95);
  }
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  min-width:0;
}

.logo{
  width:40px;
  height:40px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(74,163,255,.9), rgba(49,208,170,.75));
  box-shadow:var(--shadow);
  flex:0 0 auto;
}

.logo-header{
  height:50px;
  width:auto;
  margin-right:12px;
  flex:0 0 auto;
}

.brand span,
.brand strong{
  font-weight:700;
  letter-spacing:.2px;
}

.brand small,
.brand .small,
.brand div:last-child div{
  display:block;
  color:var(--muted);
  font-weight:500;
  margin-top:2px;
}

.menu{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.menu a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  color:var(--muted);
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}

.menu a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.06);
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.btn:hover{
  background:rgba(255,255,255,.10);
}

.btn.primary{
  border-color:rgba(74,163,255,.55);
  background:linear-gradient(135deg, rgba(74,163,255,.22), rgba(49,208,170,.12));
}

.btn.primary:hover{
  background:linear-gradient(135deg, rgba(74,163,255,.30), rgba(49,208,170,.16));
}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:14px;
}

.hero{
  padding:44px 0 22px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}

@media (max-width: 940px){
  .hero-grid{
    grid-template-columns:1fr;
  }
}

.card{
  background:rgba(15,26,46,.82);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.card.pad{
  padding:20px;
}

.h1{
  font-size:42px;
  line-height:1.12;
  margin:12px 0;
}

.h2{
  font-size:26px;
  margin:0 0 10px;
}

.lead{
  color:var(--muted);
  font-size:18px;
  margin:0 0 18px;
}

.p{
  color:var(--muted);
  margin:0 0 14px;
}

.small{
  font-size:13px;
  color:var(--muted);
}

.kpis{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}

.kpi{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}

.kpi strong{
  display:block;
  font-size:18px;
}

.kpi span{
  color:var(--muted);
  font-size:14px;
}

.section{
  padding:22px 0;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.grid2{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:12px;
}

.tile{
  padding:16px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}

.tile h3{
  margin:0 0 8px;
}

.tile p{
  margin:0;
  color:var(--muted);
}

.hr{
  height:1px;
  background:var(--border);
  margin:16px 0;
}

.form{
  display:grid;
  gap:10px;
}

input,
textarea,
button{
  font:inherit;
}

.input,
textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
  -webkit-appearance:none;
  appearance:none;
}

input[type="tel"],
input[type="email"]{
  font-size:16px;
}

textarea{
  min-height:130px;
  resize:vertical;
}

.label{
  font-size:14px;
  color:var(--muted);
}

.notice{
  padding:12px 14px;
  border:1px dashed rgba(74,163,255,.55);
  border-radius:14px;
  background:rgba(74,163,255,.08);
  color:var(--muted);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline:2px solid rgba(74,163,255,.75);
  outline-offset:2px;
}

.btn[disabled],
button.btn:disabled{
  opacity:.65;
  cursor:not-allowed;
}

.footer{
  padding:24px 0 40px;
  border-top:1px solid var(--border);
  color:var(--muted);
}

.footer a{
  color:var(--muted);
}

.footer a:hover{
  color:var(--text);
}

@media (max-width: 900px){
  .grid3{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .kpis{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .h1{
    font-size:34px;
  }

  .lead{
    font-size:17px;
  }
}

@media (max-width: 480px){
  .container{
    padding:0 14px;
  }

  .card.pad{
    padding:16px;
  }

  .btn{
    width:100%;
  }

  .menu{
    gap:8px;
  }

  .nav{
    flex-direction:column;
    align-items:flex-start;
  }

  .menu{
    width:100%;
  }
}

.tile p{
  text-wrap:pretty;
}

.h1,
.h2,
.tile h3{
  text-wrap:balance;
}