:root{
  --bg:#050a18;
  --bg2:#070f22;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --text:#eef3ff;
  --muted:#b7c6ea;
  --muted2:#93a9da;
  --primary:#1d4696;
  --primary2:#2b76ff;
  --accent:#19c37d;
  --shadow: 0 30px 84px rgba(0,0,0,.60);
  --shadow2: 0 14px 44px rgba(0,0,0,.30);
  --r14: 14px;
  --r20: 20px;
  --r28: 28px;
  --max: 1440px;
  --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(1100px 700px at 12% 10%, rgba(43,118,255,.20), transparent 60%),
    radial-gradient(1000px 720px at 92% 20%, rgba(29,70,150,.20), transparent 60%),
    radial-gradient(900px 600px at 50% 115%, rgba(25,195,125,.12), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
::selection{background: rgba(43,118,255,.28)}

.wrap{
  width: min(var(--max), 80%);
  margin: 0 auto;
}
@media (max-width: 980px){
.wrap{width: calc(100% - 32px);}

  /* Header: keep clean on mobile */
  .brand .txt{display:none !important}
  .header .row{flex-wrap:nowrap}
  .header .btn.primary{white-space:nowrap}
}


.topstrip{
  background: rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.topstrip .row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 0;
  gap: 10px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 13px;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight: 800;
}
.badge .dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(25,195,125,.12);
}
.badge strong{color: var(--text)}

.header{
  position: sticky;
  top:0;
  z-index: 60;
  background: rgba(5,10,24,.60);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.header .row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand img{height:44px}
.brand .txt{line-height:1.1}
.brand .txt strong{display:block;font-weight:950;letter-spacing:-.02em}
.brand .txt small{display:block;color: var(--muted2);font-weight:800}

.nav{
  display:flex;
  align-items:center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}
.nav a{
  padding: 10px 12px;
  border-radius: 14px;
}
.nav a:hover{background: rgba(255,255,255,.06); color: var(--text)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(0,0,0,.32); border-color: rgba(255,255,255,.22)}
.btn.primary{
  border-color: rgba(43,118,255,.60);
  background: linear-gradient(135deg, rgba(29,70,150,.96), rgba(43,118,255,.92));
  box-shadow: 0 14px 34px rgba(43,118,255,.18);
}
.btn.primary:hover{border-color: rgba(43,118,255,.82)}
.btn svg{width:18px;height:18px}

/* HERO SLIDER */
.hero{
  padding: 18px 0 26px 0;
}
.slider{
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
}
.slides{
  position: relative;
  height: 560px;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .8s ease;
  background-size: cover;
  background-position: center;
}
.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(5,10,24,.92) 10%, rgba(5,10,24,.55) 52%, rgba(5,10,24,.88) 100%);
}
.slide.is-active{
  opacity:1;
  transform: none;
}
.slide .wrap{
  position: relative;
  height: 100%;
}
.slide-grid{
  height:100%;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items:center;
  padding: 34px 0;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}
.kicker .dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(25,195,125,.12);
}

h1{
  margin: 14px 0 10px 0;
  font-size: clamp(38px, 4.3vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.lead{
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 72ch;
}

.hero-actions{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--muted2);
  font-size: 13px;
  font-weight: 800;
}
.pill strong{color: var(--text)}

.hero-panel{
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.hero-panel .inner{
  padding: 18px;
}
.hero-panel h3{
  margin:0 0 8px 0;
  font-size: 16px;
  letter-spacing:-.01em;
}
.hero-panel ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.hero-panel li{margin: 8px 0}
.hero-panel .mini{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.slider-ui{
  position:absolute;
  inset:auto 0 0 0;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  background: rgba(0,0,0,.30);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.dots{
  display:flex;
  align-items:center;
  gap: 8px;
}
.dotbtn{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  padding:0;
}
.dotbtn[aria-current="true"]{
  width: 34px;
  background: linear-gradient(135deg, rgba(25,195,125,.75), rgba(43,118,255,.70));
  border-color: rgba(43,118,255,.35);
}
.ctrl{
  display:flex; gap: 10px; align-items:center;
}
.iconbtn{
  width: 40px; height:40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  cursor:pointer;
}
.iconbtn:hover{background: rgba(0,0,0,.32); border-color: rgba(255,255,255,.22)}
.iconbtn svg{width:18px;height:18px}

/* Sections */
.section{padding: 56px 0;}
.section h2{
  margin:0 0 10px 0;
  font-size: 30px;
  letter-spacing:-.02em;
}
.section .sub{color: var(--muted); max-width: 90ch}
.divider{margin: 14px 0 0 0; opacity:.95}
.panel{
  margin-top: 18px;
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.panel.pad{padding: 18px;}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
blockquote{
  margin: 0;
  padding: 18px;
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
blockquote strong{color: var(--text)}
.list{
  padding: 18px;
}
.list ul{margin: 10px 0 0 0; padding-left: 18px; color: var(--muted); font-size: 14px;}
.list li{margin: 8px 0}

.cards{
  padding: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card{
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  padding: 16px;
  position: relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(360px 220px at 20% 20%, rgba(43,118,255,.16), transparent 60%),
    radial-gradient(360px 220px at 85% 80%, rgba(25,195,125,.12), transparent 60%);
  opacity:.75;
}
.card > *{position:relative}
.card h3{margin: 0 0 8px 0; font-size: 18px}
.card p{margin: 0; color: var(--muted); font-size: 14px}
.card a.more{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
}
.card a.more span{
  width: 34px; height:34px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.steps{
  padding: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step{
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  padding: 16px;
}
.step .n{
  width: 42px; height:42px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(43,118,255,.20);
  border: 1px solid rgba(43,118,255,.30);
  font-weight: 950;
}
.step h4{margin: 10px 0 6px 0}
.step p{margin:0; color: var(--muted); font-size: 14px; line-height:1.45}

.faq{
  padding: 18px;
  display:grid;
  gap: 10px;
}
.qa{
  border-radius: var(--r28);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  overflow:hidden;
}
.qa button{
  width:100%;
  border:0;
  background: transparent;
  color: var(--text);
  cursor:pointer;
  text-align:left;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  font-weight: 950;
}
.qa button:hover{background: rgba(255,255,255,.04)}
.qa .ans{
  display:none;
  padding: 0 16px 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height:1.5;
}
.qa.open .ans{display:block}
.chev{
  width: 34px; height:34px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:center;
  transition: transform .15s ease;
}
.qa.open .chev{transform: rotate(180deg)}
.chev svg{width:18px;height:18px}

.cta{
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
  background:
    radial-gradient(700px 260px at 20% 20%, rgba(43,118,255,.18), transparent 60%),
    radial-gradient(700px 280px at 90% 70%, rgba(25,195,125,.12), transparent 62%),
    rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.08);
}
.cta h3{margin:0 0 6px 0; font-size: 18px}
.cta p{margin:0; color: var(--muted); font-size: 14px}

.footer{
  padding: 30px 0 36px 0;
  color: var(--muted2);
}
.footer .row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
}
.footer img{height: 32px}

.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(25,195,125,.35);
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.wa-float:hover{background: rgba(0,0,0,.55)}
.wa-float .pulse{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(25,195,125,.25);
  animation: pulse 1.7s infinite;
}
@keyframes pulse{
  0%{box-shadow: 0 0 0 0 rgba(25,195,125,.25)}
  70%{box-shadow: 0 0 0 14px rgba(25,195,125,0)}
  100%{box-shadow: 0 0 0 0 rgba(25,195,125,0)}
}
.wa-float strong{display:block; font-weight: 950}
.wa-float small{display:block; color: var(--muted2); margin-top: -2px}

.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in{opacity:1; transform:none}

@media (max-width: 1100px){
  .slides{height: 620px;}
  .slide-grid{grid-template-columns: 1fr;}
}
@media (max-width: 980px){
  .topstrip{display:none}
  .nav{display:none}

  /* Header: keep logo ratio + reduce clutter */
  .header .row{padding: 10px 0; gap: 10px;}
  .brand img{height: 38px; width: auto; max-width: 220px; object-fit: contain; flex: 0 0 auto;}
  .header .btn.primary{padding: 10px 12px; font-size: 12px; gap: 8px;}

  /* Hero slider: avoid overlap on mobile by letting content define height */
  .slides{height: auto;}
  .slide{position: relative; inset: auto; opacity: 1; transform: none;}
  .slide:not(.is-active){display: none;}
  .slide.is-active{display: block;}

  /* Slider controls sit below content (no overlay) */
  .slider-ui{position: relative; left: auto; right: auto; bottom: auto; margin-top: 14px;}
  .slider-ui .btn.primary{display: none !important;}

  /* Stack sections */
  .cards{grid-template-columns: 1fr;}
  .steps{grid-template-columns: 1fr;}
  .split{grid-template-columns: 1fr;}

  /* Floating WhatsApp CTA: compact pill on mobile */
  .wa-float{left: auto; right: 14px; bottom: 14px; padding: 10px 12px; border-radius: 999px; justify-content: center; gap: 10px; max-width: max-content;}
  .wa-float strong{font-size: 13px; white-space: nowrap;}
  .wa-float small{display: none;}
  .wa-float svg{width: 20px; height: 20px;}
}

@media (max-width: 560px){
  .header .btn.primary span{display:none}
  .header .btn.primary{padding: 10px 12px}
  .header .btn.primary svg{width:18px;height:18px}

  .wa-float{
    display: none
  }
  .wa-float .pulse{display:none}
  .wa-float > div{display:none}
  .wa-float svg{width:20px;height:20px;flex:0 0 auto;display:block}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn, .reveal, .slide{transition:none}
  .wa-float .pulse{animation:none}
}