 :root {
        --bg: #050816;
        --accent: #6366f1;
        --accent2: #ec4899;
        --text: #e5e7eb;
        --muted: #9ca3af;
        --card-bg: #0b1020;
        --border: rgba(148, 163, 184, 0.35);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", sans-serif;
      }

      body {
        background: radial-gradient(
          circle at top,
          #111827 0,
          #020617 45%,
          #020617 100%
        );
        color: var(--text);
        min-height: 100vh;
        overflow-x: hidden;
      }

      .container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 20px;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      /* ====== ANIMATED BACKGROUND BLOBS ====== */
      .blob {
        position: fixed;
        border-radius: 999px;
        filter: blur(40px);
        opacity: 0.6;
        z-index: -1;
        mix-blend-mode: screen;
      }

      .blob.blob-1 {
        width: 380px;
        height: 380px;
        background: #4f46e5;
        top: -80px;
        left: -40px;
        animation: float1 16s infinite alternate ease-in-out;
      }

      .blob.blob-2 {
        width: 420px;
        height: 420px;
        background: #ec4899;
        bottom: -120px;
        right: -60px;
        animation: float2 18s infinite alternate ease-in-out;
      }

      .blob.blob-3 {
        width: 260px;
        height: 260px;
        background: #22d3ee;
        top: 40%;
        right: 10%;
        animation: float3 20s infinite alternate ease-in-out;
      }

      @keyframes float1 {
        from {
          transform: translate(0, 0) scale(1);
        }
        to {
          transform: translate(80px, 60px) scale(1.1);
        }
      }
      @keyframes float2 {
        from {
          transform: translate(0, 0) scale(1);
        }
        to {
          transform: translate(-60px, -40px) scale(1.12);
        }
      }
      @keyframes float3 {
        from {
          transform: translate(0, 0) scale(1);
        }
        to {
          transform: translate(-40px, 40px) scale(1.08);
        }
      }

      /* ====== NAVBAR ====== */
      .nav {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(18px);
        background: linear-gradient(
          to bottom,
          rgba(15, 23, 42, 0.94),
          rgba(15, 23, 42, 0.6),
          transparent
        );
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
      }

      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        gap: 14px;
      }

      .nav-left {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .nav-logo-mark {
        width: 32px;
        height: 32px;
        border-radius: 999px;
        border: 2px solid rgba(248, 250, 252, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        background: radial-gradient(circle, #22d3ee, #6366f1);
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
      }

      .nav-title {
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: 14px;
      }

      .nav-links {
        display: flex;
        gap: 20px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
      }

      .nav-link {
        cursor: pointer;
        position: relative;
        color: var(--muted);
      }

      .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--accent2));
        border-radius: 999px;
        transition: width 0.25s ease-out;
      }

      .nav-link:hover {
        color: #e5e7eb;
      }
      .nav-link:hover::after {
        width: 100%;
      }

      .nav-actions {
        display: flex;
        gap: 10px;
        align-items: center;
      }

      .chip {
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        border: 1px solid rgba(148, 163, 184, 0.6);
        background: rgba(15, 23, 42, 0.9);
        color: var(--muted);
      }

      .btn-primary {
        border: none;
        outline: none;
        padding: 9px 20px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        color: white;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        cursor: pointer;
        box-shadow: 0 12px 30px rgba(99, 102, 241, 0.6);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .btn-primary span.icon {
        font-size: 15px;
      }

      .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 40px rgba(99, 102, 241, 0.8);
      }
/* ================= RESPONSIVE ================= */

/* Large tablets + small laptops */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-panel {
    transform: scale(1.03);
  }
}

/* Tablets */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .chip {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left {
    order: 2;
  }
  .hero-right {
    order: 1;
    display: flex;
    justify-content: center;
  }
  .hero-panel {
    max-width: 500px;
    transform: scale(1);
  }
  .hero-cta-row {
    justify-content: center;
  }
  .features-grid,
  .compare-grid,
  .two-col-grid,
  .views-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Phones landscape / large mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 14px;
  }
  .hero-title {
    font-size: 44px;
  }
  .hero-sub {
    max-width: 100%;
  }

  .features-grid,
  .compare-grid,
  .views-grid,
  .two-col-grid {
    grid-template-columns: 1fr;
  }

  .section-layout {
    grid-template-columns: 1fr;
  }

  .section-image-wrap {
    max-height: 340px;
  }

  .hero-panel {
    padding: 18px 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }
  .nav-title {
    font-size: 12px;
  }
  .nav-logo-mark {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .hero-panel {
    transform: scale(0.95);
    border-radius: 18px;
  }

  .hero-table-header,
  .hero-table-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 6px;
  }
}

/* hamburger button */
.hamburger {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 200;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 4px;
  transition: .35s ease;
}

/* transform to X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* mobile dropdown */
.mobile-menu {
  position: absolute;
  top: 65px;
  right: 20px;
  width: 220px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148,163,184,0.3);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-15px);
  transition: .35s ease;
}
.mobile-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Show hamburger & hide desktop items */
@media(max-width: 900px){
  .nav-links, .chip {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
}



         

#faq {
  margin-top: 60px;
}

.faq-heading {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}

.faq-sub {
  font-size: 14px;
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: radial-gradient(circle at top left, #111827, #020617);
  overflow: hidden;
  transition: 0.35s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.35);
  border-color: rgba(129, 140, 248, 0.6);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  transition: 0.3s;
  color: var(--muted);
}

.faq-answer {
  font-size: 13px;
  padding: 0 20px 16px;
  color: var(--muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #a5b4fc;
}



 /* FOOTER */
      .footer {
        border-top: 1px solid rgba(55, 65, 81, 0.7);
        padding: 16px 20px 26px;
        font-size: 12px;
        color: var(--muted);
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
      }

      .footer a {
        color: #a5b4fc;
      }

      /* RESPONSIVE */
      @media (max-width: 900px) {
        .hero-grid {
          grid-template-columns: minmax(0, 1fr);
        }
        .hero-right {
          order: -1;
          justify-content: center;
        }
        .hero {
          padding-top: 24px;
        }
        .section-layout {
          grid-template-columns: minmax(0, 1fr);
        }
        .hero-panel {
          transform: scale(1);
          max-width: 100%;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        .chip {
          display: none;
        }
        .features-grid,
        .compare-grid,
        .two-col-grid,
        .views-grid {
          grid-template-columns: minmax(0, 1fr);
        }
      }

      @media (max-width: 640px) {
        .features-grid {
          grid-template-columns: minmax(0, 1fr);
        }
        .hero-panel {
          padding: 18px 14px 16px;
        }
      }

      .footer-new {
  margin-top: 40px;
  padding: 40px 20px 25px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
}

.footer-sub {
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(99, 102, 241, 0.9);
}

.footer-social {
  display: flex;
  gap: 12px;
  font-size: 20px;
}

.footer-social a {
  transition: 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
