﻿/* ===== CSS VARIABLES - THEME SETUP ===== */
:root {
  /* LIGHT THEME (Default) */
  --bg-dark: #f0f2f5;
  /* Used for subtle backgrounds */
  --bg: #f8f9fc;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-card-solid: #ffffff;
  --bg-hover: rgba(255, 255, 255, 0.9);

  /* Glass Effects - Light */
  --glass: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(27, 23, 255, 0.1);
  --glass-hover: rgba(255, 255, 255, 0.8);

  /* Primary Colors - Eazy Blue */
  --primary: #1b17ff;
  --primary-light: #4a47ff;
  --primary-dark: #1512cc;
  --primary-glow: rgba(27, 23, 255, 0.15);
  --primary-glow-strong: rgba(27, 23, 255, 0.3);

  /* Accent Colors */
  --accent-teal: #0d9488;
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-gradient: linear-gradient(135deg, var(--primary), var(--accent-purple));
  --header-bg: rgba(255, 255, 255, 0.7);
  --header-scrolled: rgba(255, 255, 255, 0.9);

  /* Text Colors */
  --text-white: #1a1a2e;
  /* Mapped to dark text for Light Mode */
  --text-light: #4a4a68;
  --text-medium: #6b7280;
  --text-muted: #9ca3af;

  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Border Colors */
  --border: rgba(27, 23, 255, 0.08);
  --border-hover: rgba(27, 23, 255, 0.2);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;

  /* Shadows & Glows */
  --shadow-sm: 0 4px 12px rgba(27, 23, 255, 0.05);
  --shadow-md: 0 8px 24px rgba(27, 23, 255, 0.08);
  --shadow-lg: 0 16px 48px rgba(27, 23, 255, 0.12);
  --glow-sm: 0 0 20px var(--primary-glow);
  --glow-md: 0 0 40px var(--primary-glow);
  --glow-lg: 0 0 60px var(--primary-glow-strong);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* DARK THEME OVERRIDES */
[data-theme="dark"] {
  /* Adjusted Dark Colors (Less Stark) */
  --bg-dark: #070914;
  --bg: #0f1126;
  /* Softer, slightly blueish dark */
  --bg-card: rgba(20, 22, 45, 0.6);
  --bg-card-solid: #151833;
  --bg-hover: rgba(30, 35, 70, 0.8);

  /* Glass Effects - Dark */
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.06);

  /* Primary Glows - Stronger in Dark Mode */
  --primary-glow: rgba(27, 23, 255, 0.4);
  --primary-glow-strong: rgba(27, 23, 255, 0.6);
  --header-bg: rgba(10, 11, 28, 0.4);
  --header-scrolled: rgba(10, 11, 28, 0.7);

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e0e0e8;
  --text-medium: #9ca3af;
  --text-muted: #6b7280;

  /* Borders & Shadows */
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(27, 23, 255, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

html::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* Smooth Theme Switch */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

ul,
ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

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

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-medium);
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.25rem;
}

.text-xl {
  font-size: 1.5rem;
}

.text-primary {
  color: var(--primary-light);
}

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

.text-white {
  color: var(--text-white);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-purple), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-header p {
  margin-top: var(--space-sm);
}

/* ===== GLASSMORPHISM HEADER ===== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 900px;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background: var(--header-scrolled);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), var(--glow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  filter: brightness(1.1);
  transition: var(--transition-base);
}

.logo:hover img {
  filter: brightness(1.3) drop-shadow(0 0 10px var(--primary-glow));
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition-base);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: var(--transition-base);
  border-radius: 2px;
  box-shadow: var(--glow-sm);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-light);
}

.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-base);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: none;
}

/* Primary Button - Glowing Blue */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow), var(--glow-sm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow-strong), var(--glow-md);
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Secondary Button - Glass */
.btn-secondary {
  background: var(--glass);
  color: var(--text-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--glow-sm);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--glow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===== GLASS CARDS ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
  background: var(--bg-hover);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--glow-sm);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text-white);
}

.card-text {
  font-size: 1rem;
  color: var(--text-medium);
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 140px;
  padding-bottom: var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
}

/* Animated Background Effects */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(27, 23, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
  animation: heroGradient 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGradient {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.2);
  }
}

/* Floating Orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: 10%;
  right: -15%;
  animation: floatOrb 8s ease-in-out infinite;
  pointer-events: none;
  filter: blur(60px);
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-40px) translateX(-30px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-sm);
  animation: fadeInDown 0.8s ease forwards;
}

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

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

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--success);
}

@keyframes pulse {

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

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

/* Hero Title */
.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease forwards 0.2s;
  opacity: 0;
}

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

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

.hero h1 span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: var(--text-medium);
  max-width: 650px;
  margin: 0 auto var(--space-xl);
  animation: fadeInUp 1s ease forwards 0.4s;
  opacity: 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease forwards 0.6s;
  opacity: 0;
}

/* Hero CTA Primary Glow Animation */
.hero-cta .btn-primary {
  animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {

  0%,
  100% {
    box-shadow: 0 4px 20px var(--primary-glow), var(--glow-sm);
  }

  50% {
    box-shadow: 0 4px 30px var(--primary-glow-strong), var(--glow-lg);
  }
}

/* ===== STATS SECTION ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  padding: var(--space-xl) 0;
  animation: fadeInUp 1s ease forwards 0.8s;
  opacity: 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  min-width: 150px;
  transition: var(--transition-base);
}

.stat-item:hover {
  border-color: var(--primary);
  box-shadow: var(--glow-sm);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PROBLEMS SECTION ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.problem-card {
  background: rgba(212, 195, 158, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(212, 195, 158, 0.2);
  border-left: 4px solid #d4c39e;
  transition: var(--transition-base);
  backdrop-filter: blur(10px);
}

.problem-card:hover {
  transform: translateX(8px);
  background: rgba(212, 195, 158, 0.15);
  border-color: #d4c39e;
  box-shadow: 0 0 30px rgba(212, 195, 158, 0.2);
}

.problem-icon {
  color: #d4c39e;
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 10px rgba(212, 195, 158, 0.3));
}

.problem-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
  color: var(--text-white);
}

.problem-text {
  font-size: 0.938rem;
  color: var(--text-muted);
}

/* ===== FEATURES SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-purple), var(--accent-cyan));
  opacity: 0;
  transition: var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--glow-md);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  color: white;
  font-size: 2rem;
  box-shadow: var(--glow-sm);
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--glow-md);
}

.feature-title {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
  color: var(--text-white);
}

.feature-text {
  color: var(--text-muted);
}

/* ===== PROCESS / STEPS ===== */
.steps-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.steps-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent-purple), rgba(27, 23, 255, 0.2));
  box-shadow: var(--glow-sm);
}

.step-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-solid);
  border: 3px solid var(--primary);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
  box-shadow: var(--glow-sm);
}

.step-item:hover .step-number {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: scale(1.1);
  box-shadow: var(--glow-md);
}

.step-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  flex: 1;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.step-item:hover .step-content {
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--text-white);
}

.step-text {
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--bg-card-solid), rgba(27, 23, 255, 0.1));
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 50%);
  animation: ctaGlow 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20%, 20%);
  }
}

.cta-section h2 {
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-section p {
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  position: relative;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-sm);
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-size: 5rem;
  color: var(--primary-glow);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--glow-sm);
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== ROI SIMULATOR ===== */
.roi-simulator-section {
  background: var(--bg-dark);
}

.roi-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  border: 1px solid var(--glass-border);
}

.roi-simulator {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.roi-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.roi-float-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-glow);
  top: -100px;
  right: -100px;
  animation: floatOrb 10s ease-in-out infinite;
}

.roi-float-2 {
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.3);
  bottom: -80px;
  left: -80px;
  animation: floatOrb 12s ease-in-out infinite reverse;
}

.roi-content {
  position: relative;
  z-index: 1;
}

.roi-input-card {
  background: var(--glass);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--glass-border);
}

.roi-input-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.roi-input-icon {
  font-size: 1.5rem;
}

.roi-input-header h3 {
  font-size: 1.125rem;
  color: var(--text-white);
}

.roi-slider-container {
  margin-bottom: var(--space-md);
}

.roi-slider-display {
  text-align: center;
  margin-bottom: var(--space-md);
}

.roi-slider-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
}

.roi-slider-unit {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: var(--space-xs);
}

.roi-slider-wrapper {
  position: relative;
  margin-bottom: var(--space-sm);
}

.roi-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-dark);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  cursor: pointer;
  box-shadow: var(--glow-sm);
  transition: var(--transition-base);
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--glow-md);
}

.roi-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  cursor: pointer;
  border: none;
  box-shadow: var(--glow-sm);
}

.roi-slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.roi-assumptions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.roi-results {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.roi-result-card {
  background: linear-gradient(135deg, rgba(27, 23, 255, 0.2), rgba(139, 92, 246, 0.1));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-hover);
  position: relative;
  overflow: hidden;
}

.roi-result-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 50%);
  opacity: 0.5;
  animation: roiGlow 5s ease-in-out infinite;
}

@keyframes roiGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

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

.roi-result-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.roi-result-data {
  position: relative;
  z-index: 1;
}

.roi-result-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roi-result-main {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin: var(--space-xs) 0;
}

.roi-result-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.roi-result-suffix {
  font-size: 1rem;
  color: var(--text-medium);
}

.roi-result-annual {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.roi-result-annual strong {
  color: var(--primary-light);
}

.roi-cta {
  margin-top: var(--space-xl);
  text-align: center;
}

.roi-cta-btn {
  position: relative;
  overflow: hidden;
}

.roi-cta-arrow {
  margin-left: var(--space-xs);
  transition: var(--transition-base);
}

.roi-cta-btn:hover .roi-cta-arrow {
  transform: translateX(5px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--bg-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.faq-filter-btn {
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-medium);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.faq-filter-btn:hover,
.faq-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: var(--transition-base);
}

.faq-question:hover {
  background: var(--glass-hover);
}

.faq-question h4 {
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 500;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-base);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-muted);
  font-size: 0.938rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  margin-top: var(--space-md);
  color: var(--text-muted);
  font-size: 0.938rem;
}

.footer-col h4,
.footer-title {
  font-size: 0.875rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.938rem;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .header {
    width: 95%;
    top: 10px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
  }

  .nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .stats {
    gap: var(--space-md);
  }

  .stat-item {
    min-width: 120px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .steps-container {
    padding-left: 0;
  }

  .steps-line {
    display: none;
  }

  .step-item {
    flex-direction: column;
    gap: var(--space-md);
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

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

  .roi-content {
    grid-template-columns: 1fr !important;
  }

  .cta-section {
    padding: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .problems-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITY CLASSES ===== */
.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.hidden {
  display: none;
}

.visible {
  visibility: visible;
}

/* ===== BACKGROUND VARIATIONS ===== */
.bg-dark {
  background: var(--bg-dark);
}

.bg-card {
  background: var(--bg-card);
}

.bg-gradient {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg));
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-medium);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-left: var(--space-sm);
}

.theme-toggle:hover {
  background: var(--bg-hover);
  color: var(--primary);
  border-color: var(--primary);
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== SOCIAL PROOF - IPHONE WHATSAPP ===== */
.social-proof-section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

/* iPhone Container */
.iphone-container {
  width: 280px;
  height: 560px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  border-radius: 45px;
  padding: 8px;
  box-shadow:
    0 0 0 2px #3a3a3a,
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
}

.iphone-container:hover {
  transform: rotate(0deg) scale(1.02);
}

/* iPhone Notch */
.iphone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 20;
}

.iphone-notch::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #2d2d2d;
  border-radius: 50%;
}

/* iPhone Screen */
.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0b141a;
}

[data-theme="light"] .iphone-screen {
  background: #efeae2;
}

/* WhatsApp Header */
.whatsapp-header {
  background: #1f2c34;
  padding: 35px 10px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

[data-theme="light"] .whatsapp-header {
  background: #00a884;
}

.whatsapp-back {
  color: #8696a0;
  display: flex;
  align-items: center;
}

[data-theme="light"] .whatsapp-back {
  color: white;
}

.whatsapp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.whatsapp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.whatsapp-name {
  color: #e9edef;
  font-size: 14px;
  font-weight: 500;
}

[data-theme="light"] .whatsapp-name {
  color: white;
}

.whatsapp-status {
  color: #8696a0;
  font-size: 11px;
}

[data-theme="light"] .whatsapp-status {
  color: rgba(255, 255, 255, 0.8);
}

.whatsapp-actions {
  display: flex;
  gap: 15px;
  color: #8696a0;
}

[data-theme="light"] .whatsapp-actions {
  color: white;
}

/* WhatsApp Chat */
.whatsapp-chat {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23182228' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

[data-theme="light"] .whatsapp-chat {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4cfc4' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), #efeae2;
}

.whatsapp-date-badge {
  text-align: center;
  font-size: 10px;
  color: #8696a0;
  background: #1f2c34;
  padding: 4px 12px;
  border-radius: 6px;
  margin: 5px auto 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[data-theme="light"] .whatsapp-date-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #667781;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Messages */
.whatsapp-bubble {
  max-width: 85%;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  position: relative;
  animation: whatsappPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
}

.whatsapp-bubble.received {
  align-self: flex-start;
  background: #1f2c34;
  color: #e9edef;
  border-bottom-left-radius: 2px;
}

[data-theme="light"] .whatsapp-bubble.received {
  background: white;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.whatsapp-bubble.sent {
  align-self: flex-end;
  background: #005c4b;
  color: #e9edef;
  border-bottom-right-radius: 2px;
}

[data-theme="light"] .whatsapp-bubble.sent {
  background: #d9fdd3;
  color: #111b21;
}

.whatsapp-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
}

[data-theme="light"] .whatsapp-time {
  color: #667781;
}

.whatsapp-check {
  color: #53bdeb;
  font-size: 12px;
}

/* WhatsApp Input Bar */
.whatsapp-input-bar {
  background: #1f2c34;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="light"] .whatsapp-input-bar {
  background: #f0f2f5;
}

.whatsapp-emoji {
  font-size: 20px;
  cursor: pointer;
}

.whatsapp-input-field {
  flex: 1;
  background: #2a3942;
  padding: 8px 12px;
  border-radius: 20px;
  color: #8696a0;
  font-size: 13px;
}

[data-theme="light"] .whatsapp-input-field {
  background: white;
  color: #667781;
}

.whatsapp-mic {
  font-size: 18px;
  cursor: pointer;
}

/* Typing Indicator WhatsApp */
.whatsapp-typing {
  display: inline-flex;
  gap: 3px;
  padding: 10px 14px;
  background: #1f2c34;
  border-radius: 8px;
  align-self: flex-start;
  animation: fadeIn 0.3s forwards;
}

[data-theme="light"] .whatsapp-typing {
  background: white;
}

.whatsapp-typing-dot {
  width: 6px;
  height: 6px;
  background: #8696a0;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.whatsapp-typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.whatsapp-typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

/* Animations */
@keyframes whatsappPop {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Mobile Nav Fix for Theme */
@media (max-width: 768px) {
  .nav {
    background: var(--bg-card-solid);
  }

  .iphone-container {
    width: 240px;
    height: 480px;
    transform: rotate(0deg);
  }
}

/* ===== SECURITY BADGES ===== */
.security-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  min-width: 180px;
  transition: all var(--transition-base);
}

.security-badge:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--glow-sm);
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.security-text {
  font-weight: 600;
  color: var(--text-white);
  /* Ensures visibility in both themes */
  line-height: 1.4;
}

/* ===== APPOINTMENT INFO PAGE ===== */
.appointment-info-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
}

.info-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  color: var(--text-white);
}

.info-title .icon {
  font-size: 1.5rem;
}

.appointment-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.appt-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.appt-step:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.appt-num {
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--glow-sm);
  flex-shrink: 0;
}

.appt-txt {
  font-size: 0.938rem;
  color: var(--text-medium);
}

.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.stat-mini-card {
  text-align: center;
  padding: var(--space-md);
  background: rgba(27, 23, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 23, 255, 0.1);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.contact-card-premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  color: white !important;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-md);
}

.contact-card-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: white;
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(30px);
}

.contact-icon {
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-info h4 {
  color: white !important;
  margin-bottom: 4px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.contact-email {
  color: white !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.125rem;
  transition: var(--transition-base);
}

.contact-email:hover {
  text-decoration: underline;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .stats-mini-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-premium {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== PREMIUM BOOKING WIDGET ===== */
.booking-calendar-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow);
}

.calendar-header {
  background: linear-gradient(to right, rgba(27, 23, 255, 0.05), transparent);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
}

.calendar-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.calendar-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.mock-calendar-ui {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.calendar-month-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.month-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.calendar-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.calendar-grid-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cal-day:hover:not(.empty) {
  background: rgba(27, 23, 255, 0.1);
  color: var(--primary);
}

.cal-day.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(27, 23, 255, 0.3);
}

.cal-day.empty {
  cursor: default;
}

.time-slots-preview {
  margin-top: var(--space-md);
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-md);
}

.slots-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.time-pill {
  padding: 8px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(27, 23, 255, 0.05);
}

/* ===== CAROUSEL LOGOS CLIENTS ===== */
.carousel-clients-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  background: transparent;
}

/* On enlève les anciennes lignes pseudo-elements trop subtiles */
.carousel-clients-section::before,
.carousel-clients-section::after {
  display: none;
}

.carousel-title-section {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

.carousel-title-section h3 {
  font-size: 1.5rem;
  color: var(--text-medium);
  font-weight: 500;
}

.carousel-container {
  width: 100%;
  height: 120px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* Gradient mask for smooth fading on edges */
.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}

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

.logo-slide {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  padding: 0 var(--space-sm);
}

.logo-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7) contrast(1.2);
  opacity: 0.6;
  transition: all var(--transition-base);
}

.logo-slide:hover img {
  filter: grayscale(0%) brightness(1) contrast(1) drop-shadow(0 4px 12px var(--primary-glow));
  opacity: 1;
  transform: scale(1.05);
}

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

  100% {
    transform: translateX(calc(-50% - 2rem));
  }
}