/* Regular */
@font-face {
  font-family: "Neue Haas Grotesk Text";
  src: url("/assets/fonts/NeueHaasGrotText-55Roman-Trial.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.mobile {
  display: none !important;
}
/* Medium */
@font-face {
  font-family: "Neue Haas Grotesk Text";
  src: url("/assets/fonts/NeueHaasGrotText-65Medium-Trial.otf")
    format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Neue Haas Grotesk Text";
  src: url("/assets/fonts/NeueHaasGrotText-75Bold-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* CSS Variables - Bambuser Brand System - SOLID COLORS ONLY */
:root {
  /* Primary Colors */
  --bam-primary: #ffffff;
  --bam-secondary: #080808;
  --bam-tertiary: #e95d11;
  --bam-alternate: #0f23c7;
  --bam-1d1d1d: #1d1d1d;
  /* Derived Colors - Light Theme */
  --bam-black: #080808;
  --bam-dark: #0d0d0d;
  --bam-gray-900: #151515;
  --bam-gray-800: #222222;
  --bam-gray-700: #333333;
  --bam-gray-600: #555555;
  --bam-gray-500: #666666;
  --bam-gray-400: #888888;
  --bam-gray-300: #cccccc;
  --bam-gray-200: #e5e5e5;
  --bam-gray-100: #f5f5f5;
  --bam-white: #ffffff;
  --bam-accent: #e95d11;
  --bam-accent-hover: #d54e08;
  --bam-accent-light: #fef3ed;
  --bam-blue: #0f23c7;
  --bam-blue-light: #eceffe;

  --font-primary: Neue Haas Grotesk Display, Arial, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--bam-white);
  color: var(--bam-black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography - NO GRADIENTS */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--bam-black);
}

h1 {
  font-size: clamp(2.1rem, 4.25vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

p {
  color: var(--bam-gray-600);
  font-size: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bam-gray-200);
  padding: 16px 0;
  transition: var(--transition-medium);
}

.nav.scrolled {
  box-shadow: var(--shadow-card);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--bam-black);
}

.nav-logo svg {
  height: 28px;
  width: auto;
  fill: var(--bam-black);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Buttons - SOLID COLORS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: inherit;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--bam-black);
  color: var(--bam-white);
}

.btn-primary:hover {
  background: var(--bam-gray-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  background: transparent;
  color: var(--bam-black);
  border: 1px solid var(--bam-1d1d1d);
}

.btn-secondary:hover {
  background: var(--bam-gray-100);
  color: var(--bam-black) !important;
  border-color: var(--bam-gray-400);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--bam-accent);
  color: var(--bam-white);
}

.btn-accent:hover {
  background: var(--bam-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 93, 17, 0.3);
}

.btn-large {
  padding: 16px 32px;
  font-size: 0.9375rem;
}

/* Hero Section - LEFT ALIGNED with Media Space */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bam-accent-light);
  border: 1px solid var(--bam-accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--bam-accent);
  margin-bottom: 20px;
  animation: fadeInLeft 0.6s ease;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--bam-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInLeft 0.6s ease 0.1s both;
  line-height: 96%;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.hero h1 .highlight {
  color: var(--bam-accent);
}

/* Hero Features List */
.hero-features {
  margin-bottom: 28px;
  animation: fadeInLeft 0.6s ease 0.2s both;
}

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--bam-gray-700);
}

.hero-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--bam-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-feature-item h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInLeft 0.6s ease 0.3s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInLeft 0.6s ease 0.4s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--bam-gray-600);
  padding: 6px 12px;
  background: var(--bam-gray-100);
  border-radius: 100px;
  transition: var(--transition-fast);
}

.hero-trust-item:hover {
  background: var(--bam-gray-200);
  transform: translateY(-2px);
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--bam-accent);
}

/* Hero Media Placeholder */
.hero-media {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-media-placeholder {
  /* aspect-ratio: 4/3; */
  background: var(--bam-gray-100);
  /* border: 2px dashed var(--bam-gray-300); */
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--bam-gray-500);
  font-size: 0.875rem;
  transition: var(--transition-medium);
  /* cursor: pointer; */
  overflow: hidden;
  position: relative;
}

.hero-media-placeholder:hover {
  border-color: var(--bam-accent);
  background: var(--bam-accent-light);
}

.hero-media-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--bam-gray-400);
}

.hero-media-placeholder:hover svg {
  color: var(--bam-accent);
}

/* For actual video/gif content */
.hero-media-placeholder img,
.hero-media-placeholder video {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  /* position: absolute; */
  top: 0;
  left: 0;
}

/* Floating elements for interactivity */
.floating-card {
  position: absolute;
  background: var(--bam-white);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-card-hover);
  animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
  bottom: -50px;
  left: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  top: -5px;
  right: -20px;
  animation-delay: 1.5s;
}

.floating-card-stat {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bam-accent);
}

.floating-card-label {
  font-size: 0.6875rem;
  color: var(--bam-gray-600);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Marquee */
.logos {
  padding: 40px 0;
  border-top: 1px solid var(--bam-gray-200);
  border-bottom: 1px solid var(--bam-gray-200);
  overflow: hidden;
  background: var(--bam-gray-100);
}

.logos-label {
  text-align: center;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bam-gray-500);
  margin-bottom: 24px;
}

.logos-track {
  display: flex;
  /* gap: 48px; */
  animation: scroll 65s linear infinite;
  align-items: center;
  scrollbar-width: none;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-item {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--bam-gray-600);
  white-space: nowrap;
  transition: var(--transition-fast);
  /* cursor: pointer; */
}

.logo-item img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

.logos-track-in {
  display: flex;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  /* gap: 20px; */
}

.logo-item:hover {
  color: var(--bam-black);
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-399%);
  }
}

/* Stats Section with Interactive Counters */
.stats {
  padding: 70px 0;
  background: var(--bam-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  background: var(--bam-white);
  border: 1px solid var(--bam-gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
  box-shadow: var(--shadow-sm);
  /* cursor: pointer; */
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bam-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  border-color: var(--bam-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bam-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--bam-gray-600);
}

/* Section Styles */
.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}

.section-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  /* color: var(--bam-accent); */
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 1.5px;
}

.section-label.alt {
  color: var(--bam-blue);
}

.section-header h2 {
  margin-bottom: 16px;
  line-height: 96%;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.section-header h3 {
  font-size: 1rem;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

/* Features Grid with Hover Effects */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features-swiper {
  display: none;
}

.feature-card {
  background: var(--bam-white);
  border: 1px solid var(--bam-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  /* cursor: pointer; */
  height: auto;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bam-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: var(--bam-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.swiper-slide.feature-card:hover {
  transform: translateY(0px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bam-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-medium);
}

.feature-card:hover .feature-icon {
  background: var(--bam-accent);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bam-accent);
  transition: var(--transition-medium);
}

.feature-card:hover .feature-icon svg {
  color: var(--bam-white);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--bam-black);
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* How It Works - Dark Section with Two Column Layout */
.how-it-works {
  background: var(--bam-black);
}

.how-it-works .section-header {
  text-align: left;
  max-width: none;
  margin: 0 0 40px 0;
}

.how-it-works .section-header h2,
.how-it-works .section-label {
  color: var(--bam-white);
}

.how-it-works .section-label {
  color: var(--bam-accent);
}

.how-it-works .section-header h3 {
  color: var(--bam-gray-400);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.how-it-works-content {
  text-align: left;
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
  /* cursor: pointer; */
}

.step:hover {
  border-color: var(--bam-accent);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bam-accent);
  color: var(--bam-white);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step:nth-child(3) .step-number {
  background: var(--bam-accent);
}

.step-content h3 {
  margin-bottom: 4px;
  color: var(--bam-white);
  font-size: 1.125rem;
}

.step-content p {
  font-size: 0.8125rem;
  color: var(--bam-gray-400);
  line-height: 1.5;
}

/* How It Works Media Placeholder */
.how-it-works-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 530px;
}

.how-it-works-media-placeholder {
  height: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--bam-gray-500);
  font-size: 0.875rem;
  transition: var(--transition-medium);
  /* cursor: pointer; */
  overflow: hidden;
  position: relative;
}

.how-it-works-media-placeholder:hover {
  border-color: var(--bam-accent);
  background: rgba(233, 93, 17, 0.05);
}

.how-it-works-media-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--bam-gray-500);
}

.how-it-works-media-placeholder:hover svg {
  color: var(--bam-accent);
}

.how-it-works-media-placeholder img,
.how-it-works-media-placeholder video,
.how-it-works-media bam-playlist {
  position: relative;
  width: 100%;
}

/* Testimonial */
.testimonial {
  background: var(--bam-gray-100);
  border: 1px solid var(--bam-gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 100px;
  color: var(--bam-accent);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-quote {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--bam-black);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--bam-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bam-blue);
}

.testimonial-info strong {
  display: block;
  color: var(--bam-black);
  font-size: 0.9375rem;
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: var(--bam-gray-600);
}

/* Use Cases - Matching Feature Cards Style */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.use-case-card {
  background: var(--bam-white);
  border: 1px solid var(--bam-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-sm);
  /* cursor: pointer; */
  text-align: left;
  position: relative;
  overflow: hidden;
  height: auto;
}

.use-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bam-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.use-case-card:hover {
  border-color: var(--bam-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.use-case-card:hover::before {
  transform: scaleX(1);
}
.swiper-slide.use-case-card:hover {
  transform: translate(0);
}

.use-case-icon {
  width: 48px;
  height: 48px;
  background: var(--bam-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-medium);
}

.use-case-card:hover .use-case-icon {
  background: var(--bam-accent);
  transform: scale(1.1) rotate(5deg);
}

.use-case-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bam-accent);
  transition: var(--transition-medium);
}

.use-case-card:hover .use-case-icon svg {
  color: var(--bam-white);
}

.use-case-card h3 {
  color: var(--bam-black);
  margin-bottom: 10px;
  font-size: 1rem;
}

.use-case-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Integration Logos */
.integrations {
  background: var(--bam-gray-100);
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: stretch;
}

.integration-item {
  /* background: var(--bam-white);
  border: 1px solid var(--bam-gray-200); */
  border-radius: var(--radius-md);
  /* padding: 14px 22px; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
  /* box-shadow: var(--shadow-sm); */
  /* cursor: pointer; */
}

.integration-item:hover {
  border-color: var(--bam-blue);
  background: var(--bam-blue-light);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-card);
}

.integration-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bam-gray-700);
}

.integration-item:hover span {
  color: var(--bam-blue);
}

/* CTA Section - Dark */
.cta-section {
  padding: 80px 0;
  background: var(--bam-black);
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  margin-bottom: 16px;
  color: var(--bam-white);
}

.cta-content h3 {
  font-size: 1rem;
  margin-bottom: 32px;
  color: var(--bam-gray-400);
  font-weight: inherit;
  line-height: inherit;
}
.imglesssize {
  width: 130px;
  height: auto;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-guarantee {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--bam-gray-400);
}

.guarantee-item svg {
  width: 18px;
  height: 18px;
  color: var(--bam-accent);
}

/* Footer - Dark */
.footer {
  background: var(--bam-black);
  border-top: 1px solid var(--bam-gray-800);
  padding: 24px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  color: var(--bam-white);
}

.footer-logo svg {
  height: 22px;
  width: auto;
  fill: var(--bam-white);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--bam-gray-400);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--bam-white);
}

.footer-copyright {
  color: var(--bam-gray-600);
  font-size: 0.8125rem;
}

/* Animations on Scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-features {
    max-width: 500px;
    margin: 0 auto 28px;
  }

  .hero-feature-item {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-media {
    max-width: 550px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-it-works .section-header {
    text-align: center;
  }

  .how-it-works-media {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 45px 0;
  }
  .stats {
    padding: 45px 0;
  }

  .nav-cta .btn-secondary {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: column;
    align-items: center;
  }

  .features-swiper {
    display: block;
  }

  .features-grid {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .testimonial {
    padding: 32px 20px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .floating-card {
    display: none;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: flex !important;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-999%);
    }
  }

  .how-it-works-media {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}

/* Urgency Banner */
.urgency-banner {
  background: var(--bam-accent);
  color: var(--bam-white);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.urgency-banner a {
  color: var(--bam-white);
  text-decoration: underline;
  margin-left: 8px;
  transition: var(--transition-fast);
}

.urgency-banner a:hover {
  opacity: 0.8;
}

/* Interactive cursor effects */
/* .interactive-element {
  cursor: pointer;
} */

/* Smooth number counter animation */
.counter {
  display: inline-block;
}

.swiper-pagination-bullet-active {
  background: var(--bam-accent);
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

.popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #08080895;
  z-index: 9999999;
}
.popup-container {
  position: relative;
  max-width: 450px;
  width: 100%;
  /* height: 100%; */
  background: #ffff;
  max-height: 90vh;
  padding: 24px;
  border-radius: 10px;
  overflow-y: auto;
}
.popup-close-btn {
  width: 40px;
  height: 40px;
  background-color: var(--bam-gray-200);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 5px;
  border: 1px solid var(--bam-black);
  cursor: pointer;
  z-index: 5;
  transition: 0.3s all ease;
}
.popup-close-btn:hover {
  background-color: var(--bam-gray-100);
}
.form-input {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  display: block;
  border: 1px solid var(--bam-1d1d1d);
  border-radius: 4px;
  min-height: 48px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 40px;
}
.form-headline {
  margin-bottom: 32px;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
}
.form-info-line {
  color: #606062;
  font-size: 14px;
  line-height: 135%;
  margin-top: 10px;
}
.submit-btn {
  margin-top: 24px;
}
.form-block {
  width: 100%;
  max-width: 400px;
}
.form-row {
  display: flex;
  gap: 10px;
}
.form-col {
  width: 100%;
}
.div-block-290 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.text-block-129 {
  color: red;
  margin-top: -6.8px;
  padding-top: 0;
  padding-bottom: 4px;
  font-size: 14px;
  display: none;
}
.form-success-block {
  display: none;
}

.book-a-demo-popup,
.free-trial-popup {
  display: none;
  opacity: 0;
  transform: scale(1.1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.popup-active {
  display: flex !important;
}

.popup-show {
  opacity: 1;
  transform: scale(1);
}
.form-submitting {
  background-color: #ffffff8f;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0%;
  left: 0%;
  justify-content: center;
  align-items: center;
}
.form-submitting img {
  width: 100%;
  max-width: 50%;
}
.g2-review {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}
.g2-review-img {
  max-width: 120px;
}
.g2-review-text {
  font-size: 14px;
  color: #606062;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #21b499;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
