﻿/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light Theme Colors */
  --primary: #2563eb;
  /* Slightly darker blue for better contrast on white */
  --primary-dark: #1d4ed8;
  --secondary: #059669;
  /* Darker green */
  --accent: #d97706;
  /* Darker amber */
  --danger: #dc2626;

  --text-primary: #111827;
  /* Dark gray/almost black */
  --text-secondary: #4b5563;
  /* Medium gray */
  --text-muted: #6b7280;
  /* Light gray */

  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  /* Very light gray */
  --bg-tertiary: #f3f4f6;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-glass-hover: rgba(255, 255, 255, 0.9);

  --border-light: rgba(0, 0, 0, 0.1);
  --border-medium: rgba(0, 0, 0, 0.2);
  --border-glass: rgba(0, 0, 0, 0.1);
  /* Dark border for visibility on white */

  /* Typography - Mobile First */
  --font-family: 'Jost', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-size-xs: 0.625rem;
  /* 10px */
  --font-size-sm: 0.75rem;
  /* 12px */
  --font-size-base: 0.875rem;
  /* 14px */
  --font-size-lg: 1rem;
  /* 16px */
  --font-size-xl: 1.125rem;
  /* 18px */
  --font-size-2xl: 1.25rem;
  /* 20px */
  --font-size-3xl: 1.5rem;
  /* 24px */
  --font-size-4xl: 1.875rem;
  /* 30px */
  --font-size-5xl: 2.25rem;
  /* 36px */

  --font-heading-desktop: 22px;
  --font-heading-mobile: 18px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 0.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Glassmorphism Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  /* Solid white/light background */
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Unified Section Headings */
.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-heading-desktop);
  /* User requested specific size */
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.4;
  position: relative;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--font-heading-mobile);
    /* Smaller for mobile */
    margin-bottom: 1.5rem;
  }
}

/* Highlighter Animation */
.highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, #95BF47, #5E8E3E);
  /* Shopify-ish Green Gradient Text */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Make text take the gradient */
  white-space: nowrap;
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 8px;
  /* Thinner accent line */
  /* Shopify Green Gradient for the underline/highlight */
  background: linear-gradient(90deg, rgba(149, 191, 71, 0.3), rgba(94, 142, 62, 0.3));
  z-index: -1;
  transform: skewX(-10deg) scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 2px;
}

/* Animate on Hover */
.section-title:hover .highlight::after,
.hero__title:hover .highlight::after {
  transform: skewX(-10deg) scaleX(1);
}

/* Optional: Trigger animation if element has .animate-active class (from JS) */
.animate-active .highlight::after {
  transform: skewX(-10deg) scaleX(1);
  transition-delay: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-heading-desktop);
}

@media (max-width: 768px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: var(--font-heading-mobile);
  }
}

.sticky-header {
  display: none;
  /* Removed as requested */
}

.sticky-social-proof {
  display: none;
}

@media (min-width: 768px) {
  .sticky-social-proof {
    display: block;
  }
}

.live-activity {
  font-size: var(--font-size-sm);
  color: var(--accent);
  font-weight: 600;
  animation: pulse 2s infinite;
}

.live-activity span {
  color: var(--danger);
  font-weight: 700;
}

.sticky-btn {
  background: #2969ed;
  /* button color */
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.sticky-btn:hover {
  background: #e64a19;
}

.sticky-logo {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* background-color: var(--bg-glass);  */
  border-bottom: 1px solid var(--border-glass);
  padding: var(--space-4);
  /* text-align: center; */
  box-shadow: var(--shadow-glass);
  transition: background-color var(--transition-fast);
}

.sticky-logo:hover {
  background-color: var(--bg-glass-hover);
}

.sticky-logo img {
  max-width: 70px;
  height: 40px;
}

/* Optional: For content area */
.content {
  padding: var(--space-4);
  background-color: var(--bg-secondary);
  height: 2000px;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section-padding {
  padding: 80px 0;
}

.bg-primary {
  background-color: var(--bg-primary);
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.bg-tertiary {
  background-color: var(--bg-tertiary);
}

@media (max-width: 768px) {
  .sticky-logo {
    text-align: center;
    /* display: flex; */
    justify-content: center;
    align-items: center;
  }

  .sticky-logo img {
    max-width: 60px;
    object-fit: cover;
    /* Adjust logo size for mobile */
  }

  .section-padding {
    padding: 60px 0;
    /* Reduced padding on mobile */
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
    /* space-6 manual fix */
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

/* ===== ENHANCED BUTTON STYLES WITH ANIMATIONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
  position: relative;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.btn--primary:hover {
  transform: translateY(-2px);
  animation: buttonPulse 1.5s ease-in-out infinite;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  /* Brighter/Distinct blue */
}

.btn--primary:hover::after {
  opacity: 1;
  animation: flicker 0.15s ease-in-out infinite alternate;
}

.btn--primary:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.btn--primary:focus {
  outline: none;
  box-shadow: var(--shadow-glass), var(--shadow-glow), 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.btn--secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-glass);
  position: relative;
}

.btn--secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: var(--radius-lg);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  animation: buttonPulse 1.5s ease-in-out infinite;
}

.btn--secondary:hover::before {
  width: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn--outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn--outline:hover {
  transform: translateY(-2px);
  animation: buttonPulse 1.5s ease-in-out infinite;
}

.btn--outline:hover::before {
  left: 0;
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
}

.btn--full {
  width: 100%;
}

.btn--small {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
}

/* Sticky Button Enhanced */
.sticky-btn {
  background: linear-gradient(135deg, #2969ed, #1d4ed8);
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.4s ease;
}

.sticky-btn:hover {
  background: linear-gradient(135deg, #e64a19, #d84315);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(233, 74, 25, 0.4);
  animation: stickyFlicker 0.2s ease-in-out infinite alternate;
}

.sticky-btn:hover::before {
  left: 100%;
}

.sticky-btn:active {
  transform: translateY(0) scale(0.95);
}

/* Button Animation Keyframes */
@keyframes flicker {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes primaryGlow {
  0% {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(59, 130, 246, 0.5);
  }

  100% {
    box-shadow: var(--shadow-xl), 0 0 40px rgba(59, 130, 246, 0.7), 0 0 20px rgba(59, 130, 246, 0.3);
  }
}

@keyframes secondaryPulse {

  0%,
  100% {
    transform: translateY(-2px) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

@keyframes stickyFlicker {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.1);
  }
}

/* Ripple Effect for Buttons */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::after {
  width: 300px;
  height: 300px;
}

/* Loading State */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}

.btn--primary.loading::after {
  border-top-color: white;
}

.btn--secondary.loading::after {
  border-top-color: var(--primary);
}

/* Success State */
.btn.success {
  background: linear-gradient(135deg, var(--secondary), #059669);
  animation: successPulse 0.6s ease-out;
}

.btn.success::before {
  content: 'Ã¢Å“â€œ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: white;
  animation: checkmarkPop 0.3s ease-out 0.2s both;
  z-index: 2;
}

/* Error State */
.btn.error {
  background: linear-gradient(135deg, var(--danger), #c82333);
  animation: errorShake 0.5s ease-out;
}

/* Magnetic Effect */
.btn-magnetic {
  transition: transform var(--transition-normal);
}

.btn-magnetic:hover {
  animation: magneticFloat 2s ease-in-out infinite;
}

/* Bounce Effect */
.btn-bounce:hover {
  animation: bounce 0.6s ease-in-out;
}

/* Pulse Effect */
.btn-pulse {
  animation: pulse 2s infinite;
}

.btn-pulse:hover {
  animation: pulseFast 0.5s infinite;
}

/* Gradient Shift */
.btn-gradient-shift {
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary), var(--secondary));
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
}

.btn-gradient-shift:hover {
  animation: gradientShiftFast 0.8s ease infinite;
}

/* Enhanced Keyframe Animations */
@keyframes buttonPulse {

  0%,
  100% {
    transform: translateY(-2px) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.05);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes successPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes checkmarkPop {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes errorShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

@keyframes magneticFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@keyframes pulseFast {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientShiftFast {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Accessibility - Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .btn,
  .btn::before,
  .btn::after,
  .sticky-btn,
  .sticky-btn::before {
    animation: none !important;
    transition: none !important;
  }

  .btn:hover,
  .sticky-btn:hover {
    transform: none !important;
  }
}

/* Enhanced Focus States for Accessibility */
.btn:focus-visible,
.sticky-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

/* Button Group Animations */
.btn-group {
  display: flex;
  gap: var(--space-4);
}

.btn-group .btn {
  animation-delay: calc(var(--index, 0) * 0.1s);
}

.btn-group:hover .btn {
  animation: staggerFade 0.3s ease-out forwards;
}

@keyframes staggerFade {
  from {
    opacity: 0.7;
    transform: translateY(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%); */
  /* background-image:  url("https://www.digitalgravity.ae/assets/images/services-details/services-details-hero.webp") ; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-primary);
  /* Ensure background is set */

  /* background-image: linear-gradient(rgba(0, 0, 0, 0.789), rgba(0, 0, 0, 0.8)), url('https://www.digitalgravity.ae/assets/images/services-details/services-details-hero.webp'); */

  color: var(--text-primary);
  /* Switched to variable */
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;

}

@media (min-width: 640px) {
  .hero {
    padding: var(--space-16) 0;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: var(--space-20) 0;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  /* Dark grid */
  background-size: 60px 60px;
  opacity: 0.8;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 60%,
      rgba(245, 158, 11, 0.04) 0%,
      transparent 50%),
    radial-gradient(circle at 2px 2px,
      rgba(0, 0, 0, 0.15) 1px,
      transparent 0);
  /* Dark dots */
  background-size: 100% 100%, 100% 100%, 100% 100%, 60px 60px;
  opacity: 0.9;
}

.hero .container {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .hero .container {
    display: flex;
    align-items: center;
    gap: var(--space-12);
  }

  .hero__content {
    flex: 1;
  }

  .hero__form {
    flex: 0 0 400px;
  }
}

@media (min-width: 1024px) {
  .hero .container {
    gap: var(--space-16);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-2xl);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  color: var(--text-primary);
  /* Ensure text is visible */
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero__title {
  font-size: var(--font-heading-desktop);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .hero__title {
    font-size: var(--font-heading-mobile);
    margin-bottom: var(--space-4);
  }
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  /* Use primary blue instead of yellow/orange for better contrast on white, or a darker orange */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.hero__cta {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero__cta a {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.hero__cta {
  flex-direction: row;
  gap: var(--space-3);
}

.hero__cta {
  flex-direction: row;
  align-items: center;
}

.hero__cta .btn {
  width: 100%;
  max-width: 300px;
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
}

@media (min-width: 640px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.trust-badge:hover {
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: var(--font-size-lg);
}

.badge-text {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  .trust-badge {
    padding: var(--space-2);
  }

  .badge-text {
    font-size: 0.6rem;
  }
}

/* Urgency Timer */
.urgency-timer {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-2) var(--space-2);
  margin-bottom: var(--space-3);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  text-align: center;
}

.timer-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-3);
  /* color: #fff; */
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.timer-number {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--danger);
  line-height: 1;
  margin-bottom: var(--space-1);
  /* color: #000000c8; */
}

.timer-label {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== FORM CARD ===== */
.hero__form {
  position: relative;
}

.form-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--border-glass);
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-2xl);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-glow);
}

.form-badge-icon {
  font-size: var(--font-size-sm);
}

.form-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.form-social-proof {
  margin-top: var(--space-4);
}

.recent-signups {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.signup-avatars {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.signup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.signup-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-left: var(--space-1);
}

.signup-text {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-align: center;
}

.field {
  margin-bottom: var(--space-4);
}

.field label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

select option {
  color: #000000;
}

.field input::placeholder {
  color: #bab8b8;
  opacity: 1;
}

.field input,
.field select {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  transition: all var(--transition-fast);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  /* box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), var(--shadow-glow); */
  background: var(--bg-glass-hover);
}

.form__msg {
  margin-top: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.form__msg.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form__msg.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.form__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-4);
  line-height: 1.5;
  /* color: #fff; */
}

.guarantee {
  display: flex;
  align-items: flex-start;
  /* gap: var(--space-3); */
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  /* margin: var(--space-4) 0; */
}

.guarantee-icon {
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

.guarantee-text {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  line-height: 1.5;
}

/* ===== BACKGROUND DIFFERENTIATION ===== */
.hero {
  background-color: var(--bg-primary);
}

.trust {
  background-color: var(--bg-secondary);
}

.problem-solution {
  background-color: var(--bg-primary);
  padding: var(--space-20) 0;
  /* background-image: url('/assets/img/burden-symbol-3d-illustration.jpg'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.showcase {
  background-color: var(--bg-secondary);
}

.responsive-showcase {
  background-color: var(--bg-primary);
}

.services-section {
  background-color: var(--bg-secondary);
}

/* Ensure padding and transitions look good on mobile */
@media (max-width: 768px) {
  .section-padding {
    padding: var(--space-12) 0;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    /* Account for sticky header */
  }

  .swiper-slide {
    height: auto;
  }
}

/* Trust Section Modification (Testimonials) */
.testimonials {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  /* Increased for scrollbar visibility/touch */
}

.testimonial {
  flex: 0 0 85%;
  /* Wider on mobile */
  min-width: 280px;
  scroll-snap-align: center;
  /* Center align for better focus */
  background: var(--bg-primary);
  /* White card on gray bg */
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

@media (min-width: 640px) {
  .testimonials {
    gap: var(--space-6);
  }

  .testimonial {
    flex: 0 0 60%;
    padding: var(--space-8);
  }
}

/* Desktop breakpoint (1024px) */
@media (min-width: 1024px) {
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    overflow: visible;
  }

  .testimonial {
    flex: unset;
    min-width: unset;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
  }
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.testimonial__content p {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author__avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: var(--font-size-lg);
}

.author__name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.author__title {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.author__avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 70%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%);
  opacity: 0.6;
}

.trust__title {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  /* margin-top: var(--space-20); */
}

.trust__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  justify-items: center;
  align-items: center;
  overflow: visible;
  padding-bottom: 8px;
}

.trust__logo {
  opacity: 0.6;
  transition: all var(--transition-fast);
  filter: grayscale(100%) brightness(0.8);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
}

.trust__logo img {
  max-width: 80px;
  height: auto;
}

@media (min-width: 768px) {
  .trust__logos {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-8);
  }

  .trust__logo img {
    max-width: 120px;
  }
}

.trust__logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glass);
}

.log-text {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  margin-top: var(--space-20);
}

/* ===== PROBLEM SOLUTION SECTION ===== */
.problem-solution {
  padding: var(--space-20) 0;
  /* background-image: url('/assets/img/burden-symbol-3d-illustration.jpg'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.problem-solution__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.problem-solution h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-8);
  margin-top: var(--space-10);
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.problem-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.problem-icon {
  font-size: var(--font-size-2xl);
  flex-shrink: 0;
}

.problem-content h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.problem-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.solution-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
}

.solution-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.feature-icon {
  font-size: var(--font-size-xl);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .feature-icon {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.feature-text h4 {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  margin-top: var(--space-4);
  text-align: center;
  align-items: center;
}

.feature-text p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

/* ===== ANIMATED CRO STATS ===== */
.cro-stats {
  background: linear-gradient(135deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 100%);
  background-image: url("https://www.digitalgravity.ae/assets/images/services-details/process-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.cro-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.9;
  animation: gridMove 18s linear infinite;
}

.cro-stats::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 25% 20%,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 50%),
    radial-gradient(ellipse at 75% 80%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 50%),
    radial-gradient(ellipse at 40% 60%,
      rgba(245, 158, 11, 0.03) 0%,
      transparent 60%);
  opacity: 0.6;
  animation: spiralRotate 22s linear infinite reverse;
}

@media (min-width: 640px) {
  .cro-stats {
    padding: var(--space-16) 0;
  }
}

@media (min-width: 1024px) {
  .cro-stats {
    padding: var(--space-20) 0;
  }
}

.cro-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 70%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%);
  opacity: 0.8;
}

.cro-stats__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

@media (min-width: 1024px) {
  .cro-stats__header {
    margin-bottom: var(--space-16);
  }
}

.cro-stats__header h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  margin-top: var(--space-10);
}

@media (min-width: 640px) {
  .cro-stats__header h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
  }
}

.cro-stats__subtitle {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
}

@media (min-width: 640px) {
  .cro-stats__subtitle {
    font-size: var(--font-size-lg);
  }
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .stats-grid {
    gap: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
  }
}

.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-normal);
}

@media (min-width: 640px) {
  .stat-card {
    padding: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .stat-card {
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
  }
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59, 130, 246, 0.3);
}

.stat-card__header {
  margin-bottom: var(--space-6);
}

.stat-card__header h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.stat-card__header p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

/* Animated Chart Styles */
.animated-chart {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.chart-bar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bar-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 600;
}

.bar-container {
  height: 30px;
  background: var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  position: relative;
  transition: width 1.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--space-3);
}

.bar-fill.optimized {
  background: linear-gradient(135deg, var(--secondary), #059669);
}

.bar-value {
  color: white;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

/* Revenue Chart Styles - Minimal Design */
.revenue-chart {
  display: flex;
  flex-direction: row;
  gap: var(--space-3);
  justify-content: center;
  align-items: center;
}

.revenue-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  width: 180px;
}

.revenue-label {
  font-size: var(--font-size-xs);
  color: gray;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.revenue-bar {
  height: 24px;
  background: var(--border-light);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.revenue-fill {
  height: 100%;
  border-radius: var(--radius-md);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  /* Minimal space from top */
  padding-bottom: var(--space-8);
  overflow: hidden;
}

.revenue-fill.current {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.revenue-fill.optimized {
  background: linear-gradient(90deg, var(--secondary), #059669);
}

.revenue-amount {
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.revenue-impact {
  text-align: center;
  padding: var(--space-3);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: var(--space-2);
}

.impact-text {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--space-1);
}

.impact-percentage {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  font-weight: 500;
}

/* Enhanced Revenue Chart Visual Hierarchy */
.revenue-chart .revenue-item:first-child .revenue-label {
  color: #f59e0b;
}

.revenue-chart .revenue-item:last-child .revenue-label {
  color: var(--secondary);
}

/* Subtle animation for revenue bars */
.revenue-fill {
  position: relative;
}

.revenue-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease-out;
}

.revenue-fill.animate::after {
  transform: translateX(100%);
}

/* Mobile Chart Styles */
.mobile-chart {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
}

.mobile-stat {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.mobile-icon {
  font-size: var(--font-size-2xl);
}

.mobile-data {
  flex: 1;
}

.mobile-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-1);
}

.mobile-value {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-improvement {
  text-align: center;
  padding: var(--space-4);
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.improvement-arrow {
  font-size: var(--font-size-2xl);
  display: block;
  margin-bottom: var(--space-2);
}

.improvement-text {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--secondary);
}

/* Speed Chart Styles */
.speed-chart {
  position: relative;
  height: 200px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

.speed-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.speed-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-out;
  opacity: 0;
  transform: scale(0);
}

.speed-dot.animate {
  opacity: 1;
  transform: scale(1);
}

.speed-label {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  font-weight: 600;
  text-align: center;
}

.speed-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s ease-out;
}

.speed-line.animate {
  transform: scaleX(1);
}

/* Insights Section */
.cro-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.insight-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.3);
}

.insight-icon {
  font-size: var(--font-size-2xl);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .insight-icon {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.insight-content h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  margin-top: var(--space-4);
}

.insight-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CRO AUDIT PREVIEW ===== */
.cro-audit-preview {
  background: linear-gradient(135deg,
      var(--bg-secondary) 0%,
      var(--bg-tertiary) 100%);
  /* background-image: url('/assets/img/3d-graph-computer-illustration.jpg'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: var(--space-20) 0;
  position: relative;
}

.cro-audit-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%);
  opacity: 0.3;
}

.cro-audit__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.cro-audit__text h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  /* margin-bottom: var(--space-4); */
  margin-top: var(--space-10);
}

.cro-audit__subtitle {
  color: var(--text-primary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
}

.audit-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.audit-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.audit-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.3);
}

.audit-feature .feature-icon {
  font-size: var(--font-size-2xl);
  flex-shrink: 0;
}

.feature-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}

.feature-content h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 10px;
}

.feature-content p {
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

.feature-content .improvement-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #e6f4ff;
  color: #007bff;
  border-radius: 6px;
  font-weight: 600;
}

.improvement-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #059669);
  color: white;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.audit-preview-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--border-glass);
  position: sticky;
  top: var(--space-8);
}

.audit-preview-card h3 {
  font-size: var(--font-heading-desktop);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

@media (max-width: 768px) {
  .audit-preview-card h3 {
    font-size: var(--font-heading-mobile);
  }
}

.report-sections {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.report-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--border-light);
}

.report-section h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.report-section ul {
  list-style: none;
  padding: 0;
}

.report-section li {
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  padding-left: var(--space-4);
  position: relative;
}

.report-section li::before {
  content: "Ã¢â‚¬Â¢";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.report-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.audit-cta {
  text-align: center;
}

.audit-guarantee {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-top: var(--space-4);
  line-height: 1.5;
}

/* ===== ROI CALCULATOR ===== */
.roi-calculator {
  background: linear-gradient(135deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 100%);
  padding: var(--space-20) 0;
  position: relative;
}

.roi-calculator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%);
  opacity: 0.7;
}

.roi-calculator__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.roi-calculator h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.roi-calculator p {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
}

.roi-sliders {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.slider-group label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.slider-group input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-lg);
  background: var(--border-light);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.slider-group input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

.slider-group input[type="number"] {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  width: 100%;
}

.slider-value {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

.roi-results {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--border-glass);
}

.roi-results h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.revenue-comparison {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.revenue-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
}

.revenue-item.current {
  background-color: #fef3c7;
  border-color: #fbbf24;
}

.revenue-item.potential {
  background-color: #d1fae5;
  border-color: var(--secondary);
}

.revenue-item.increase {
  background-color: #dbeafe;
  border-color: var(--primary);
}

.revenue-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.revenue-amount {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.roi-cta {
  text-align: center;
}

.roi-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: var(--space-3);
}

/* ===== SHOWCASE SECTION ===== */
.showcase {
  padding: var(--space-20) 0;
}

.showcase__title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-4);
  margin-top: var(--space-10);
}

.showcase__subtitle {
  color: var(--text-secondary);
  text-align: center;
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-12);
}

.showcase__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .showcase__grid {
    gap: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
  }
}

.case-study {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

@media (min-width: 1024px) {
  .case-study {
    border-radius: var(--radius-2xl);
  }
}

.case-study:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.3);
}

.case-study__image {
  /* height: 200px; */
  overflow: hidden;
}

.mobile-frame .screen video {
  width: 100%;
}

.case-study__image img {
  width: 100%;
  height: 170%;
  object-fit: cover;
  object-position: center;
}

.case-study__content {
  padding: var(--space-6);
}

.case-study__content h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.case-study__metrics {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-direction: row;
  flex-wrap: wrap;
}

.metric {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.metric-value {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.metric-label {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  font-weight: 600;
}

.case-study__content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 80%, #0f172a 100%);
  padding: var(--space-20) 0;
  position: relative;
}

.process__title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: var(--space-6);
  margin-top: 30px;
}

/* Default: Mobile = vertical steps */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}

.process__steps::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  width: 2px;
  background-color: var(--border-light);
  transform: translateX(-50%);
  z-index: 0;
}

.step {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateY(-10px);
  background: white;
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.4);
}

.step__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.step__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.step__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step__content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

.step__content li::before {
  content: "Ã¢Å“â€œ";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 800;
  font-size: 12px;
  top: 2px;
}

.step__content a {
  font-size: 14px;
  font-weight: 600;
  color: #ff4d4d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Arrow between cards (only for mobile/vertical) */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 3px;
  height: 30px;
  background: #999;
}

.step:not(:last-child)::before {
  content: "Ã¢â€“Â¼";
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
  font-size: 20px;
  color: #999;
}

/* Ã¢Å“â€¦ Desktop View Fix */
@media (min-width: 1024px) {
  .process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .process__steps::before {
    content: none;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 32px 24px;
    height: 100%;
  }

  .step__icon {
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
  }

  .step__icon svg {
    width: 32px;
    height: 32px;
  }

  .step:not(:last-child)::after,
  .step:not(:last-child)::before {
    content: none;
  }
}



/* ===== FAQ SECTION ===== */
.faq {
  background: linear-gradient(135deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 100%);
  /* background-image: url('/assets/img/question-mark-query-information-support-service-graphic.jpg'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: var(--space-6) 0;
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%,
      rgba(59, 130, 246, 0.04) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(16, 185, 129, 0.04) 0%,
      transparent 50%);
  opacity: -1;
}

.faq__title {
  font-size: var(--font-heading-desktop);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-4);
  margin-top: var(--space-10);
}

@media (max-width: 768px) {
  .faq__title {
    font-size: var(--font-heading-mobile);
  }
}

.faq__items {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-glass);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, 0.2);
}

.faq__question {
  width: 100%;
  padding: var(--space-6) 0;
  background: none;
  border: none;
  text-align: left;
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
  padding-left: 40px;
}

.faq__question:hover {
  color: var(--primary);
}

.faq__question::after {
  content: "+";
  font-size: var(--font-size-xl);
  font-weight: 300;
  transition: transform var(--transition-fast);
  padding-right: 40px;
}

.faq__item.active .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 40px var(--space-6) 40px;
  color: var(--text-secondary);
  /* color: #ffffff; */
  line-height: 1.6;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  transform: translateY(0);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.sticky-cta__offer {
  font-weight: 700;
  color: var(--accent);
  font-size: var(--font-size-sm);
}

.sticky-cta__timer {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
  color: white;
  padding: var(--space-12) 0;
  border-top: 1px solid var(--border-glass);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* Left side - "Start a Campaign Now" */
.footer-left h1 {
  font-size: var(--font-heading-desktop);
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-left h1 {
    font-size: var(--font-heading-mobile);
  }
}

.footer-left ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.footer-left li {
  margin: 5px 0;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 20px;
  margin-top: 70px;
}

/* Footer Links Section */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  /* 4 equal columns */
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-links div {
  text-align: left;
}

.footer-links p {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Social Media Icons */
.social-links {
  display: flex;
  margin-top: 10px;
}

.social-links a {
  margin-right: 10px;
}

.social-links img {
  width: 24px;
  height: 24px;
}

/* Footer Copyright */
.copyright {
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    /* ek line me ek item */
    gap: 20px;
    text-align: center;
  }

  .footer-links div {
    text-align: center;
  }

  .footer-links ul,
  .footer-links .social-links {
    display: none;
    margin-top: 8px;
  }

  .footer-links div.open ul,
  .footer-links div.open .social-links {
    display: block;
  }

  .footer-links p {
    cursor: pointer;
    position: relative;
    display: inline-block;
  }

  /* arrow indicator */
  .footer-links p::after {
    content: "+";
    font-size: 20px;
    margin-left: 6px;
  }

  .footer-links div.open p::after {
    content: "+";
  }

  /* Social links center align */
  .social-links {
    justify-content: center;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }

  .problem-solution__content,
  .roi-calculator__content,
  .cro-audit__content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cro-insights {
    grid-template-columns: 1fr;
  }

  /* Revenue Chart Tablet Optimizations */
  .revenue-chart {
    gap: var(--space-2);
  }

  .revenue-bar {
    height: 22px;
  }

  .revenue-impact {
    padding: var(--space-2);
  }

  .impact-text {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  .hero {
    padding: var(--space-12) 0;
    min-height: auto;
  }

  .hero__title {
    font-size: var(--font-heading-mobile);
    margin-bottom: var(--space-4);
  }

  .hero__subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-6);
  }

  .form-card {
    padding: var(--space-5);
  }

  .showcase__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .cta-options {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: var(--font-heading-mobile);
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: var(--font-size-sm);
    line-height: 1.5;
  }

  .form-card {
    /* padding: var(--space-4); */
    /* padding: 10px; */
    margin-top: 15px;
  }

  .hero__badge {
    font-size: var(--font-size-xs);
    padding: var(--space-2) var(--space-3);
    margin-top: 30px;
  }

  .case-study__metrics {
    flex-direction: row;
    gap: var(--space-2);
  }

  .metric {
    text-align: left;
  }

  .timer-display {
    gap: var(--space-2);
  }

  .timer-unit {
    min-width: 50px;
  }

  .timer-number {
    font-size: var(--font-size-xl);
  }

  .timer-label {
    font-size: 0.6rem;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .audit-feature {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .audit-feature .feature-icon {
    font-size: var(--font-size-xl);
  }

  .audit-preview-card {
    position: static;
  }

  .stat-card {
    padding: var(--space-6);
  }

  .speed-chart {
    height: 150px;
  }

  .speed-dot {
    width: 8px;
    height: 8px;
  }

  .speed-label {
    font-size: 0.6rem;
  }

  .mobile-stat {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .insight-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  /* Revenue Chart Mobile Optimizations */
  .revenue-chart {
    gap: var(--space-2);
  }

  .revenue-bar {
    height: 20px;
  }

  .revenue-amount {
    font-size: 0.6rem;
    padding-right: var(--space-1);
    text-align: center;
  }

  .revenue-impact {
    padding: var(--space-2);
    margin-top: var(--space-1);
  }

  .impact-text {
    font-size: var(--font-size-sm);
  }

  .impact-percentage {
    font-size: 0.6rem;
  }

  .sticky-cta__content {
    padding: var(--space-2) var(--space-4);
  }

  /* ROI Calculator Mobile Styles */
  .roi-calculator__text h2 {
    font-size: var(--font-size-2xl);
  }

  .roi-calculator__text p {
    font-size: var(--font-size-base);
  }

  .roi-sliders {
    gap: var(--space-4);
  }

  .slider-group input[type="range"] {
    height: 6px;
  }

  .slider-group input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
  }

  .slider-group input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
  }

  .slider-value {
    font-size: var(--font-size-base);
    padding: var(--space-1);
  }

  .roi-results {
    padding: var(--space-6);
  }

  .roi-results h3 {
    font-size: var(--font-size-xl);
  }

  .revenue-item {
    padding: var(--space-3);
    flex-direction: column;
    text-align: center;
    gap: var(--space-1);
  }

  .revenue-amount {
    font-size: var(--font-size-lg);
  }

  /* Dual Approach Mobile Styles */
  .dual-approach__header h2 {
    font-size: var(--font-size-2xl);
  }

  .dual-approach__subtitle {
    font-size: var(--font-size-base);
  }

  .service-card {
    padding: var(--space-6);
  }

  .service-header h3 {
    font-size: var(--font-size-xl);
  }

  .graph-card {
    padding: var(--space-4);
  }

  .graph-card h4 {
    font-size: var(--font-size-base);
  }

  .bar-container {
    height: 24px;
  }

  .bar-value {
    font-size: var(--font-size-xs);
  }

  .revenue-bar {
    height: 20px;
  }

  .revenue-amount {
    font-size: 0.6rem;
  }

  .sticky-cta__text {
    gap: 0;
  }

  .sticky-cta__offer {
    font-size: var(--font-size-xs);
  }

  .sticky-cta__timer {
    font-size: 0.6rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content,
.hero__form {
  animation: fadeInUp 0.8s ease-out;
}

.hero__form {
  animation-delay: 0.2s;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.btn:focus,
.field input:focus,
.field select:focus,
.faq__question:focus {
  /* outline: 2px solid var(--primary); */
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border-light: #000000;
    --text-secondary: #000000;
  }
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.3;
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
}

/* ===== ANIMATION UTILITIES ===== */
.word {
  display: inline-block;
  margin-right: 0.25em;
}

/* Smooth transitions for all interactive elements */
.btn,
.case-study,
.cta-option,
.faq__item,
.trust__logo {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus states for accessibility */
.btn:focus-visible,
.faq__question:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

/* ===== ADDITIONAL FIXES ===== */
/* Ensure all sections have proper z-index */
.cro-stats,
.cro-audit-preview,
.roi-calculator {
  position: relative;
  z-index: 1;
}

/* Fix potential overflow issues */
.stat-card,
.audit-feature,
.insight-card {
  overflow: hidden;
}

/* Ensure proper stacking context */
.sticky-cta {
  z-index: 1000;
}

/* Fix potential animation issues */
@media (prefers-reduced-motion: reduce) {

  .bar-fill,
  .revenue-fill,
  .speed-dot,
  .speed-line {
    transition: none !important;
    animation: none !important;
  }
}

/* ===== BROWSER COMPATIBILITY FIXES ===== */
/* Ensure backdrop-filter fallback */
.stat-card,
.audit-feature,
.insight-card,
.form-card,
.solution-card {
  background: var(--bg-glass);
}

@supports (backdrop-filter: blur(20px)) {

  .stat-card,
  .audit-feature,
  .insight-card,
  .form-card,
  .solution-card {
    backdrop-filter: blur(20px);
  }
}

/* Fix potential flexbox issues */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

/* Ensure proper text rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Fix potential scroll issues */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Ensure proper box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix potential image issues */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure proper button styling */
button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

/* Fix potential form issues */
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Ensure proper focus management */
:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ===== SECTION PADDING UTILITIES ===== */
.section-padding {
  padding: var(--space-3) 0;
  background-image: url("/assets/img/Untitled\ design.png");
}

@media (min-width: 640px) {
  .section-padding {
    padding: var(--space-12) 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* ===== ROI CALCULATOR SECTION ===== */
.roi-calculator {
  background: linear-gradient(135deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 100%);
  /* background-image: url('/assets/img/back-school-concept-with-calculator-book.jpg'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.roi-calculator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  animation: gridMove 15s linear infinite;
}

.roi-calculator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 30%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 60%),
    radial-gradient(ellipse at 80% 70%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 60%),
    radial-gradient(ellipse at 50% 50%,
      rgba(245, 158, 11, 0.05) 0%,
      transparent 70%);
  opacity: 0.8;
  animation: spiralRotate 20s linear infinite;
}

@keyframes spiralRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.roi-calculator__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .roi-calculator__content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

.roi-calculator__text h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-);
  margin-top: var(--space-10);
}

.roi-calculator__text p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.roi-sliders {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.slider-group label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.slider-group input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-md);
  background: var(--border-light);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: all var(--transition-normal);
}

.slider-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}

.slider-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.slider-group input[type="number"] {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: var(--font-size-base);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.slider-group input[type="number"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.slider-value {
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--primary);
  /* padding: var(--space-2); */
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.roi-results {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
  height: 450px;
}

.roi-results::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 70%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%);
  opacity: 0.6;
  animation: flickerGlow 3s ease-in-out infinite alternate;
}

@keyframes flickerGlow {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.8;
  }
}

.roi-results>* {
  position: relative;
  z-index: 1;
}

.roi-results h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  text-align: center;
}

.revenue-comparison {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.revenue-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.revenue-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.revenue-item.current {
  border-color: rgba(245, 158, 11, 0.3);
}

.revenue-item.potential {
  border-color: rgba(16, 185, 129, 0.3);
}

.revenue-item.increase {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
}

.revenue-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.revenue-amount {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.revenue-item.current .revenue-amount {
  color: #f59e0b;
}

.revenue-item.potential .revenue-amount {
  color: var(--secondary);
}

.revenue-item.increase .revenue-amount {
  color: var(--primary);
}

.revenue-comparisons {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.revenue-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.revenue-items:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.revenue-items.currents {
  border-color: rgba(245, 158, 11, 0.3);
}

.revenue-items.potentials {
  border-color: rgba(16, 185, 129, 0.3);
}

.revenue-items.increases {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
}

.revenue-labels {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.revenue-amounts {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.revenue-items.currents .revenue-amounts {
  color: #f59e0b;
}

.revenue-items.potentials .revenue-amounts {
  color: var(--secondary);
}

.revenue-items.increases .revenue-amounts {
  color: var(--primary);
}

.roi-cta {
  text-align: center;
}

.roi-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  margin-top: var(--space-3);
  font-style: italic;
}

/* ===== DUAL APPROACH SECTION ===== */
.dual-approach {
  background: linear-gradient(135deg,
      var(--bg-primary) 0%,
      var(--bg-secondary) 100%);
  /* background-image: url('/assets/img/in-store_feedback_survey.webp'); */
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.dual-approach::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
  animation: gridMove 25s linear infinite reverse;
}

.dual-approach::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 15% 25%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%),
    radial-gradient(ellipse at 85% 75%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%),
    radial-gradient(ellipse at 50% 50%,
      rgba(245, 158, 11, 0.04) 0%,
      transparent 60%);
  opacity: 0.7;
  animation: spiralRotate 30s linear infinite;
}

.dual-approach__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.dual-approach__header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  margin-top: var(--space-10);
}

.dual-approach__subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-comparison {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .services-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}


.service-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 0;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* Minimal shadow */
  border-color: var(--primary);
}


.card-content {
  padding: 10px;
  /* Reduced padding */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-align: left;
}

.service-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: baseline;
  text-align: left;
  line-height: 1;
}

.service-price .currency {
  font-size: 1.5rem;
  margin-right: 4px;
  font-weight: 500;
  color: var(--text-secondary);
}

.service-price .period {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-left: 6px;
}

.service-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.6;
  text-align: left;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  flex-grow: 1;
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-6);
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}

.service-features li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Premium Card Highlight */
.premium-card {
  border: 2px solid var(--primary);
  background: linear-gradient(to bottom, #fff, rgba(37, 99, 235, 0.02));
  transform: scale(1.02);
  /* Slightly larger */
  z-index: 2;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
  position: relative;
  /* Ensure badge positioning works */
}

/* Most Popular Badge */
.popular-badge {
  position: absolute;
  top: 0;
  /* Top corner */
  right: 0;
  /* Right corner */
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-bottom-left-radius: 12px;
  /* Smooth corner */
  border-top-right-radius: 0;
  /* Flush corner */
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.service-tagline {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-graphs {
  margin-bottom: var(--space-8);
}

.graph-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.graph-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  animation: graphFlicker 1.5s ease-in-out infinite alternate;
}

@keyframes graphFlicker {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  100% {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
  }
}

.graph-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%);
  opacity: 0.6;
  animation: flickerGlow 4s ease-in-out infinite alternate;
}

.graph-card>* {
  position: relative;
  z-index: 1;
}

.graph-card h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-align: center;
}

.graph-note {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  text-align: center;
  margin-top: var(--space-3);
  font-style: italic;
  /* color: #000000; */
}

/* Performance Chart Styles */
.performance-chart,
.conversion-chart {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.chart-bar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bar-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.bar-container {
  height: 30px;
  background: var(--border-light);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: var(--radius-md);
  position: relative;
  transition: width 1.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--space-3);
}

.bar-fill.wordpress {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.bar-fill.shopify {
  background: linear-gradient(90deg, #10b981, #059669);
}

.bar-fill.current {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.bar-fill.optimized {
  background: linear-gradient(90deg, #10b981, #059669);
}

.bar-value {
  color: white;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Revenue Comparison Styles */
.revenue-comparison {
  display: flex;
  flex-direction: row;
  gap: var(--space-2);
  justify-content: center;
  align-items: center;
}

.revenue-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.revenue-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.revenue-bar {
  height: 24px;
  background: var(--border-light);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.revenue-fill {
  height: 100%;
  border-radius: var(--radius-md);
  position: relative;
  transition: width 1.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--space-2);
}

.revenue-fill.before {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.revenue-fill.after {
  background: linear-gradient(90deg, #10b981, #059669);
}

.revenue-amount {
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-benefits {
  margin-bottom: var(--space-8);
}

.service-benefits h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.service-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-benefits li {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.service-cta {
  text-align: center;
}

.service-price {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-top: var(--space-2);
  font-weight: 500;
  /* color: #000000; */
}

/* ===== ANIMATED CHARTS SPECIFIC FIXES ===== */
/* Ensure charts animate properly */
.bar-fill,
.revenue-fill {
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width;
}

.speed-dot {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.speed-line {
  transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Fix potential chart overflow */
.chart-bar,
.revenue-item,
.mobile-stat {
  overflow: visible;
}

/* Ensure proper chart positioning */
.speed-chart {
  position: relative;
  overflow: visible;
}

.speed-point {
  position: relative;
  z-index: 2;
}

/* Fix potential mobile chart issues */
@media (max-width: 768px) {
  .chart-bar {
    margin-bottom: var(--space-3);
  }

  .bar-container {
    height: 25px;
  }

  .revenue-bar {
    height: 35px;
  }

  .speed-chart {
    height: 120px;
  }
}

/* Ensure proper animation timing */
.animated-chart .bar-fill:nth-child(1) {
  animation-delay: 0ms;
}

.animated-chart .bar-fill:nth-child(2) {
  animation-delay: 300ms;
}

.animated-chart .bar-fill:nth-child(3) {
  animation-delay: 600ms;
}

/* Fix potential z-index issues */
.stat-card {
  position: relative;
  z-index: 1;
}

.stat-card:hover {
  z-index: 2;
}

/* Ensure proper text contrast */
.bar-value,
.revenue-amount {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Fix potential gradient issues */
.bar-fill,
.revenue-fill {
  background-attachment: scroll;
}

/* Ensure proper mobile touch targets */
@media (max-width: 768px) {
  .stat-card {
    padding: var(--space-6);
  }

  .insight-card {
    padding: var(--space-5);
  }

  .mobile-stat {
    padding: var(--space-3);
  }
}



/* ===== EXIT INTENT MODAL ===== */
.exit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.exit-modal-content {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  max-width: 500px;
  width: 90%;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exit-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: var(--font-size-2xl);
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.exit-modal-close:hover {
  color: var(--text-primary);
}

.exit-modal-body {
  text-align: center;
}

.exit-modal-icon {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

.exit-modal-body h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.exit-modal-body p {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.exit-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.exit-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-align: left;
}

.exit-benefit-icon {
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

.exit-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.exit-form input {
  padding: var(--space-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: var(--font-size-base);
}

.exit-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.exit-disclaimer {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin: 0;
}

.success-message {
  padding: var(--space-4);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  color: var(--secondary);
  font-weight: 600;
}

/* ===== LIVE CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 9999;
}

.chat-widget-button {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-2xl);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
}

.chat-widget-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.chat-icon {
  font-size: var(--font-size-lg);
}

.chat-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.chat-notification {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--danger);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 700;
  animation: bounce 1s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.chat-window {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 450px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border-light);
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-name {
  font-weight: 600;
  color: var(--text-primary);
}

.agent-status {
  font-size: var(--font-size-xs);
  color: var(--secondary);
}

.chat-close {
  background: none;
  border: none;
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  cursor: pointer;
}

.chat-messages {
  height: 250px;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.chat-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.agent-message {
  align-items: flex-start;
}

.user-message {
  align-items: flex-end;
}

.message-content {
  max-width: 80%;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  line-height: 1.4;
}

.agent-message .message-content {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--text-primary);
}

.user-message .message-content {
  background: var(--primary);
  color: white;
}

.message-time {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  padding: 0 var(--space-3);
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-3);
  border-top: 1px solid var(--border-light);
}

.quick-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xs);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-action:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
  color: var(--text-primary);
}

.chat-input {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3);
  border-top: 1px solid var(--border-light);
}

.chat-input input {
  flex: 1;
  padding: var(--space-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
}

.chat-input input:focus {
  outline: none;
  border-color: var(--primary);
}

.chat-input button {
  background: var(--primary);
  color: white;
  border: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.chat-input button:hover {
  background: var(--primary-dark);
}

/* Mobile Responsive for Chat */
@media (max-width: 768px) {
  .chat-widget {
    bottom: var(--space-4);
    right: var(--space-4);
  }

  .chat-window {
    width: 300px;
    height: 400px;
  }

  .chat-widget-button {
    padding: var(--space-2) var(--space-3);
  }

  .chat-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .exit-modal-content {
    padding: var(--space-6);
    margin: var(--space-4);
  }

  .exit-benefits {
    gap: var(--space-2);
  }

  .exit-benefit {
    flex-direction: column;
    text-align: center;
    gap: var(--space-1);
  }

  .chat-window {
    width: 280px;
    height: 350px;
    bottom: 60px;
    right: -10px;
  }
}

/* ===== VIDEO TESTIMONIALS SECTION ===== */
.video-testimonials {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.video-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.video-testimonials__header {
  text-align: center;
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 2;
}

.video-testimonials__header h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-testimonials__subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.video-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 2;
}

.video-testimonial {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.video-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.video-testimonial:hover::before {
  opacity: 1;
}

.video-testimonial:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.video-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-6);
  background: var(--bg-tertiary);
  aspect-ratio: 16/9;
}

.desktop-video .video-container {
  aspect-ratio: 16/10;
}

.mobile-video .video-container {
  aspect-ratio: 9/16;
  max-width: 300px;
  margin: 0 auto var(--space-6);
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform var(--transition-normal);
}

.video-testimonial:hover .testimonial-video {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity var(--transition-normal);
  cursor: pointer;
}

.video-testimonial:hover .video-overlay {
  opacity: 0.8;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.play-button svg {
  color: white;
  margin-left: 4px;
}

.play-button:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.video-testimonial__content {
  position: relative;
  z-index: 2;
}

.video-testimonial__content h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.client-title {
  color: var(--primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-stats {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
}

.testimonial-stats .stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: var(--space-1);
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: var(--space-4);
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: var(--font-size-4xl);
  color: var(--primary);
  font-family: serif;
  line-height: 1;
}

.video-testimonials__cta {
  text-align: center;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  position: relative;
  z-index: 2;
}

.video-testimonials__cta h3 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.video-testimonials__cta p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsive for Video Testimonials */
@media (max-width: 768px) {
  .video-testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .video-testimonial {
    padding: var(--space-6);
  }

  .testimonial-stats {
    gap: var(--space-4);
  }

  .mobile-video .video-container {
    max-width: 250px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button svg {
    width: 24px;
    height: 24px;
  }

  .video-testimonials__cta {
    padding: var(--space-8);
  }

  .video-testimonials__cta h3 {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .video-testimonials__header h2 {
    font-size: var(--font-size-3xl);
  }

  .video-testimonials__subtitle {
    font-size: var(--font-size-base);
  }

  .video-testimonial {
    padding: var(--space-4);
  }

  .testimonial-stats {
    flex-direction: column;
    gap: var(--space-3);
  }

  .stat-number {
    font-size: var(--font-size-xl);
  }

  .mobile-video .video-container {
    max-width: 200px;
  }
}

/* ===== RESPONSIVE SHOWCASE SECTION ===== */
.responsive-showcase {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  /* margin-bottom: -175px; */
}

.responsive-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.responsive-showcase__header {
  text-align: center;
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 2;
}

.responsive-showcase__header h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.responsive-showcase__subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.responsive-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 2;
}

.showcase-item {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-2xl);
  /* padding: var(--space-8); */
  padding: 10px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* .showcase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
} */

.showcase-item:hover::before {
  opacity: 1;
}

.showcase-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.device-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: var(--space-6);
  position: relative;
}

/* Desktop Frame */
.desktop-frame {
  position: relative;
  z-index: 2;
}

.desktop-frame .screen {
  width: 200px;
  height: 120px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 3px solid #333;
  box-shadow: var(--shadow-lg);
}

.desktop-frame .screen img,
.desktop-frame .screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.desktop-frame:hover .screen img {
  transform: scale(1.05);
}

.desktop-stand {
  width: 80px;
  height: 8px;
  background: #555;
  margin: 0 auto;
  border-radius: 4px;
  position: relative;
}

.desktop-stand::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #444;
  border-radius: 2px;
}

/* Mobile Frame */
.mobile-frame {
  position: relative;
  z-index: 2;
}

.mobile-frame .screen {
  width: 87px;
  height: 160px;
  background: var(--bg-tertiary);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  border: 2px solid #333;
  box-shadow: var(--shadow-lg);
  margin-top: 15px;

}

.mobile-frame .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.mobile-frame:hover .screen img {
  transform: scale(1.05);
}

.home-button {
  width: 16px;
  height: 16px;
  background: #333;
  border-radius: 50%;
  margin: 4px auto 0;
  position: relative;
}

.home-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
}

/* Screen Overlay */
.screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.desktop-frame:hover .screen-overlay {
  opacity: 1;
}

.website-info {
  text-align: center;
  color: white;
}

.website-info h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.website-info p {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
}

/* Showcase Info */
.showcase-info {
  text-align: center;
  position: relative;
  z-index: 2;
}

.showcase-info h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.showcase-info p {
  font-size: var(--font-size-sm);
  color: var(--secondary);
  font-weight: 500;
}

/* CTA Section */
.responsive-showcase__cta {
  text-align: center;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  position: relative;
  z-index: 2;
}

.responsive-showcase__cta h3 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.responsive-showcase__cta p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsive for Responsive Showcase */
@media (max-width: 768px) {
  .responsive-showcase__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .showcase-item {
    padding: var(--space-6);
  }

  .device-container {
    gap: var(--space-4);
  }

  .desktop-frame .screen {
    width: 150px;
    height: 90px;
  }

  .mobile-frame .screen {
    width: 45px;
    height: 75px;
  }

  .desktop-stand {
    width: 60px;
  }

  .desktop-stand::after {
    width: 90px;
  }

  .responsive-showcase__cta {
    padding: var(--space-8);
  }

  .responsive-showcase__cta h3 {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .responsive-showcase__header h2 {
    font-size: var(--font-size-3xl);
  }

  .responsive-showcase__subtitle {
    font-size: var(--font-size-base);
  }

  .showcase-item {
    padding: var(--space-4);
  }

  .device-container {
    flex-direction: row;
    gap: var(--space-3);
  }

  .desktop-frame .screen {
    width: 220px;
    height: 150px;
  }

  .mobile-frame .screen {
    width: 90px;
    height: 150px;
  }

  .showcase-info h3 {
    font-size: var(--font-size-base);
  }

  .showcase-info p {
    font-size: var(--font-size-xs);
  }
}


















/* Position the image container (needed to position the left and right arrows) */
.containe {
  position: relative;
  padding: 10px 100px;

}

/* Hide the images by default */
.mySlid {
  display: none;
  /* border: 1px solid #000; */
  margin-bottom: 10px;
}

/* Add a pointer when hovering over the thumbnail images */
.curso {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertex {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.mySlid img {
  height: 500px;
  object-fit: contain;
  border: 1px solid #000;

}

.row {
  width: 100%;
  display: flex;
  gap: 10px;
}

/* Container for image text */
.caption-containe {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding-top: 60px;
    /* Reduced for mobile */
    padding-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .row {
    gap: 12px;
    padding: 8px 6px;
    overflow-x: auto;
    /* horizontal scroll for ease */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    /* keep in one row */
  }

  .colum {
    float: none;
    /* override float */
    width: auto;
    /* let flex control width */
    flex: 0 0 42%;
    /* ~2 thumbnails per screen */
    scroll-snap-align: center;
    border-width: 0;
    /* optional: cleaner look */
  }

  .colum img {
    height: 140px;
    /* bigger thumb height */
    width: 100%;
    object-fit: cover;
    /* crop nicely */
    border-radius: 8px;
    /* optional */
  }
}

/* --- very small phones (optional): 3 per screen) --- */
@media (max-width: 400px) {
  .colum {
    flex-basis: 48%;
  }

  /* ~2 per row on tiny screens */
  .colum img {
    height: 150px;
  }
}

/* Six columns side by side */
.colum {
  float: left;
  width: 16.66%;
  border: 1px solid #000;
}

/* Add a transparency effect for thumnbail images */
.dem {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


@media screen and (max-width: 1024px) {
  .colum {
    width: 48%;
    /* Two columns on tablet */
  }
}

@media screen and (max-width: 600px) {
  .colum {
    width: 100%;
    /* One column on mobile */
  }

  .containe {
    padding: 10px;
  }

  .mySlid img {
    height: 300px;
    /* Adjust image height for smaller screens */
  }
}

/* ===== SWIPER CUSTOMIZATION ===== */
.swiper {
  width: 100%;
  padding-bottom: 50px !important;
  /* Space for pagination */
  overflow: visible;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.swiper-pagination-bullet {
  background: var(--primary) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary) !important;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-button-disabled {
  opacity: 0 !important;
}

.case-study {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.case-study__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-study__content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-study__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  /* Green for positive growth */
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.case-study p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== COMPARISON SECTION ===== */
.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .comparison-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: var(--space-4);
  }
}

.comparison-card {
  flex: 1;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 500px;
  position: relative;
  transition: transform var(--transition-normal);
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-header-problem {
  text-align: center;
  margin-bottom: var(--space-6);
  background: rgba(220, 38, 38, 0.1);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--danger);
}

.card-header-problem h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.card-header-solution {
  text-align: center;
  margin-bottom: var(--space-6);
  background: rgba(37, 99, 235, 0.1);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--primary);
}

.card-header-solution h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-6);
}

.list-icon {
  font-size: 1.5rem;
  margin-right: var(--space-4);
  min-width: 2rem;
  text-align: center;
}


.case-study__image {
  position: relative;
}

.visit-site-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  text-decoration: none;
}

.case-study__image:hover .visit-site-btn {
  opacity: 1;
}


/* Scrollable Website Frame */
.website-frame {
  width: 100%;
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-tertiary);
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-secondary);
  position: relative;
  scroll-behavior: smooth;
}

.website-frame::-webkit-scrollbar {
  width: 6px;
}

.website-frame::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

.website-frame::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 3px;
}

.website-content-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay button for actual live site visiting */
.frame-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  pointer-events: none;
  /* Let clicks pass through to scroll */
}

.visit-btn-floating {
  pointer-events: auto;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.visit-btn-floating:hover {
  transform: translateY(-2px);
}

.icon-danger {
  color: var(--danger);
  background: rgba(220, 38, 38, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon-success {
  color: var(--secondary);
  background: rgba(16, 185, 129, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.list-content strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}

.list-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* VS Badge */
.vs-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.vs-badge {
  background: var(--text-primary);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 8px var(--bg-primary);
  /* Mock border */
}

@media (min-width: 1024px) {
  .vs-badge-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* New Solution Card Highlight */
.solution-card-new {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {

  /* Hero Section Typography */
  .hero__title {
    font-size: var(--font-size-3xl);
    line-height: 1.2;
    padding: 0 var(--space-4);
  }

  .hero__subtitle {
    font-size: var(--font-size-base);
    padding: 0 var(--space-4);
  }

  /* Reduce General Section Padding */
  .section-padding {
    padding: var(--space-8) 0;
  }

  /* Comparison Grid Mobile */
  .comparison-grid {
    gap: var(--space-8);
  }

  .vs-badge-container {
    margin: var(--space-2) 0;
  }

  .comparison-card {
    padding: var(--space-4);
    width: 100%;
  }

  /* Website Frame Mobile Height */
  .website-frame {
    height: 300px;
  }

  /* Swiper Mobile */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .visit-btn-floating {
    bottom: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* INTEGRATION SECTION */

.integration-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 40px;
}

.integration-content {
  /* flex: 1; */
  max-width: 450px;
}

.integration-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: sans-serif;
}

.integration-title {
  font-size: 52px;
  font-weight: 300;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.1;
  font-family: sans-serif;
}

.integration-description {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

.integration-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: center;
}

.integration-logo {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.integration-logo img {
  max-width: 80px;
  max-height: 50px;
  object-fit: contain;
  /* Monochrome Black/Dark Grey */
  filter: grayscale(100%) brightness(0);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.integration-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

/* COD Box styling */
.cod-box {
  background: black;
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 35px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
  .integration-container {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .integration-content {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .integration-title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .integration-title {
    font-size: 32px;
  }

  .integration-logo img {
    max-width: 60px;
  }
}

/* ===== FOOTER REDESIGN ===== */
.footer {
  background-color: #0f172a;
  /* Dark Slate */
  color: #f8fafc;
  padding: 80px 0 40px;
  font-family: var(--font-family);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand p {
  color: #94a3b8;
  margin: 20px 0;
  line-height: 1.6;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer__logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__heading {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 14px;
}

.footer__links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__newsletter p {
  color: #94a3b8;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer__newsletter-form {
  position: relative;
  max-width: 100%;
  display: flex;
  /* Ensure flex behavior */
}

.footer__newsletter-input {
  width: 100%;
  padding: 14px 16px;
  padding-right: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer__newsletter-input::placeholder {
  color: #64748b;
}

.footer__newsletter-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.footer__newsletter-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 40px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  /* Reset padding */
}

.footer__newsletter-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.footer__contact-info {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.85rem;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: #cbd5e1;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer__grid {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer__newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
  }

  .footer__brand p {
    margin: 15px auto;
  }

  .footer__links a:hover {
    transform: translateX(0);
    color: var(--primary);
  }

  .footer__links li {
    margin-bottom: 12px;
    padding: 4px 0;
    /* Larger tap target */
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__newsletter-form {
    max-width: 100%;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding-top: 25px;
  }

  .footer__bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== PROCESS SECTION ===== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.step {
  background: var(--bg-tertiary);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.step__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bg-secondary), #fff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.step__icon svg {
  width: 24px;
  height: 24px;
}

.step__content h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.step__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step__content li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

.step__content li::before {
  content: 'â€¢';
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

/* Response for Process */
@media (max-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process__steps {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICES SECTION REDESIGN ===== */
.services-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.services-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Fixed 3 columns on desktop */
  gap: 30px;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 2rem;
  border: 1px solid var(--border-light);
  position: relative;
}

.service-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.1;
  filter: blur(10px);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon-wrapper::after {
  opacity: 0.2;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  margin-top: auto;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.service-features li::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  margin-right: 12px;
  font-size: 10px;
  font-weight: bold;
}

.service-card .btn {
  width: 100%;
}

/* INTEGRATION SECTION */
.integrations.section-padding {
  padding: 100px 0;
  background-color: #ffffff;
}

.integration-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 40px;
}

.integration-content {
  flex: 1;
  max-width: 450px;
}

.integration-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.integration-title {
  font-size: 52px;
  font-weight: 300;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.1;
}

.integration-description {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

.integration-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: center;
}

.integration-logo {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.integration-logo img {
  max-width: 80px;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.integration-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.cod-box {
  background: black;
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 35px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .integration-container {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    gap: 10px;
  }

  .integration-content {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .integration-title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .integration-title {
    font-size: 32px;
  }

  .integration-logo img {
    max-width: 60px;
  }
}

/* Our Partners Section */
.partners-section {
  padding: 60px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.partners-title {
  font-family: var(--font-heading);
  font-size: var(--font-heading-desktop);
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.partners-title span {
  color: #4a6ee0;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 150px;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-card img {
  height: 45px;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 15px;
  }

  .partner-card {
    width: 100%;
  }

  .partner-card img {
    height: 35px;
    max-width: 100%;
  }

  .partners-title {
    font-size: var(--font-heading-mobile);
  }
}

@media (max-width: 480px) {
  .partners-grid {
    gap: 20px 10px;
  }
}