:root{
  --bg:#070a14;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.04);
  --muted:#aab6d6;
  --text:#eef2ff;
  --brand:#6d7cff;
  --brand2:#38e4c5;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  line-height:1.6;

  background:
    radial-gradient(900px 600px at 15% 10%, rgba(109,124,255,.22), transparent 60%),
    radial-gradient(900px 600px at 85% 15%, rgba(56,228,197,.16), transparent 60%),
    radial-gradient(900px 600px at 30% 95%, rgba(109,124,255,.14), transparent 55%),
    linear-gradient(180deg, #060814 0%, #070a14 55%, #060814 100%);
}

a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 20px}

/* =========================
   HEADER
========================= */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,20,.65);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:42px;
  height:42px;
  border-radius:14px;
  display:block;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-weight:800;
  font-size:14px;
}

.navlinks a{
  padding:9px 12px;
  border-radius:14px;
  transition: background .15s ease, color .15s ease, border .15s ease;
}

.navlinks a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
}

.navlinks a.active{
  color:var(--text);
  background: rgba(255,255,255,.08);
  border:1px solid var(--line);
}

.headerCta{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 15px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:900;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border .12s ease, box-shadow .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.btn.primary{
  border:0;
  color:#08101a;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brandLogo{
  width:42px;
  height:42px;
  border-radius:14px;
  display:block;
}

.brandText{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brandName{
  font-weight:900;
  font-size:16px;
  color: var(--text);
}

.brandTag{
  font-weight:800;
  font-size:12px;
  color: rgba(255,255,255,0.55);
}


/* =========================
   SECTIONS / HERO
========================= */
section{padding:58px 0}

/* IMPORTANT: extra top padding to avoid sticky header overlap */
.hero{
  padding:110px 0 36px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:center;
  min-height: 70vh;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:var(--muted);
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
}

.dot{
  width:9px;
  height:9px;
  border-radius:99px;
  background: var(--brand2);
  box-shadow: 0 0 0 7px rgba(56,228,197,.10);
}

h1{
  margin:14px 0 12px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height:1.05;
  letter-spacing:-1.1px;
}

.sub{
  color:var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  max-width: 62ch;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.trust{
  display:flex;
  gap:12px;
  margin-top:18px;
  color:var(--muted);
  font-weight:800;
  font-size:14px;
  flex-wrap:wrap;
}

.trust span{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:7px 10px;
  border-radius:999px;
}

/* =========================
   CARDS / GRIDS
========================= */
.sectionTitle{font-size:28px; margin:0 0 10px; letter-spacing:-.4px}
.sectionSub{color:var(--muted); margin:0 0 26px; max-width:75ch}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}

.card{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:900;
  font-size:12px;
  margin-bottom:10px;
  background: rgba(255,255,255,.04);
}

/* Hero image container */
.heroCard{
  border-radius: 22px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}

/* Services list cards */
.service{display:flex; gap:12px; align-items:flex-start}
.icon{
  width:38px;
  height:38px;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color: var(--brand2);
  flex:0 0 auto;
}

/* Badges */
.badgeRow{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:900;
  font-size:12px;
}

/* =========================
   CONTACT FORM
========================= */
.contactCard{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

form{display:grid; gap:10px}

input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  font-size:14px;
}

textarea{min-height:120px; resize:vertical}

input:focus, textarea:focus{
  border-color: rgba(109,124,255,.60);
}

.fine{color:var(--muted); font-size:12px; margin-top:10px}

/* =========================
   FOOTER
========================= */
footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .heroGrid{grid-template-columns:1fr; min-height:auto}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .contactCard{grid-template-columns:1fr}
  .navlinks{display:none}
}
