/* Add these performance optimizations right at the beginning of your CSS file */

/* Performance Optimizations */
* {
  backface-visibility: hidden; /* Reduces composite layers */
}

/* Add this near the top of your CSS file, after the Performance Optimizations section */
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Simplify animations to improve performance */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform; /* Optimize composite layers */
}

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

/* Reduce costly animations */
@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(0, -15px); }
}

/* Override heavy effects */
.floating-shapes, 
.shape, 
.hero-image-container:hover .hero-mockup-frame,
.mockup-elements,
.hero-image-decoration,
.hero-mockup-frame,
.parallax,
.mouse-parallax {
  animation: none !important;
  transform: none !important;
  transition: transform 0.3s ease !important;
}

/* Remove 3D transforms for better performance */
.pricing-card,
.process-image-container,
.feature-card {
  transform: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Optimize the CTA button to remove animation but keep hover effect */
.cta .btn {
  animation: none !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
}

.cta .btn:hover {
  transform: translateY(-5px) !important;
}

/* Remove glass effect which is performance heavy */
.glass-effect,
.glass-highlight {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: white !important;
}

/* Make the scroll progress indicator more lightweight */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  z-index: 9999;
  transition: width 0.1s linear;
}

:root {
  --primary: #5B3AFF;
  --primary-dark: #4A2FE0;
  --primary-light: #8F7BFF;
  --secondary: #FF3E8F;
  --secondary-dark: #E02673;
  --accent: #00D4FF;
  --dark: #151A2D;
  --dark-blue: #22263F;
  --light: #F8FAFF;
  --gray: #6B7897;
  --gray-light: #D1D8E8;
  --success: #06D6A0;
  --warning: #FFD166;
  --danger: #EF476F;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  --gradient-cta: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --curve-height: 120px;
  --shadow-sm: 0 5px 15px rgba(91, 58, 255, 0.1);
  --shadow-md: 0 10px 30px rgba(91, 58, 255, 0.15);
  --shadow-lg: 0 20px 50px rgba(91, 58, 255, 0.2);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.3px;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

/* Links & Buttons */
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: 1rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn:hover::before {
  opacity: 1;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.125rem;
  border-radius: 14px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
  position: relative;
  transition: var(--transition);
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.btn-outline:hover {
  color: white;
  border-color: transparent;
}

.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

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

.btn-white:hover {
  color: var(--primary-dark);
}

.btn-white::before {
  display: none;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  margin-right: 10px;
  color: var(--primary);
  font-size: 0.7rem;
  transition: var(--transition);
}

.btn-outline:hover .play-icon {
  background: var(--primary-light);
  color: white;
}

.feature-link {
  display: none;
}

/* Badges */
.badge {
  display: inline-block;
  margin-bottom: 20px;
}

.badge span {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.free-trial-badge {
  margin-bottom: 25px !important;
}

/* Decorative Elements */
.bg-shape {
  position: absolute;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.bg-shape-1 {
  top: 10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(91, 58, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite alternate;
}

.bg-shape-2 {
  bottom: 5%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255, 62, 143, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(0, -15px); }
}

.section-divider {
  position: relative;
  height: var(--curve-height);
  margin-top: -1px;
  z-index: 1;
}

.divider-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
}

.curve-top {
  clip-path: ellipse(75% 100% at 50% 0%);
}

.curve-bottom {
  clip-path: ellipse(75% 100% at 50% 100%);
}

/* Animation Utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform; /* Optimize composite layers */
}

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

/* Header */
header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(248, 250, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 30px rgba(21, 26, 45, 0.05);
  transition: var(--transition);
}

header.scrolled {
  padding: 15px 0;
  background-color: rgba(248, 250, 255, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.logo-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 5px 10px rgba(91, 58, 255, 0.2));
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(15deg);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 5px 0;
}

nav ul li a:not(.btn):hover {
  color: var(--primary);
}

nav ul li a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 10px;
}

nav ul li a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  z-index: 1001;
}

/* Hero Section with Elegant Purple Background */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  background-color: #f5f7ff; /* Slightly cooler base */
  background-image: linear-gradient(135deg, #f3f5ff 0%, #eaeeff 100%); /* More purple tint */
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 20px 40px rgba(91, 58, 255, 0.07);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(91, 58, 255, 0.03) 0%, rgba(91, 58, 255, 0.01) 100%);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(91, 58, 255, 0.12) 0%, rgba(248, 250, 255, 0) 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 62, 143, 0.08) 0%, rgba(248, 250, 255, 0) 60%);
  z-index: 0;
  animation: subtle-pulse 15s infinite alternate ease-in-out;
}

/* Add this subtle noise texture for more depth */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.18;
  color: #1E1F2D;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero h1 .typed-text {
  color: #5B3AFF; /* Solid vibrant purple color */
  font-weight: 800;
  text-shadow: none; /* Remove any shadow effects */
  background: none; /* Remove gradient to ensure consistent color */
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.hero h1 .typed-text::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 30%;
  background: linear-gradient(to right, rgba(91, 58, 255, 0.2), rgba(255, 62, 143, 0.2));
  bottom: 5px;
  left: 0;
  z-index: -1;
  border-radius: 4px;
}

/* Add this after the .hero h1 .typed-text styles (around line 635) */
.typed-container {
  display: inline-block;
  min-height: 70px; /* Fixed height to prevent layout shifts */
  vertical-align: bottom;
  position: relative;
  width: auto; /* Change from 100% to auto */
  max-width: none; /* Remove max-width constraint */
  overflow: visible; /* Change from hidden to visible */
}

.typed-text {
  position: relative;
  display: inline-block;
  width: auto; /* Change from 100% to auto */
  color: var(--primary);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, #8F7BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.35rem;
  color: #6B7897;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 35px; /* Add more space above buttons */
}

.hero-buttons .btn {
  border-radius: 14px;
  padding: 16px 36px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #5B3AFF 0%, #7152FF 100%);
  box-shadow: 0 8px 20px rgba(91, 58, 255, 0.25);
}

.hero-buttons .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
  transition: left 0.8s ease;
}

.hero-buttons .btn-primary:hover::after {
  left: 100%;
}

.hero-buttons .btn-outline {
  border: 2px solid rgba(91, 58, 255, 0.3);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}

/* Add after the hero-buttons styles */
.sample-call-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 15px 0;
  z-index: 100;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.sample-call-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.sample-call-text {
  flex: 1;
}

.sample-call-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.sample-call-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.sample-call-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
}

.play-pause-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.play-pause-btn:hover {
  transform: scale(1.1);
}

.sample-call-progress {
  flex: 1;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-fill {
  height: 100%;
  background: white;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

.sample-call-close {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.sample-call-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .sample-call-content {
    flex-wrap: wrap;
  }
  
  .sample-call-controls {
    width: 100%;
    order: 4;
    margin-top: 10px;
  }
  
  .sample-call-icon {
    order: 1;
  }
  
  .sample-call-text {
    order: 2;
  }
  
  .sample-call-close {
    order: 3;
  }
}

.hero-stats {
  
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 75px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-stats {
    margin-top: 80px; /* Slightly less margin on mobile but still pushed down */
    flex-direction: column;
    gap: 20px;
  }
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(91, 58, 255, 0.8); /* More subtle color with opacity */
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.6rem;
  color: var (--gray);
  opacity: 0.6; /* Make slightly more subtle */
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--gray-light);
}

.hero-shapes {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.shape-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(91, 58, 255, 0.05) 0%, rgba(255, 62, 143, 0.05) 100%);
}

.shape-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 30%;
  right: 100px;
  border: 15px solid rgba(91, 58, 255, 0.1);
}

.shape-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  top: 60%;
  right: 80px;
  background-image: radial-gradient(rgba(255, 62, 143, 0.2) 2px, transparent 2px);
  background-size: 15px 15px;
}

.shape-line {
  position: absolute;
  width: 3px;
  height: 200px;
  top: 50%;
  right: 250px;
  transform: translateY(-50%) rotate(15deg);
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.hero-content .fade-in {
  transition-duration: 0.3s !important;
}

.hero-clients {
  margin-top: 80px;
  border-top: 1px solid var(--gray-light);
  padding-top: 50px;
}

.clients-label {
  text-align: center;
  margin-bottom: 30px;
  color: var(--gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clients-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.clients-logos img {
  height: 30px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition);
}

.clients-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-title h2 span {
  color: var(--primary);
  position: relative;
}

.section-title h2 span::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 30%;
  background: linear-gradient(to right, rgba(91, 58, 255, 0.2), rgba(255, 62, 143, 0.2));
  bottom: 5px;
  left: 0;
  z-index: -1;
  border-radius: 4px;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 20px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.feature-card {
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f8f9ff);
  box-shadow: 5px 5px 15px rgba(91, 58, 255, 0.05),
             -5px -5px 15px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 35px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 25px rgba(91, 58, 255, 0.1),
             -8px -8px 25px rgba(255, 255, 255, 1);
  border: 1px solid rgba(91, 58, 255, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f8f9ff);
  box-shadow: 5px 5px 10px rgba(91, 58, 255, 0.1),
             -5px -5px 10px rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  margin-bottom: 0;
}

/* How it Works Section */
.how-it-works {
  padding: 120px 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.process-visualization {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
}

.process-image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(10deg) rotateX(-5deg);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.process-image-container:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.process-image {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.process-image-container:hover .process-image {
  transform: scale(1.05);
}

.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.steps-container {
  flex: 1;
  min-width: 300px;
}

.steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.steps-connector {
  position: absolute;
  top: 45px;
  left: 40px;
  width: 1px;
  height: calc(100% - 80px);
  background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
  z-index: 0;
}

.step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step:hover {
  transform: translateX(5px);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  border: 2px solid rgba(91, 58, 255, 0.1);
}

.step:hover .step-number {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.step-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(209, 216, 232, 0.5);
  transition: var(--transition);
}

.step:hover .step-content {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: linear-gradient(to right, white, rgba(91, 58, 255, 0.03));
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
  transition: var(--transition);
}

.step:hover .step-content h3 {
  opacity: 1;
}

.step-content p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(91, 58, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  top: -400px;
  right: -400px;
  z-index: 0;
}

.testimonials::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 62, 143, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  bottom: -300px;
  left: -300px;
  z-index: 0;
}

.testimonial-slider-container {
  position: relative;
  padding: 30px 0;
  z-index: 1;
}

.testimonials-slider {
  overflow: visible;
  padding-bottom: 60px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  border: 1px solid rgba(209, 216, 232, 0.5);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(91, 58, 255, 0.05) 0%, rgba(255, 62, 143, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-rating {
  color: var(--warning);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-content {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 6rem;
  color: rgba(91, 58, 255, 0.1);
  font-family: 'Georgia', serif;
  line-height: 1;
  z-index: -1;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-quote {
  transform: scale(1.1) rotate(-5deg);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 0;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 3px solid white;
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  border-color: rgba(91, 58, 255, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-info h4 {
  color: var(--primary);
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: var(--gray-light) !important;
  opacity: 1 !important;
  transition: var(--transition) !important;
}

.swiper-pagination-bullet-active {
  width: 30px !important;
  border-radius: 10px !important;
  background: var(--gradient-primary) !important;
}

.swiper-button-next, .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background: white !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
  transition: var(--transition) !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-lg) !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 1.2rem !important;
  color: var(--primary) !important;
  font-weight: bold !important;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
  perspective: 1000px;
}

/* Make pricing cards more premium */
.pricing-card {
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f8f9ff);
  box-shadow: 8px 8px 30px rgba(91, 58, 255, 0.08),
             -8px -8px 30px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: visible;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(91, 58, 255, 0.1);
}

.pricing-header {
  padding: 45px 30px 35px;
  border-radius: 24px 24px 0 0;
}

.pricing-header::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.pricing-card.popular {
  transform: translateY(-15px) scale(1.03);
  position: relative;
  z-index: 2;
}

.popular-tag {
  transform: rotate(0);
  top: -15px;
  right: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 7px 18px;
}

.card-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pricing-card.popular {
  transform: scale(1.05);
  z-index: 1;
  box-shadow: var(--shadow-lg);
  border: none;
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--success);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(6, 214, 160, 0.3);
}

.pricing-header {
  position: relative;
  padding: 40px 30px;
  color: white;
  background: var(--gradient-primary);
  z-index: 1;
  overflow: hidden;
}

.pricing-card.popular .pricing-header {
  background: var(--gradient-cta);
}

.pricing-header h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.pricing-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-size: 10px 10px;
  background-image: url('../images/pricing-pattern.svg');
  z-index: 0;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 15px 0;
  position: relative;
  z-index: 1;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.pricing-features {
  padding: 40px 30px;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--dark);
}

.pricing-features ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success);
  position: absolute;
  left: 0;
}

.pricing-card .btn {
  width: 100%;
  padding: 15px;
  font-weight: 600;
}

.pricing-card.popular .btn {
  background: var(--gradient-cta);
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: var(--gradient-cta);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  background: linear-gradient(135deg, #2b1e6b 0%, var(--primary) 60%, var(--secondary) 130%);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/cta-pattern.svg');
  opacity: 0.05;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 25px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background: white;
  color: var(--primary);
  padding: 18px 45px;
  font-size: 1.1rem;
  transform-origin: center;
  animation: none !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
}

.cta .btn:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-5px) !important;
}

.cta .btn-white {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-feature i {
  color: white;
  font-size: 1.2rem;
}

/* Footer Section */
footer {
  background-color: var(--dark-blue);
  color: white;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.footer-top {
  padding: 100px 0 70px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
}

.footer-column {
  position: relative;
  z-index: 1;
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
  color: white;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-column h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

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

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
  display: inline-block;
  position: relative;
}

.footer-column ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-column ul li a:hover::before {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Policy links in footer */
.policy-links {
  margin-top: 15px;
  font-size: 0.8rem;
}

.policy-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.policy-links a:hover {
  color: white;
  text-decoration: underline;
}

.shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(91, 58, 255, 0.2) 0%, rgba(255, 62, 143, 0.2) 100%);
  border-radius: 50%;
  filter: blur(50px);
  animation: none !important;
  transform: none !important;
  transition: transform 0.3s ease !important;
}

.shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 20%;
  left: -150px;
  animation-duration: 25s;
  opacity: 0.5;
}

.shape:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -250px;
  right: -100px;
  animation-duration: 20s;
  animation-delay: 2s;
  opacity: 0.4;
}

.shape:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  animation-duration: 18s;
  animation-delay: 5s;
  opacity: 0.3;
}

.shape:nth-child(4) {
  width: 400px;
  height: 400px;
  top: -200px;
  right: 30%;
  animation-duration: 22s;
  animation-delay: 7s;
  opacity: 0.2;
}

.shape:nth-child(5) {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 20%;
  animation-duration: 19s;
  animation-delay: 3s;
  opacity: 0.3;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(100px, 50px) rotate(40deg);
  }
}

/* Hero Image Animation */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(91, 58, 255, 0.05) 0%, rgba(255, 62, 143, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-image-container {
    right: -10%;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .cta h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-shapes {
    opacity: 0.3;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
  }
  
  .process-visualization {
    flex-direction: column;
    align-items: center;
  }
  
  .process-image-container {
    width: 100%;
    max-width: 500px;
  }
  
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .cta h2 {
    font-size: 2.2rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    padding: 30px 20px;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  nav ul li {
    width: 100%;
  }
  
  nav ul li a {
    display: block;
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .steps-connector {
    display: none;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-content {
    width: 100%;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .typed-container {
    min-height: 60px;
    margin-top: 10px;
    display: block; /* Make it a block on mobile */
  }
  
  .typed-text {
    white-space: normal; /* Allow text to wrap on mobile */
    word-break: break-word;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .badge span {
    font-size: 0.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .feature-card {
    padding: 30px;
  }
  
  .pricing-card {
    margin-bottom: 30px;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-content {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .typed-container {
    min-height: 100px; /* Increase height for more space */
  }
}

/* Enhance for better aesthetics */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Better image positioning and animations */
.hero-image-container:hover .hero-mockup-frame {
  transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
}

.mockup-elements {
  animation: none !important;
  transform: none !important;
  transition: transform 0.3s ease !important;
}

/* Additional animations for testimonials */
.testimonial-card:hover .testimonial-quote {
  transform: scale(1.1) rotate(-5deg);
  transition: transform 0.5s ease;
}

/* Enhanced pricing card 3D effect */
.pricing-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: 0;
}

/* Subtle parallax effect for sections */
.parallax {
  transform: none !important;
  transition: transform 0.3s ease !important;
}

.mouse-parallax {
  transition: transform 0.2s ease-out;
}

/* Make floating elements more dynamic */
.floating-shapes .shape {
  transform-origin: center;
  transition: opacity 0.5s ease;
}

body:hover .floating-shapes .shape {
  opacity: 0.6;
}

/* Update section styling to ensure full width */
section, footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Fix for the sample-call-banner */
.sample-call-banner {
  width: 100%;
  left: 0;
  right: 0;
}

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

/* New compact testimonial styles */
.testimonial-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card-compact {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(209, 216, 232, 0.5);
    position: relative;
    transition: var(--transition);
    width: calc(50% - 10px);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 120px;
}

.testimonial-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(91, 58, 255, 0.1);
}

.testimonial-avatar-compact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(91, 58, 255, 0.1);
}

.testimonial-avatar-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content-compact {
    flex: 1;
}

.testimonial-author-compact {
    margin-bottom: 5px;
}

.testimonial-author-compact h4 {
    font-size: 0.95rem;
    margin-bottom: 1px;
    color: var(--dark);
}

.testimonial-author-compact p {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0;
}

.testimonial-content-compact > p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--gray);
    line-height: 1.5;
}

.testimonial-stars {
    font-size: 0.7rem;
    color: #FFD700;
    margin-top: 1px;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .testimonial-compact {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card-compact {
        width: 100%;
        max-width: 400px;
    }
}

/* Other subtle improvements */

/* Better typography */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

/* Add subtle background pattern for increased luxury feel */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235B3AFF' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

/* Enhanced typed text for better visibility */
.typed-text {
  color: var(--primary);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, #8F7BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Better CTA section */
.cta {
  background: linear-gradient(135deg, #2b1e6b 0%, var(--primary) 60%, var(--secondary) 130%);
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta .btn-white {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Footer dropdown styling */
.footer-dropdown {
  position: relative;
}

.footer-submenu {
  padding-left: 15px;
  margin-top: 5px;
  display: none;
}

.footer-dropdown:hover .footer-submenu {
  display: block;
}

.footer-submenu li {
  margin-bottom: 8px;
  font-size: 0.9em;
}

.footer-submenu li a {
  opacity: 0.85;
}

.footer-submenu li a:hover {
  opacity: 1;
}

/* Blog Page Styling */
.blog-content {
  padding: 180px 0 100px;
  background-color: var(--light);
  position: relative;
}

.blog-header {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.blog-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-meta {
  color: var(--gray);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.blog-date {
  display: inline-flex;
  align-items: center;
}

.blog-date::before {
  content: '\f073';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  color: var(--primary);
}

.blog-category {
  display: inline-flex;
  align-items: center;
}

.blog-category::before {
  content: '\f02b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  color: var(--primary);
}

.blog-body {
  background: white;
  border-radius: 24px;
  padding: 60px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.blog-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235B3AFF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-radius: 24px;
  opacity: 0.6;
  pointer-events: none;
}

.blog-body h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 50px 0 20px;
  color: var(--dark);
  position: relative;
}

.blog-body h2::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  border-radius: 5px;
}

.blog-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 35px 0 15px;
  color: var(--primary-dark);
}

.blog-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5d6379;
  margin-bottom: 20px;
}

.blog-body ul, .blog-body ol {
  margin: 25px 0;
  padding-left: 40px;
}

.blog-body li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5d6379;
  margin-bottom: 12px;
}

.blog-body strong {
  color: var(--dark);
  font-weight: 600;
}

.blog-cta {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(91, 58, 255, 0.05) 0%, rgba(143, 123, 255, 0.05) 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(91, 58, 255, 0.1);
}

.blog-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.blog-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cta .btn {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.blog-cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.blog-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-nav-prev, .blog-nav-next {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: var(--shadow-sm);
}

.blog-nav-prev:hover, .blog-nav-next:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--primary);
  color: white;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 58, 255, 0.03) 0%, rgba(143, 123, 255, 0.03) 100%);
  border: 1px solid rgba(91, 58, 255, 0.05);
}

.blog-author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 3px solid white;
}

.blog-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-author-bio h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.blog-author-bio p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-toc {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1px solid rgba(91, 58, 255, 0.1);
}

.blog-toc h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--dark);
}

.blog-toc ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.blog-toc li {
  margin-bottom: 12px;
  position: relative;
}

.blog-toc li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.blog-toc a {
  color: #5d6379;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-toc a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .blog-content {
    padding: 150px 0 80px;
  }
  
  .blog-header h1 {
    font-size: 2.2rem;
  }
  
  .blog-body {
    padding: 40px 30px;
  }
  
  .blog-body h2 {
    font-size: 1.8rem;
  }
  
  .blog-body h3 {
    font-size: 1.4rem;
  }
  
  .blog-cta {
    padding: 30px 20px;
  }
  
  .blog-author {
    flex-direction: column;
    text-align: center;
  }
}

/* Add these styles near your hero section rules */
.hero-trust {
  text-align: center;
  margin: 40px 0;
}
.hero-trust p {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.star-rating {
  color: var(--primary);
  font-size: 1.2rem;
}
.star-rating span {
  margin-left: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero Trust Badge - Minimal Modern Style */
.hero-trust {
  margin: 120px 0 60px; /* Increased top margin to create more space above */
  position: relative;
  z-index: 5;
   width: 90%;
  max-width: 800px; /* Control the width for better centering */
  margin-left: auto;
  margin-right: auto;
}

.hero-trust .container {
  background: rgba(255, 255, 255, 0.05); /* More transparent background */
  backdrop-filter: blur(4px);
  border-radius: 0;
  padding: 24px 24px 16px; /* Added more padding at top */
  border: none; 
  border-top: 1px solid rgba(91, 58, 255, 0.2); /* Thinner, more subtle border */
  transition: all 0.3s ease;
}

.hero-trust p {
  font-size: 1rem; /* Slightly smaller text */
  margin-bottom: 8px;
  color: var(--gray); /* Lighter text color for more subtlety */
  font-weight: 500;
  letter-spacing: -0.01em;
  padding-top: 6px; /* Additional space above the text */
}

/* Keep other styles unchanged but make them more subtle */
.hero-trust p strong {
  position: relative;
  color: inherit;
  font-weight: 600; /* Slightly less bold */
}

.hero-trust p strong::after {
  content: '';
  position: absolute;
  height: 3px; /* Thinner highlight */
  width: 100%;
  bottom: 1px;
  left: 0;
  background: rgba(91, 58, 255, 0.08); /* More subtle highlight */
  z-index: -1;
  border-radius: 2px;
}

.star-rating {
  color: var(--primary);
  font-size: 1.1rem; /* Slightly smaller stars */
  opacity: 0.85; /* More subtle star color */
}

/* Enhance the existing sample call button with minimal changes */
#sampleCallBtn.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
}

#sampleCallBtn.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(91, 58, 255, 0.15);
}

#sampleCallBtn.btn-outline:hover .play-icon {
  background: white;
  color: var(--primary);
}

/* Add a small indicator dot to make it more noticeable */
#sampleCallBtn {
  position: relative;
}

#sampleCallBtn::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background-color: #06D6A0;
  border-radius: 50%;
}

