
:root{
  --bg0:#070A12;
  --bg1:#0B1020;
  --glass: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --txt: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --brand1:#38BDF8;
  --brand2:#60A5FA;
  --brand3:#A78BFA;
}

*{scroll-behavior:smooth;}
body{
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(56,189,248,.20), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(167,139,250,.16), transparent 60%),
    radial-gradient(900px 520px at 50% 95%, rgba(96,165,250,.10), transparent 60%),
    linear-gradient(180deg, var(--bg0), #090C16 35%, #0B0E1B 100%);
  color: var(--txt);
}

a{ text-decoration:none; }
.topbar{
  background: rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.toplink{ color: rgba(255,255,255,.80); }
.toplink:hover{ color:#fff; }

.navglass{
  backdrop-filter: blur(10px);
  background: rgba(10,12,22,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand-logo{ width:38px; height:38px; object-fit:contain; }
.brand-name{ font-weight: 900; letter-spacing: .6px; }

/* Hero */
.hero{ position:relative; padding: 5.5rem 0 3.5rem; overflow:hidden; }
.hero-bg{
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 380px at 18% 25%, rgba(56,189,248,.22), transparent 58%),
    radial-gradient(650px 380px at 82% 28%, rgba(167,139,250,.18), transparent 62%);
  pointer-events:none;
}
.pill{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.text-white-75{ color: rgba(255,255,255,.75)!important; }

.kpis{
  display:flex; flex-wrap:wrap; gap:10px;
}
.kpi{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 170px;
}
.kpi-num{ font-weight: 900; font-size: 1.15rem; }
.kpi-lbl{ color: rgba(255,255,255,.72); font-size: .92rem; }

.btn-primary{
  background: linear-gradient(90deg, var(--brand1), var(--brand2));
  border: 0;
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-outline-light{ border-color: rgba(255,255,255,.32); }
.btn-outline-light:hover{ background: rgba(255,255,255,.08); }

.hero-visual{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 22px 80px rgba(0,0,0,.45);
  overflow:hidden;
}
.hero-visual-head{
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}
.dots{ display:flex; gap:8px; align-items:center; }
.dots span{ width:10px; height:10px; border-radius:999px; opacity:.9; }
.dots span:nth-child(1){ background:#ef4444; }
.dots span:nth-child(2){ background:#f59e0b; }
.dots span:nth-child(3){ background:#22c55e; }

.hero-visual-body{ padding: 14px; }
.visual-tabs{ display:flex; gap:8px; flex-wrap:wrap; }
.vtab{
  border-radius: 999px;
  padding: .45rem .75rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  color: rgba(255,255,255,.85);
  font-size: .92rem;
}
.vtab.active{
  border-color: rgba(56,189,248,.35);
  background: linear-gradient(90deg, rgba(56,189,248,.18), rgba(167,139,250,.14));
}
.visual-stage{ margin-top: 12px; border-radius: 16px; overflow:hidden; border: 1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.10); }
.vimg{ display:none; width:100%; height:auto; }
.vimg.active{ display:block; }

.visual-foot{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 992px){
  .visual-foot{ grid-template-columns: 1fr; }
}
.mini{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  padding: 10px 12px;
  display:flex; gap:10px; align-items:center;
  color: rgba(255,255,255,.82);
}
.mini i{ color: rgba(56,189,248,.95); }

/* Sections */
.section{ padding: 4rem 0; }
.section-alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head h2{ font-weight: 900; letter-spacing: .2px; }

/* Product cards */
.cardx{
  height:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px;
  box-shadow: 0 14px 50px rgba(0,0,0,.25);
}
.cardx-ic{
  width:54px; height:54px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(96,165,250,.12);
  border: 1px solid rgba(96,165,250,.22);
  font-size: 1.4rem;
}
.cardx-ttl{ margin-top: 10px; font-weight: 850; font-size: 1.05rem; }
.cardx-txt{ margin-top: 6px; color: rgba(255,255,255,.74); font-size: .95rem; min-height: 64px; }
.cardx-tags{ margin-top: 10px; display:flex; flex-wrap:wrap; gap:8px; }
.cardx-tags span{
  font-size: .82rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.10);
  color: rgba(255,255,255,.78);
}

.callout{
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(56,189,248,.22);
  background: linear-gradient(135deg, rgba(56,189,248,.14), rgba(167,139,250,.10));
}

/* Service cards */
.glass{
  height:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px;
}
.glass-ic{
  width:52px; height:52px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(167,139,250,.12);
  border: 1px solid rgba(167,139,250,.22);
  font-size: 1.35rem;
}

/* Industries */
.industry{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px;
  height:100%;
}
.industry-ic{
  width:52px; height:52px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.22);
  font-size: 1.35rem;
}
.industry-ttl{ margin-top: 10px; font-weight: 850; }
.industry-txt{ color: rgba(255,255,255,.74); margin-top: 4px; }

/* Why */
.whylist{ display:grid; gap:12px; }
.whyitem{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
  padding: 14px 14px;
  display:flex; gap:12px; align-items:flex-start;
}
.whyic{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.22);
  color: rgba(56,189,248,.95);
}
.whyttl{ font-weight: 800; }
.whydesc{ color: rgba(255,255,255,.72); font-size: .95rem; }

.techpanel{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.techpanel-head{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  display:flex; justify-content:space-between; align-items:center;
}
.techgrid{
  padding: 14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.techgrid span{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
  padding: .55rem .75rem;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}

/* Team */
.person{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px;
  display:flex; gap:14px; align-items:flex-start;
}
.person-ic{
  width:56px; height:56px;
  display:grid; place-items:center;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 1.5rem;
}

/* Contact */
.contactbox{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.10);
  padding: 16px;
}
.formbox{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 16px;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
}
.footerlink{ color: rgba(255,255,255,.70); }
.footerlink:hover{ color:#fff; }

/* Language switch active */
.lang-switch .btn.active{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.35);
}
