/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark Theme Colors */
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --secondary: #10b981;
  --accent: #f59e0b;
  --danger: #ef4444;

  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;

  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-hover: rgba(255, 255, 255, 0.1);

  --border-light: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.2);
  --border-glass: rgba(255, 255, 255, 0.15);

  /* Typography - Mobile First */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    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 */

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.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.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4),
    0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5),
    0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6),
    0 10px 10px -5px rgba(0, 0, 0, 0.4);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);

  /* 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: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-glass-hover);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.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);
}

@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 */
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

@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;
}

.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-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: white;
  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(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  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(255, 255, 255, 0.1) 1px,
      transparent 0
    );
  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);
}

.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-size-3xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
  .hero__title {
    font-size: var(--font-size-4xl);
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-6);
  }
}

.hero__title .highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -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;
}

/* ===== TRUST SECTION ===== */
.trust {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  padding: var(--space-16) 0;
  position: relative;
}

/* 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: 10px;
}
.testimonial {
  flex: 0 0 80%;
  min-width: 250px;
  scroll-snap-align: start;
  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) {
  .testimonials {
    gap: var(--space-6);
  }
  .testimonial {
    flex: 0 0 60%;
    padding: var(--space-5);
  }
}

/* Desktop breakpoint (1024px) */
@media (min-width: 1024px) {
  .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    overflow: visible;
  }
  .testimonial {
    flex: unset;
    min-width: unset;
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
  }
}

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

.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);
  position: relative;
  transition: width 1.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* text right side */
  padding-right: var(--space-2);
  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-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.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,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  padding: var(--space-20) 0;
  position: relative;
}

.process__title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  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: #1a1a1a;
  border-radius: 12px;
  padding: 25px 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  color: #fff;
  position: relative;
  z-index: 1;
}

.step__number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  min-width: 40px;
}

.step__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step__content p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 12px;
}

.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: center;
    text-align: center;
    padding: 20px;
  }

  .step__number {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .step:not(:last-child)::after,
  .step:not(:last-child)::before {
    content: none;
  }
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
  color: white;
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(16, 185, 129, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 50%
    );
  opacity: 0.8;
}

.final-cta h2 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  /* margin-bottom: var(--space-4); */
  margin-top: var(--space-10);
}

.final-cta p {
  font-size: var(--font-size-xl);
  opacity: 0.9;
  margin-bottom: var(--space-4);
}

.cta-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-options {
    gap: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
  }
}

.cta-option {
  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) {
  .cta-option {
    padding: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .cta-option {
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
  }
}

.cta-option:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.3);
}

.cta-option h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  /* margin-bottom: var(--space-3); */
}

.cta-option p {
  font-size: var(--font-size-base);
  opacity: 0.8;
  margin-bottom: var(--space-6);
}

.cta-option .btn {
  width: 100%;
}

/* ===== 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-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-4);
  margin-top: var(--space-10);
}

.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: 30px;
  margin-bottom: 10px;
  text-align: center;
}

.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-size-3xl);
    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-size-2xl);
    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: 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);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: rgba(59, 130, 246, 0.3);
  animation: cardGlow 2s ease-in-out infinite alternate;
}

@keyframes cardGlow {
  0% {
    box-shadow: var(--shadow-xl), var(--shadow-glow);
  }
  100% {
    box-shadow: var(--shadow-xl), 0 0 30px rgba(59, 130, 246, 0.3);
  }
}

.service-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;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-header {
  text-align: center;
  margin-bottom: var(--space-4);
}

.service-icon {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-2);
}

.service-header h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.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);
  }
}

section.tech-capabilities {
  padding: 50px 20px;
  text-align: center;
  background-color: #2c3033;
}

section.tech-capabilities h2 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: bold;
}

section.tech-capabilities h2 span {
  color: #fab71e; /* blue italic */
  font-style: italic;
}

/* Grid Styling */
.tech-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #fff;
}

.tech-item img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
}
.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(225, 221, 221, 0.2);
  border-radius: 10px;
  background-color: #ffffff20;
}

.tech-item:hover img {
  transform: scale(1.1);
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .tech-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .tech-container {
    grid-template-columns: repeat(3, 1fr);
  }
section.tech-capabilities h2 {
  font-size: 22px;
}
.tech-item img {
  max-width: 80px;
  filter: saturate(0.7);
}
}

/* ===== 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: 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 */
  }
}