* { box-sizing: border-box; }
:root{
  --bg:#07111f;
  --bg-2:#0c1527;
  --panel:rgba(12,21,39,.72);
  --panel-2:rgba(17,27,48,.82);
  --text:#edf4ff;
  --muted:#9ab0cc;
  --line:rgba(143,192,255,.15);
  --brand:#26f2d0;
  --brand-2:#7f8cff;
  --radius:24px;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --container:1200px;
}

html { scroll-behavior: smooth; }
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(38,242,208,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(127,140,255,.10), transparent 25%),
    linear-gradient(180deg, #050b15 0%, #081120 45%, #091426 100%);
}
.site-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.15));
}
.container{ width:min(calc(100% - 40px), var(--container)); margin:0 auto; }
.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background:rgba(4,10,20,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  min-height:80px; gap:20px;
}
.logo{ display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--text); }
.logo-mark{
  width:46px; height:46px; display:grid; place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(38,242,208,.18), rgba(127,140,255,.20));
  border:1px solid rgba(255,255,255,.1);
  font-size:1.3rem; font-weight:900;
  box-shadow:0 0 24px rgba(38,242,208,.18);
}
.logo-text{ display:flex; flex-direction:column; line-height:1; }
.logo-text small{ color:var(--muted); margin-top:6px; font-size:.76rem; }

.menu{ display:flex; gap:28px; }
.menu a{
  color:var(--muted); text-decoration:none; font-weight:600; font-size:.96rem;
}
.menu a:hover{ color:var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:50px; padding:0 22px; border-radius:16px;
  text-decoration:none; border:1px solid rgba(38,242,208,.35);
  color:#04131d; background:linear-gradient(135deg, var(--brand), #a8fff0);
  font-weight:800; box-shadow:0 10px 30px rgba(38,242,208,.18);
  transition:.22s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-sm{ min-height:44px; padding:0 18px; }
.btn-ghost{
  background:transparent; color:var(--text);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}

.hero{ padding:90px 0 56px; }
.hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:center;
}
.eyebrow{
  display:inline-flex; padding:8px 12px; border-radius:999px;
  background:rgba(38,242,208,.08); border:1px solid rgba(38,242,208,.14);
  color:var(--brand); font-size:.84rem; font-weight:700; letter-spacing:.02em;
}
.hero h1{
  margin:18px 0 18px; font-size:clamp(2.8rem, 7vw, 5rem);
  line-height:.95; letter-spacing:-.05em;
}
.hero h1 span{
  color:var(--brand);
  text-shadow: 0 0 28px rgba(38,242,208,.18);
}
.lead, .section-copy{
  color:var(--muted); font-size:1.08rem; line-height:1.8; max-width:680px;
}
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
.hero-metrics{
  margin-top:34px; display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.metric-card{
  padding:18px; border-radius:20px; background:var(--panel);
  border:1px solid var(--line); box-shadow:var(--shadow);
}
.metric-card strong{ display:block; font-size:1.05rem; margin-bottom:6px; }
.metric-card span{ color:var(--muted); font-size:.92rem; }

.slider-card{
  background:linear-gradient(180deg, rgba(13,23,42,.92), rgba(8,15,28,.98));
  border:1px solid var(--line); border-radius:28px; box-shadow:var(--shadow);
  padding:20px; position:relative; overflow:hidden;
}
.slider-card::after{
  content:""; position:absolute; inset:auto -20% -35% auto; width:260px; height:260px;
  background:radial-gradient(circle, rgba(38,242,208,.22), transparent 62%);
  filter:blur(16px);
}
.slider-head{
  display:flex; align-items:center; gap:10px; margin-bottom:22px;
}
.slider-head p{ margin:0 0 0 6px; color:var(--muted); font-size:.92rem; }
.dot{
  width:10px; height:10px; border-radius:999px;
  background:rgba(255,255,255,.25);
}
.slides{ position:relative; min-height:360px; }
.slide{
  display:none; padding:26px; min-height:360px; border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.05);
}
.slide.active{ display:block; animation:fade .35s ease; }
@keyframes fade { from{opacity:.35; transform:translateY(8px);} to{opacity:1; transform:none;} }
.slide-tag{
  display:inline-block; font-size:.78rem; font-weight:800; color:var(--brand);
  margin-bottom:16px; padding:8px 10px; border-radius:999px;
  background:rgba(38,242,208,.08); border:1px solid rgba(38,242,208,.14);
}
.slide h3{ margin:0 0 10px; font-size:1.8rem; }
.slide p{ margin:0 0 20px; color:var(--muted); }

.chart{
  margin-top:30px; height:170px; border-radius:18px;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  position:relative; overflow:hidden;
}
.chart-up::before{
  content:""; position:absolute; left:16px; right:16px; bottom:26px; height:3px;
  background:linear-gradient(90deg, transparent 0%, rgba(38,242,208,.8) 20%, rgba(38,242,208,1) 100%);
  transform:skewY(-18deg) translateY(-26px);
  box-shadow:0 0 16px rgba(38,242,208,.55);
}
.chart-up::after{
  content:""; position:absolute; right:28px; top:30px; width:14px; height:14px;
  border-top:3px solid var(--brand); border-right:3px solid var(--brand);
  transform:rotate(45deg);
}

.network{
  margin-top:28px; height:190px; position:relative; border-radius:18px;
  background:
    radial-gradient(circle at 20% 30%, rgba(38,242,208,.95) 0 4px, transparent 5px),
    radial-gradient(circle at 42% 55%, rgba(127,140,255,.95) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 30%, rgba(38,242,208,.95) 0 4px, transparent 5px),
    radial-gradient(circle at 84% 72%, rgba(127,140,255,.95) 0 4px, transparent 5px),
    radial-gradient(circle at 28% 78%, rgba(38,242,208,.95) 0 4px, transparent 5px),
    linear-gradient(120deg, rgba(38,242,208,.18), rgba(127,140,255,.12));
  overflow:hidden;
}
.network::before, .network::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(28deg, transparent 47%, rgba(255,255,255,.09) 48%, rgba(255,255,255,.09) 50%, transparent 51%),
    linear-gradient(-16deg, transparent 47%, rgba(255,255,255,.09) 48%, rgba(255,255,255,.09) 50%, transparent 51%);
  opacity:.55;
}

.bars{
  margin-top:26px; height:190px; display:flex; align-items:end; gap:18px;
  padding:20px; border-radius:18px; background:rgba(255,255,255,.02);
}
.bars span{
  flex:1; border-radius:14px 14px 6px 6px;
  background:linear-gradient(180deg, rgba(38,242,208,.95), rgba(127,140,255,.5));
  box-shadow:0 0 20px rgba(38,242,208,.15);
}
.bars span:nth-child(1){ height:42%; }
.bars span:nth-child(2){ height:58%; }
.bars span:nth-child(3){ height:74%; }
.bars span:nth-child(4){ height:92%; }

.slider-controls{
  display:flex; gap:10px; justify-content:center; margin-top:18px;
}
.slider-btn{
  width:12px; height:12px; border-radius:999px; border:none; cursor:pointer;
  background:rgba(255,255,255,.18);
}
.slider-btn.active{ background:var(--brand); box-shadow:0 0 16px rgba(38,242,208,.5); }

.trust-strip{
  padding:24px 0; border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
  background:rgba(255,255,255,.015);
}
.trust-strip p{ margin:0 0 16px; color:var(--muted); font-weight:700; }
.trust-tags{ display:flex; flex-wrap:wrap; gap:12px; }
.trust-tags span, .logo-chip{
  padding:12px 14px; border-radius:14px; background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07); color:var(--text);
}

.section{ padding:88px 0; }
.section-alt{ background:rgba(255,255,255,.02); }
.section-heading{ max-width:760px; margin-bottom:34px; }
.section-heading h2, .split h2, .cta-panel h2, .contact-grid h2{
  margin:16px 0 12px; font-size:clamp(2rem, 4vw, 3rem); line-height:1.05; letter-spacing:-.03em;
}
.section-heading p:not(.eyebrow){ color:var(--muted); }

.grid-3{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.card{
  padding:28px; border-radius:24px; background:var(--panel);
  border:1px solid var(--line); box-shadow:var(--shadow);
}
.card h3{ margin:16px 0 12px; font-size:1.35rem; }
.card p{ color:var(--muted); line-height:1.75; }
.card ul{ margin:18px 0 0; padding-left:18px; color:var(--text); }
.card li{ margin:8px 0; color:var(--muted); }

.icon{
  width:54px; height:54px; border-radius:18px; border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(135deg, rgba(38,242,208,.18), rgba(127,140,255,.18));
}
.icon.glow{ box-shadow:0 0 24px rgba(38,242,208,.25); }
.icon.grid{
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size:12px 12px;
}
.icon.ring{
  position:relative;
}
.icon.ring::after{
  content:""; position:absolute; inset:10px; border-radius:999px;
  border:2px solid rgba(255,255,255,.55);
}

.logo-wall{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.logo-chip{
  min-height:84px; display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:1.05rem;
}

.split{
  display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:start;
}
.check-list{
  display:grid; gap:14px;
}
.check-item{
  display:flex; align-items:center; gap:14px; padding:16px 18px; border-radius:18px;
  background:var(--panel); border:1px solid var(--line);
}
.check-item span{
  width:30px; height:30px; border-radius:999px; display:grid; place-items:center;
  background:rgba(38,242,208,.12); color:var(--brand); font-weight:900;
}

.timeline{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.step{
  padding:24px; border-radius:22px; background:var(--panel);
  border:1px solid var(--line);
}
.step span{
  display:inline-flex; width:42px; height:42px; align-items:center; justify-content:center;
  border-radius:14px; background:rgba(38,242,208,.1); color:var(--brand); font-weight:900;
}
.step h3{ margin:18px 0 10px; }
.step p{ color:var(--muted); line-height:1.75; }

.stats-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.stat-box{
  padding:22px; border-radius:22px; background:var(--panel);
  border:1px solid var(--line);
}
.stat-box strong{ display:block; margin-bottom:10px; font-size:1.15rem; }
.stat-box span{ color:var(--muted); line-height:1.7; }

.cta-panel{
  display:flex; justify-content:space-between; align-items:center; gap:24px;
  padding:32px; border-radius:28px; border:1px solid rgba(38,242,208,.18);
  background:linear-gradient(135deg, rgba(38,242,208,.09), rgba(127,140,255,.08));
}

.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:start;
}
.contact-form{
  padding:28px; border-radius:24px; background:var(--panel);
  border:1px solid var(--line); display:grid; gap:16px;
}
.contact-form label{ display:grid; gap:8px; color:var(--text); font-weight:600; }
.contact-form input, .contact-form textarea{
  width:100%; border:none; outline:none; border-radius:16px;
  background:rgba(255,255,255,.04); color:var(--text);
  border:1px solid rgba(255,255,255,.08); padding:14px 16px; font:inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder{ color:#7d92ad; }

.footer{
  padding:26px 0 38px; border-top:1px solid rgba(255,255,255,.05);
}
.footer-row{
  display:flex; justify-content:space-between; gap:20px; align-items:center;
}
.footer p, .footer small{ color:var(--muted); }

@media (max-width: 1080px){
  .hero-grid, .split, .contact-grid, .timeline, .stats-grid, .grid-3, .logo-wall{
    grid-template-columns:1fr 1fr;
  }
  .timeline{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 780px){
  .menu{ display:none; }
  .hero{ padding-top:56px; }
  .hero-grid, .split, .contact-grid, .grid-3, .logo-wall, .stats-grid, .timeline{
    grid-template-columns:1fr;
  }
  .hero-metrics{ grid-template-columns:1fr; }
  .cta-panel, .footer-row{ flex-direction:column; align-items:flex-start; }
  .slider-card{ padding:16px; }
  .slides, .slide{ min-height:320px; }
}


.brand-logo{
  height:52px;
  width:auto;
  display:block;
}

.case-study-section{
  position:relative;
}

.case-study-card{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(38,242,208,.08), rgba(127,140,255,.07));
  border:1px solid rgba(38,242,208,.14);
  box-shadow:var(--shadow);
}

.case-copy h3{
  margin:14px 0 16px;
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  line-height:1.06;
  letter-spacing:-.03em;
}
.case-copy h3 em{
  color:var(--brand);
  font-style:normal;
}
.case-copy p{
  color:var(--muted);
  line-height:1.85;
  margin:0 0 14px;
}
.case-badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(38,242,208,.1);
  border:1px solid rgba(38,242,208,.14);
  color:var(--brand);
  font-weight:800;
  font-size:.82rem;
}

.case-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.case-stat{
  padding:20px;
  border-radius:22px;
  background:rgba(7,17,31,.65);
  border:1px solid rgba(255,255,255,.08);
}
.case-stat strong{
  display:block;
  font-size:1.5rem;
  margin-bottom:8px;
}
.case-stat span{
  color:var(--muted);
}
.case-stat.highlight{
  border-color:rgba(38,242,208,.3);
  box-shadow:0 0 24px rgba(38,242,208,.08);
}
.case-note{
  margin-top:16px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  color:var(--muted);
  line-height:1.75;
}

@media (max-width: 1080px){
  .case-study-card{
    grid-template-columns:1fr;
  }
}
@media (max-width: 780px){
  .brand-logo{
    height:44px;
  }
  .case-stats{
    grid-template-columns:1fr;
  }
}


.brand-logo{
  height:62px;
  width:auto;
  display:block;
  object-fit:contain;
}

.hero-logo{
  width:180px;
  max-width:42vw;
  display:block;
  margin-bottom:20px;
  filter: drop-shadow(0 0 28px rgba(255,120,0,.22));
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:40;
  min-height:56px;
  padding:0 18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:800;
  color:#04131d;
  background:linear-gradient(135deg, #25D366, #8cffb4);
  box-shadow:0 18px 40px rgba(37,211,102,.28);
  border:1px solid rgba(255,255,255,.18);
}

.whatsapp-float:hover{
  transform:translateY(-2px);
}

.footer{
  background:rgba(255,255,255,.015);
}

.footer-row strong{
  display:block;
  margin-bottom:8px;
  font-size:1.05rem;
}

@media (max-width: 780px){
  .brand-logo{
    height:48px;
  }
  .hero-logo{
    width:138px;
  }
  .whatsapp-float{
    right:14px;
    bottom:14px;
    min-height:50px;
    padding:0 15px;
    font-size:.92rem;
  }
}
