@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --bm-blue-50: #eff6ff;
  --bm-blue-100: #dbeafe;
  --bm-blue-500: #3b82f6;
  --bm-blue-600: #2563eb;
  --bm-blue-700: #1d4ed8;
  --bm-blue-900: #1e3a8a;
  --bm-indigo: #6366f1;
  --bm-purple: #8b5cf6;
  --bm-cyan: #06b6d4;

  /* Neutral */
  --bm-gray-50: #f8fafc;
  --bm-gray-100: #f1f5f9;
  --bm-gray-200: #e2e8f0;
  --bm-gray-400: #94a3b8;
  --bm-gray-600: #475569;
  --bm-gray-800: #1e293b;
  --bm-gray-900: #0f172a;
  --bm-dark: #060d1f;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #060d1f 0%, #0d1f3c 40%, #1a2f5e 100%);
  --grad-blue: linear-gradient(135deg, #2563eb 0%, #6366f1 100%);
  --grad-glow: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .20);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, .35);
  --shadow-glow: 0 0 60px rgba(99, 102, 241, .25);

  /* Spacing */
  --section-py: 60px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bm-gray-50);
  color: var(--bm-gray-800);
  margin: 0;
  padding-top: 0 !important;
  overflow-x: clip;
  line-height: 1.7;
}

/* ── Typography ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .1), rgba(99, 102, 241, .1));
  border: 1px solid rgba(37, 99, 235, .2);
  color: var(--bm-blue-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-label i {
  color: var(--bm-blue-500);
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  line-height: 1.2;
  color: var(--bm-gray-900);
}

.section-title .highlight {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--bm-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Utility ── */
.text-gradient {
  background: var(--grad-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animated background blobs ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, .25);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, .2);
  bottom: 0;
  left: -100px;
  animation-delay: 3s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, .15);
  top: 30%;
  left: 40%;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* ── Particle grid overlay ── */
.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 12px 24px;
  transition: all .35s ease;
}

.landing-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 13, 31, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  transition: all .35s ease;
}

.landing-nav.scrolled .nav-inner {
  background: rgba(6, 13, 31, 0.92);
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.brand-logo {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-blue);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.brand-logo .logo-text {
  color: #fff;
}

.brand-logo .logo-text span {
  color: var(--bm-blue-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-login {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: all .2s;
}

.btn-nav-login:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.btn-nav-start {
  background: var(--grad-blue);
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  transition: all .25s;
  box-shadow: var(--shadow-blue);
}

.btn-nav-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, .5);
  color: #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open,
  .nav-cta.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 12px 0;
    gap: 4px;
  }

  .landing-nav .nav-inner {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .nav-cta.open {
    padding-bottom: 4px;
  }
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
#hero {
  min-height: 80vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, .15);
  border: 1px solid rgba(37, 99, 235, .35);
  color: #93c5fd;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2.3rem, 8vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero-title .line-blue {
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, .65);
  max-width: 560px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all .3s;
  box-shadow: var(--shadow-blue);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, .55);
  color: #fff;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: all .3s;
  backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
}

/* Hero image card */
.hero-image-wrap {
  position: relative;
  padding: 20px;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 80px rgba(37, 99, 235, .4);
  border: 1px solid rgba(255, 255, 255, .1);
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-badge-card {
  position: absolute;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--bm-gray-800);
  animation: hero-float 6s ease-in-out infinite;
}

.hero-badge-card.card-bottom-left {
  bottom: 20px;
  left: -10px;
  animation-delay: 1.5s;
}

.hero-badge-card.card-top-right {
  top: 40px;
  right: -10px;
  animation-delay: 3s;
}

.hero-badge-card .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.hero-badge-card .card-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.hero-badge-card .card-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

/* ══════════════════════════════════════════
   TRUST LOGOS / BRANDS
══════════════════════════════════════════ */
#trust {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--bm-gray-100);
}

.trust-label {
  font-size: .8rem;
  color: var(--bm-gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo-item {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bm-gray-400);
  letter-spacing: -.02em;
  transition: color .2s;
}

.trust-logo-item:hover {
  color: var(--bm-gray-600);
}

/* ══════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════ */
#features {
  padding: var(--section-py) 0;
  background: var(--bm-gray-50);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--bm-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--bm-blue-500);
}

.feature-card:hover::before {
  opacity: .03;
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform .3s;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.feature-icon-blue {
  background: #dbeafe;
  color: #2563eb;
}

.feature-icon-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.feature-icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.feature-icon-orange {
  background: #ffedd5;
  color: #ea580c;
}

.feature-icon-cyan {
  background: #cffafe;
  color: #0891b2;
}

.feature-icon-pink {
  background: #fce7f3;
  color: #db2777;
}

.feature-card h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bm-gray-900);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--bm-gray-600);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
#how-it-works {
  padding: var(--section-py) 0;
  background: var(--bm-gray-900);
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  #how-it-works {
    margin-top: -50px;
  }
}

.step-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all .3s;
  position: relative;
}

.step-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(37, 99, 235, .4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, .2);
}

.step-number {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 3rem;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-card p {
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  margin: 0;
}

@media (min-width: 768px) {
  .step-col {
    position: relative;
  }

  .step-col:not(:last-child)::after {
    content: '\F138';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    color: rgba(255, 255, 255, .2);
    font-size: 1.8rem;
    z-index: 10;
  }
}

/* ══════════════════════════════════════════
   PRODUCT SHOWCASE (Feature Detail)
══════════════════════════════════════════ */
#showcase {
  padding: var(--section-py) 0;
  background: #fff;
}

.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--bm-gray-200);
}

.showcase-image img {
  width: 100%;
  display: block;
}

.showcase-tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--bm-gray-200);
  background: #fff;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
}

.showcase-tab-btn.active,
.showcase-tab-btn:hover {
  background: var(--bm-blue-50);
  border-color: var(--bm-blue-500);
  box-shadow: var(--shadow-sm);
}

.showcase-tab-btn .tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.showcase-tab-btn .tab-text h6 {
  font-weight: 700;
  color: var(--bm-gray-900);
  margin: 0 0 2px;
  font-size: .95rem;
}

.showcase-tab-btn .tab-text p {
  font-size: .82rem;
  color: var(--bm-gray-600);
  margin: 0;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
#testimonials {
  padding: 0 0 var(--section-py);
  background: var(--bm-gray-50);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--bm-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bm-blue-200);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--bm-gray-700);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author h6 {
  font-weight: 700;
  margin: 0;
  color: var(--bm-gray-900);
  font-size: .9rem;
}

.testimonial-author small {
  color: var(--bm-gray-500);
  font-size: .8rem;
}

/* ── Testimonials Marquee ── */
.testimonial-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0 20px;
}

.testimonial-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
  align-items: stretch;
}

.testimonial-marquee-track .testimonial-card {
  width: 350px;
  white-space: normal;
}

.testimonial-marquee-track .testimonial-text {
  flex-grow: 1;
  /* Pushes the author info to the bottom */
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
#pricing {
  padding: 0 0 var(--section-py);
  background: #fff;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: all .3s;
}

.pricing-card.basic {
  background: var(--bm-gray-50);
  border: 1px solid var(--bm-gray-200);
}

.pricing-card.popular {
  background: var(--grad-hero);
  border: 1px solid rgba(37, 99, 235, .4);
  color: #fff;
  box-shadow: var(--shadow-blue), var(--shadow-glow);
  transform: scale(1.04);
}

.pricing-card.enterprise {
  background: var(--bm-gray-50);
  border: 1px solid var(--bm-gray-200);
}

.pricing-card:not(.popular):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--bm-blue-500);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-glow);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.pricing-card.basic .pricing-plan-name,
.pricing-card.enterprise .pricing-plan-name {
  color: var(--bm-gray-500);
}

.pricing-card.popular .pricing-plan-name {
  color: rgba(255, 255, 255, .7);
}

.pricing-price {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.basic .pricing-price,
.pricing-card.enterprise .pricing-price {
  color: var(--bm-gray-900);
}

.pricing-card.popular .pricing-price {
  color: #fff;
}

.pricing-period {
  font-size: .85rem;
  margin-bottom: 24px;
}

.pricing-card.basic .pricing-period,
.pricing-card.enterprise .pricing-period {
  color: var(--bm-gray-500);
}

.pricing-card.popular .pricing-period {
  color: rgba(255, 255, 255, .55);
}

.pricing-divider {
  border-color: var(--bm-gray-200);
  margin: 20px 0;
}

.pricing-card.popular .pricing-divider {
  border-color: rgba(255, 255, 255, .15);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
}

.pricing-card.basic .pricing-feature,
.pricing-card.enterprise .pricing-feature {
  color: var(--bm-gray-700);
}

.pricing-card.popular .pricing-feature {
  color: rgba(255, 255, 255, .8);
}

.pricing-feature-check {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature-cross {
  color: var(--bm-gray-300);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-pricing-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  margin-top: 24px;
  font-size: .95rem;
}

.btn-pricing-outline {
  background: transparent;
  border: 2px solid var(--bm-blue-500);
  color: var(--bm-blue-600);
}

.btn-pricing-outline:hover {
  background: var(--bm-blue-600);
  color: #fff;
}

.btn-pricing-filled {
  background: #fff;
  color: var(--bm-blue-700);
}

.btn-pricing-filled:hover {
  background: var(--bm-blue-50);
  color: var(--bm-blue-800);
}

.btn-pricing-dark {
  background: var(--bm-gray-900);
  color: #fff;
  border: 2px solid var(--bm-gray-900);
}

.btn-pricing-dark:hover {
  background: var(--bm-blue-700);
  border-color: var(--bm-blue-700);
  color: #fff;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq {
  padding: 0 0 var(--section-py);
  background: var(--bm-gray-50);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--bm-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: var(--bm-blue-500);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question h6 {
  font-weight: 600;
  color: var(--bm-gray-900);
  margin: 0;
  font-size: .95rem;
  flex: 1;
  padding-right: 16px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bm-gray-100);
  border: none;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--bm-gray-600);
  transition: all .2s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  background: var(--bm-blue-600);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--bm-gray-600);
  font-size: .9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact {
  padding: 0 0 var(--section-py);
  background: #fff;
}

.contact-card {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, .2);
  border: 1px solid rgba(37, 99, 235, .3);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #60a5fa;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  font-size: .9rem;
}

.contact-info-item p {
  color: rgba(255, 255, 255, .6);
  margin: 0;
  font-size: .9rem;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.form-label-bm {
  font-weight: 600;
  font-size: .85rem;
  color: var(--bm-gray-700);
  margin-bottom: 6px;
  display: block;
}

.form-control-bm {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--bm-gray-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--bm-gray-800);
  background: var(--bm-gray-50);
  transition: all .2s;
  outline: none;
  font-family: var(--font-body);
}

.form-control-bm:focus {
  border-color: var(--bm-blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .1);
}

.form-control-bm::placeholder {
  color: var(--bm-gray-400);
}

.form-select-bm {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 12px;
}

.btn-submit-bm {
  width: 100%;
  padding: 15px;
  background: var(--grad-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all .3s;
  box-shadow: var(--shadow-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-bm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, .5);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#landing-footer {
  background: var(--bm-dark);
  color: rgba(255, 255, 255, .6);
  padding: 80px 0 0;
}

.footer-brand p {
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  max-width: 280px;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .95rem;
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--bm-blue-600);
  color: #fff;
  border-color: var(--bm-blue-600);
}

.footer-col h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 60px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
#cta-banner {
  padding: 20px 0 var(--section-py);
  background: var(--bm-gray-50);
}

.cta-inner {
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  padding: 55px 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner h2 {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ══════════════════════════════════════════
   BENEFIT MINI CARD
══════════════════════════════════════════ */
.benefit-mini-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 24px;
  transition: all .25s;
  cursor: default;
  height: 100%;
}

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--grad-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  z-index: 9999;
  transition: all .25s;
}

#back-to-top.show {
  display: grid;
}

#back-to-top:hover {
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .pricing-card.popular {
    transform: scale(1);
  }

  .contact-card {
    padding: 40px 28px;
  }

  .cta-inner {
    padding: 60px 32px;
  }
}

/* ── Testimonials Marquee ── */
.testimonial-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0 20px;
}

.testimonial-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}

.testimonial-marquee-track:hover,
.testimonial-marquee-track:active {
  animation-play-state: paused;
}

.testimonial-marquee-track .testimonial-card {
  width: 350px;
  white-space: normal;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (max-width: 767px) {
  :root {
    --section-py: 40px;
  }

  .landing-nav {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
  }

  /* Hero fixes */
  .hero-content {
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    justify-content: center;
  }

  .hero-badge-card {
    transform: scale(0.85);
    z-index: 10;
  }

  .hero-badge-card.card-bottom-left {
    bottom: -10px;
    left: -10px;
  }

  .hero-badge-card.card-top-right {
    top: 10px;
    right: -10px;
  }

  .hero-stat-divider {
    display: none;
  }

  /* Sections move up & alignment */
  main {
    display: flex;
    flex-direction: column;
  }

  #hero {
    order: 1;
  }

  #how-it-works {
    order: 2;
    padding-top: 20px;
  }

  #trust {
    order: 3;
  }

  #products {
    order: 4;
  }

  #features {
    order: 5;
    padding-top: 0;
    margin-top: -40px;
  }

  #benefits {
    order: 6;
    text-align: center;
    padding-top: 10px;
  }

  #benefits .section-title,
  #benefits .section-subtitle,
  #benefits .benefit-item {
    text-align: center;
  }

  #showcase {
    order: 7;
    padding-top: 40px;
    margin-top: 20px;
  }

  .showcase-content {
    margin-top: 0;
  }

  #pricing {
    order: 8;
    padding-top: 0;
    margin-top: -20px;
  }

  #testimonials {
    order: 9;
  }

  #faq {
    order: 10;
    padding-top: 0;
  }

  #contact {
    order: 11;
  }

  #cta-banner {
    order: 12;
    margin-top: -30px;
  }

  /* Testimonial adjustments */
  .testimonial-marquee-track .testimonial-card {
    width: 300px;
  }

  .step-connector {
    display: none;
  }

  /* Contact fixes */
  .contact-form-card {
    padding: 28px 20px;
  }

  /* Footer fixes */
  #landing-footer {
    padding-top: 40px;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .footer-brand {
    text-align: left;
    margin-bottom: 20px;
  }

  .footer-brand p {
    margin: 15px 0;
    max-width: 100%;
    text-align: left;
  }

  .footer-col {
    text-align: left;
    margin-bottom: 15px;
  }

  .footer-col h6 {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }

  .footer-bottom {
    align-items: flex-start;
    text-align: left;
    padding: 20px 0;
    margin-top: 20px;
  }

  .footer-bottom-links {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .footer-bottom-links a {
    font-size: 0.75rem;
    white-space: nowrap;
  }
}

/* Moved from Index.cshtml */
/* ─── Product Sell Cards ─── */
.product-sell-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1.5px solid rgba(226, 232, 240, .8);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
}

.product-sell-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .13);
}

.product-sell-card.featured-product {
  border-color: #7c3aed;
  box-shadow: 0 8px 40px rgba(124, 58, 237, .18);
}

.pscard-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  z-index: 10;
  transform: rotate(35deg);
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 44px;
  letter-spacing: .04em;
  box-shadow: 0 4px 12px rgba(124, 58, 237, .4);
}

.pscard-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.badge-blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
}

.badge-purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #7c3aed;
}

.badge-green {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #15803d;
}

.pscard-img-wrap {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pscard-icon-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pscard-icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .25);
  pointer-events: none;
}

.ring1 {
  width: 120px;
  height: 120px;
}

.ring2 {
  width: 180px;
  height: 180px;
}

.pscard-img-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pscard-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pscard-category {
  font-size: .73rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.pscard-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pscard-desc {
  font-size: .85rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}

.pscard-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
}

.pscard-features li {
  font-size: .8rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.pscard-features li i {
  font-size: .9rem;
  flex-shrink: 0;
}

/* What's Included box */
.pscard-whats-included {
  background: #faf5ff;
  border: 1px solid #ede9fe;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}

.pscard-included-title {
  font-size: .78rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pscard-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pscard-included-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 500;
  color: #374151;
}

.pscard-included-item i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Pricing block */
.pscard-price-block {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
}

.pscard-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.pscard-original-price {
  font-size: .85rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.pscard-discount-badge {
  background: #3b82f6;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.pscard-price {
  font-size: 2rem;
  font-weight: 900;
  color: #1d4ed8;
  line-height: 1;
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
}

.pscard-price small {
  font-size: 1rem;
  font-weight: 600;
  opacity: .7;
}

.pscard-billed-note {
  font-size: .74rem;
  color: #64748b;
  margin-top: 4px;
}

/* Actions */
.pscard-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.pscard-btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 11px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 14px rgba(59, 130, 246, .35);
}

.pscard-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, .45);
  color: #fff;
}

.pscard-btn-outline {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #3b82f6;
  font-weight: 700;
  font-size: .85rem;
  padding: 11px 16px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid #3b82f6;
  transition: all .3s;
}

.pscard-btn-outline:hover {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #1d4ed8;
}

.pscard-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pscard-trust span {
  font-size: .76rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}