/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.dark-mode {
  font-family: 'Inter', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0f;
  color: #f8fafc;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body, html {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassy Navigation */
.navbar.glassy-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 16px 24px;
}

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}


.accent-dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, #8b5cf6, #3b82f6);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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


/* @media (max-width: 600px){
  .nav-logo {
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  .accent-dot {
    display: none;
  }
} */

.nav-center {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.nav-center .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  pointer-events: auto;
  background: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: #cbd5e1;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 28px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 120px;
}

.nav-cta {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff !important;
  font-weight: 600;
  border-radius: 28px;
  padding: 10px 28px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.10);
  border: none;
  font-size: 1rem;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}


.mobile-flyout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  transition: opacity 0.3s;
  /* width: 100vw; */
  /* height: 100vh; */
}
.mobile-flyout-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-flyout-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80vw;
  max-width: 340px;
  background: rgba(24, 28, 36, 0.98);
  box-shadow: -8px 0 32px rgba(0,0,0,0.25);
  z-index: 2000;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
}
.mobile-flyout-menu.open {
  transform: translateX(0);
}
.mobile-flyout-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
}
.mobile-flyout-menu ul {
  list-style: none;
  margin: 48px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-flyout-menu ul li a {
  color: #f8fafc;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.2s;
  display: block;
}
.mobile-flyout-menu ul li a:hover {
  background: rgba(59, 130, 246, 0.08);
}
.mobile-flyout-menu .nav-cta {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff !important;
  font-weight: 600;
  border-radius: 28px;
  padding: 12px 0;
  text-align: center;
  margin-top: 12px;
  display: block;
}
@media (min-width: 769px) {
  .mobile-flyout-menu,
  .mobile-flyout-overlay {
    display: none !important;
  }
}

/* @media (max-width: 600px) {
  .mobile-flyout-menu {
    width: 100vw !important;
    max-width: none !important;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .mobile-flyout-overlay {
    width: 100vw !important;
    height: 100vh !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
  }
} */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 180px 24px 80px;
  background: #0d0c12;
  text-align: center;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(118, 75, 204, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text-content {
  max-width: 750px;
  margin-bottom: 64px;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}

.hero-title .gradient-text {
  display: block;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  margin: 0 auto 32px;
  max-width: 550px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 28px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 1;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.cta-button.primary {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  /* background-color: #8b5cf6; */
  color: #fff;
}

.cta-button.primary:hover {
  border: 1px solid #8b5cf6;
  background: transparent;
}

.cta-button.secondary {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero-dashboard-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.hero-dashboard-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* REMOVE OLD HERO STYLES */
.hero-content, .hero-badge, .hero-stats, .hero-visual, .floating-card, .section-divider {
  display: none !important;
}

/* Trust Section */
/* .trust-section {
  background: #0D0C12;
  padding: 48px 0;
  text-align: center;
}

.trust-label {
  color: #94a3b8;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-weight: 500;
}

.trust-logo i {
  font-size: 1.5rem;
  color: #3b82f6;
} */

/* Marquee Trust Logos */
/* .trust-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 12px 0 0 0;
}
.trust-marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 1.1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.trust-logo i {
  font-size: 1.5rem;
  color: #3b82f6;
}
.trust-logo:hover {
  opacity: 1;
} */

/* New Marquee Text Section 1*/
.marquee-section {
  /* background: #15141a; */
  background: #0D0C12;
  padding: 0;
  /* border-top: 1px solid #23203a; */
  /* border-bottom: 1px solid #23203a; */
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 0;
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-size: 1.18rem;
  font-weight: 500;
  color: #e0e0e0;
  letter-spacing: 0.5px;
}

.marquee-track span {
  display: inline-block;
  margin-right: 32px;
  color: #a084ee;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 1px 4px 0 rgba(80,60,180,0.04);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .marquee-track {
    gap: 24px;
    font-size: 0.98rem;
  }
  .marquee-track span {
    padding: 6px 12px;
    font-size: 0.95rem;
    margin-right: 12px;
  }
}


/* new Marquee text Section 2 */

.marquee {
  display: flex;
  overflow: hidden;
  height: 10vh;
  user-select: none;
  gap: 2rem;
  /* padding-top: 1rem;
  padding-bottom: 1rem; */
  background: #15141a;
/* background-color: green; */
   /* transform: skewY(-3deg); */
   /* transform: rotate(-5deg) translateY(-30px) translateX(50px); */
}


.marquee:hover {
  -webkit-text-stroke: 1.5px #fff;
	text-stroke: 1.5px #fff;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	color: transparent;
	transition: all 0.5s ease;
	-webkit-font-smoothing: antialiased;
	/*-moz-osx-font-smoothing: grayscale;*/

}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 100%;
  /* animation: scroll 32s linear infinite reverse; */
  animation: marquee 32s linear infinite;
}

.marquee__group span {
  color: white;
  font-size: 3vw;
  font-weight: 800;
  white-space: nowrap;
  font-family: 'Syne', sans-serif !important;
  text-transform: uppercase;
  
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}

@media only screen and (max-width: 360px) {
    .marquee__group span {
        font-size: 30px;
    }
}


/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  background: #181622;
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.feature-card p {
  color: #94a3b8;
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.feature-list li i {
  color: #22c55e;
  font-size: 0.75rem;
}

/* Problem/Solution Section */
.problem-solution-section {
  background: #15141a;
  padding: 120px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-column h3,
.solution-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.problem-column h3 i {
  color: #ef4444;
}

.solution-column h3 i {
  color: #22c55e;
}

.problem-list,
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-item,
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.problem-item {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-item {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.problem-item i {
  color: #ef4444;
  font-size: 1.25rem;
  margin-top: 2px;
}

.solution-item i {
  color: #22c55e;
  font-size: 1.25rem;
  margin-top: 2px;
}

.problem-item h4,
.solution-item h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.problem-item p,
.solution-item p {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
  background: #181622;
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  /* align-items: stretch; */
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-color: rgba(59, 130, 246, 0.3);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.price {
  margin-bottom: 16px;
}

.currency {
  font-size: 1.25rem;
  color: #94a3b8;
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.period {
  font-size: 1rem;
  color: #94a3b8;
}

.pricing-header p {
  color: #94a3b8;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.pricing-features li i {
  color: #22c55e;
  font-size: 0.75rem;
}

.pricing-cta {
  margin-top: auto; /* Pushes the button to the bottom */
  display: block;

  /* display: inline-block; */
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.pricing-cta.featured {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Testimonials Section */
.testimonials-section {
  background: #15141a;
  padding: 120px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.6;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  background: #181622;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-card {
  margin: 0 auto;
  max-width: 960px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(36,34,51,0.85) 60%, #a084ee 100%);
  box-shadow: 0 8px 40px 0 rgba(80, 60, 180, 0.18), 0 1.5px 8px 0 rgba(0,0,0,0.12);
  padding: 56px 36px 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.08);
}
.cta-card h2 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.cta-card p {
  color: #cfc9e6;
  font-size: 1.15rem;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0f0;
  font-size: 0.98rem;
}
.cta-feature i {
  color: #a084ee;
}
@media (max-width: 600px) {
  .cta-card {
    padding: 32px 10px 28px 10px;
    border-radius: 18px;
  }
  .cta-buttons, .cta-features {
    flex-direction: column;
    gap: 12px;
  }
}

/* Book Demo Section */
.book-demo-section {
  background: #15141a;
  padding: 120px 0;
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.demo-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.demo-text p {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.demo-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
}

.benefit i {
  color: #22c55e;
}

.demo-form-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.demo-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group option{
  color: black;
}

/* Contact Section */
.contact-section {
  background: #181622;
  padding: 120px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-info p {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method i {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.contact-method h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method a,
.contact-method span {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-method a:hover {
  color: #3b82f6;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0d0c12;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo i {
  color: #3b82f6;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
}

.footer-section h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #3b82f6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.875rem;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #3b82f6;
}
 
@media (max-width: 768px){
  .footer-logo {
    justify-content: center;
  }

  .social-links {
    align-items: center;
    justify-content: center;
  }  

}

/* Section Dividers */
.section-divider {
  display: block;
  width: 100%;
  height: 80px;
  margin-top: -2px;
}

.section-divider.flip {
  transform: scaleY(-1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .demo-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .nav-center {
    position: static;
    left: unset;
    right: unset;
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar.glassy-nav {
    top: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
  }

  
  .nav-center {
    display: none;
  }
  
  .nav-right {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .trust-logos {
    gap: 24px;
  }
  
  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

/* Remove gradients and lighter backgrounds from these sections */
.features-section,
.pricing-section,
.cta-section,
.book-demo-section {
  background-image: none;
}

/* Section padding for clear separation */
.features-section,
.problem-solution-section,
.pricing-section,
.testimonials-section,
.cta-section,
.book-demo-section,
.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.trust-section {
  /* padding-top: 100px; */
  padding-bottom: 100px;
}

.site-footer {
  padding-top: 64px;
  padding-bottom: 32px;
}

/* Responsive: reduce gap and font size on mobile */
@media (max-width: 600px) {
  .trust-marquee-track {
    gap: 32px;
  }
  .trust-logo {
    font-size: 0.95rem;
  }
  .trust-logo i {
    font-size: 1.1rem;
  }
}

/* About Us Section */
.about-section {
  /* background: #15141a;
    /* background: linear-gradient(135deg, #181622 0%, #23203a 100%); */
    background: radial-gradient(ellipse at 60% 40%, #23203a 0%, #181622 100%);
    padding: 100px 0;
  
}
.about-container {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-image {
  flex: 1 1 320px;
  max-width: 400px;
}
.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(30,144,255,0.10);
  object-fit: cover;
}
.about-text {
  flex: 2 1 400px;
  max-width: 600px;
}
.about-text h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}
.about-text p {
  color: #bfc9da;
  font-size: 1.15rem;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .about-image{
    max-width: 100%;
  }
  .about-text p {
    font-size: 16px;
  }
}

.split-word {
  display: inline-block;
  will-change: transform, opacity;
}