:root{
  --bg:#071628;
  --card:#0b213a;
  --muted:#9fb3c8;
  --text:#eaf2ff;
  --primary:#2aa7ff;
  --primary2:#00d4ff;
  --accent:#7c4dff;
  --border:rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 16px;
  --max: 1180px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 500px at 15% 10%, rgba(42,167,255,.28), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(124,77,255,.28), transparent 55%),
    linear-gradient(180deg, #061325 0%, #040b14 100%);
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.small{font-size:.92rem; color:var(--muted)}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  color:var(--muted);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.16)}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background: linear-gradient(90deg, rgba(42,167,255,1) 0%, rgba(0,212,255,1) 100%);
  border-color: rgba(0,212,255,.55);
  color:#001a2a;
  font-weight:700;
}
.btn.ghost{background:transparent}
.btn.small{padding:10px 12px; border-radius:10px; font-size:.92rem}
.btn.link{border:none; background:transparent; padding:0; color:var(--primary)}
.btn.link:hover{color:var(--primary2); text-decoration:underline}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(5,14,26,.72);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand img{width:44px; height:44px; border-radius:12px; object-fit:cover; box-shadow: var(--shadow)}
.brand .name{font-weight:800; letter-spacing:.2px; font-size:1.1rem}
.brand .tag{font-size:.82rem; color:var(--muted); margin-top:2px}
.menu{display:flex; align-items:center; gap:18px; flex-wrap:wrap; justify-content:center}
.menu a{
  padding:10px 10px;
  color:var(--muted);
  border-radius:12px;
  border:1px solid transparent;
}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.04); border-color:var(--border)}
.menu a.active{color:var(--text); background:rgba(42,167,255,.12); border-color:rgba(42,167,255,.22)}
.nav-cta{display:flex; align-items:center; gap:10px}

.mobile-toggle{display:none}
.mobile-panel{display:none}

.hero{
  padding:74px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}
h1{
  margin:0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height:1.1;
  letter-spacing:-.4px;
}
.subtitle{
  font-size:1.05rem;
  color:var(--muted);
  line-height:1.6;
  margin:0 0 18px;
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.kpis{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.kpi{
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.kpi .n{font-weight:900; font-size:1.25rem}
.kpi .l{color:var(--muted); font-size:.86rem}

section{
  padding:48px 0;
}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px}
.section-title h2{margin:0; font-size:1.6rem}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.col-4{grid-column: span 4}
.col-6{grid-column: span 6}
.col-8{grid-column: span 8}
.col-12{grid-column: span 12}

.feature{
  padding:18px;
}
.feature h3{margin:0 0 8px}
.feature p{margin:0; color:var(--muted); line-height:1.6}
.icon{
  width:42px; height:42px; border-radius:14px;
  background: linear-gradient(135deg, rgba(42,167,255,.25), rgba(124,77,255,.25));
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:12px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.list{
  display:flex; flex-direction:column; gap:10px;
}
.li{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-top:6px;
  flex:0 0 auto;
}

.logos{
  display:flex; flex-wrap:wrap; gap:10px;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:.92rem;
}

.testimonials{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
}
.quote{padding:18px}
.quote p{margin:0 0 12px; color:var(--muted); line-height:1.65}
.quote .who{font-weight:700}
.quote .role{color:var(--muted); font-size:.9rem}

.footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.newsletter{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(159,179,200,.75)}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

.notice{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(42,167,255,.25);
  background: rgba(42,167,255,.10);
  color: var(--text);
}

.page-hero{
  padding:44px 0 14px;
}
.page-hero h1{font-size:2.2rem}
.breadcrumb{color:var(--muted); font-size:.92rem}

.chat-fab{
  position:fixed;
  right:18px; bottom:18px;
  z-index:60;
  width:54px; height:54px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.15);
  background: linear-gradient(135deg, rgba(42,167,255,.95), rgba(124,77,255,.9));
  color:#00131f;
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.modal{
  position:fixed; inset:0;
  background: rgba(0,0,0,.55);
  display:none;
  align-items:center; justify-content:center;
  z-index:70;
  padding:18px;
}
.modal.open{display:flex}
.modal-card{
  width:min(560px, 100%);
  padding:18px;
}
.modal-head{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px}
.modal-head h3{margin:0}
hr{border:none; border-top:1px solid var(--border); margin:14px 0}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .split{grid-template-columns:1fr}
  .testimonials{grid-template-columns:1fr}
  .menu{display:none}
  .mobile-toggle{display:inline-flex}
  .mobile-panel{
    display:none;
    padding:10px 0 14px;
  }
  .mobile-panel.open{display:block}
  .mobile-panel a{
    display:block;
    padding:12px 10px;
    border-radius:14px;
    color:var(--muted);
    border:1px solid transparent;
  }
  .mobile-panel a:hover{color:var(--text); background:rgba(255,255,255,.04); border-color:var(--border)}
  .nav{align-items:flex-start}
  .nav-cta{flex-wrap:wrap; justify-content:flex-end}
  .brand{min-width:unset}
  .footer-grid{grid-template-columns:1fr}
  .newsletter{justify-content:flex-start}
  .form-row{grid-template-columns:1fr}
}