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

:root {
  --primary: #6c2bd9;
  --primary-dark: #5219a8;
  --primary-light: #8b5cf6;
  --primary-glow: rgba(108, 43, 217, 0.5);
  --accent: #ec4899;
  --secondary: #10b981;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --dark-surface: #1a1f35;
  --white: #ffffff;
  --gray: #f1f5f9;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-light: rgba(255, 255, 255, 0.25);
  --shadow-glow-lg: 0 8px 40px var(--primary-glow);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --nav-height: 72px;
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1280px;
  --container-padding: clamp(1rem, 4vw, 2rem);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ========================================
           ANIMATIONS
        ======================================== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px var(--primary-glow);
  }
  50% {
    box-shadow: 0 0 40px var(--primary-glow);
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes blob-move {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(30px, 10px) scale(1.02);
  }
}

/* ========================================
           NAVIGATION - GLASSMORPHISM
        ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--duration-normal) var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.navbar-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar-logo img {
  height: 140px;
  transition: transform var(--duration-normal) var(--ease-spring);
  filter: drop-shadow(0 2px 8px rgba(108, 43, 217, 0.3));
}
.navbar-logo:hover img {
  transform: scale(1.05);
}
.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar-links a {
  text-decoration: none;
  color: var(--gray-200);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--duration-fast) ease;
}
.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-out-expo);
}
.navbar-links a:hover {
  color: var(--white);
}
.navbar-links a:hover::after {
  width: 100%;
}
.navbar-links a.login-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white) !important;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-glow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--duration-normal) var(--ease-spring);
  white-space: nowrap;
}
.login-btn::after {
  display: none !important;
}
.login-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px var(--primary-glow);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-spring);
}
.menu-toggle span:nth-child(1) {
  margin-bottom: 5px;
}
.menu-toggle span:nth-child(3) {
  margin-top: 5px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
           HERO SECTION
        ======================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--nav-height);
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(108, 43, 217, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse at 40% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 45%);
  animation: gradient-shift 15s ease-in-out infinite;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blob-move 20s ease-in-out infinite;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(108, 43, 217, 0.4), rgba(139, 92, 246, 0.2));
  top: -20%;
  right: -10%;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(108, 43, 217, 0.2));
  bottom: -10%;
  left: -5%;
  animation-delay: -7s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3rem var(--container-padding);
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {
  animation: slide-up 0.8s var(--ease-out-expo) both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary);
  animation: pulse-glow 2s ease-in-out infinite;
}
.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.hero-text p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 540px;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: left;
}
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-spring);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow-lg);
  position: relative;
  overflow: hidden;
}
.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: left 0.5s ease;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px var(--primary-glow);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid var(--glass-border-light);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scale-in 1s var(--ease-out-expo) 0.3s both;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

/* Hero Image */
.hero-visual .hero-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(108, 43, 217, 0.4));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-visual .hero-img {
    max-width: 220px;
  }
}

/* Mockup app styling */
.hero-visual .mockup-app {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(108, 43, 217, 0.5));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 3;
}

.hero-visual img:not(.mockup-app) {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(108, 43, 217, 0.4));
  animation: float 6s ease-in-out infinite;
}
.glow-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 2px solid rgba(108, 43, 217, 0.3);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

/* ========================================
           FEATURES SECTION
        ======================================== */
.content-wrapper {
  background: var(--white);
  position: relative;
}
.section {
  padding: var(--section-padding) var(--container-padding);
  position: relative;
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(108, 43, 217, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a; /* var(--dark) avec fallback explicite */
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.125rem;
  color: #64748b; /* var(--text-light) avec fallback explicite */
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--duration-normal) var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(108, 43, 217, 0.3);
}
.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a; /* var(--dark) */
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: #64748b; /* var(--text-light) */
  line-height: 1.7;
  margin-bottom: 1rem;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: gap var(--duration-fast) ease;
}
.feature-link:hover {
  gap: 0.75rem;
}

/* ========================================
           TESTIMONIALS
        ======================================== */
.testimonials-section {
  background: var(--gray-100);
  padding: var(--section-padding) var(--container-padding);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--duration-normal) var(--ease-spring);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}
.testimonial-text {
  font-size: 1rem;
  color: #1e293b; /* var(--text) */
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}
.author-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a; /* var(--dark) */
}
.author-info span {
  font-size: 0.8125rem;
  color: #64748b; /* var(--text-light) */
}

/* ========================================
           APP DOWNLOAD SECTION
        ======================================== */
.app-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--section-padding) var(--container-padding);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -300px;
  right: -200px;
}
.app-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -200px;
  left: -100px;
}
.app-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.app-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.app-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.app-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.app-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 1rem;
}
.app-feature i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all var(--duration-normal) var(--ease-spring);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.store-btn.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.store-btn.disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.store-btn i {
  font-size: 1.5rem;
}
.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.store-btn-text small {
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.7;
}
.store-btn-text span {
  font-size: 1rem;
}
.app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.app-visual img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: float 6s ease-in-out infinite;
}
.app-badge {
  position: absolute;
  bottom: 10%;
  right: 10%;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: float 4s ease-in-out infinite;
  animation-delay: -2s;
}
.app-badge i {
  color: var(--secondary);
  font-size: 1.25rem;
}
.app-badge span {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .app-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .app-features {
    align-items: center;
  }
  .store-buttons {
    justify-content: center;
  }
  .app-visual {
    order: -1;
  }
  .app-visual img {
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  .store-buttons {
    flex-direction: column;
    width: 100%;
  }
  .store-btn {
    justify-content: center;
    width: 100%;
  }
  .app-visual img {
    max-width: 70%;
  }
  .app-badge {
    bottom: 5%;
    right: 15%;
    padding: 0.5rem 0.75rem;
  }
  .app-badge span {
    font-size: 0.75rem;
  }
}

/* ========================================
           CTA SECTION
        ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: var(--section-padding) var(--container-padding);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 43, 217, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: -250px;
  right: -250px;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.phone-number {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid var(--glass-border-light);
  transition: all var(--duration-normal) var(--ease-spring);
}
.phone-number:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 0 40px var(--primary-glow);
}
.phone-number i {
  font-size: 1.25rem;
  color: var(--secondary);
}

/* ========================================
           FOOTER
        ======================================== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
}
.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3rem var(--container-padding);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 120px;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.75rem;
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--duration-fast) ease;
}
.footer-col a:hover {
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--duration-normal) var(--ease-spring);
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--duration-fast) ease;
}
.footer-legal a:hover {
  color: var(--white);
}

/* ========================================
           SCROLL ANIMATIONS
        ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out-expo);
}
.fade-up.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;
}

/* ========================================
           RESPONSIVE
        ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .cta-group {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-visual img {
    max-width: 60%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  .menu-toggle {
    display: flex;
  }
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right var(--duration-normal) var(--ease-out-expo);
    border-left: 1px solid var(--glass-border);
  }
  .navbar-links.active {
    right: 0;
  }
  .navbar-links a {
    font-size: 1.25rem;
  }
  .navbar-links a::after {
    display: none;
  }
  .hero {
    padding-top: calc(var(--nav-height) + 1rem);
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-visual img {
    max-width: 70%;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .stat-value {
    font-size: 1.5rem;
  }
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .social-links {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .stat-item {
    text-align: center;
  }
  .phone-number {
    font-size: 1.25rem;
    padding: 0.875rem 1.5rem;
  }
  .section-header h2 {
    font-size: 1.75rem;
  }
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* Feature Modals */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 2rem;
}
.modal-overlay.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 1;
  padding-top: 5vh;
  padding-bottom: 5vh;
}
.modal-content {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 80px rgba(108, 43, 217, 0.2);
  margin: auto 0;
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  color: #64748b;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: rotate(90deg);
}
.modal-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}
.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}
.modal-description {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.modal-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.modal-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.modal-feature-text h4 {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.modal-feature-text p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}
.modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(108, 43, 217, 0.4);
}
@media (max-width: 768px) {
  .modal-overlay {
    padding: 1rem;
  }
  .modal-overlay.active {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .modal-content {
    padding: 1.5rem;
  }
  .modal-title {
    font-size: 1.5rem;
  }
  .modal-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
