:root {
  --bg0: #f7fbff;
  --bg1: #f3f8ff;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(15, 23, 42, 0.1);
  --text: #0b1220;
  --muted: rgba(15, 23, 42, 0.62);
  --brand: #3b82f6; /* blue */
  --brand2: #22c55e; /* green */
  --brand3: #06b6d4; /* cyan */
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.1);
  --radius: 22px;
  --navH: 74px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden; 
}

body {
  margin: 0;
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--text);
  background-color: var(--bg0);
  padding-top: var(--navH);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; 
  background:
    radial-gradient(
      1200px 700px at 14% 8%,
      rgba(59, 130, 246, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 650px at 86% 16%,
      rgba(34, 197, 94, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 650px at 50% 95%,
      rgba(6, 182, 212, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  pointer-events: none;
}


a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}
.glass {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ============ FIXED NAVBAR (always sticks) ============ */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navH);
  z-index: 9999;
  background: rgba(247, 251, 255, 0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.nav-inner {
  width: min(var(--max), 92vw);
  height: var(--navH);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.logo {
  width: 48px;
  height: 30px;
  border-radius: 14px;
  /* background: conic-gradient(from 210deg, rgba(59,130,246,1), rgba(34,197,94,1), rgba(6,182,212,1), rgba(59,130,246,1)); */
  /* box-shadow: 0 14px 36px rgba(59,130,246,.25); */
  /* position:relative; overflow:hidden; */
  transform: translateZ(0);
  font-weight: bold;
}
.logo::after {
  content: "";
  position: absolute;
  inset: -55%;
  /* background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.82), transparent 55%); */
  transform: rotate(12deg);
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.56);
}
.nav-links a {
  font-weight: 800;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.78);
  padding: 10px 12px;
  border-radius: 999px;
  /* transition: background .2s ease, transform .2s ease; */
}
.nav-links a:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.14),
    rgba(34, 197, 94, 0.1)
  );
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  cursor: pointer;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  filter: saturate(1.15);
}
.btn.primary {
  border: none;
  color: white;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 1),
    rgba(34, 197, 94, 1)
  );
  box-shadow: 0 20px 62px rgba(59, 130, 246, 0.28);
}
.btn.primary:hover {
  transform: translateY(-2px) scale(1.01);
}
.menu-btn {
  display: none;
}

/* Scroll progress bar (subtle modern) */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--brand),
    var(--brand2),
    var(--brand3)
  );
  z-index: 10000;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.18);
}

/* ============ HERO ============ */
section {
  padding: 46px 0;
}
.hero {
  padding: 74px 0 46px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: stretch;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-weight: 900;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.76);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.25);
}
h1 {
  margin: 14px 0 12px;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -1.1px;
}
.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
  margin: 0 0 18px;
  max-width: 64ch;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.micro {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.74);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* WOW right card */
.hero-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  transform: translateZ(0);
}
.hero-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.blobs {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(59, 130, 246, 0.22),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 40%,
      rgba(34, 197, 94, 0.18),
      transparent 55%
    ),
    radial-gradient(circle at 55% 75%, rgba(6, 182, 212, 0.18), transparent 55%);
  filter: blur(18px);
  opacity: 0.95;
  animation: blobs 12s ease-in-out infinite;
}
@keyframes blobs {
  0% {
    transform: translate(-2%, -2%) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(2%, 3%) scale(1.05) rotate(5deg);
  }
  100% {
    transform: translate(-2%, -2%) scale(1) rotate(0deg);
  }
}
.shimmer {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: conic-gradient(
    from 210deg,
    rgba(59, 130, 246, 0.9),
    rgba(34, 197, 94, 0.8),
    rgba(6, 182, 212, 0.8),
    rgba(59, 130, 246, 0.9)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  animation: spin 6s linear infinite;
  pointer-events: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.stat-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.stat strong {
  display: block;
  font-size: 16px;
  font-weight: 1000;
}
.stat em {
  font-style: normal;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 800;
  font-size: 12px;
}

/* ============ TRUST STRIP (logos marquee) ============ */
.trust {
  padding: 0 0 18px;
}
.trust-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}
.trust-title {
  font-weight: 1000;
  letter-spacing: -0.2px;
  color: rgba(15, 23, 42, 0.78);
  white-space: nowrap;
}
.marquee {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.55);
  padding: 10px 0;
}
.track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.7);
  white-space: nowrap;
}

/* ============ CONTENT SECTIONS ============ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.1);
  border-color: rgba(59, 130, 246, 0.18);
  filter: saturate(1.1);
}
.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(59, 130, 246, 0.16),
      transparent 55%
    ),
    radial-gradient(circle at 75% 65%, rgba(34, 197, 94, 0.12), transparent 55%);
  filter: blur(14px);
  opacity: 0.6;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.card:hover::before {
  opacity: 0.92;
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.16),
    rgba(34, 197, 94, 0.12)
  );
  border: 1px solid rgba(59, 130, 246, 0.16);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.icon svg {
  width: 22px;
  height: 22px;
  fill: rgba(15, 23, 42, 0.8);
}
.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.list {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.7;
  font-weight: 700;
}

/* ============ HOW IT WORKS ============ */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.steps {
  display: grid;
  gap: 12px;
}
.step {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.num {
  width: 36px;
  height: 36px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.18),
    rgba(34, 197, 94, 0.14)
  );
  border: 1px solid rgba(59, 130, 246, 0.18);
  display: grid;
  place-items: center;
  font-weight: 1000;
  margin-bottom: 10px;
}
.step h3 {
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ FAQ ============ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
details {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.05);
}
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 1000;
  color: rgba(15, 23, 42, 0.86);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
summary::-webkit-details-marker {
  display: none;
}
.chev {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.18);
  display: grid;
  place-items: center;
  transition: transform 0.22s ease;
  flex: 0 0 auto;
}
details[open] .chev {
  transform: rotate(180deg);
}
.faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
}

/* ============ CONTACT ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.form {
  padding: 18px;
}
label {
  display: block;
  font-weight: 900;
  font-size: 13px;
  margin: 12px 0 6px;
  color: rgba(15, 23, 42, 0.82);
}
input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
  transform: translateY(-1px);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form .actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.note {
  margin: 10px 0 0;
  color: rgba(15, 23, 42, 0.62);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}

footer {
  padding: 26px 0 42px;
  color: rgba(15, 23, 42, 0.7);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 18px;
}

/* ============ 2026 “WOW” MOTION ============ */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity, filter;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.18s;
}
.delay-3 {
  transition-delay: 0.26s;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.18),
    rgba(34, 197, 94, 0.12),
    transparent 60%
  );
  filter: blur(18px);
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.88);
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =======================================================
 RESPONSIVE DESIGN 
   ======================================================= */

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: clamp(34px, 4vw, 48px);
  }
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }

  .nav-inner > .btn.primary {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .how {
    grid-template-columns: 1fr;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  .lead {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .section-head h2 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    width: 100%;
    padding: 0 16px;
  }

  .brand {
    font-size: 15px;
  }
  .logo {
    width: 48px;
    height: 30px;
  }

  .btn.menu-btn {
    padding: 8px 12px;
    font-size: 14px;
    gap: 6px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .micro {
    flex-direction: column;
    gap: 8px;
  }
  .tag {
    width: 100%;
    justify-content: flex-start;
    padding: 12px;
    font-size: 14px;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
}
