:root {
  --purple-deep: #2d0a6b;
  --purple-mid: #4a1db5;
  --purple-bright: #6b35e8;
  --purple-light: #8b5cf6;
  --orange: #ff6b1a;
  --orange-bright: #ff8c42;
  --orange-glow: #ff6b1a33;
  --white: #ffffff;
  --off-white: #f8f7ff;
  --gray-light: #f0eef9;
  --gray-mid: #c4b8e8;
  --gray-text: #6b5e8f;
  --dark-text: #1a0a3d;
  --green: #22c55e;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--off-white);
  color: var(--dark-text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: rgba(20, 6, 60, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-logo {
  font-weight: 800;
  font-size: 22px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: white;
}
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  border: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--orange-glow);
  transition: all 0.25s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 26, 0.5);
}
.landing-page-container {
  width: 100% !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
/* HERO - VIDEO BANNER */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 100px;
  text-align: center;
}

#heroBgVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(15, 4, 50, 0.6) 0%,
      rgba(25, 7, 70, 0.5) 35%,
      rgba(15, 4, 50, 0.65) 70%,
      rgba(8, 2, 28, 0.93) 100%
    ),
    radial-gradient(
      ellipse at 75% 25%,
      rgba(255, 107, 26, 0.22) 0%,
      transparent 52%
    ),
    radial-gradient(
      ellipse at 20% 75%,
      rgba(107, 53, 232, 0.28) 0%,
      transparent 48%
    );
}

.orb {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  animation: float 10s ease-in-out infinite;
}
.orb-1 {
  width: 160px;
  height: 160px;
  top: 18%;
  left: 7%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.orb-2 {
  width: 80px;
  height: 80px;
  top: 62%;
  left: 11%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation-delay: 2s;
}
.orb-3 {
  width: 110px;
  height: 110px;
  top: 22%;
  right: 8%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.1), transparent);
  border: 1px solid rgba(255, 107, 26, 0.08);
  animation-delay: 4s;
}
.orb-4 {
  width: 55px;
  height: 55px;
  top: 68%;
  right: 16%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation-delay: 1s;
}
.orb-5 {
  width: 220px;
  height: 220px;
  top: 5%;
  right: 3%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.08), transparent);
  border: 1px solid rgba(255, 107, 26, 0.06);
  animation-delay: 3s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

.hero-badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  animation: fadeUp 0.6s ease both;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
html, h6, h5, h4, h3, h2, h1, input:not(#filterNavigateMenu), textarea:not(#filterNavigateMenu), optgroup:not(#filterNavigateMenu), select:not(#filterNavigateMenu), .select2-selection:not(#filterNavigateMenu), article, aside, details, figcaption, figure, footer, hgroup, main, menu, section, summary, button, body{
    min-height: 0px !important;
}
.hero h1 {
  position: relative;
  z-index: 3;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  /* max-width: 820px; */
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 .accent {
  color: var(--orange-bright);
}

.hero-sub {
  position: relative;
  z-index: 3;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.72;
  margin: 20px auto 36px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-ctas {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  border: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(255, 107, 26, 0.45);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 107, 26, 0.55);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.hero-dashboard {
  position: relative;
  z-index: 3;
  margin-top: 56px;
  width: 100%;
  max-width: 900px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.dashboard-frame {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 6px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px);
}
.dashboard-topbar {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px 14px 0 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.dot-r {
  width: 10px;
  height: 10px;
  background: #ff5f57;
  border-radius: 50%;
}
.dot-y {
  width: 10px;
  height: 10px;
  background: #febc2e;
  border-radius: 50%;
}
.dot-g {
  width: 10px;
  height: 10px;
  background: #28c840;
  border-radius: 50%;
}
.dashboard-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  height: 320px;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
}
.dash-sidebar {
  background: rgba(30, 8, 80, 0.7);
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.dash-sidebar-item {
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  margin-bottom: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.dash-sidebar-item.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  font-weight: 600;
}
.dash-sidebar-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}
.dash-main {
  background: rgba(12, 4, 38, 0.75);
  padding: 22px;
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.dash-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px;
}
.metric-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.metric-value {
  font-size: 22px;
  font-weight: 700;
  color: white;
}
.metric-change {
  font-size: 10px;
  color: var(--green);
  margin-top: 3px;
}
.dash-chart-area {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 14px;
  height: 130px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--orange), var(--purple-light));
  transition: opacity 0.3s;
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeUp 0.7s ease 0.55s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.hero-stat .num span {
  color: var(--orange-bright);
}
.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  align-self: stretch;
}

.video-mute-btn {
  position: absolute;
  bottom: 90px;
  right: 28px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.video-mute-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-indicator span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: rotate(45deg) translateY(6px);
    opacity: 0.9;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logos-strip {
  background: white;
  padding: 26px 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.logos-label {
  font-size: 13px;
  color: var(--gray-text);
  font-weight: 500;
  margin-right: 6px;
}
.logo-pill {
  background: var(--gray-light);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

section {
  padding: 100px 60px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(107, 53, 232, 0.1),
    rgba(255, 107, 26, 0.1)
  );
  border: 1px solid rgba(107, 53, 232, 0.2);
  color: var(--purple-bright);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title .accent {
  color: var(--purple-bright);
}
.section-sub {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 480px;
  line-height: 1.7;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 0 auto;
}

.features {
  background: white;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.feature-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(107, 53, 232, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-bright), var(--orange));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(107, 53, 232, 0.12);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(107, 53, 232, 0.3);
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 9px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}
.feature-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
}
.feature-card-large h3 {
  color: white;
  font-size: 21px;
}
.feature-card-large p {
  color: rgba(255, 255, 255, 0.62);
}
.feature-card-large .feature-icon {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 55px;
  margin-top: 20px;
}
.mini-bar {
  width: 100%;
  border-radius: 3px;
  background: linear-gradient(to top, var(--orange), rgba(255, 140, 66, 0.45));
}

.insights {
  background: var(--off-white);
}
.insights-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.insight-cards {
  display: grid;
  gap: 14px;
}
.insight-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(107, 53, 232, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s;
}
.insight-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 40px rgba(107, 53, 232, 0.12);
}
.insight-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.insight-icon.purple {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-mid));
}
.insight-icon.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
}
.insight-icon.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.insight-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.insight-card p {
  font-size: 13px;
  color: var(--gray-text);
}
.chart-showcase {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(107, 53, 232, 0.1);
  border: 1px solid rgba(107, 53, 232, 0.08);
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.chart-header h4 {
  font-size: 16px;
  font-weight: 700;
}
.chart-badge {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 145px;
  margin-bottom: 14px;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bar-wrap {
  width: 100%;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  flex: 1;
}
.bar-a {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: var(--purple-bright);
}
.bar-b {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 107, 26, 0.75);
}
.bar-lbl {
  font-size: 9px;
  color: var(--gray-text);
}
.chart-legend {
  display: flex;
  gap: 16px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-text);
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.automations {
  background: linear-gradient(
    135deg,
    var(--purple-deep) 0%,
    var(--purple-mid) 100%
  );
  position: relative;
  overflow: hidden;
}
.automations::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.18),
    transparent 70%
  );
  border-radius: 50%;
}
.automations .section-title {
  color: white;
}
.automations .section-sub {
  color: rgba(255, 255, 255, 0.58);
}
.automations .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.18);
}
.auto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.auto-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  cursor: pointer;
}
.auto-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.35);
}
.auto-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 14px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 26, 0.8),
    rgba(255, 140, 66, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.auto-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 7px;
}
.auto-card p {
  font-size: 13px;
  color: white;
  line-height: 1.6;
}
.auto-card-footer {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 107, 26, 0.9);
  font-weight: 600;
}

.plans {
  background: white;
}
.plans-toggle {
  display: flex;
  background: var(--gray-light);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin: 36px auto 0;
}
.toggle-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  background: transparent;
  /*  */
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-text);
  cursor: pointer;
  transition: all 0.3s;
}
.toggle-btn.active {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-mid));
  color: white;
  box-shadow: 0 4px 16px rgba(107, 53, 232, 0.3);
}
.plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 44px;
}
.plan-card {
  flex: 0 1 340px;
  border-radius: 24px;
  padding: 34px;
  border: 2px solid var(--gray-light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(107, 53, 232, 0.28);
  box-shadow: 0 20px 60px rgba(107, 53, 232, 0.12);
}
.plan-card.featured {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(107, 53, 232, 0.35);
}
.plan-card.featured h3,
.plan-card.featured .price,
.plan-card.featured .plan-feature {
  color: white;
}
.plan-card.featured .plan-sub {
  color: rgba(255, 255, 255, 0.58);
}
.plan-card.featured .plan-feature-check {
  color: var(--orange-bright);
}
.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  padding: 5px 18px;
  border-radius: 0 0 12px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.plan-card:not(.featured) .plan-icon {
  background: var(--gray-light);
}
.plan-card.featured .plan-icon {
  background: rgba(255, 255, 255, 0.14);
}
.plan-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.plan-sub {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 22px;
}
.price {
  /*  */
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 3px;
}
.price span {
  font-size: 16px;
  font-weight: 500;
}
.price-period {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 26px;
}
.plan-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 22px;
}
.plan-card.featured .plan-divider {
  background: rgba(255, 255, 255, 0.1);
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 9px;
  color: var(--dark-text);
}
.plan-feature-check {
  color: var(--green);
  font-size: 15px;
}
.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  /*  */
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin-top: 26px;
  transition: all 0.3s;
}
.plan-btn-outline {
  background: transparent;
  color: var(--purple-bright);
  border: 2px solid rgba(107, 53, 232, 0.28);
}
.plan-btn-outline:hover {
  background: var(--gray-light);
}
.plan-btn-filled {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.4);
}
.plan-btn-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 26, 0.5);
}

.faq {
  background: var(--off-white);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(107, 53, 232, 0.08);
  transition: all 0.3s;
}
.faq-item:hover {
  border-color: rgba(107, 53, 232, 0.2);
}
.faq-question {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  background: var(--purple-bright);
  color: white;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.7;
}
.faq-contact {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: 24px;
  padding: 38px;
  color: white;
  text-align: center;
}
.faq-contact h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 26px;
  line-height: 1.6;
}

.testimonials {
  background: white;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 22px;
  margin-top: 56px;
  animation: scrollX 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
@keyframes scrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testi-card {
  background: var(--gray-light);
  border-radius: 20px;
  padding: 26px;
  width: 310px;
  flex-shrink: 0;
  border: 1px solid rgba(107, 53, 232, 0.08);
}
.testi-stars {
  color: var(--orange);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 14px;
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-bright), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  /*  */
  font-weight: 700;
  color: white;
  font-size: 14px;
}
.testi-name {
  font-weight: 700;
  font-size: 14px;
}
.testi-role {
  font-size: 12px;
  color: var(--gray-text);
}

.why {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.why .section-title {
  color: white;
}
.why .section-sub {
  color: rgba(255, 255, 255, 0.58);
}
.why .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.18);
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.why-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  padding: 30px 22px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.why-stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
}
/* Mobile and Tablet View: Changes from 4 columns to 2 columns */
@media (max-width: 850px) {
  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Optional Pro-Tip: Very small phones (1 column stack) */
@media (max-width: 480px) {
  .why-stats {
    grid-template-columns: 1fr;
  }
}
.why-stat-num {
  
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin-bottom: 7px;
}
.why-stat-num span {
  color: var(--orange-bright);
}
.why-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.why-ctas {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

footer {
  background: var(--dark-text);
  padding: 58px 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 44px;
}
.footer-brand h3 {
  /*  */
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 230px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--purple-bright);
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 64px 20px;
  }
  .hero {
    padding: 96px 20px 80px;
  }
  .features-grid,
  .auto-grid,
  .plans-grid,
  .why-stats {
    grid-template-columns: 1fr;
  }
  .feature-card-large {
    grid-column: span 1;
  }
  .insights-layout,
  .faq-layout,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dashboard-body {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    display: none;
  }
  .hero-stats {
    gap: 18px;
  }
  .logos-strip {
    padding: 18px 20px;
  }
  footer {
    padding: 36px 20px 22px;
  }
}
/* =========================
   MOBILE NAV (CLEAN FINAL)
   ========================= */

/* Hide hamburger by default (desktop) */
#hamburgerBtn { display: none; }

/* Hamburger button look */
#hamburgerBtn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  padding: 10px;
}
#hamburgerBtn span{
  display:block;
  width: 22px;
  height: 2px;
  background:#fff;
  border-radius:999px;
}
#hamburgerBtn span + span{ margin-top: 6px; }

/* Mobile breakpoint */
@media (max-width: 900px){

  /* Hide desktop items */
  #desktopNavLinks,
  #desktopCta{
    display: none !important;
  }

  /* Show hamburger */
  #hamburgerBtn{
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Box menu (NOT full screen) */
  #mobileMenu{
    position: fixed;
    z-index: 5000;

    /* open under the fixed navbar */
    top: 72px;              /* adjust if your nav height differs */
    left: 14px;
    right: 14px;

    max-width: 520px;
    margin: 0 auto;

    /* height = content only */
    height: auto;

    background: rgba(20, 6, 60, 0.92);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);

    padding: 14px;

    /* hidden by default */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  /* open state */
  #mobileMenu.open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* header */
  .mobile-menu-header{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 10px;
  }

  .mobile-menu-close{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  /* links */
  .mobile-menu-links{
    display:flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 0 10px;
  }

  .mobile-menu-links a{
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 10px;
    border-radius: 10px;
    transition: background .2s ease, color .2s ease;
  }
  .mobile-menu-links a:hover{
    background: rgba(255,255,255,0.08);
    color: #fff;
  }

  /* CTA */
  .mobile-menu-cta{
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-bright));
    box-shadow: 0 10px 30px rgba(255,107,26,0.30);
  }
}
/* === Screenshot mode for hero dashboard === */
.dashboard-body--image{
  display: block;          /* disable grid layout */
  height: auto;            /* allow image to define height */
  padding: 10px;           /* small inner spacing */
  background: rgba(12, 4, 38, 0.75); /* keep your theme */
}

.dashboard-preview{
  width: 100%;
  height: auto;            /* keep real screenshot proportions */
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* Optional: keep the preview from becoming too tall */
.hero-dashboard{
  max-width: 1100px; /* you can keep 900px if you want */
}