/* Reset et variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette de couleurs modernisée */
  --primary-color: #00d4ff;
  --primary-light: #4dd9ff;
  --primary-dark: #0099cc;
  --cyan-bright: #22d3ee;
  --cyan-light: #67e8f9;
  --cyan-dark: #0891b2;
  --blue-accent: #0ea5e9;
  --blue-light: #38bdf8;
  --blue-dark: #0284c7;
  --dark-bg: #000000;
  --darker-bg: #0a0a0a;
  --darkest-bg: #050505;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --text-dark: #1e293b;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Gradients sophistiqués */
  --gradient-primary: linear-gradient(
    135deg,
    #00d4ff 0%,
    #4dd9ff 50%,
    #22d3ee 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    #22d3ee 0%,
    #4dd9ff 50%,
    #00d4ff 100%
  );
  --gradient-blue: linear-gradient(
    135deg,
    #0ea5e9 0%,
    #38bdf8 50%,
    #00d4ff 100%
  );
  --gradient-cyan: linear-gradient(
    135deg,
    #0891b2 0%,
    #0ea5e9 50%,
    #22d3ee 100%
  );
  --gradient-dark: linear-gradient(
    135deg,
    #000000 0%,
    #0a0a0a 50%,
    #050505 100%
  );
  --gradient-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  --gradient-hero: radial-gradient(
      ellipse at top left,
      rgba(0, 212, 255, 0.15) 0%,
      rgba(0, 212, 255, 0.08) 50%,
      transparent 100%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(0, 212, 255, 0.12) 0%,
      rgba(0, 212, 255, 0.06) 50%,
      transparent 100%
    ),
    radial-gradient(
      ellipse at center,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 70%
    );

  /* Couleurs d'accent */
  --accent-badge: #22d3ee;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --accent-error: #ef4444;

  /* Ombres modernisées */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-3xl: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3),
    0 0 40px rgba(0, 212, 255, 0.1);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  /* Bordures */
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);
  --border-glass-hover: 1px solid rgba(255, 255, 255, 0.2);
  --border-primary: 1px solid rgba(0, 212, 255, 0.3);
  --border-cyan: 1px solid rgba(0, 212, 255, 0.3);
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--white);
  overflow-x: hidden;
  background: #000000;
  font-weight: 400;
  max-width: 100vw;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(0, 212, 255, 0.02) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 212, 255, 0.02) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(0, 212, 255, 0.01) 0%,
      transparent 70%
    );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0;
  border-bottom: var(--border-glass);
  box-shadow: var(--shadow-glass);
}

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

/* Nettoyage: pas de barre de recherche dans le header */
/* .nav-actions et .nav-search supprimés */

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 100px;
  width: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8))
    drop-shadow(0 0 40px rgba(0, 212, 255, 0.6))
    drop-shadow(0 0 80px rgba(0, 212, 255, 0.4));
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.15) 0%,
    rgba(0, 212, 255, 0.08) 50%,
    transparent 70%
  );
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.logo::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(0, 212, 255, 0.4),
    rgba(34, 211, 238, 0.4),
    rgba(0, 212, 255, 0.4)
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: logoGlow 3s ease-in-out infinite;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 1))
    drop-shadow(0 0 60px rgba(0, 212, 255, 0.8))
    drop-shadow(0 0 90px rgba(0, 212, 255, 0.5));
  border-color: rgba(255, 255, 255, 0.3);
}

.logo:hover::before {
  opacity: 1;
}

@keyframes logoGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.brand-text {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 2.3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3);
  font-family: "Inter", sans-serif;
  font-style: italic;
  transform: skewX(-6deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-text:hover {
  transform: skewX(-6deg) scale(1.05);
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 80px rgba(0, 212, 255, 0.4);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-menu a:hover {
  color: var(--white);
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.nav-menu a:hover::before {
  opacity: 0.2;
}

.nav-menu a:hover::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: var(--border-glass);
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: #000000, url("img/hero-background.jpg");
  background-size: cover, 800px 600px;
  background-position: center, right 20% center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 6rem;
  padding-top: 8rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 212, 255, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 212, 255, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
  animation: heroBackgroundFloat 20s ease-in-out infinite;
}

@keyframes heroBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
    opacity: 1;
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
    opacity: 0.9;
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.2) 0%,
    rgba(0, 212, 255, 0.1) 50%,
    transparent 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.8rem;
  animation: floatIcon 12s ease-in-out infinite;
  box-shadow: var(--shadow-glass), 0 0 40px rgba(0, 212, 255, 0.4),
    inset 0 0 25px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(0, 212, 255, 0.4),
    rgba(34, 211, 238, 0.4),
    rgba(0, 212, 255, 0.4)
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: iconGlow 4s ease-in-out infinite;
}

.floating-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 212, 255, 0.6),
    inset 0 0 35px rgba(255, 255, 255, 0.2);
}

.floating-icon:hover::before {
  opacity: 0.8;
}

.floating-image-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  animation: floatIcon 10s ease-in-out infinite;
  box-shadow: var(--shadow-glass), 0 0 25px rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.floating-image-icon:nth-child(5) {
  top: 30%;
  left: 10%;
  animation-delay: 1s;
  opacity: 1;
  z-index: 10;
}

.floating-image-icon:nth-child(6) {
  top: 28%;
  left: 40%;
  animation-delay: 3s;
}

.floating-image-icon:nth-child(7) {
  top: 22%;
  left: 25%;
  animation-delay: 5s;
  opacity: 1;
  z-index: 10;
}

.floating-image-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.3;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 50%;
}

.floating-image-icon i {
  z-index: 2;
  position: relative;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.floating-image-icon:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 212, 255, 0.5);
  border-color: var(--primary-color);
}

.floating-image-icon:hover::before {
  opacity: 0.7;
}

@keyframes iconGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.floating-icon:nth-child(1) {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

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

.floating-icon:nth-child(3) {
  top: 25%;
  left: 5%;
  animation-delay: 4s;
}

.floating-icon:nth-child(4) {
  top: 30%;
  left: 20%;
  animation-delay: 6s;
}

/* Effets brush cyan comme le flyer - plus intenses */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse 300px 200px at 15% 5%,
      rgba(0, 212, 255, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 250px 300px at 85% 15%,
      rgba(0, 212, 255, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 280px 150px at 75% 75%,
      rgba(0, 212, 255, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 200px 250px at 10% 85%,
      rgba(0, 212, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 150px 100px at 50% 30%,
      rgba(0, 212, 255, 0.12) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 20%,
      rgba(0, 212, 255, 0.08) 40%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(0, 212, 255, 0.06) 50%,
      transparent 70%
    ),
    linear-gradient(
      135deg,
      transparent 60%,
      rgba(0, 212, 255, 0.04) 80%,
      transparent 90%
    );
  pointer-events: none;
  z-index: 0;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Hero Badge - Pastille check exacte du flyer */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-glass);
  border: 2px solid var(--border-glass-hover);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 2rem;
  animation: badgePulse 3s ease-in-out infinite;
  box-shadow: var(--shadow-glass), 0 0 30px rgba(0, 212, 255, 0.4),
    0 0 60px rgba(0, 212, 255, 0.2);
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  filter: blur(10px);
  animation: badgeGlow 4s ease-in-out infinite;
}

.hero-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 212, 255, 0.6),
    0 0 80px rgba(0, 212, 255, 0.3);
  border-color: var(--primary-color);
}

.hero-badge:hover::before {
  opacity: 0.7;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
  }
}

/* Title Highlight */
.title-highlight {
  display: block;
  color: var(--primary-color);
  font-weight: 300;
  font-size: 2rem;
  font-style: italic;
  margin-top: -0.5rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Effets "brush" pour rappeler le flyer */
.hero-brush {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 212, 255, 0.25) 0%,
    rgba(0, 212, 255, 0) 60%
  );
  filter: blur(6px) drop-shadow(0 0 25px rgba(0, 212, 255, 0.35));
  opacity: 0.8;
  z-index: 1;
}
.hero-brush-left {
  bottom: 0;
  left: -80px;
  transform: rotate(-20deg);
}
.hero-brush-right {
  top: 10%;
  right: -120px;
  transform: rotate(15deg);
}

.geometric-shape {
  position: absolute;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
  transform: skewX(-12deg);
  font-family: "Poppins", sans-serif;
  line-height: 0.9;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.25),
    0 0 30px rgba(255, 255, 255, 0.15);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
  letter-spacing: 1px;
}

.title-line-1 {
  display: block;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 0.7em;
  margin-bottom: 0.2rem;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  font-family: "Poppins", sans-serif;
  transform: skewX(-8deg);
  opacity: 0.9;
}

.title-line-2 {
  display: block;
  color: var(--white);
  font-weight: 900;
  font-size: 1.8em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 6px;
  font-stretch: condensed;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.4),
    0 0 35px rgba(255, 255, 255, 0.2);
  transform: skewX(-10deg);
  line-height: 0.9;
}

.title-sub {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.6em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
  font-family: "Poppins", sans-serif;
  transform: skewX(-6deg);
  opacity: 0.9;
  line-height: 1.2;
}

.hero-main-message {
  margin: 2rem 0; /* plus d'espacement */
}

.boost-text,
.presence-text,
.online-text {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0.8rem 0; /* plus d'espacement entre les lignes */
}

.boost-text {
  color: var(--white);
  font-family: "Caveat", cursive;
  letter-spacing: 6px;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-text-stroke: 4px #fff;
  transform: skewX(-12deg);
  position: relative;
  font-size: 3.2rem;
  line-height: 0.85;
  font-weight: 700;
  text-transform: uppercase;
}

.presence-text {
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(255, 255, 255, 0.2);
  transform: skewX(-10deg);
  font-size: 2.8rem;
  line-height: 0.9;
}

.votre-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  letter-spacing: 2px;
}

.presence-text-word {
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  font-size: 1.1em;
  letter-spacing: 4px;
  font-stretch: condensed;
}

.online-text {
  color: var(--white);
  position: relative;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
    0 0 40px rgba(255, 255, 255, 0.2);
  transform: skewX(-10deg);
  font-size: 2.5rem;
  line-height: 0.9;
}

.en-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.85em;
  letter-spacing: 3px;
  font-style: italic;
}

.ligne-text {
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  font-size: 1.05em;
  letter-spacing: 5px;
  font-stretch: condensed;
}

.online-text::after {
  content: "!";
  color: var(--primary-color);
  animation: pulse 1.5s infinite;
}

.hero-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(0, 212, 255, 0.25),
    rgba(0, 153, 204, 0.25)
  );
  border: 2px solid rgba(0, 212, 255, 0.45);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(0, 212, 255, 0.25);
  margin-bottom: 1rem;
}
.hero-check i {
  color: #7ee2ff;
  font-size: 1.4rem;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px var(--primary-color);
  }
  to {
    text-shadow: 0 0 30px var(--primary-color), 0 0 40px var(--primary-color);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-bottom: 3rem; /* plus d'espacement */
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 212, 255, 0.5),
    0 0 80px rgba(0, 212, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-2xl), 0 0 50px rgba(0, 212, 255, 0.7),
    0 0 100px rgba(0, 212, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-light);
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glass), 0 0 20px rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 212, 255, 0.4),
    0 0 60px rgba(0, 212, 255, 0.2);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.btn-secondary:hover::before {
  opacity: 0.2;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out;
  position: relative;
}

/* Visual de codage avec image */
.coding-visual {
  position: relative;
  width: 500px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
}

.coding-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  transform: perspective(1200px) rotateX(8deg) rotateY(-8deg) rotateZ(2deg);
  border: 2px solid rgba(0, 212, 255, 0.3);
}

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

.coding-image-container:hover .coding-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.8) 0%,
    rgba(0, 153, 204, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coding-image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: var(--white);
}

.overlay-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.overlay-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.overlay-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.coding-laptop {
  position: relative;
  width: 350px;
  height: 220px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 12px 12px 4px 4px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  transform: perspective(1200px) rotateX(15deg) rotateY(-15deg) rotateZ(2deg);
  z-index: 2;
  border: 1px solid #333;
}

.coding-screen {
  width: 92%;
  height: 85%;
  background: #0d1117;
  border-radius: 8px;
  margin: 4% auto 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #30363d;
}

.code-content {
  width: 100%;
  height: 100%;
  padding: 10px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 8px;
  line-height: 1.2;
}

.code-header {
  height: 25px;
  background: #161b22;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid #30363d;
}

.code-dots {
  display: flex;
  gap: 4px;
}

.code-title {
  color: #f0f6fc;
  font-size: 7px;
  margin-left: 10px;
  font-weight: 500;
}

.code-body {
  padding: 8px 0;
}

.code-line {
  margin: 1px 0;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
}

.code-tag {
  color: #7ee787;
}

.code-element {
  color: #79c0ff;
}

.code-attr {
  color: #ffa657;
}

.code-value {
  color: #a5d6ff;
}

.code-text {
  color: #f0f6fc;
}

.code-indent {
  color: #7d8590;
}

.code-cursor {
  color: #f0f6fc;
  animation: blink 1s infinite;
  font-weight: bold;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.coding-keyboard {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  height: 35px;
  background: linear-gradient(145deg, #1f1f1f, #1a1a1a);
  border-radius: 0 0 12px 12px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.3);
  border-top: 1px solid #2a2a2a;
}

.keyboard-surface {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 50%, #1a1a1a 100%);
  border-radius: 0 0 12px 12px;
}

/* Particules de code flottantes */
.code-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  color: var(--primary-light);
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 10px;
  font-weight: bold;
  opacity: 0.7;
  animation: floatParticle 12s ease-in-out infinite;
  text-shadow: 0 0 25px rgba(0, 212, 255, 0.9), 0 0 50px rgba(0, 212, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.particle:hover {
  opacity: 1;
  transform: scale(1.2);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(34, 211, 238, 0.4);
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 5%;
  animation-delay: 1.5s;
}

.particle:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 3s;
}

.particle:nth-child(4) {
  top: 70%;
  right: 20%;
  animation-delay: 4.5s;
}

.particle:nth-child(5) {
  top: 45%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

.laptop-mockup {
  position: relative;
  width: 400px;
  height: 260px; /* Ajusté pour correspondre au flyer */
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 15px 15px 5px 5px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateX(8deg) rotateY(-8deg); /* Angle plus subtil comme le flyer */
}

.laptop-screen {
  width: 90%;
  height: 85%;
  background: #000;
  border-radius: 8px;
  margin: 5% auto 0;
  position: relative;
  overflow: hidden;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 5px;
}

.demo-site {
  width: 100%;
  height: 100%;
  padding: 10px;
}

.demo-header {
  height: 30px;
  background: #fff;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.demo-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}
.dot.yellow {
  background: #ffbd2e;
}
.dot.green {
  background: #28ca42;
}

.demo-body {
  height: calc(100% - 30px);
  background: #fff;
  border-radius: 0 0 5px 5px;
  padding: 15px;
}

.demo-icons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.demo-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.demo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 60px;
}

.demo-image {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  border-radius: 5px;
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  color: var(--white);
  margin-bottom: 4rem;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    rgba(0, 212, 255, 0.05) 50%,
    transparent 100%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: titleBackgroundPulse 6s ease-in-out infinite;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  display: block;
  margin: 1rem auto 0;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3);
  position: relative;
}

.section-title:hover {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.3);
}

.section-title:hover::after {
  width: 120px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(34, 211, 238, 0.4);
}

@keyframes titleBackgroundPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%),
    url("img/modern-office.jpg");
  background-size: cover, 600px 450px;
  background-position: center, left 15% bottom 20%;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
  animation: servicesBackgroundFloat 25s ease-in-out infinite;
}

.services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(0, 212, 255, 0.02) 0%,
      transparent 25%,
      transparent 75%,
      rgba(0, 212, 255, 0.02) 100%
    ),
    radial-gradient(
      circle at 15% 15%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(0, 212, 255, 0.02) 0%,
      transparent 30%
    );
  pointer-events: none;
  z-index: 0;
  animation: servicesGlow 15s ease-in-out infinite;
}

@keyframes servicesGlow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

@keyframes servicesBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-30px) rotate(1deg);
    opacity: 1;
  }
  66% {
    transform: translateY(20px) rotate(-1deg);
    opacity: 0.8;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  justify-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

/* Disposition spécifique pour les 5 cartes */
.service-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
} /* Site E-commerce */
.service-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
} /* Site D'entreprise */
.service-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
} /* Site Maintenance */

/* Deuxième ligne alignée à gauche */
.service-card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
} /* Applications Mobile */
.service-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
} /* Automatisation IA */

.service-card {
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: 15px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass), 0 0 40px rgba(0, 212, 255, 0.3),
    0 0 80px rgba(0, 212, 255, 0.15);
  position: relative;
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(0, 212, 255, 0.2),
    rgba(34, 211, 238, 0.2),
    rgba(0, 212, 255, 0.2)
  );
  border-radius: 17px;
  z-index: -2;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: cardGlow 12s ease-in-out infinite;
}

@keyframes cardGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
    filter: blur(15px);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.03);
    filter: blur(12px);
  }
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-2xl), 0 0 60px rgba(0, 212, 255, 0.5),
    0 0 120px rgba(0, 212, 255, 0.25);
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover::after {
  opacity: 0.4;
}

/* Éléments décoratifs des cartes de services */
.service-decorative-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 30%
    ),
    linear-gradient(
      135deg,
      transparent 0%,
      rgba(0, 212, 255, 0.02) 50%,
      transparent 100%
    );
  pointer-events: none;
  z-index: 0;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-decorative-bg {
  opacity: 1;
}

.service-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-icon-small {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary-color);
  border: 1px solid rgba(0, 212, 255, 0.3);
  opacity: 0;
  transition: all 0.4s ease;
  animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon-small:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.floating-icon-small:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.floating-icon-small:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation-delay: 2s;
}

.service-card:hover .floating-icon-small {
  opacity: 1;
  transform: scale(1.2);
}

.service-card:hover .floating-icon-small:nth-child(1) {
  animation: iconFloat1 3s ease-in-out infinite;
}

.service-card:hover .floating-icon-small:nth-child(2) {
  animation: iconFloat2 3s ease-in-out infinite 0.5s;
}

.service-card:hover .floating-icon-small:nth-child(3) {
  animation: iconFloat3 3s ease-in-out infinite 1s;
}

@keyframes iconFloat1 {
  0%,
  100% {
    transform: translateY(0px) scale(1.2);
  }
  50% {
    transform: translateY(-8px) scale(1.3);
  }
}

@keyframes iconFloat2 {
  0%,
  100% {
    transform: translateY(0px) scale(1.2) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) scale(1.4) rotate(180deg);
  }
}

@keyframes iconFloat3 {
  0%,
  100% {
    transform: translateY(0px) scale(1.2) rotate(0deg);
  }
  33% {
    transform: translateY(-6px) scale(1.3) rotate(120deg);
  }
  66% {
    transform: translateY(-10px) scale(1.35) rotate(240deg);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.7;
  }
}

.overlay-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.service-card:hover .overlay-shine {
  opacity: 1;
  animation: shineEffect 1.5s ease-in-out;
}

@keyframes shineEffect {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.service-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 212, 255, 0.6),
    0 0 60px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.service-image::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: 15px;
}

.service-card:hover .service-image::after {
  opacity: 1;
  animation: imageShine 2s ease-in-out infinite;
}

@keyframes imageShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  border-radius: 15px;
}

.service-card:hover .service-image {
  opacity: 0.2;
  transform: scale(1.1);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  filter: blur(10px);
  animation: iconGlow 4s ease-in-out infinite;
}

.service-icon i {
  font-size: 2.2rem !important;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(0, 212, 255, 0.8),
    0 0 80px rgba(34, 211, 238, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon::before {
  opacity: 0.8;
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
}

@keyframes iconGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.3;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  margin-bottom: 0.6rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: auto;
  margin-bottom: 0.5rem;
}

.service-features span {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-light);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.service-features span:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.service-click-hint {
  margin-top: 0.8rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  color: var(--white);
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.95) 0%,
    rgba(34, 211, 238, 0.95) 100%
  );
  font-weight: 700;
  opacity: 0;
  transform: translateY(15px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.service-click-hint::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.service-card:hover .service-click-hint::before {
  left: 100%;
}

.service-card:hover .service-click-hint {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: pulseHint 1.5s ease-in-out infinite;
}

@keyframes pulseHint {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(0, 212, 255, 0.4);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 0 10px rgba(0, 212, 255, 0);
    transform: translateY(-2px) scale(1.02);
  }
}

.service-click-hint i {
  animation: pointerBounce 1s ease-in-out infinite;
  font-size: 1rem;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%),
    url("img/team-collaboration.jpg");
  background-size: cover, 600px 450px;
  background-position: center, right 15% top 30%;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 10%,
      rgba(0, 212, 255, 0.02) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
  animation: portfolioBackgroundFloat 30s ease-in-out infinite;
}

@keyframes portfolioBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.5;
  }
  33% {
    transform: translateY(-40px) rotate(1deg);
    opacity: 0.8;
  }
  66% {
    transform: translateY(20px) rotate(-1deg);
    opacity: 0.6;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--border-glass);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
  animation: portfolioGlow 8s ease-in-out infinite;
}

.portfolio-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-2xl), 0 0 60px rgba(0, 212, 255, 0.5),
    0 0 120px rgba(0, 212, 255, 0.3);
  border-color: var(--primary-color);
}

.portfolio-item:hover::before {
  opacity: 0.6;
}

@keyframes portfolioGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 212, 255, 0.6) 0%,
    rgba(0, 153, 204, 0.6) 100%
  );
  z-index: 1;
}

.portfolio-video {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.portfolio-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 212, 255, 0.6) 0%,
    rgba(0, 153, 204, 0.6) 100%
  );
  z-index: 1;
}

.portfolio-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
}

.portfolio-overlay h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-overlay p {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.portfolio-tech {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-style: italic;
}

.portfolio-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: 15px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.portfolio-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.portfolio-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 212, 255, 0.4),
    0 0 40px rgba(0, 212, 255, 0.2);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

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

.portfolio-status {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 193, 7, 0.2);
  border: 2px solid #ffc107;
  border-radius: 15px;
  color: #ffc107;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Process Section */
.process {
  padding: 8rem 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.process-step {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: var(--border-glass);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 212, 255, 0.2);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.step-number::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: stepGlow 4s ease-in-out infinite;
}

.process-step:hover .step-number::before {
  opacity: 0.8;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.step-content p {
  color: var(--light-gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%),
    url("img/team-collaboration.jpg");
  background-size: cover, 500px 400px;
  background-position: center, left 10% top 30%;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(0, 212, 255, 0.02) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
  animation: testimonialsBackgroundFloat 35s ease-in-out infinite;
}

@keyframes testimonialsBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  33% {
    transform: translateY(-50px) rotate(1deg);
    opacity: 0.7;
  }
  66% {
    transform: translateY(30px) rotate(-1deg);
    opacity: 0.5;
  }
}

/* Paiement Section */
.paiement {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%),
    url("img/digital-marketing.jpg");
  background-size: cover, 700px 500px;
  background-position: center, left 10% bottom 30%;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}

.paiement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse 400px 300px at 20% 10%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 300px 200px at 80% 20%,
      rgba(0, 153, 204, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 250px 150px at 50% 80%,
      rgba(0, 212, 255, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

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

.paiement-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.paiement-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}

.paiement-intro h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.paiement-description {
  font-size: 1.2rem;
  color: var(--light-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.paiement-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.example-card,
.flexibility-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.example-card::before,
.flexibility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.example-card:hover,
.flexibility-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.example-header,
.flexibility-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.example-header i,
.flexibility-header i {
  font-size: 2rem;
  color: var(--primary-color);
}

.example-header h4,
.flexibility-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.price-comparison {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.price-option {
  text-align: center;
  flex: 1;
  padding: 1.5rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.paiement-option {
  border-color: var(--primary-color);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.location-option {
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.price-label {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.paiement-option .price-amount {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.location-option .price-amount {
  color: #ff6b35;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.price-note {
  font-size: 0.8rem;
  color: var(--light-gray);
  font-style: italic;
}

.price-savings {
  font-size: 0.8rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-total {
  font-size: 0.8rem;
  color: var(--light-gray);
  font-weight: 600;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.5rem;
}

.price-benefit {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-style: italic;
}

.location-option .price-benefit {
  color: #ff6b35;
}

.vs-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.flexibility-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flexibility-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.flexibility-point:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: var(--primary-color);
}

.flexibility-point i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.flexibility-point span {
  color: var(--white);
  font-weight: 500;
}

.paiement-benefits {
  margin-bottom: 4rem;
}

.paiement-benefits h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.benefit-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
}

.benefit-item h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-item p {
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.5;
}

.paiement-cta {
  text-align: center;
  background: rgba(0, 212, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.cta-text {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 500;
}

.paiement-cta .btn-primary {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4),
    0 0 20px rgba(0, 212, 255, 0.3);
}

.paiement-cta .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.5),
    0 0 30px rgba(0, 212, 255, 0.4);
}

/* Responsive pour la section paiement */
@media (max-width: 768px) {
  .paiement-examples {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .price-comparison {
    flex-direction: column;
    gap: 1.5rem;
  }

  .vs-separator {
    transform: none;
    font-size: 1.2rem;
    margin: 1rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .price-option {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .paiement-intro h3 {
    font-size: 2rem;
  }

  .paiement-description {
    font-size: 1.1rem;
  }

  .paiement-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .paiement {
    padding: 4rem 0;
  }

  .example-card,
  .flexibility-card {
    padding: 1.5rem;
  }

  .paiement-cta {
    padding: 2rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .paiement-intro h3 {
    font-size: 1.8rem;
  }

  .paiement-description {
    font-size: 1rem;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glass), 0 0 25px rgba(0, 212, 255, 0.2);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  animation: testimonialGlow 10s ease-in-out infinite;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-2xl), 0 0 60px rgba(0, 212, 255, 0.5),
    0 0 120px rgba(0, 212, 255, 0.3);
}

.testimonial-card:hover::after {
  opacity: 0.5;
}

@keyframes testimonialGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

.testimonial-content {
  margin-bottom: 2rem;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.testimonial-content p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  overflow: hidden;
  position: relative;
}

.author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-avatar:hover .author-image {
  transform: scale(1.1);
}

.author-info h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.author-info span {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%),
    url("img/contact-background.jpg");
  background-size: cover, 500px 400px;
  background-position: center, right 15% top 20%;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 15% 15%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 212, 255, 0.02) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
  animation: contactBackgroundFloat 40s ease-in-out infinite;
}

@keyframes contactBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  33% {
    transform: translateY(-60px) rotate(1deg);
    opacity: 0.6;
  }
  66% {
    transform: translateY(40px) rotate(-1deg);
    opacity: 0.4;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-glass);
  padding: 1.5rem;
  border-radius: 15px;
  border: var(--border-glass);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm), 0 0 20px rgba(0, 212, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.05),
    transparent
  );
  transition: left 0.8s ease;
}

.contact-item:hover {
  border-color: var(--primary-color);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(0, 212, 255, 0.4),
    0 0 70px rgba(0, 212, 255, 0.25);
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 30px;
}

.contact-item span,
.contact-item a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  text-decoration: none;
  color: var(--white);
  border: 2px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-link i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* Contact Form */
.contact-form-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group.select-group {
  position: relative;
}

.form-group.select-group::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--primary-color);
  pointer-events: none;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.form-group.select-group:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: var(--white);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
}

.form-group.select-group:hover::after {
  border-top-color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: 12px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm), 0 0 15px rgba(0, 212, 255, 0.1);
  position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(0, 212, 255, 0.15);
  box-shadow: var(--shadow-md), 0 0 25px rgba(0, 212, 255, 0.3),
    0 0 50px rgba(0, 212, 255, 0.15);
}

.form-group select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e"),
    rgba(0, 212, 255, 0.1);
  background-repeat: no-repeat;
  background-position: right 1rem center, 0 0;
  background-size: 1rem, 100%;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  padding-right: 3rem;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.form-group select:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.form-group select option {
  background: var(--darker-bg);
  color: var(--white);
  padding: 1rem;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin: 2px 0;
  border-radius: 5px;
}

.form-group select option:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.2),
    rgba(0, 153, 204, 0.2)
  );
  color: var(--primary-color);
}

.form-group select option:checked,
.form-group select option:selected {
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
}

.btn-submit {
  padding: 1.2rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 212, 255, 0.4),
    0 0 60px rgba(0, 212, 255, 0.2);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 212, 255, 0.6),
    0 0 80px rgba(0, 212, 255, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(37, 211, 102, 0.5),
    0 0 60px rgba(37, 211, 102, 0.25);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(37, 211, 102, 0.7),
    0 0 80px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.8);
  }
}

/* Chatbot Styles */
.chatbot-toggle {
  position: fixed !important;
  bottom: 30px !important;
  right: 100px !important;
  width: 60px !important;
  height: 60px !important;
  background: var(--gradient-primary) !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.8rem !important;
  color: var(--white) !important;
  cursor: pointer !important;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 212, 255, 0.6),
    0 0 80px rgba(0, 212, 255, 0.3) !important;
  z-index: 1001 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  animation: chatbotPulse 3s infinite !important;
  opacity: 1 !important;
  visibility: visible !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.chatbot-toggle::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  animation: chatbotGlow 4s ease-in-out infinite;
}

.chatbot-toggle:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-3xl), 0 0 60px rgba(0, 212, 255, 0.9),
    0 0 120px rgba(0, 212, 255, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.chatbot-toggle:hover::before {
  opacity: 0.7;
}

@keyframes chatbotGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.chatbot-pulse {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes chatbotPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
  }
  50% {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.8);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-widget::before {
  display: none;
}

.chatbot-widget.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: slideUpChatbot 0.3s ease-out;
}

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

.chatbot-header {
  background: var(--gradient-primary);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: var(--border-glass);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.chatbot-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: headerShimmer 3s ease-in-out infinite;
}

@keyframes headerShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chatbot-avatar:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6), 0 0 50px rgba(0, 212, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.chatbot-info h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.chatbot-status {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-status::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: statusBlink 2s infinite;
}

@keyframes statusBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.chatbot-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #000000;
}

.chatbot-message {
  display: flex;
  gap: 0.75rem;
  animation: messageSlideIn 0.3s ease-out;
}

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

.bot-message {
  align-items: flex-start;
}

.user-message {
  align-items: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.user-message .message-avatar {
  background: rgba(0, 212, 255, 0.2);
  color: var(--primary-color);
}

.message-content {
  max-width: 80%;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.75rem 1rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.user-message .message-content {
  background: var(--gradient-primary);
  border-color: rgba(0, 212, 255, 0.3);
}

.message-content p {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.message-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
  text-align: right;
}

.chatbot-quick-actions {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.quick-action-btn {
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: 12px;
  padding: 0.75rem;
  color: var(--white);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.quick-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.quick-action-btn:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 212, 255, 0.3),
    0 0 40px rgba(0, 212, 255, 0.2);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

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

.quick-action-btn i {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.chatbot-input {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.chatbot-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.chatbot-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.chatbot-input input:focus {
  border-color: var(--primary-color);
  background: rgba(0, 212, 255, 0.1);
}

.chatbot-send {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.chatbot-send:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Classe pour les éléments accessibles mais cachés visuellement */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive pour le chatbot */
@media (max-width: 768px) {
  .chatbot-widget {
    width: calc(100vw - 40px);
    height: calc(100vh - 120px);
    max-height: 600px;
    right: 20px;
    bottom: 80px;
    border-radius: 15px;
  }

  .chatbot-toggle {
    right: 80px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .chatbot-header {
    padding: 0.875rem;
  }

  .chatbot-info h4 {
    font-size: 0.95rem;
  }

  .chatbot-status {
    font-size: 0.75rem;
  }

  .chatbot-messages {
    padding: 0.875rem;
  }

  .chatbot-quick-actions {
    padding: 0.875rem;
    gap: 0.5rem;
  }

  .quick-action-btn {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .chatbot-input {
    padding: 0.875rem;
  }

  .chatbot-input input {
    font-size: 0.85rem;
    padding: 0.625rem 0.875rem;
  }
}

@media (max-width: 480px) {
  .chatbot-widget {
    width: calc(100vw - 20px);
    height: calc(100vh - 100px);
    max-height: 550px;
    right: 10px;
    bottom: 75px;
    border-radius: 12px;
  }

  .chatbot-toggle {
    right: 70px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .chatbot-header {
    padding: 0.75rem;
  }

  .chatbot-avatar {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .chatbot-info h4 {
    font-size: 0.9rem;
  }

  .chatbot-status {
    font-size: 0.7rem;
  }

  .chatbot-close {
    font-size: 1.1rem;
    padding: 0.4rem;
  }

  .chatbot-messages {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .chatbot-message {
    gap: 0.5rem;
  }

  .message-avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.9rem;
  }

  .message-content {
    font-size: 0.85rem;
  }

  .message-time {
    font-size: 0.65rem;
  }

  .chatbot-quick-actions {
    grid-template-columns: 1fr;
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .quick-action-btn {
    padding: 0.625rem;
    font-size: 0.8rem;
  }

  .quick-action-btn i {
    font-size: 0.9rem;
  }

  .chatbot-input {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .chatbot-input input {
    font-size: 0.8rem;
    padding: 0.625rem 0.75rem;
    border-radius: 15px;
  }

  .chatbot-send {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .chatbot-widget {
    width: calc(100vw - 10px);
    height: calc(100vh - 90px);
    right: 5px;
    bottom: 70px;
  }

  .chatbot-toggle {
    right: 60px;
    bottom: 10px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .whatsapp-float {
    right: 5px;
    bottom: 10px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .chatbot-header {
    padding: 0.625rem;
  }

  .chatbot-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .chatbot-info h4 {
    font-size: 0.85rem;
  }

  .chatbot-messages {
    padding: 0.625rem;
  }

  .chatbot-quick-actions {
    padding: 0.625rem;
  }

  .quick-action-btn {
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  .chatbot-input {
    padding: 0.625rem;
  }

  .chatbot-input input {
    font-size: 0.75rem;
    padding: 0.5rem 0.625rem;
  }

  .chatbot-send {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design - Breakpoints modernes */

/* Grands écrans - 1200px et plus */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

  .hero-content {
    gap: 6rem;
  }

  .services-grid {
    max-width: 1200px;
  }

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

  .section-title {
    font-size: 3.5rem;
  }
}

/* Tablettes grandes - 1024px à 1199px */
@media (max-width: 1199px) and (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
  }

  .service-card:nth-child(3) {
    grid-column: 1 / 3;
    max-width: 450px;
    margin: 0 auto;
  }

  .service-card:nth-child(4) {
    grid-column: 1;
  }

  .service-card:nth-child(5) {
    grid-column: 2;
  }

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

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

  .title-line-2 {
    font-size: 1.6em;
  }
}

/* Tablettes - 769px à 1023px */
@media (max-width: 1023px) and (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    max-width: 700px;
  }

  .service-card:nth-child(3) {
    grid-column: 1 / 3;
    max-width: 350px;
    margin: 0 auto;
  }

  .service-card:nth-child(4) {
    grid-column: 1;
  }

  .service-card:nth-child(5) {
    grid-column: 2;
  }

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

  .hero-content {
    gap: 2.5rem;
  }

  .coding-visual {
    width: 400px;
    height: 280px;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

/* Process Section Responsive */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.5rem;
  }
}

/* Mobile large - 481px à 768px */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  /* pas de barre de recherche sur mobile */

  /* ==================================
     SECTION HERO MOBILE - EXPÉRIENCE WOW 
     ================================== */
  
  .hero {
    min-height: 100vh;
    padding: 120px 0 60px 0;
    position: relative;
    overflow: hidden;
  }

  /* Fond animé avec dégradés dynamiques */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.25) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.2) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    animation: mobileHeroGlow 8s ease-in-out infinite;
    z-index: 0;
  }

  @keyframes mobileHeroGlow {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.7;
      transform: scale(1.1);
    }
  }

  /* Éléments flottants optimisés pour mobile */
  .floating-elements {
    display: block !important;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    animation: mobileFloat 4s ease-in-out infinite;
  }

  @keyframes mobileFloat {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-15px) rotate(180deg);
    }
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
  }

  /* Badge avec effet glassmorphism et animation */
  .hero-badge {
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
    margin: 0 auto 1.5rem;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    box-shadow: 
      0 8px 32px rgba(0, 212, 255, 0.2),
      0 0 40px rgba(0, 212, 255, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: mobileBadgePulse 3s ease-in-out infinite;
    transform: translateZ(0);
    will-change: transform;
  }

  @keyframes mobileBadgePulse {
    0%, 100% {
      transform: scale(1) translateY(0);
      box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.2),
        0 0 40px rgba(0, 212, 255, 0.15);
    }
    50% {
      transform: scale(1.05) translateY(-3px);
      box-shadow: 
        0 12px 40px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.25);
    }
  }

  .hero-badge i {
    animation: badgeIconSpin 3s linear infinite;
  }

  @keyframes badgeIconSpin {
    0%, 80% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Textes du héro avec effets spectaculaires */
  .hero-main-message {
    margin: 1.5rem 0;
    padding: 0 1rem;
  }

  .boost-text {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite, textBounce 2s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    letter-spacing: 2px;
    margin: 0.5rem 0;
    transform: translateZ(0);
  }

  @keyframes textShimmer {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 200% center;
    }
  }

  @keyframes textBounce {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-5px) scale(1.02);
    }
  }

  .presence-text {
    font-size: 2rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite reverse, textFloat 3s ease-in-out infinite;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .online-text {
    font-size: 2rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #00d4ff 0%, #22d3ee 50%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite, textPulse 2s ease-in-out infinite;
    margin: 0.5rem 0;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    display: flex;
    gap: 0.8rem;
    justify-content: center;
  }

  @keyframes textPulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.9;
      transform: scale(1.05);
    }
  }

  /* Icône check avec animation de rotation 3D */
  .hero-check {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0.1) 70%);
    border: 3px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 
      0 8px 32px rgba(0, 212, 255, 0.3),
      0 0 60px rgba(0, 212, 255, 0.2),
      inset 0 2px 4px rgba(255, 255, 255, 0.1);
    animation: checkRotate 4s ease-in-out infinite;
    transform-style: preserve-3d;
  }

  @keyframes checkRotate {
    0%, 100% {
      transform: rotateY(0deg) scale(1);
    }
    50% {
      transform: rotateY(360deg) scale(1.1);
    }
  }

  .hero-check i {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: checkPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
  }

  @keyframes checkPulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.8;
    }
  }

  /* Boutons avec effets néon et animations */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 1.5rem;
    margin-top: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 1.2rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    will-change: transform;
  }

  .btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #22d3ee 100%);
    box-shadow: 
      0 10px 30px rgba(0, 212, 255, 0.4),
      0 0 40px rgba(0, 212, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: btnPrimaryGlow 2s ease-in-out infinite;
  }

  @keyframes btnPrimaryGlow {
    0%, 100% {
      box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.4),
        0 0 40px rgba(0, 212, 255, 0.3);
    }
    50% {
      box-shadow: 
        0 15px 40px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.5);
    }
  }

  .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
  }

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

  .btn-primary:active {
    transform: scale(0.95);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.5);
    backdrop-filter: blur(10px);
    color: var(--primary-color) !important;
    box-shadow: 
      0 8px 20px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: btnSecondaryGlow 2s ease-in-out infinite;
  }

  @keyframes btnSecondaryGlow {
    0%, 100% {
      border-color: rgba(0, 212, 255, 0.5);
    }
    50% {
      border-color: rgba(0, 212, 255, 0.8);
      box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 212, 255, 0.4);
    }
  }

  .btn-secondary:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.15);
  }

  .btn-primary i,
  .btn-secondary i {
    margin-right: 0.5rem;
    animation: iconBounce 2s ease-in-out infinite;
  }

  @keyframes iconBounce {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(5px);
    }
  }

  .laptop-mockup {
    width: 250px;
    height: 160px;
    transform: perspective(800px) rotateX(10deg);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
    justify-content: center;
  }

  /* Sur mobile, toutes les cartes en colonne */
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }

  .service-card {
    height: 360px;
    padding: 1.2rem 1rem;
  }

  .service-icon {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .service-icon i {
    font-size: 2rem !important;
    width: 2rem;
    height: 2rem;
  }

  .service-click-hint {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  .click-hint {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

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

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 800px;
    justify-content: center;
  }

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

  /* Header mobile avec effet glassmorphism */
  .header {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 
      0 4px 20px rgba(0, 212, 255, 0.1),
      0 0 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  }

  .logo {
    height: 60px;
    width: 60px;
    animation: logoMobilePulse 3s ease-in-out infinite;
  }

  @keyframes logoMobilePulse {
    0%, 100% {
      filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    }
    50% {
      filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.9));
    }
  }

  .brand-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  /* Navigation mobile avec effet slide */
  .nav-menu {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  }

  .nav-menu a {
    padding: 1rem 2rem;
    margin: 0.5rem 1rem;
    border-radius: 15px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
  }

  .nav-menu a:hover,
  .nav-menu a:active {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
  }

  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Animations d'entrée pour les éléments du hero */
  .hero-text {
    animation: mobileSlideUp 1s ease-out;
  }

  @keyframes mobileSlideUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-visual {
    animation: mobileSlideUp 1.2s ease-out 0.3s both;
  }

  /* Effet de grille animée en arrière-plan */
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
  }

  @keyframes gridMove {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(50px, 50px);
    }
  }

  /* Amélioration des brushes pour mobile */
  .hero-brush {
    width: 250px;
    height: 250px;
    filter: blur(40px);
    opacity: 0.6;
    animation: brushFloat 8s ease-in-out infinite;
  }

  @keyframes brushFloat {
    0%, 100% {
      transform: translate(0, 0) rotate(0deg);
    }
    50% {
      transform: translate(20px, -20px) rotate(10deg);
    }
  }

  .hero-brush-left {
    bottom: 10%;
    left: -50px;
  }

  .hero-brush-right {
    top: 15%;
    right: -50px;
  }

  .logo-old {
    height: 85px;
    width: 85px;
  }

  /* Éléments décoratifs responsives */
  .floating-icon-small {
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }

  .floating-icon-small:nth-child(1) {
    top: 10%;
    left: 10%;
  }

  .floating-icon-small:nth-child(2) {
    top: 15%;
    right: 15%;
  }

  .floating-icon-small:nth-child(3) {
    bottom: 20%;
    left: 15%;
  }

  .service-decorative-bg {
    background: radial-gradient(
        circle at 15% 15%,
        rgba(0, 212, 255, 0.03) 0%,
        transparent 25%
      ),
      radial-gradient(
        circle at 85% 85%,
        rgba(0, 212, 255, 0.02) 0%,
        transparent 25%
      );
  }
}

/* Mobile petit - 481px à 767px */
@media (max-width: 767px) and (min-width: 481px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .title-line-2 {
    font-size: 1.5rem;
  }

  .boost-text,
  .presence-text,
  .online-text {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
  }

  .service-card:nth-child(3) {
    grid-column: 1 / 3;
    max-width: 250px;
    margin: 0 auto;
  }

  .service-card:nth-child(4) {
    grid-column: 1;
  }

  .service-card:nth-child(5) {
    grid-column: 2;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .coding-visual {
    width: 320px;
    height: 240px;
  }

  .service-card {
    height: 360px;
    padding: 1.5rem 1rem;
  }

  .service-icon {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .service-icon i {
    font-size: 2rem !important;
    width: 2rem;
    height: 2rem;
  }

  .service-click-hint {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  .click-hint {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

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

  .title-line-2 {
    font-size: 1.4rem;
  }

  .boost-text,
  .presence-text,
  .online-text {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-form-section h3 {
    font-size: 1.5rem;
  }

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

  .social-links {
    flex-direction: column;
  }

  .form-group select {
    background-position: right 0.8rem center;
    background-size: 0.9rem;
    padding-right: 2.5rem;
  }

  .form-group select:focus {
    background-position: right 0.8rem center, 0 0;
    background-size: 0.9rem, 100%;
  }

  .floating-elements {
    display: none; /* Masquer sur très petits écrans pour les performances */
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .hero-badge {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .logo {
    height: 75px;
    width: 75px;
  }

  /* Éléments décoratifs pour petits écrans */
  .floating-icon-small {
    width: 14px;
    height: 14px;
    font-size: 0.55rem;
  }

  .floating-icon-small:nth-child(1) {
    top: 8%;
    left: 8%;
  }

  .floating-icon-small:nth-child(2) {
    top: 12%;
    right: 12%;
  }

  .floating-icon-small:nth-child(3) {
    bottom: 18%;
    left: 12%;
  }

  .service-decorative-bg {
    background: radial-gradient(
      circle at 10% 10%,
      rgba(0, 212, 255, 0.02) 0%,
      transparent 20%
    );
  }
}

/* Correction pour très petits écrans */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1rem;
  }

  .title-line-2 {
    font-size: 1.2rem;
  }

  .boost-text,
  .presence-text,
  .online-text {
    font-size: 1rem;
  }

  .laptop-mockup {
    width: 220px;
    height: 140px;
  }

  .container {
    padding: 0 10px;
  }

  .header {
    padding: 0.8rem 0;
  }

  .hero {
    padding-top: 1rem;
  }

  /* Éléments décoratifs pour très petits écrans */
  .floating-icon-small {
    width: 12px;
    height: 12px;
    font-size: 0.5rem;
  }

  .floating-icon-small:nth-child(1) {
    top: 6%;
    left: 6%;
  }

  .floating-icon-small:nth-child(2) {
    top: 10%;
    right: 10%;
  }

  .floating-icon-small:nth-child(3) {
    bottom: 15%;
    left: 10%;
  }

  .service-decorative-bg {
    display: none; /* Désactiver sur très petits écrans pour les performances */
  }
}

/* Animations pour les nouveaux éléments */
@keyframes badgeGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Bouton Play */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 212, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.play-button:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.play-button i {
  margin-left: 4px;
}

/* Modal Vidéo */
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 1000px;
  background: var(--dark-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 212, 255, 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: var(--white);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--primary-color);
}

#modalVideo {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Clavier d'ordinateur portable - Style flyer exact */
.laptop-keyboard {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 35px;
  background: linear-gradient(145deg, #1f1f1f, #1a1a1a);
  border-radius: 0 0 15px 15px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.3);
  border-top: 1px solid #2a2a2a;
  overflow: hidden;
}

.keyboard-surface {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 50%, #1a1a1a 100%);
  position: relative;
  border-radius: 0 0 15px 15px;
}

/* Effet de texture très subtile du clavier */
.keyboard-surface::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent 0px,
      rgba(255, 255, 255, 0.01) 1px,
      transparent 2px,
      transparent 8px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(255, 255, 255, 0.008) 1px,
      transparent 2px,
      transparent 12px
    );
  border-radius: 0 0 15px 15px;
}

/* Effet de brillance très subtile */
.keyboard-surface::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 50%,
    transparent 100%
  );
  border-radius: 0 0 15px 15px;
  pointer-events: none;
}

/* Effet de lumière cyan très discrète sous le clavier */
.laptop-keyboard::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 212, 255, 0.15) 30%,
    rgba(0, 212, 255, 0.2) 50%,
    rgba(0, 212, 255, 0.15) 70%,
    transparent 100%
  );
  border-radius: 0 0 15px 15px;
  filter: blur(0.5px);
}

/* Responsive pour le visual de codage */
@media (max-width: 768px) {
  /* Section visuelle avec effet 3D immersif */
  .coding-visual {
    width: 100%;
    max-width: 380px;
    height: 280px;
    margin: 2rem auto 0;
    position: relative;
    animation: visualFloat 6s ease-in-out infinite;
  }

  @keyframes visualFloat {
    0%, 100% {
      transform: translateY(0) rotateZ(0deg);
    }
    50% {
      transform: translateY(-15px) rotateZ(2deg);
    }
  }

  .coding-image-container {
    transform: perspective(1200px) rotateX(8deg) rotateY(-3deg) rotateZ(1deg);
    box-shadow: 
      0 20px 60px rgba(0, 212, 255, 0.3),
      0 0 80px rgba(0, 212, 255, 0.2),
      0 40px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    animation: containerGlow 4s ease-in-out infinite;
  }

  @keyframes containerGlow {
    0%, 100% {
      box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.3),
        0 0 80px rgba(0, 212, 255, 0.2);
    }
    50% {
      box-shadow: 
        0 25px 70px rgba(0, 212, 255, 0.5),
        0 0 100px rgba(0, 212, 255, 0.4);
    }
  }

  .coding-image {
    animation: imageZoom 8s ease-in-out infinite;
  }

  @keyframes imageZoom {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  /* Overlay avec effet glassmorphism */
  .image-overlay {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 212, 255, 0.3) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    backdrop-filter: blur(8px);
  }

  .overlay-icon {
    font-size: 2.5rem;
    animation: iconSpin3D 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 1));
  }

  @keyframes iconSpin3D {
    0%, 100% {
      transform: rotateY(0deg) scale(1);
    }
    50% {
      transform: rotateY(180deg) scale(1.2);
    }
  }

  .overlay-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    animation: titlePulse 2s ease-in-out infinite;
  }

  @keyframes titlePulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.9;
    }
  }

  .overlay-subtitle {
    font-size: 1rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
  }

  /* Particules de code animées */
  .code-particles {
    display: block !important;
  }

  .particle {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 6px;
    backdrop-filter: blur(5px);
    box-shadow: 
      0 4px 12px rgba(0, 212, 255, 0.3),
      0 0 20px rgba(0, 212, 255, 0.2);
    animation: particleFloat 3s ease-in-out infinite;
  }

  @keyframes particleFloat {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
      opacity: 0.8;
    }
    50% {
      transform: translateY(-20px) rotate(5deg);
      opacity: 1;
    }
  }

  .particle:nth-child(1) {
    animation-delay: 0s;
  }

  .particle:nth-child(2) {
    animation-delay: 0.5s;
  }

  .particle:nth-child(3) {
    animation-delay: 1s;
  }

  .particle:nth-child(4) {
    animation-delay: 1.5s;
  }

  .particle:nth-child(5) {
    animation-delay: 2s;
  }
}

@media (max-width: 480px) {
  .coding-visual {
    width: 280px;
    height: 200px;
  }

  .coding-image-container {
    transform: perspective(800px) rotateX(3deg) rotateY(-3deg);
  }

  .overlay-icon {
    font-size: 1.5rem;
  }

  .overlay-title {
    font-size: 1rem;
  }

  .overlay-subtitle {
    font-size: 0.8rem;
  }
}

/* Service Modals */
.service-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: modalFadeIn 0.3s ease-out;
}

.service-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.service-modal-content {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 212, 255, 0.3);
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.service-modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.service-modal-detail {
  display: none;
  padding: 2rem;
}

.service-modal-detail.active {
  display: block;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.modal-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.modal-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modal-image:hover img {
  transform: scale(1.05);
}

.modal-description h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.modal-description p {
  font-size: 1.1rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-section li {
  color: var(--light-gray);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.feature-section li:before {
  content: "▸";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-section li strong {
  color: var(--white);
}

.modal-cta {
  background: rgba(0, 212, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.modal-cta p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.modal-cta .btn-primary {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.modal-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

/* Service Card Hover Effect */
.service-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3),
    0 0 60px rgba(0, 212, 255, 0.2);
}

.service-card:hover .service-overlay {
  opacity: 1;
  transform: scale(1.1);
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .service-modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 1rem;
    border-radius: 15px;
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .modal-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .modal-header h2 {
    font-size: 2rem;
  }

  .modal-description h3 {
    font-size: 1.5rem;
  }

  .modal-image img {
    height: 200px;
  }

  .service-modal-detail {
    padding: 1.5rem;
  }

  .modal-cta {
    padding: 1.5rem;
  }

  .modal-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .service-modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .service-modal-detail {
    padding: 1rem;
  }

  .modal-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-description h3 {
    font-size: 1.3rem;
  }

  .modal-image img {
    height: 150px;
  }

  .modal-features {
    gap: 1rem;
  }

  .feature-section h4 {
    font-size: 1.1rem;
  }

  .modal-cta {
    padding: 1rem;
    margin-top: 1rem;
  }

  .modal-cta p {
    font-size: 1rem;
  }

  .service-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* Visual Showcase Section */
.visual-showcase {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.visual-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 50% 50%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 0;
  animation: showcaseGlow 20s ease-in-out infinite;
}

@keyframes showcaseGlow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--light-gray);
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.showcase-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.1);
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.showcase-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.4s ease;
}

.showcase-item:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: var(--primary-color);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 212, 255, 0.4),
    0 0 120px rgba(0, 212, 255, 0.2);
}

.showcase-item:hover::before {
  opacity: 0.6;
}

.showcase-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7);
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.15);
  filter: brightness(0.9);
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 212, 255, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 30%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.showcase-content {
  text-align: center;
  transform: translateY(20px);
  transition: all 0.4s ease;
  opacity: 0.9;
}

.showcase-item:hover .showcase-content {
  transform: translateY(0);
  opacity: 1;
}

.showcase-content i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
  }
}

.showcase-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-content p {
  font-size: 1rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.click-hint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.showcase-item:hover .click-hint {
  opacity: 1;
  transform: translateY(0);
}

.click-hint i {
  animation: pointerBounce 1s ease-in-out infinite;
  font-size: 1rem;
}

@keyframes pointerBounce {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

/* Responsive Showcase */
@media (max-width: 1023px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .visual-showcase {
    padding: 6rem 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .showcase-item {
    height: 280px;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .click-hint {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 480px) {
  .visual-showcase {
    padding: 4rem 0;
  }

  .showcase-item {
    height: 250px;
  }

  .showcase-content i {
    font-size: 2.5rem;
  }

  .showcase-content h3 {
    font-size: 1.2rem;
  }

  .showcase-content p {
    font-size: 0.9rem;
  }

  .click-hint {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 8rem 0;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 212, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.why-item {
  background: var(--gradient-glass);
  border: var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(15px);
  cursor: pointer;
}

.why-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.4s ease;
}

.why-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 212, 255, 0.4),
    0 0 100px rgba(0, 212, 255, 0.2);
}

.why-item:hover::before {
  opacity: 0.5;
}

.why-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.why-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7);
}

.why-item:hover .why-image-wrapper img {
  transform: scale(1.2);
  filter: brightness(1);
}

.why-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
  animation: badgeBounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes badgeBounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(10deg);
  }
}

.why-content {
  padding: 2rem;
}

.why-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.why-content h3 i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.why-content p {
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.7;
}

.why-item .click-hint {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.why-item:hover .click-hint {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Why Choose Us */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 6rem 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-image-wrapper {
    height: 180px;
  }

  .why-content h3 {
    font-size: 1.2rem;
  }

  .why-content p {
    font-size: 0.95rem;
  }

  .click-hint {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 4rem 0;
  }

  .why-image-wrapper {
    height: 150px;
  }

  .why-badge {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .why-content {
    padding: 1.5rem;
  }

  .why-content h3 {
    font-size: 1.1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .click-hint {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Why Choose Us Modals */
.why-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: modalFadeIn 0.3s ease-out;
}

.why-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-modal-content {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 212, 255, 0.3);
  animation: modalSlideIn 0.4s ease-out;
}

.why-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.why-modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.why-modal-detail {
  display: none;
  padding: 2rem;
}

.why-modal-detail.active {
  display: block;
}

/* Responsive Why Modals */
@media (max-width: 768px) {
  .why-modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 1rem;
  }

  .why-modal-detail {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .why-modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .why-modal-detail {
    padding: 1rem;
  }

  .why-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* Showcase Process Modals */
.showcase-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  animation: modalFadeIn 0.3s ease-out;
}

.showcase-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-modal-content {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 212, 255, 0.3);
  animation: modalSlideIn 0.4s ease-out;
}

.showcase-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.showcase-modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.showcase-modal-detail {
  display: none;
  padding: 2rem;
}

.showcase-modal-detail.active {
  display: block;
}

.process-modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
  flex-shrink: 0;
}

.process-modal-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.process-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.process-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.process-image:hover img {
  transform: scale(1.05);
}

.process-description h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.03);
  border-radius: 15px;
  border: 2px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.6;
}

/* Responsive Showcase Modals */
@media (max-width: 768px) {
  .showcase-modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 1rem;
  }

  .process-modal-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-modal-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .process-modal-header h2 {
    font-size: 2rem;
  }

  .process-description h3 {
    font-size: 1.5rem;
  }

  .process-image img {
    height: 250px;
  }

  .process-step {
    padding: 1rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .showcase-modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .showcase-modal-detail {
    padding: 1rem;
  }

  .process-modal-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .process-modal-header h2 {
    font-size: 1.5rem;
  }

  .process-description h3 {
    font-size: 1.3rem;
  }

  .process-image img {
    height: 180px;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .step-content h4 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .showcase-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
