:root{
  --bg: #070b17;
  --bg2:#0b1230;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --accent: #4da3ff;
  --accent2:#7c5cff;
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1100px 600px at 10% 10%, rgba(77,163,255,.25), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(124,92,255,.22), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

/* Topbar */
.topbar{
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  font-size: 13px;
}
.topbar i{ color: rgba(255,255,255,.85); }

/* Navbar */
.nav-glass{
  background: rgba(8,12,25,.75);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.navbar .nav-link{
  color: rgba(255,255,255,.78);
  font-weight: 600;
}
.navbar .nav-link.active,
.navbar .nav-link:hover{ color: #fff; }

.navbar-brand{ letter-spacing: .2px; }
.brand-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin-right: 10px;
  box-shadow: 0 0 0 6px rgba(77,163,255,.12);
}
.text-accent{ color: #9fd0ff; }

/* Buttons */
.btn-accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: 0;
  color: #0b1020;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(77,163,255,.18);
}
.btn-accent:hover{ filter: brightness(1.06); color:#0b1020; }

.btn-outline-light{
  border-color: rgba(255,255,255,.25);
}
.btn-outline-light:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
}

/* Hero */
.hero-section{
  padding: 86px 0 70px;
  position: relative;
  overflow: hidden;
}
.badge-soft{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 13px;
}
.hero-title{
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.5px;
}
.hero-sub{
  max-width: 52ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-highlights{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.h-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.86);
  font-weight: 600;
  font-size: 13px;
}
.h-item i{ color: #b7ddff; }

/* Hero card */
.hero-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card-top{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mini-pill{
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.hero-metric{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding: 12px;
  text-align: center;
}
.metric-num{
  font-weight: 900;
  font-size: 20px;
  color: #e9f4ff;
}
.metric-text{
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.text-muted-2{ color: rgba(255,255,255,.60) !important; }

.hero-card-cta .btn-dark{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
}
.hero-card-cta .btn-dark:hover{ background: rgba(255,255,255,.12); }

/* Shapes */
.hero-shape{
  position: absolute;
  filter: blur(0px);
  opacity: .45;
  pointer-events: none;
}
.shape-1{
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(77,163,255,.55), transparent 55%);
  left: -140px;
  top: 40px;
  animation: floaty 8s ease-in-out infinite;
}
.shape-2{
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,.48), transparent 60%);
  right: -200px;
  bottom: -220px;
  animation: floaty 10s ease-in-out infinite;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-18px); }
}

/* Sections */
.section-pad{ padding: 80px 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 .section-kicker,
.section-kicker{
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: 13px;
}
.section-title{
  font-weight: 900;
  margin-top: 14px;
  letter-spacing: -.3px;
}
.section-sub{ color: var(--muted); max-width: 70ch; margin: 10px auto 0; }

/* Cards */
.w-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
  padding: 18px;
  transition: transform .2s ease, border-color .2s ease;
}
.w-card:hover{
  transform: translateY(-4px);
  border-color: rgba(159,208,255,.35);
}
.icon-badge{
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(77,163,255,.35), rgba(124,92,255,.25));
  border: 1px solid rgba(255,255,255,.12);
  color: #e8f4ff;
}
.w-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.w-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255,255,255,.82);
}
.w-list i{ color: #a7d6ff; }

/* Why */
.why-card{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}
.why-card i{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #cfe9ff;
}
.why-card h6{ margin: 0; font-weight: 800; }
.why-card p{ margin: 4px 0 0; color: var(--muted); font-size: 13.5px; }

/* Stats */
.stats-wrap{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(0,0,0,.15));
  border: 1px solid rgba(255,255,255,.12);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding: 16px;
}
.stat-num{
  font-weight: 900;
  font-size: 26px;
}
.stat-text{ color: var(--muted); margin-top: 6px; font-size: 13px; }
.stats-note{
  grid-column: 1 / -1;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

/* Steps */
.step-card{
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  height: 100%;
  transition: transform .2s ease;
}
.step-card:hover{ transform: translateY(-4px); }
.step-no{
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #d8eeff;
  margin-bottom: 10px;
}

/* Contact */
.contact-card, .form-card{
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
}
.contact-line{
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.contact-line:last-child{ border-bottom: 0; }
.contact-line i{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #cfe9ff;
  flex: 0 0 auto;
}
.contact-line .label{
  font-size: 12px;
  color: rgba(255,255,255,.62);
  font-weight: 700;
}
.contact-line a{
  color: #d9eeff;
  text-decoration: none;
}
.contact-line a:hover{ text-decoration: underline; }

.form-control{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.90);
  border-radius: 14px;
}
.form-control:focus{
  box-shadow: 0 0 0 .25rem rgba(77,163,255,.15);
  border-color: rgba(159,208,255,.35);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.form-label{ color: rgba(255,255,255,.76); font-weight: 700; font-size: 13px; }
.mini-note{
  color: rgba(255,255,255,.68);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

/* Footer */
.footer{
  background: rgba(0,0,0,.28);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #0b1020;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  z-index: 9999;
  transition: transform .15s ease;
}
.wa-float:hover{ transform: translateY(-3px); color:#0b1020; }

/* To top */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.90);
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}
.to-top.show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 991px){
  .hero-section{ padding-top: 60px; }
  .hero-metric{ grid-template-columns: 1fr; }
  .stats-wrap{ grid-template-columns: 1fr; }
}




/* =========================
   HERO CARD V2 (Marketing Panel)
========================= */
.hero-card-v2{
  padding: 20px;
}

.hc-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 12.5px;
}

.hc-title{
  font-weight: 900;
  letter-spacing: -.2px;
}

.hc-sub{
  color: rgba(255,255,255,.68);
  font-size: 13.5px;
  line-height: 1.65;
}

.hc-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hc-tile{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .2s ease, border-color .2s ease;
}

.hc-tile:hover{
  transform: translateY(-3px);
  border-color: rgba(159,208,255,.35);
}

.hc-ic{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(77,163,255,.28), rgba(124,92,255,.20));
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  flex: 0 0 auto;
}

.hc-name{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  margin-top: 1px;
}

.hc-desc{
  color: rgba(255,255,255,.64);
  font-size: 12.5px;
  margin-top: 2px;
}

.hc-note{
  color: rgba(255,255,255,.62);
  font-size: 12.5px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
