:root{
  --bg:#07111f;
  --bg2:#0b1d35;
  --ink:#0f172a;
  --muted:#64748b;
  --line:#dbe4f0;
  --blue:#1e5eff;
  --cyan:#16c7f5;
  --white:#fff;
  --soft:#f6f8fc;
  --card:#ffffff;
  --shadow:0 22px 70px rgba(8,22,48,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
}
a{color:inherit;text-decoration:none}
p{line-height:1.7}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 7vw;
  background:rgba(7,17,31,.86);
  backdrop-filter:blur(18px);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:13px;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:13px;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:22px;
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  box-shadow:0 10px 30px rgba(30,94,255,.45);
}
.brand strong{display:block;letter-spacing:.05em}
.brand small{display:block;color:#a9b9d3;font-size:12px;margin-top:2px}

.nav{
  display:flex;
  gap:28px;
  font-size:14px;
  color:#d7e2f5;
}
.nav a:hover{color:#fff}
.nav-cta{
  padding:12px 18px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  font-weight:700;
  font-size:14px;
}

.hero{
  position:relative;
  min-height:720px;
  display:grid;
  grid-template-columns:1.05fr .75fr;
  align-items:center;
  gap:56px;
  padding:90px 7vw 110px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 72% 30%,rgba(22,199,245,.26),transparent 32%),
    radial-gradient(circle at 25% 20%,rgba(30,94,255,.35),transparent 28%),
    linear-gradient(135deg,#06101f 0%,#0b1d35 48%,#0a2a66 100%);
}
.hero-bg{
  position:absolute;
  inset:0;
  opacity:.4;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,#000,transparent 88%);
}
.hero-content{position:relative;max-width:820px}
.eyebrow,.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#6ee7ff;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.hero h1{
  margin:18px 0 22px;
  font-size:clamp(42px,6vw,76px);
  line-height:.98;
  letter-spacing:-.055em;
}
.hero p{
  max-width:760px;
  color:#cbd9ee;
  font-size:19px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:14px;
  font-weight:800;
  box-shadow:0 12px 28px rgba(0,0,0,.16);
}
.btn.primary{
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  color:white;
}
.btn.secondary{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  color:white;
}
.btn.whatsapp{background:#10b981;color:white}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:38px;
}
.trust-row span{
  padding:9px 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  color:#dbeafe;
  background:rgba(255,255,255,.06);
  font-size:13px;
  font-weight:700;
}

.hero-card{
  position:relative;
  background:linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.07));
  border:1px solid rgba(255,255,255,.2);
  border-radius:30px;
  padding:22px;
  min-height:430px;
  box-shadow:0 34px 100px rgba(0,0,0,.35);
  backdrop-filter:blur(20px);
}
.card-header{
  display:flex;
  gap:8px;
  padding-bottom:22px;
}
.card-header span{
  width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,.55)
}
.card-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.card-grid div{
  min-height:160px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.card-grid b{
  font-size:42px;
  letter-spacing:-.06em;
}
.card-grid small{
  color:#cbd9ee;
  font-weight:700;
}

.logos{
  padding:28px 7vw;
  border-bottom:1px solid var(--line);
  background:#fff;
}
.logos p{
  margin:0 0 16px;
  text-align:center;
  color:var(--muted);
}
.logo-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.logo-strip span{
  padding:12px 20px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#334155;
  font-weight:900;
  background:#fff;
}

.section{
  padding:96px 7vw;
}
.section-head{
  max-width:830px;
  margin-bottom:38px;
}
.section h2{
  margin:13px 0 14px;
  font-size:clamp(32px,4vw,52px);
  line-height:1.05;
  letter-spacing:-.04em;
}
.section-head p{font-size:18px;color:var(--muted)}
.solutions-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.solution{
  padding:30px;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:0 12px 50px rgba(10,34,78,.07);
}
.solution:hover{
  transform:translateY(-4px);
  transition:.25s ease;
  box-shadow:var(--shadow);
}
.icon{
  width:50px;height:50px;border-radius:16px;
  display:grid;place-items:center;
  background:#eaf4ff;
  color:var(--blue);
  font-weight:900;
}
.solution h3{font-size:22px;margin:22px 0 8px}
.solution p{color:var(--muted);margin:0}

.dark{
  background:linear-gradient(135deg,#07111f,#0b1d35);
  color:white;
}
.dark .section-head p,.dark p{color:#bdd0ea}
.sector-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.sector-grid div{
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
}
.sector-grid h3{margin-top:0}

.split{
  display:grid;
  grid-template-columns:1fr .75fr;
  gap:46px;
  align-items:center;
  background:var(--soft);
}
.split p{color:var(--muted);font-size:18px}
.check-list{
  list-style:none;
  padding:0;
  margin:26px 0 0;
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:32px;
  font-weight:700;
}
.check-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:-1px;
  color:var(--blue);
  font-weight:900;
}
.panel{
  padding:34px;
  border-radius:30px;
  background:#fff;
  box-shadow:var(--shadow);
}
.panel h3{font-size:28px;margin-top:0}
.panel-list{
  display:grid;
  gap:12px;
}
.panel-list span{
  padding:15px 16px;
  border-radius:16px;
  background:#f1f5fb;
  font-weight:800;
}

.about{
  display:grid;
  grid-template-columns:1.2fr .65fr;
  gap:32px;
  align-items:stretch;
}
.about-card{
  padding:42px;
  border-radius:32px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.about-card p{color:var(--muted);font-size:18px}
.metrics{
  display:grid;
  gap:18px;
}
.metrics div{
  padding:32px;
  border-radius:28px;
  background:linear-gradient(135deg,#0b1d35,#1e5eff);
  color:white;
}
.metrics strong{
  display:block;
  font-size:54px;
  letter-spacing:-.06em;
}
.metrics span{color:#d7e8ff;font-weight:800}

.process{background:#fff}
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.steps div{
  padding:28px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
}
.steps span{
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  background:#0b1d35;color:white;font-weight:900;
}
.steps p{color:var(--muted)}

.contact{
  padding:90px 7vw;
  background:
    radial-gradient(circle at 80% 30%,rgba(22,199,245,.22),transparent 28%),
    linear-gradient(135deg,#08111f,#0a2a66);
  color:white;
}
.contact-inner{
  max-width:900px;
}
.contact h2{
  font-size:clamp(34px,5vw,62px);
  line-height:1;
  letter-spacing:-.05em;
  margin:16px 0;
}
.contact p{color:#cbd9ee;font-size:18px}
.contact-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}

.footer{
  padding:34px 7vw;
  display:flex;
  justify-content:space-between;
  gap:20px;
  background:#050b14;
  color:white;
}
.footer p{margin:6px 0 0;color:#9fb0c8}
.footer div:last-child{
  display:flex;
  gap:22px;
  align-items:center;
  color:#dbeafe;
}

@media(max-width:980px){
  .nav{display:none}
  .nav-cta{display:none}
  .hero,.split,.about{grid-template-columns:1fr}
  .hero{min-height:auto;padding-top:72px}
  .hero-card{min-height:auto}
  .solutions-grid,.sector-grid{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .topbar{padding:0 20px}
  .brand small{display:none}
  .hero,.section,.contact{padding-left:22px;padding-right:22px}
  .solutions-grid,.sector-grid,.steps{grid-template-columns:1fr}
  .footer{flex-direction:column}
  .hero h1{font-size:42px}
}
