@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Urbanist";
  src: url("assets/fonts/Urbanist/static/Urbanist-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {


  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* letter-spacing: .5px; */
}

:root {
  --bg-primary: #000000;
  --bg-secondary: rgba(255, 255, 255, 0.03);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --accent: #b71c1c;
  --accent-hover: #8b0000;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: rgba(0, 0, 0, 0.5);
  --success: #34c759;
  --warning: var(--accent);
}

[data-theme="light"] {
  --bg-primary: #f2f2f7;
  --bg-secondary: rgba(0, 0, 0, 0.03);
  --text-primary: #000000;
  --text-secondary: rgba(0, 0, 0, 0.6);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.1);
  --shadow: rgba(0, 0, 0, 0.1);
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: "Urbanist", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.5;
  font-size: clamp(16px, 1.8vw, 18px);
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  transition: all 0.3s ease;
}

/* Animated Background */
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(183, 28, 28, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 28, 28, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.15;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.sphere-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.sphere-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--accent-hover) 0%, #dc143c 100%);
  bottom: -150px;
  left: -100px;
  animation-delay: 5s;
}

.sphere-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #cd5c5c 0%, #ff6347 100%);
  top: 50%;
  right: -175px;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Settings Controls */
.settings-controls {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  gap: 2px;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 4px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  min-width: 36px;
  min-height: 36px;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 1);
}

.control-btn svg {
  fill: currentColor;
  transition: fill 0.3s ease;
}

/* Hero Image Section with Blur Effect */
.hero-image-section {
  position: relative;
  margin-top: 60px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero-image-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 85%;
  height: 40px;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.7));
  pointer-events: none;
  z-index: 1;
}

/* Trust Text Styling */
.trust-text {
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 40px 0 20px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Hero Logo Responsive */
  .hero-logo-section {
    top: 2px;
    left: 20px;
  }

  .hero-logo-text {
    font-size: 20px;
  }

  .hero-logo-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .settings-controls {
    top: 15px;
    right: 15px;
    gap: 6px;
  }

  .control-btn {
    min-width: 32px;
    min-height: 32px;
    padding: 6px;
    font-size: 10px;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: clamp(20px, 2.8vw, 24px);
  font-weight: 700;
  color: #ffffff;
  margin-top: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin-left: -5%;
}

.lang-dropdown {
  position: absolute;
  right: 20px;
}

/* Mobile language selector in menu */
.mobile-only {
  display: none;
}

.lang-dropdown-toggle-mobile {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
  width: 100%;
  justify-content: center;
}

.lang-dropdown-toggle-mobile:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 16px);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.contact-btn {
  background: #ffffff;
  color: #000000;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 16px);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Urgency Badge */
.urgency-badge {
  position: absolute;
  top: -14px;
  right: -8px;
  background: #dc2626;
  color: white;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 20px;
  font-weight: 500;
  animation: pulse-badge 2s infinite;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
  white-space: nowrap;
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Menu Hamburger */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-container {
    padding: 0 15px;
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo img {
    width: 150px;
    height: auto;
  }



  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    gap: 20px;
    z-index: 999;
    overflow-y: auto;
    display: flex !important;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
    color: #fff;
  }

  .lang-item {
    width: 100%;
    margin-top: 20px;
  }

  .lang-dropdown {
    display: none; /* Cacher le desktop lang selector sur mobile */
  }

  .mobile-only {
    display: block; /* Afficher le mobile lang selector */
  }

  .contact-btn {
    display: none;
  }

  .hamburger-menu {
    display: block;
    position: absolute;
    right: 15px;
  }
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
}

/* Hero Logo Section - CRO Optimized */
.hero-logo-section {
  position: absolute;
  top: 15px;
  left: 60px;
  z-index: 10;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-logo-text {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.2));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ffd700;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: 20px;
  margin-top: 0px;
}

/* Success Metrics Section */
.success-metrics-section {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 30px;
  padding: 0 20px;
}

.success-metrics-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.success-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.success-metric-card {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.success-metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ff6b35);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.success-metric-card.animate::before {
  transform: translateX(0);
}

.success-metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.metric-icon {
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.metric-number {
  font-size: clamp(36px, 8vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.metric-suffix {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 600;
  color: #ffffff;
}

.metric-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.metric-sublabel {
  font-size: 14px;
  color: #ffffff;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

/* Testimonials qui défilent */
.metrics-testimonials {
  position: relative;
  overflow: hidden;
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-track {
  display: flex;
  animation: slideTestimonials 15s linear infinite;
  gap: 48px;
  align-items: center;
  height: 100%;
}

.testimonial-item {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  min-width: 300px;
  padding: 0 24px;
}

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

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

.testimonial-content p {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2px;
}

.testimonial-content span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}

@keyframes slideTestimonials {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .success-metrics-container {
    padding: 32px 20px;
  }

  .success-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }

  .success-metric-card {
    padding: 16px;
  }

  .testimonial-item {
    min-width: 250px;
    padding: 0 16px;
  }
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Mockups Section */
.hero-mockups-section {
  width: 100%;
  max-width: 1400px;
  margin: 60px auto 30px;
  padding: 0 20px;
  position: relative;
}

.mockups-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  perspective: 1000px;
  min-height: 500px;
}

.mockup-item {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.mockup-item:hover {
  transform: translateY(-20px);
}

.mockup-device {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.mockup-device::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  border-radius: 32px;
  pointer-events: none;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mockup-item:hover .mockup-image {
  transform: scale(1.05);
}

.mockup-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent), #ff6b35);
  border-radius: 34px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.mockup-item:hover .mockup-glow {
  opacity: 0.3;
}

.mockup-label {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.mockup-item:hover .mockup-label {
  opacity: 1;
  bottom: -50px;
}

.mockup-category {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mockup-label h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Positionnement spécifique */
.mockup-left {
  transform: rotateY(15deg) rotateX(5deg);
  z-index: 1;
}

.mockup-center {
  transform: translateY(-30px);
  z-index: 3;
}

.mockup-center .mockup-device {
  width: 320px;
  height: 640px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.mockup-right {
  transform: rotateY(-15deg) rotateX(5deg);
  z-index: 1;
}

.mockup-left:hover,
.mockup-right:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-20px);
}

.mockup-center:hover {
  transform: translateY(-50px);
}

/* Floating Stats */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(20px);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.floating-stat:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-stat:nth-child(2) {
  top: 30%;
  right: 5%;
  animation-delay: 2s;
}

.floating-stat:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 4s;
}

.stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

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

/* Responsive Mockups */
@media (max-width: 1024px) {
  .mockups-container {
    gap: 20px;
  }

  .mockup-device {
    width: 220px;
    height: 440px;
  }

  .mockup-center .mockup-device {
    width: 260px;
    height: 520px;
  }

  .floating-stat {
    padding: 12px 16px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .mockups-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    min-height: auto;
  }

  .mockup-left,
  .mockup-right {
    transform: none;
  }

  .mockup-center {
    transform: none;
    order: -1;
  }

  .mockup-device {
    width: 200px;
    height: 400px;
  }

  .mockup-center .mockup-device {
    width: 240px;
    height: 480px;
  }

  .floating-elements {
    display: none;
  }

  .mockup-label {
    position: static;
    transform: none;
    opacity: 1;
    margin-top: 20px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  /* background: linear-gradient(135deg, #5b1203, #a31c0b); */
  border: 1px solid rgba(241, 127, 127, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 20px;
  backdrop-filter: blur(10px);
  gap: 8px;
  color: #ffffff;
}

/* Hero Badges - Unique Color CRO Optimized */
.hero-badge.hero-badge-unique {
  border-color: rgba(192, 192, 192, 0.4);
  background: rgba(192, 192, 192, 0.1);
  color: #e5e5e5;
}

.hero-badge.hero-badge-unique .check-circle {
  background: #e5e5e5;
}

.hero-badge.hero-badge-unique:hover {
  border-color: rgba(192, 192, 192, 0.6);
  background: rgba(192, 192, 192, 0.2);
  transform: translateY(-2px);
}

.hero-badges-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.check-circle {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.animated-badge {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badges-container:hover .animated-badge {
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.animated-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px) scale(1.05);
}

.animated-badge:hover .check-circle {
  background: rgb(208, 109, 87);
  box-shadow: 0 4px 12px rgba(113, 11, 7, 0.4);
  transform: scale(1.1);
}

.hero-title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #e5e5e5 0%, #b8b8b8 50%, #d3d3d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Trust Signals */
.hero-trust-signals {
  margin: 30px 0 40px;
  text-align: center;
}

.trust-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-logos-scroll {
  overflow: hidden;
  margin: 0 auto;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scroll-logos 25s linear infinite;
  padding: 0 40px;
}

.hero-logo-item {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-logo-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;

}

.hero-cta > a > p {
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(14px, 2vw, 16px);
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary-with-avatar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent), #8b0000);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.4);
  position: relative;
  overflow: visible;
  letter-spacing: -0.01em;
}

.btn-primary-with-avatar:hover {
  background: linear-gradient(135deg, #8b0000, #5f0000);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(183, 28, 28, 0.6);
  padding: 14px 20px;
}

.cta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  order: 2;
}

.btn-primary-with-avatar:hover .cta-avatar {
  transform: scale(1.1);
  border-color: rgba(0, 0, 0, 0.2);
}

.calendar-icon-circle {
  width: 0;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(20px) scale(0.7);
  opacity: 0;
  order: 0;
  overflow: hidden;
}

.btn-primary-with-avatar:hover .calendar-icon-circle {
  opacity: 1;
  width: 32px;
  transform: translateY(0) scale(1.1);
  background: linear-gradient(135deg, #5b1203, #a31c0b);
  border-color: rgba(241, 127, 127, 0.3);
}

/* Conversion CTA Button - CRO Optimized */
.btn-conversion-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-conversion-cta::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.6s;
}

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

.btn-conversion-cta:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
  color: #ffffff;
  text-decoration: none;
}

.btn-conversion-cta .calendar-icon-circle {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-conversion-cta:hover .calendar-icon-circle {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.btn-conversion-cta .cta-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-conversion-cta:hover .cta-avatar {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: #ffffff;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Success Metrics Animés */
.success-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.metric-number {
  font-size: 48px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.trust-text {
  color: rgba(0, 0, 0, 0.8);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}

.services-scroll {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 16px 0;
}

.services-track {
  display: flex;
  gap: 40px;
  animation: scroll-services 25s linear infinite;
  width: fit-content;
}

.services-track span {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 18px;
  position: relative;
}

.services-track span::after {
  content: "•";
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.4);
}

.services-track span:last-child::after {
  display: none;
}

@keyframes scroll-services {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Logo Wall des Apps Créées - Style SaaS */
.logos-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 15%,
    white 85%,
    transparent
  );
}

.logos-track {
  display: flex;
  gap: 20px;
  animation: scroll-horizontal 30s linear infinite;
  width: fit-content;
  align-items: center;
  padding: 0 40px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 100px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.7;
}

.logo-item:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.app-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Tooltip pour les stats */
.app-stats {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  margin-bottom: 8px;
}

.logo-item:hover .app-stats {
  opacity: 1;
}

.app-logo img,
.app-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  filter: grayscale(100%) brightness(0.8) opacity(0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  object-fit: cover;
}

.logo-item:hover .app-logo {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.logo-item:hover .app-logo img,
.logo-item:hover .app-logo {
  filter: grayscale(0%) brightness(1) contrast(1) opacity(1);
  transform: scale(1.05);
}

.logo-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-item:hover span {
  opacity: 1;
}

@keyframes scroll-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mini Testimonials */
.mini-testimonials {
  padding: 60px 24px;
}

.mini-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mini-testimonial {
  text-align: center;
  padding: 24px;
}

.mini-testimonial p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  line-height: 1.5;
}

.mini-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.mini-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.trust-section {
  /* padding: 40px 24px 30px; */
  margin-bottom: 10px;
  text-align: center;
}

.trust-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Process Section - Glassmorphism Style */


.lang-modal-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.process-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 70%
  );
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
}

.process-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: clamp(18px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 400;
}

.process-grid {
  display: grid;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

/* Central vertical line */
.process-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0.1) 90%,
    transparent 100%
  );
  transform: translateX(-50%);
  z-index: 0;
}

.process-step {
  min-height: 35vh;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

/* Ligne colorée pour le step actuel */
.process-step.current-step::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #dc2626;
  transform: translateX(-50%);
  z-index: -1;
}

.process-step:hover::after {
  opacity: 1;
}

.process-step:nth-child(even) .step-content {
  order: 2;
}

.process-step:nth-child(even) .step-placeholder {
  order: 1;
}

.step-content {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 480px;
  flex: 1;
}

.step-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-content:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.step-emoji {
  position: absolute;
  top: -40px;
  right: 30px;
  font-size: 80px;
  opacity: 0.15;
  filter: none;
  user-select: none;
  z-index: 0;
  transition: all 0.4s ease;
}

.step-content:hover .step-emoji {
  opacity: 0.2;
  transform: scale(1.1) rotate(5deg);
}

.step-placeholder {
  flex: 1;
}

.step-day {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-day-number {
  background: rgba(255, 255, 255, 0.2);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.step-content h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e5e5e5 0%, #b8b8b8 50%, #d3d3d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step-outcome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.step-outcome:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.step-outcome-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Connection dots on the vertical line */
.process-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #0a0a0a;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.4s ease;
}

/* Pulse animation when visible */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.process-step.visible::before {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  animation: pulse 2s infinite;
}

.process-step.current-step::before {
  background: #dc2626;
  border-color: #dc2626;
}

.process-step:hover::before {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.5),
    0 0 80px rgba(255, 255, 255, 0.3);
  width: 28px;
  height: 28px;
  animation: none;
}

/* On scroll animation for steps */
.process-step {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.process-step:nth-child(1).visible {
  transition-delay: 0s;
}
.process-step:nth-child(2).visible {
  transition-delay: 0.1s;
}
.process-step:nth-child(3).visible {
  transition-delay: 0.2s;
}
.process-step:nth-child(4).visible {
  transition-delay: 0.3s;
}
.process-step:nth-child(5).visible {
  transition-delay: 0.4s;
}

/* Comparison Section */
.comparison-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.comparison-column {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.comparison-column.featured {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.comparison-column h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}

.price-tag {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 32px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.comparison-list {
  list-style: none;
  min-height: 400px;
}

.comparison-list li {
  padding: 12px 0;
  font-size: 17px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li.positive {
  color: rgba(34, 197, 94, 0.9);
}

.comparison-list li.negative {
  color: rgba(255, 255, 255, 0.5);
}

.comparison-column.featured .comparison-list li.positive {
  color: #22c55e;
  font-weight: 500;
}

.features-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;

  position: relative;
}

/* .features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  z-index: -1;
} */

.features-section .section-header {
  color: #1f2937;
}

.features-section .section-title {
  color: var(--accent-hover);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 42px);
}

.features-section .section-subtitle {
  color: #333333;
  font-size: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  transition: all 0.3s ease;
  background: transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e5e5e5 0%, #b8b8b8 50%, #d3d3d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.feature-card p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 100px 20px;
  position: relative;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 2rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.services-section .section-title {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 600;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #e5e5e5 0%, #b8b8b8 50%, #d3d3d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.03em;
}

.services-section .section-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px 32px;
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(-2deg);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Card specific colors */
.service-card:nth-child(1) {
  --accent: #f59e0b;
}
.service-card:nth-child(2) {
  --accent: #8b5cf6;
}
.service-card:nth-child(3) {
  --accent: #10b981;
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-header {
  margin-bottom: 32px;
  position: relative;
}

.features-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.features-row:last-child {
  margin-bottom: 0;
}

.feature-item {
  flex: 1;
  text-align: center;
  padding: 0 15px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background-color: #000000;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    50% 0%,
    83% 12%,
    100% 43%,
    94% 78%,
    68% 100%,
    32% 100%,
    6% 78%,
    0% 43%,
    17% 12%
  );
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: #ff5722;
  fill: currentColor;
}

.feature-item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000000;
}

.feature-item p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features-row {
    flex-direction: column;
  }

  .feature-item {
    margin-bottom: 40px;
  }

  .features-row:last-child .feature-item:last-child {
    margin-bottom: 0;
  }
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: absolute;
  top: -50px;
  left: -30px;
  transform: rotate(-5deg);
  transition: all 0.4s ease;
  z-index: 2;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
}

.service-card:hover .particle {
  animation: particle-float 3s ease-in-out infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(random(-50, 50) px);
    opacity: 0;
  }
}

.service-title {
  font-size: clamp(24px, 3.2vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e5e5e5 0%, #b8b8b8 50%, #d3d3d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 32px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-features li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
  margin-right: 12px;
  flex-shrink: 0;
}

.feature-icon {
  width: auto;
  height: auto;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.tech-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.tech-badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Services Premium Styles - CRO Optimized */
.premium-service {
  border: 2px solid transparent;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  position: relative;
}

.premium-service::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2, #4facfe, #00f2fe);
  border-radius: 20px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
}

.service-premium-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  }
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-features span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 8px;
  position: relative;
}

.service-features span::before {
  content: "→";
  position: absolute;
  left: -8px;
  color: #4facfe;
  font-weight: 500;
}

.service-price {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  backdrop-filter: blur(10px);
}

.services-cta {
  margin-top: 60px;
  text-align: center;
  padding: 48px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.services-cta-content h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #ffffff;
}

.services-cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* REVOLUTIONARY SERVICE CARDS DESIGN */
.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.premium-service:hover .service-feature::before {
  transform: scaleY(1);
}

.service-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px);
}

.feature-icon {
  width: 120px;
  height: 120px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  border-radius: 6px;
  font-size: 14px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.service-cta-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  width: 100%;
}

.service-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #764ba2, #667eea);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-cta-btn:hover::before {
  opacity: 1;
}

.service-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

/* Responsive Services */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .services-section .section-title {
    font-size: clamp(28px, 5vw, 36px);
  }

  .service-card {
    padding: 30px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  margin-top: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer-content {
  padding: 0 32px 24px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Logos Section */
.logos-section {
  padding: 80px 24px;
  margin: 60px auto;
  max-width: 1400px;
}

/* Testimonials */
.testimonials {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  mask: linear-gradient(
    90deg,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
  max-width: 100%;
  overflow: hidden;
}

.testimonials-column {
  display: flex;
  flex-direction: row;
  gap: 30px;
  animation: scroll-testimonials-horizontal 60s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}

.testimonials-column-delayed {
  animation-delay: -30s;
  animation-duration: 65s;
  animation-direction: reverse;
}

@keyframes scroll-testimonials-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 30px));
  }
}

.testimonials-container:hover .testimonials-column {
  animation-play-state: paused;
}

/* Testimonials Navigation Arrows */
.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.testimonials-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonials-arrow-left {
  left: 40px;
}

.testimonials-arrow-right {
  right: 40px;
}

/* Testimonials Pagination Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  z-index: 10;
  position: relative;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  width: 32px;
  border-radius: 6px;
}

.testimonial-dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
}

.testimonial-card {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
  min-height: 150px;
  width: 400px;
  max-width: 450px;
  min-width: 350px;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.author-info h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Pricing */
.pricing-section {
  padding: 120px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px 32px;
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.07);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


.pricing-header h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e5e5e5 0%, #b8b8b8 50%, #d3d3d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.price-prefix {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 56px;
  font-weight: 500;
  margin: 8px 0 16px;
  line-height: 1;
}

.price-amount sup {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  top: -20px;
}

.price-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 16px;
  margin-top: -8px;
  text-decoration: underline;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
  text-align: left;
}

.pricing-features li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: auto;
}

/* CTA Section */
.cta-section {
  border-radius: 24px;
  /* padding: 60px 40px; */
  text-align: center;
  /* margin: 80px 0; */
}

.cta-section h2 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 500;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e5e5e5 0%, #b8b8b8 50%, #d3d3d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}
.brand-section {
  text-align: left;
}

.social-links {
  margin-left: 0;
  justify-content: flex-start;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* WhatsApp Strategic Pulse Animation */
.whatsapp-pulse {
  animation: whatsappPulse 3s ease-in-out;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  30% {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  60% {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6),
      0 0 0 20px rgba(37, 211, 102, 0.05);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
}

/* Notification badge for WhatsApp */
.whatsapp-notification {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.whatsapp-notification.show {
  opacity: 1;
  transform: scale(1);
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: scale(1);
  }
  40%,
  43% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1.1);
  }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 60px 8px 30px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    margin-top: 0px;
    margin-bottom: 15px;
    max-width: 100%;
    padding: 0 8px;
    width: 100%;
  }

  .hero-title {
    margin-bottom: 16px;
    font-size: clamp(32px, 11vw, 52px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    width: 100%;
    max-width: 100%;
  }

  .hero-subtitle {
    margin-bottom: 12px;
    padding: 0;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-badge{
    margin-bottom: 12px;
  }

  .hero-badges-container {
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 24px;
    padding: 0 10px;
  }
  .hero-badges-container::-webkit-scrollbar {
    display: none;
  }
  .hero-badge.animated-badge {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    padding: 6px 14px;
  }
  .hero-image-section {
    margin-top: 20px;
    position: relative;
  }
  .hero-image {
    max-width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: contain;
  }

  .hero-image-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 90%;
    height: 30px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.6));
    pointer-events: none;
  }


  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .mini-testimonials-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-section,
  .features-section,
  .services-section,
  .testimonials,
  .pricing-section,
  .faq-section,
  .logos-section {
    padding: 60px 16px;
  }

  /* Fix logos slider for mobile */
  .logos-track {
    gap: 16px;
    animation-duration: 25s;
  }

  .logo-item {
    min-width: 80px;
  }

  .app-logo {
    width: 56px;
    height: 56px;
  }

  .app-logo img,
  .app-logo {
    width: 40px;
    height: 40px;
  }

  .section-header {
    margin-bottom: 60px;
  }

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

  .services-section,
  .cta-section,
  .comparison-section {
    padding: 60px 24px;
  }

  .testimonials-container {
    flex-direction: column;
    max-height: 500px;
    gap: 15px;
    mask: linear-gradient(
      180deg,
      transparent 0%,
      white 15%,
      white 85%,
      transparent 100%
    );
    -webkit-mask: linear-gradient(
      180deg,
      transparent 0%,
      white 15%,
      white 85%,
      transparent 100%
    );
  }

  .testimonials-column {
    flex-direction: column;
    animation: scroll-testimonials 35s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .testimonials-column-delayed {
    animation-delay: -17s;
    animation-duration: 40s;
    animation-direction: normal;
  }

  @keyframes scroll-testimonials {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(calc(-100% - 20px));
    }
  }

  .testimonial-card {
    width: 95%;
    min-width: 260px;
    max-width: 380px;
    margin: 0 auto 15px;
    padding: 20px;
  }

  /* Hide arrows on mobile */
  .testimonials-arrow {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .testimonials-arrow-left {
    left: 10px;
  }

  .testimonials-arrow-right {
    right: 10px;
  }

  .testimonials-dots {
    margin-top: 30px;
    gap: 8px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }

  .testimonial-dot.active {
    width: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .price-prefix {
    font-size: 12px;
  }

  .price-amount {
    font-size: 48px;
  }

  .process-grid {
    gap: 40px;
  }

  .process-step {
    flex-direction: column;
    gap: 24px;
    min-height: auto;
    padding: 20px 0;
  }

  .process-step:nth-child(even) .step-content {
    order: 1;
  }

  .step-placeholder {
    display: none;
  }

  .process-grid::before {
    display: none;
  }

  .process-step::before {
    display: none;
  }

  .process-step::after {
    display: none;
  }

  .step-content {
    max-width: 100%;
    padding: 40px 24px;
  }

  .step-content h3 {
    font-size: 24px;
  }

  .step-content p {
    font-size: 18px;
  }

  .step-emoji {
    font-size: 60px;
    top: -30px;
    right: 20px;
  }

  .step-outcome {
    padding: 16px 20px;
    font-size: 18px;
  }

  .locations {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-container {
    padding: 0 20px;
  }

  .comparison-table {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-column.featured {
    transform: scale(1);
    order: -1;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 50px auto 0;
  }

  .comparison-table {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 50px auto 0;
  }

  .mini-testimonials-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

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

  .testimonials-container {
    flex-direction: column;
  }

  .testimonials-column {
    flex-direction: column;
    animation: scroll-testimonials 40s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .testimonials-column-delayed {
    animation-delay: -20s;
    animation-duration: 45s;
  }

  .testimonial-card {
    width: 90%;
    min-width: 280px;
    max-width: 400px;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
  .process-step {
    gap: 40px;
  }

  .step-content {
    max-width: 420px;
    padding: 32px 28px;
  }

  .comparison-column {
    padding: 28px 20px;
  }

  .pricing-card {
    padding: 32px 20px;
  }
}

/* Projects Section */
.projects-section {
  padding: 100px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
  margin-top: 40px;
  justify-items: center;
  scroll-behavior: smooth;
}

.project-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.25);
}

.project-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-cover {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.project-card:hover .project-cover img {
  transform: scale(1.05);
  /* padding-right: 4px; */
}

.project-info {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}

.project-badge.status-live {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-badge.status-development {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-badge.category {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-badge.business {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.project-result {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.project-metrics-period {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
}

.project-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-metric {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.project-metric-value {
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.project-case-study-link {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: auto;
  align-self: center;
}

.project-case-study-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .projects-section {
    padding: 60px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .project-card {
    height: auto;
    min-height: 280px;
  }

  .project-cover {
    height: 160px;
  }

  .project-info {
    padding: 20px;
    gap: 12px;
  }

  .project-title {
    font-size: 1.2rem;
  }

  .project-result {
    font-size: 1rem;
  }

  .project-metrics {
    gap: 8px;
  }

  .project-metric {
    padding: 6px 10px;
  }

  .project-metric-value {
    font-size: 0.8rem;
  }

  .project-case-study-link {
    font-size: 0.75rem;
  }
}

/* Use Cases Section */
.use-cases-section {
  padding: 100px 20px 50px;
  position: relative;
  overflow: hidden;
  scroll-behavior: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.use-cases-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  /* background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%); */
  top: -300px;
  right: -300px;
  pointer-events: none;
}

/* Stacked Cards Container */
.stacked-cards-container {
  position: relative;
  min-height: 200vh; /* Allows for scroll-based animation */
  margin: 60px auto 0;
  padding: 0 20px;
  max-width: 1200px;
}

/* Card Stack */
.card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projects-swiper .swiper-wrapper {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
}

/* Enhanced card stacking with realistic 3D effect */
.projects-swiper .swiper-slide {
  width: 90%;
  height: 450px;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform-style: preserve-3d;
}

/* Previous slides - above and hidden */
.projects-swiper .swiper-slide-prev {
  z-index: 2;
  transform: translateX(-100%) scale(0.9);
  opacity: 0;
}

/* Active slide - fully visible and centered */
.projects-swiper .swiper-slide-active {
  z-index: 10;
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
}

/* First stacked card - slightly offset */
.projects-swiper .swiper-slide-next {
  z-index: 9;
  transform: translateX(40px) translateY(30px) scale(0.95) rotateZ(-2deg);
  opacity: 1;
}

/* Second stacked card - more offset */
.projects-swiper .swiper-slide-next + .swiper-slide {
  z-index: 8;
  transform: translateX(80px) translateY(60px) scale(0.9) rotateZ(1deg);
  opacity: 0.95;
}

/* Third stacked card - even more offset */
.projects-swiper .swiper-slide-next + .swiper-slide + .swiper-slide {
  z-index: 7;
  transform: translateX(120px) translateY(90px) scale(0.85) rotateZ(-1deg);
  opacity: 0.9;
}

/* Fourth stacked card */
.projects-swiper
  .swiper-slide-next
  + .swiper-slide
  + .swiper-slide
  + .swiper-slide {
  z-index: 6;
  transform: translateY(80px) translateX(8px) scale(0.8) rotateX(-8deg)
    rotateZ(0.5deg);
  opacity: 0.85;
}

/* Other slides - hidden below */
.projects-swiper
  .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(
    .swiper-slide-next
  ):not(.swiper-slide-next + .swiper-slide):not(
    .swiper-slide-next + .swiper-slide + .swiper-slide
  ):not(.swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide) {
  z-index: 1;
  transform: translateY(100px) scale(0.75) rotateX(-10deg);
  opacity: 0;
  pointer-events: none;
}

/* Swiper Navigation for Vertical */
.projects-swiper .swiper-button-next,
.projects-swiper .swiper-button-prev {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(20, 20, 20, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  left: 50%;
  margin-left: -25px;
}

.projects-swiper .swiper-button-next {
  bottom: 20px;
  top: auto;
  transform: rotate(90deg);
}

.projects-swiper .swiper-button-prev {
  top: 20px;
  bottom: auto;
  transform: rotate(90deg);
}

.projects-swiper .swiper-button-next:after,
.projects-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.projects-swiper .swiper-button-next:hover,
.projects-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

/* Swiper Pagination Vertical */
.projects-swiper .swiper-pagination {
  right: 20px;
  left: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.projects-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.projects-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
  width: 10px;
  height: 30px;
  border-radius: 5px;
}

/* Swiper Scrollbar */
.projects-swiper .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.1);
  height: 4px;
  border-radius: 2px;
}

.projects-swiper .swiper-scrollbar-drag {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.use-case-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  height: 100%;
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.swiper-slide-active .use-case-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.25),
    0 24px 48px rgba(0, 0, 0, 0.35), 0 48px 96px rgba(0, 0, 0, 0.5);
}

/* Different shadows for stacked cards */
.swiper-slide-next .use-case-card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.2);
}

.swiper-slide-next + .swiper-slide .use-case-card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.12),
    0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hover effects pour les cards */
.use-case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.use-case-image {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  position: relative;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
}

.use-case-screenshot::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 2;
}

.use-case-card:hover .use-case-screenshot::before {
  left: 100%;
}

.use-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px 0 0 24px;
  transform: scale(1.05) translateY(10px);
  position: absolute;
  top: 0;
  left: 0;
}

.use-case-image img.active {
  opacity: 0.9;
  transform: scale(1) translateY(0);
}

.use-case-image img.next {
  opacity: 0;
  transform: scale(0.95) translateY(-10px);
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: scale(1.05) translateX(30px) translateY(10px);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.02) translateX(0) translateY(5px);
  }
  100% {
    opacity: 0.9;
    transform: scale(1) translateX(0) translateY(0);
  }
}

@keyframes slideOutToLeft {
  0% {
    opacity: 0.9;
    transform: scale(1) translateX(0) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.98) translateX(-15px) translateY(-5px);
  }
  100% {
    opacity: 0;
    transform: scale(0.95) translateX(-30px) translateY(-10px);
  }
}

.use-case-image img.entering {
  animation: slideInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.use-case-image img.leaving {
  animation: slideOutToLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.use-case-card:hover .use-case-screenshot img {
  transform: scale(1.05);
  opacity: 1;
}

.use-case-content {
  padding: 24px;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.use-case-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.use-case-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.use-case-badge.status-live {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.use-case-badge.status-development {
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.use-case-category-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.use-case-type-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.use-case-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.use-case-metrics {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.use-case-metric {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.use-case-timeline {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-period {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  margin-top: 12px;
}

.timeline-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.use-case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.use-case-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.use-case-metrics {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.metric-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.use-case-result {
  font-size: 24px;
  font-weight: 500;
  color: #22c55e;
  margin: 16px 0;
  line-height: 1.2;
}

.use-case-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.use-case-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.use-case-tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.use-case-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.use-case-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.use-case-link:hover {
  color: #8b5cf6;
  transform: translateX(4px);
}

.use-case-roi {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Live indicator */
.live-indicator {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #dc2626;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse-live 2s infinite;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes pulse-live {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0.3;
  }
}

/* Cal.com inline embed section */
.cal-inline-section {
  padding: 80px 20px;
}

.cal-inline-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cal-inline-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #ffffff;
}

.cal-inline-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

#my-cal-inline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  height: 600px;
  overflow: hidden;
}

/* Prevent horizontal overflow on all containers */
.container,
.nav-container,
.hero-container,
.section,
.use-case-grid,
.testimonials-container {
  max-width: 100%;
  overflow-x: hidden;
}

.pricing-grid {
  max-width: 100%;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Fix wide elements */
pre,
code {
  overflow-x: auto;
  max-width: 100%;
}

/* Exit Intent Popup */
#exit-intent-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.exit-popup-content {
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.95) 0%,
    rgba(25, 25, 25, 0.95) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  animation: popIn 0.4s ease forwards;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes popIn {
  to {
    transform: scale(1);
  }
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.exit-popup-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.exit-popup-emoji {
  font-size: 60px;
  margin-bottom: 20px;
  display: block;
}

.exit-popup-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exit-popup-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.5;
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.exit-popup-input {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.exit-popup-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.exit-popup-input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.08);
}

.exit-popup-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.exit-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.exit-popup-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  text-align: left;
}

.exit-popup-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.exit-popup-benefit-icon {
  color: #22c55e;
  font-weight: bold;
}

/* App Store Links */
.app-store-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: start;
  justify-content: flex-start;
}

.app-store-links a {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.app-store-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
  text-decoration: none;
  color: white;
}

/* App Store - iOS couleurs */
.app-store-links a[href*="apps.apple.com"] {
  background: linear-gradient(135deg, #000000, #1c1c1e);
}

.app-store-links a[href*="apps.apple.com"]:hover {
  background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
}

/* Play Store - Google couleurs */
.app-store-links a[href*="play.google.com"] {
  background: linear-gradient(135deg, #01875f, #0f9d58);
}

.app-store-links a[href*="play.google.com"]:hover {
  background: linear-gradient(135deg, #0f9d58, #34a853);
}

/* Case Study CTA */
.use-case-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.use-case-card:hover .arrow {
  transform: translateX(4px);
}

.use-case-card:hover .case-study-link {
  color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    row-gap: 48px;
  }

  .use-case-card {
    flex-direction: column;
    min-height: auto;
  }

  .use-case-screenshot {
    width: 100%;
    padding: 20px 20px 10px 20px;
  }

  .use-case-content {
    width: 100%;
    padding: 10px 20px 20px 20px;
  }
}

@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    row-gap: 40px;
  }

  .use-case-result {
    font-size: clamp(16px, 3vw, 20px);
  }
}

/* ASCII Art Animation */
.ascii-art-container {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.ascii-art-scroll {
  /* Static ASCII art */
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

/* Mobile ASCII Art - Static */
@media (max-width: 768px) {
  .ascii-art-container {
    overflow-x: auto;
    height: 120px; /* Augmenter la hauteur pour mieux fit */
    display: flex;
    align-items: center;
  }

  .ascii-art-scroll {
    font-size: 8px;
    text-align: center;
    width: 100%;
    white-space: pre;
  }
}
