@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #00E5FF;
  --primary-dark: #00B8CC;
  --secondary: #00E5FF;
  --accent: #00E5FF;
  --dark: #0F172A;
  --dark-light: #1E293B;
  --text: #F8FAFC;
  --text-light: #CBD5E1;
  --glass: rgba(248, 250, 252, 0.1);
  --glass-border: rgba(248, 250, 252, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Amélioration du responsive global */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }
  
  p, .text-muted, .text-light {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* Container Bootstrap responsive */
  .container, .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Animations de base */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 229, 255, 0.6); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HEADER EXCEPTIONNEL - Design Unique
   ============================================ */

/* Particules animées dans le header */
.header-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.header-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
  animation: header-particle-float linear infinite;
  opacity: 0.6;
}

@keyframes header-particle-float {
  0% {
    transform: translateY(65px) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20px) translateX(20px) scale(1);
    opacity: 0;
  }
}

/* Navbar avec effets avancés */
.navbar {
  position: relative;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  padding: 0.7rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
  animation: navbar-shine 8s infinite;
}

@keyframes navbar-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.nav-background-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.navbar.scrolled .nav-background-glow {
  opacity: 1;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.98) !important;
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.15), 0 0 0 1px rgba(0, 229, 255, 0.1);
  padding: 0.5rem 0;
}

/* Logo avec effets 3D et animations */
.logo-custom {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-custom:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

.footer-logo-custom {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo-custom:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

/* Logo avec effets 3D et animations */
.navbar-brand {
  position: relative;
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none !important;
  z-index: 10;
}

.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-icon {
  position: relative;
  display: inline-block;
  color: var(--primary);
  font-size: 1.2rem;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.8), 0 0 40px rgba(0, 229, 255, 0.4);
  animation: logo-icon-pulse 2s ease-in-out infinite;
}

.logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: logo-pulse-ring 2s ease-out infinite;
}

@keyframes logo-icon-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes logo-pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.logo-text {
  display: inline-flex;
  gap: 0.2rem;
  position: relative;
}

.logo-text-main {
  color: var(--text);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.3);
}

.logo-text-accent {
  color: var(--primary);
  font-weight: 900;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.8), 0 0 30px rgba(0, 229, 255, 0.4);
  position: relative;
}

.logo-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.4), transparent);
  animation: logo-shine 3s infinite;
}

@keyframes logo-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Menu hamburger stylisé */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 0.5rem;
  position: relative;
  z-index: 10;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--primary);
  margin: 4px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  border-radius: 2px;
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.custom-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Liens de navigation avec effets 3D */
.nav-link-3d {
  position: relative;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text) !important;
  padding: 0.4rem 0.8rem !important;
  margin: 0 0.1rem;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-radius: 8px;
}

.nav-item {
  margin: 0;
}

.navbar-nav .nav-item {
  margin: 0 0.1rem;
}

.nav-link-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 229, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.nav-link-text {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-link-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.3), transparent);
  border-radius: 50%;
  transition: all 0.4s ease;
  pointer-events: none;
}

.nav-link-3d:hover .nav-link-bg,
.nav-link-3d.active .nav-link-bg {
  opacity: 1;
}

.nav-link-3d:hover .nav-link-text,
.nav-link-3d.active .nav-link-text {
  color: var(--primary) !important;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
  transform: translateY(-2px);
}

.nav-link-3d:hover .nav-link-glow,
.nav-link-3d.active .nav-link-glow {
  width: 100px;
  height: 100px;
}

.nav-link-3d::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  transition: width 0.3s ease;
}

.nav-link-3d:hover::after,
.nav-link-3d.active::after {
  width: 80%;
}

/* Bouton CTA dans la nav */
.btn-nav-cta {
  position: relative;
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none !important;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.btn-nav-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00F0FF, var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-nav-text {
  position: relative;
  z-index: 2;
}

.btn-nav-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-nav-cta:hover .btn-nav-bg {
  opacity: 1;
}

.btn-nav-cta:hover .btn-nav-shine {
  left: 100%;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 229, 255, 0.6);
}

.btn-nav-cta.active {
  background: #00F0FF;
}

/* Lien admin avec effet */
.nav-link-admin {
  position: relative;
  color: var(--text-light) !important;
  font-size: 0.95rem;
  padding: 0.4rem !important;
  transition: all 0.3s ease;
}

.admin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: admin-pulse 2s ease-out infinite;
}

@keyframes admin-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.nav-link-admin:hover {
  color: var(--primary) !important;
  transform: scale(1.1);
}

/* Hero section avec effet parallaxe et gradients animés */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
  animation: slide-up 0.8s ease;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-light);
  animation: slide-up 1s ease;
}

/* Boutons modernes avec effets */
.btn-modern {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.btn-primary-modern {
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4), 0 0 20px rgba(0, 229, 255, 0.3);
}

.btn-primary-modern::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;
}

.btn-primary-modern:hover::before {
  left: 100%;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.6), 0 0 30px rgba(0, 229, 255, 0.4);
  background: #00F0FF;
}

.btn-outline-modern {
  background: transparent;
  backdrop-filter: blur(10px);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.btn-outline-modern:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
  transform: translateY(-3px);
  color: var(--primary);
}

/* Cards avec glassmorphism et effets 3D */
.card-modern {
  background: var(--dark-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 229, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-modern:hover::before {
  opacity: 1;
}

.card-modern:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2), 0 0 40px rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.4);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4), 0 0 20px rgba(0, 229, 255, 0.3);
  transition: all 0.3s ease;
}

.card-modern:hover .card-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.6), 0 0 30px rgba(0, 229, 255, 0.4);
}

/* Sections avec effets */
.section-modern {
  padding: 6rem 0;
  position: relative;
  background: var(--dark-light);
}

.section-modern.bg-dark {
  background: var(--dark);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--text);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

/* Stats avec animation */
.stat-modern {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
  display: block;
  margin-bottom: 0.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Footer moderne */
/* ============================================
   FOOTER EXCEPTIONNEL - Design Unique
   ============================================ */

/* Formes géométriques animées */
.footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.footer-shape {
  position: absolute;
  border: 2px solid rgba(0, 229, 255, 0.2);
  border-radius: 50%;
  opacity: 0.3;
}

.footer-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation: footer-shape-rotate 20s linear infinite;
}

.footer-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation: footer-shape-rotate 15s linear infinite reverse;
}

.footer-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: footer-shape-pulse 4s ease-in-out infinite;
}

@keyframes footer-shape-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes footer-shape-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

/* Particules animées dans le footer */
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.footer-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary), 0 0 16px var(--primary);
  animation: footer-particle-float linear infinite;
  opacity: 0.5;
}

@keyframes footer-particle-float {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px) translateX(30px) scale(1);
    opacity: 0;
  }
}

/* Footer principal */
.footer-modern {
  background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
  color: var(--text);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.footer-glow-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
  animation: footer-glow-pulse 3s ease-in-out infinite;
}

@keyframes footer-glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Logo du footer */
.footer-brand {
  position: relative;
  z-index: 10;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  position: relative;
  font-size: 2rem;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.8);
  animation: footer-logo-icon-float 3s ease-in-out infinite;
}

.footer-logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: footer-logo-pulse-ring 2.5s ease-out infinite;
}

@keyframes footer-logo-icon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
}

@keyframes footer-logo-pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-logo-main {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.footer-logo-accent {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.8);
  line-height: 1;
}

.footer-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-stats {
  display: flex;
  gap: 2rem;
}

.footer-stat-item {
  text-align: center;
}

.footer-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.footer-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Titres de sections */
.footer-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

/* Navigation du footer */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.6rem 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.footer-link-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.1), rgba(0, 229, 255, 0.05));
  transition: left 0.3s ease;
}

.footer-link-text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-link-icon {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--primary);
}

.footer-link:hover .footer-link-bg {
  left: 0;
}

.footer-link:hover .footer-link-text {
  color: var(--primary);
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.footer-link:hover .footer-link-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Contact du footer */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.footer-contact-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.3), transparent);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-contact-text {
  flex: 1;
  transition: color 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(0, 229, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.footer-contact-item:hover .footer-contact-glow {
  width: 60px;
  height: 60px;
}

.footer-contact-item:hover .footer-contact-text {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

/* Réseaux sociaux */
.footer-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-icon {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  border: 2px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.footer-social-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.4), transparent);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.5);
}

.footer-social-icon:hover .footer-social-glow {
  width: 80px;
  height: 80px;
}

.footer-social-icon[data-social="facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

.footer-social-icon[data-social="twitter"]:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.5);
}

.footer-social-icon[data-social="linkedin"]:hover {
  background: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 10px 30px rgba(0, 119, 181, 0.5);
}

.footer-social-icon[data-social="instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
  box-shadow: 0 10px 30px rgba(188, 24, 136, 0.5);
}

.footer-social-icon[data-social="whatsapp"]:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Séparateur animé */
.footer-divider {
  position: relative;
  margin: 3rem 0 2rem;
  height: 1px;
  overflow: hidden;
}

.footer-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
}

.footer-divider-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 20px var(--primary);
  animation: footer-divider-scan 3s linear infinite;
}

@keyframes footer-divider-scan {
  0% { left: -100px; }
  100% { left: 100%; }
}

/* Copyright */
.footer-copyright {
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-copyright-text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.footer-copyright-icon {
  color: var(--primary);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.footer-copyright-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.2), transparent);
  border-radius: 50%;
  animation: footer-copyright-pulse 3s ease-in-out infinite;
}

@keyframes footer-copyright-pulse {
  0%, 100% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  50% {
    width: 200px;
    height: 200px;
    opacity: 0.3;
  }
}

/* Formulaires modernes */
.form-modern {
  background: var(--dark-light);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: var(--text);
}

.form-control-modern {
  border: 2px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  background: var(--dark);
  color: var(--text);
}

.form-control-modern:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1), 0 0 20px rgba(0, 229, 255, 0.2);
  outline: none;
  background: var(--dark);
}

.form-control-modern::placeholder {
  color: var(--text-light);
}

/* Animations au scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background animé */
.bg-animated {
  position: relative;
  overflow: hidden;
}

.bg-animated::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

/* Badges et éléments Bootstrap */
.badge {
  font-weight: 600;
}

.bg-primary {
  background-color: var(--primary) !important;
  color: var(--dark) !important;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.bg-light {
  background-color: var(--dark-light) !important;
  color: var(--text) !important;
}

.text-primary {
  color: var(--primary) !important;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.text-muted {
  color: var(--text-light) !important;
}

a.text-primary:hover {
  color: #00F0FF !important;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.btn-light {
  background-color: var(--primary) !important;
  color: var(--dark) !important;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.btn-light:hover {
  background-color: #00F0FF !important;
  border-color: #00F0FF;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* ============================================
   STRUCTURES UNIQUES - Layouts Jamais Vus
   ============================================ */

/* Container unique pour toutes les sections */
.unique-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* ============================================
   SECTION DIAGONALE - Services
   ============================================ */

.section-unique-diagonal {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-light);
  overflow: hidden;
}

.diagonal-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  z-index: 1;
}

.diagonal-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: var(--dark);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.unique-header-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}

.unique-title-box {
  position: sticky;
  top: 100px;
}

.unique-number {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.unique-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.unique-description-box {
  padding-top: 2rem;
}

.unique-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Grille asymétrique unique */
.unique-grid-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  margin-bottom: 4rem;
}

.unique-grid-item {
  position: relative;
  overflow: hidden;
}

.unique-item-large {
  grid-row: span 2;
}

.unique-item-medium {
  grid-row: span 1;
}

.unique-card {
  height: 100%;
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 0;
  padding: 3rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.unique-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.unique-card:hover::before {
  opacity: 1;
}

.unique-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
}

.unique-card-featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  border: 2px solid rgba(0, 229, 255, 0.3);
}

.unique-card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.1);
  line-height: 1;
}

.unique-card-icon-large {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--dark);
  font-size: 2rem;
  margin-bottom: 2rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
}

.unique-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.2);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.unique-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.unique-card-title-small {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.unique-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.unique-card-text-small {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.unique-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.unique-card-link:hover {
  gap: 1rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.unique-cta-wrapper {
  text-align: center;
  margin-top: 4rem;
}

.unique-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.unique-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.4);
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
}

/* ============================================
   SECTION ZIGZAG - Portfolio
   ============================================ */

.section-unique-zigzag {
  position: relative;
  padding: 8rem 0;
  background: var(--dark);
  overflow: hidden;
}

.zigzag-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  z-index: 1;
}

.zigzag-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
  z-index: 1;
}

.zigzag-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
  gap: 4rem;
}

.zigzag-title-wrapper {
  flex: 0 0 auto;
}

.zigzag-number {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.zigzag-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.zigzag-description {
  flex: 1;
  padding-top: 2rem;
}

.zigzag-description p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.zigzag-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.zigzag-item {
  position: relative;
}

.zigzag-item-left {
  margin-right: 15%;
}

.zigzag-item-right {
  margin-left: 15%;
}

.zigzag-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  background: var(--dark-light);
  border-left: 4px solid var(--primary);
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.zigzag-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 229, 255, 0.05);
  transition: width 0.4s ease;
}

.zigzag-card:hover::before {
  width: 100%;
}

.zigzag-card:hover {
  transform: translateX(10px);
  border-left-width: 6px;
  box-shadow: -10px 0 40px rgba(0, 229, 255, 0.2);
}

.zigzag-card-image {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), rgba(0, 229, 255, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--dark);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
}

.zigzag-item-right .zigzag-card-image {
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 0 100%);
}

.zigzag-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zigzag-card-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.zigzag-card-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.zigzag-card-client {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.zigzag-card-tech {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.zigzag-cta {
  text-align: center;
  margin-top: 4rem;
}

.zigzag-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.zigzag-cta-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.zigzag-cta-link:hover::before {
  left: 0;
}

.zigzag-cta-link:hover {
  color: var(--dark);
}

.zigzag-cta-arrow {
  transition: transform 0.3s ease;
}

.zigzag-cta-link:hover .zigzag-cta-arrow {
  transform: translateX(5px);
}

/* ============================================
   SECTION ORGANIQUE - Témoignages
   ============================================ */

.section-unique-organic {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-light);
  overflow: hidden;
}

.organic-shape-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.organic-shape {
  position: absolute;
  border: 2px solid rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  animation: organic-float 20s ease-in-out infinite;
}

.organic-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.organic-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: 5s;
}

.organic-shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes organic-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
}

.organic-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}

.organic-title-section {
  position: sticky;
  top: 100px;
}

.organic-number {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.organic-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.organic-intro {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
  padding-top: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.organic-testimonials {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 2rem;
}

.organic-testimonial-large {
  grid-row: span 2;
}

.organic-testimonial-medium {
  grid-row: span 1;
}

.organic-testimonial-card {
  height: 100%;
  background: var(--dark);
  padding: 3rem;
  position: relative;
  border: 1px solid rgba(0, 229, 255, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;
}

.organic-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.organic-testimonial-card:hover::before {
  opacity: 1;
}

.organic-testimonial-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.15);
}

.organic-testimonial-quote {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}

.organic-testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
  font-style: italic;
}

.organic-testimonial-text-small {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.organic-testimonial-author {
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  padding-top: 1.5rem;
}

.organic-testimonial-author-small {
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  padding-top: 1rem;
}

.organic-testimonial-stars {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.organic-testimonial-stars-small {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.organic-testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.organic-testimonial-name-small {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.organic-testimonial-company {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   SECTION STATS ASYMÉTRIQUE
   ============================================ */

.section-unique-stats {
  position: relative;
  padding: 8rem 0;
  background: var(--dark);
  overflow: hidden;
}

.stats-shape-cut {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  z-index: 1;
}

.stats-shape-cut-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  z-index: 1;
}

.stats-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}

.stats-text-section {
  position: sticky;
  top: 100px;
}

.stats-section-number {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.stats-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.stats-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
}

.stats-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-unique-item {
  background: var(--dark-light);
  padding: 2.5rem;
  border: 1px solid rgba(0, 229, 255, 0.2);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.stat-unique-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-unique-item:hover::before {
  opacity: 1;
}

.stat-unique-item:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2);
}

.stat-unique-large {
  grid-column: span 2;
  padding: 3.5rem;
}

.stat-unique-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, var(--dark-light), rgba(0, 229, 255, 0.05));
}

.stat-unique-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

.stat-unique-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.stat-unique-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.stat-unique-featured .stat-unique-line {
  width: 100%;
}

/* ============================================
   SECTION CTA FINALE UNIQUE
   ============================================ */

.section-unique-cta {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-light);
  overflow: hidden;
}

.cta-shape-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content-unique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-text-wrapper {
  position: relative;
}

.cta-number {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cta-title-unique {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-subtitle-unique {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.cta-button-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cta-button-unique {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  background: var(--primary);
  color: var(--dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
}

.cta-button-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.cta-button-unique:hover .cta-button-glow {
  width: 300px;
  height: 300px;
}

.cta-button-unique:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.5);
  clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 100%, 35px 100%);
}

.cta-button-icon {
  transition: transform 0.4s ease;
}

.cta-button-unique:hover .cta-button-icon {
  transform: translateX(5px) rotate(45deg);
}

/* Responsive pour les structures uniques */
@media (max-width: 1200px) {
  .unique-grid-asymmetric {
    grid-template-columns: 1fr 1fr;
  }
  
  .unique-item-large {
    grid-row: span 1;
  }
  
  .zigzag-item-left,
  .zigzag-item-right {
    margin-left: 0;
    margin-right: 0;
  }
  
  .organic-testimonials {
    grid-template-columns: 1fr 1fr;
  }
  
  .organic-testimonial-large {
    grid-row: span 1;
  }
  
  .stats-numbers-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-unique-large {
    grid-column: span 1;
  }
  
  .cta-content-unique {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-button-wrapper {
    justify-content: center;
  }
}

/* Responsive général */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1rem) !important;
    line-height: 1.6;
  }
  
  .card-modern {
    margin-bottom: 2rem;
    padding: 1.5rem !important;
  }
  
  .section-modern {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  
  .section-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  /* Container Bootstrap */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Navbar mobile */
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
  }
  
  .nav-link-3d {
    padding: 0.5rem 0.8rem !important;
    margin: 0.2rem 0 !important;
    font-size: 0.9rem;
  }
  
  .btn-nav-cta {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }
  
  /* Footer mobile */
  .footer-modern {
    padding: 3rem 0 1.5rem !important;
  }
  
  .footer-logo {
    margin-bottom: 2rem;
  }
  
  .footer-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .footer-social-icons {
    justify-content: center;
  }
}

/* Effets de particules flottantes */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 15s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.shape:nth-child(2) {
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.shape:nth-child(3) {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

/* ============================================
   STRUCTURES UNIQUES POUR TOUTES LES PAGES
   ============================================ */

/* ============================================
   SECTION MOSAÏQUE - Services Page
   ============================================ */

.section-unique-mosaic {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-light);
  overflow: hidden;
}

.mosaic-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 1;
}

.mosaic-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.mosaic-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}

.mosaic-title-section {
  position: sticky;
  top: 100px;
}

.mosaic-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mosaic-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.mosaic-description {
  padding-top: 2rem;
}

.mosaic-description p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  grid-auto-rows: auto;
}

.mosaic-item {
  position: relative;
}

.mosaic-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-item-wide {
  grid-column: span 2;
}

.mosaic-item-normal {
  grid-column: span 1;
}

.mosaic-card {
  height: 100%;
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 3rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.mosaic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.mosaic-card:hover::before {
  opacity: 1;
}

.mosaic-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
}

.mosaic-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.mosaic-card-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
}

.mosaic-card-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.1);
  line-height: 1;
}

.mosaic-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.mosaic-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.mosaic-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 229, 255, 0.1);
  display: inline-block;
  position: relative;
  z-index: 2;
}

.mosaic-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
}

.mosaic-card-link:hover {
  gap: 1rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  color: var(--primary);
}

.cta-alt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-alt-text {
  position: relative;
}

.cta-alt-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-alt-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.cta-alt-button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.cta-alt-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: var(--primary);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
}

.cta-alt-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
}

/* ============================================
   SECTION MASONRY - Portfolio Page
   ============================================ */

.section-unique-masonry {
  position: relative;
  padding: 8rem 0;
  background: var(--dark);
  overflow: hidden;
}

.masonry-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  z-index: 1;
}

.masonry-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
  z-index: 1;
}

.masonry-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.masonry-title-wrapper {
  position: sticky;
  top: 100px;
}

.masonry-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.masonry-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.masonry-description {
  padding-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.9;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  color: var(--text-light);
}

.masonry-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  justify-content: center;
}

.masonry-filter-btn {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 2px solid rgba(0, 229, 255, 0.3);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.masonry-filter-btn:hover,
.masonry-filter-btn.active {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 229, 255, 0.4);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.25rem;
  grid-auto-rows: 6px;
  align-items: start;
}

.masonry-item {
  position: relative;
}

.masonry-item-tall {
  grid-row: span 20;
}

.masonry-item-wide {
  grid-row: span 16;
  grid-column: span 1;
}

.masonry-item-normal {
  grid-row: span 18;
}

.masonry-card {
  background: var(--dark-light);
  border: 1px solid rgba(0, 229, 255, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.masonry-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
}

.masonry-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), rgba(0, 229, 255, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--dark);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.masonry-item-tall .masonry-card-image {
  height: 240px;
}

.masonry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.masonry-card-badge {
  background: var(--primary);
  color: var(--dark);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.masonry-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}

.masonry-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.masonry-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.masonry-card-title a:hover {
  color: var(--primary);
}

.masonry-card-client {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.masonry-card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.masonry-card-tech span {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(0, 229, 255, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.masonry-card-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  flex-grow: 0;
}

.masonry-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: 0;
}

.masonry-card-link:hover {
  gap: 1rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* ============================================
   SECTION SPLIT - About Page
   ============================================ */

.section-unique-split {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-light);
  overflow: hidden;
}

.split-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 1;
}

.split-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
  z-index: 1;
}

.split-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.split-left,
.split-right {
  position: relative;
}

.split-card {
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 3rem;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.split-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.split-card:hover::before {
  opacity: 1;
}

.split-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
}

.split-card-featured {
  border: 2px solid rgba(0, 229, 255, 0.3);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.split-card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.1);
  line-height: 1;
}

.split-card-icon-large {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
}

.split-card-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.split-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.split-feature-item {
  position: relative;
}

.split-feature-card {
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
}

.split-feature-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15);
}

.split-feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  transition: all 0.3s ease;
}

.split-feature-card:hover .split-feature-icon {
  background: var(--primary);
  color: var(--dark);
  transform: scale(1.1);
}

.split-feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.split-feature-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.split-history-section,
.split-vision-section {
  margin-bottom: 5rem;
}

.split-history-card,
.split-vision-card {
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 4rem;
  position: relative;
  transition: all 0.4s ease;
}

.split-history-card:hover,
.split-vision-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.15);
}

.split-history-number,
.split-vision-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.1);
  line-height: 1;
}

.split-history-title,
.split-vision-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}

.split-history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.split-history-text p,
.split-vision-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.split-vision-text {
  text-align: center;
  margin: 0;
}

/* ============================================
   SECTION TIMELINE - Blog Page
   ============================================ */

.section-unique-timeline {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-light);
  overflow: hidden;
}

.timeline-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  z-index: 1;
}

.timeline-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.timeline-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}

.timeline-title-section {
  position: sticky;
  top: 100px;
}

.timeline-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.timeline-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.timeline-description {
  padding-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.9;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  color: var(--text-light);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item-featured {
  grid-column: span 2;
}

.timeline-card {
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.timeline-card:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
}

.timeline-card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary), rgba(0, 229, 255, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.timeline-item-featured .timeline-card-image {
  height: 350px;
}

.timeline-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-card:hover .timeline-card-overlay {
  opacity: 1;
}

.timeline-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.timeline-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline-card-category {
  background: var(--primary);
  color: var(--dark);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}

.timeline-card-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.timeline-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.timeline-item-featured .timeline-card-title {
  font-size: 2rem;
}

.timeline-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.timeline-card-title a:hover {
  color: var(--primary);
}

.timeline-card-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex: 1;
}

.timeline-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.timeline-card-views {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.timeline-card-link:hover {
  gap: 1rem;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/* ============================================
   SECTION CONTACT - Contact Page
   ============================================ */

.section-unique-contact {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-light);
  overflow: hidden;
}

.contact-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  z-index: 1;
}

.contact-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.contact-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-side {
  position: sticky;
  top: 100px;
}

.contact-info-header {
  margin-bottom: 3rem;
}

.contact-info-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.contact-info-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin: 0;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.contact-info-value a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-value a:hover {
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.contact-form-side {
  position: relative;
}

.contact-form-wrapper {
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 3rem;
  position: relative;
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-form-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-form-unique {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-unique .form-label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-form-unique .form-control-modern {
  width: 100%;
}

.contact-form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--dark);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
  overflow: hidden;
  width: 100%;
}

.contact-form-submit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.contact-form-submit:hover .contact-form-submit-glow {
  width: 300px;
  height: 300px;
}

.contact-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
}

/* ============================================
   SECTION QUOTE - Quote Page
   ============================================ */

.section-unique-quote {
  position: relative;
  padding: 8rem 0;
  background: var(--dark-light);
  overflow: hidden;
}

.quote-shape-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark-light);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 1;
}

.quote-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--dark);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.quote-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.quote-form-header {
  text-align: center;
  margin-bottom: 4rem;
}

.quote-form-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
}

.quote-form-number {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.quote-form-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.quote-form-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.quote-form-unique {
  background: var(--dark);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-form-unique .form-label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.quote-form-unique .form-control-modern {
  width: 100%;
}

.quote-form-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: var(--primary);
  color: var(--dark);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
}

.quote-form-submit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.quote-form-submit:hover .quote-form-submit-glow {
  width: 400px;
  height: 400px;
}

.quote-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.5);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
}

/* ============================================
   SECTION CTA ALTERNATIVE - Services Page
   ============================================ */

.section-unique-cta-alt {
  position: relative;
  padding: 6rem 0;
  background: var(--dark);
  overflow: hidden;
}

.cta-alt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-alt-text {
  position: relative;
}

.cta-alt-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cta-alt-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.cta-alt-button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.cta-alt-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: var(--primary);
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
}

.cta-alt-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
}

/* Responsive pour toutes les structures uniques */
@media (max-width: 1200px) {
  .mosaic-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .mosaic-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .masonry-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .timeline-item-featured {
    grid-column: span 1;
  }
  
  .contact-layout-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info-side {
    position: relative;
    top: 0;
  }
  
  .unique-header-wrapper,
  .zigzag-header,
  .organic-header,
  .stats-content-wrapper,
  .cta-content-unique {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .unique-title-box,
  .zigzag-title-wrapper,
  .organic-title-section,
  .stats-text-section {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  /* Container unique */
  .unique-container {
    padding: 0 1rem;
  }
  
  /* Headers - Tous en une colonne */
  .mosaic-header,
  .masonry-header,
  .timeline-header,
  .contact-layout-wrapper,
  .unique-header-wrapper,
  .zigzag-header,
  .organic-header,
  .stats-content-wrapper,
  .cta-content-unique,
  .cta-alt-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  /* Titres sticky désactivés sur mobile */
  .unique-title-box,
  .zigzag-title-wrapper,
  .organic-title-section,
  .stats-text-section,
  .contact-info-side {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 1.5rem;
  }
  
  /* Descriptions */
  .unique-description,
  .zigzag-description,
  .organic-intro,
  .masonry-description,
  .timeline-description,
  .contact-form-intro,
  .quote-form-intro {
    padding-top: 0 !important;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Grilles - Toutes en une colonne */
  .mosaic-grid,
  .masonry-grid,
  .timeline-grid,
  .unique-grid-asymmetric,
  .zigzag-grid,
  .organic-testimonials,
  .stats-numbers-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  /* Items de grille */
  .mosaic-item-large,
  .mosaic-item-wide,
  .mosaic-item-normal,
  .masonry-item-tall,
  .masonry-item-wide,
  .masonry-item-normal,
  .timeline-item-featured,
  .organic-testimonial-large,
  .organic-testimonial-medium,
  .unique-item-large,
  .unique-item-medium,
  .zigzag-item-left,
  .zigzag-item-right,
  .stat-unique-large,
  .stat-unique-featured {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Split layouts */
  .split-content-wrapper,
  .split-history-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .split-features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  /* Zigzag cards */
  .zigzag-card {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .zigzag-card-image {
    width: 100% !important;
    height: 200px !important;
  }
  
  /* Cartes */
  .unique-card,
  .mosaic-card,
  .masonry-card,
  .timeline-card,
  .organic-testimonial-card,
  .split-card,
  .split-feature-card,
  .split-history-card,
  .split-vision-card {
    padding: 2rem 1.5rem !important;
  }
  
  /* Textes dans les cartes */
  .unique-card-text,
  .unique-card-text-small,
  .mosaic-card-description,
  .masonry-card-description,
  .timeline-card-excerpt,
  .organic-testimonial-text,
  .organic-testimonial-text-small,
  .zigzag-card-content p,
  .split-card-text,
  .split-feature-text {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* Titres réduits */
  .unique-title,
  .zigzag-title,
  .organic-title,
  .mosaic-title,
  .masonry-title,
  .timeline-title,
  .contact-info-title,
  .quote-form-title,
  .stats-title,
  .cta-title-unique {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    line-height: 1.2;
  }
  
  /* Nombres de section */
  .unique-number,
  .zigzag-number,
  .organic-number,
  .mosaic-number,
  .masonry-number,
  .timeline-number,
  .contact-info-number,
  .quote-form-number,
  .stats-section-number {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  /* Textes */
  .unique-description,
  .zigzag-description p,
  .organic-intro,
  .mosaic-description p,
  .masonry-description,
  .timeline-description,
  .contact-form-intro,
  .quote-form-intro,
  .stats-description {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  
  /* CTA buttons */
  .cta-alt-content {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  
  .cta-alt-button-wrapper,
  .cta-button-wrapper {
    justify-content: center !important;
  }
  
  .cta-alt-button,
  .cta-button-unique,
  .unique-cta-button,
  .zigzag-cta-link {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Formulaires */
  .contact-form-unique,
  .quote-form-unique {
    padding: 2rem 1.5rem !important;
  }
  
  .contact-form-submit,
  .quote-form-submit {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  
  /* Sections padding réduit */
  .section-unique-mosaic,
  .section-unique-masonry,
  .section-unique-split,
  .section-unique-timeline,
  .section-unique-contact,
  .section-unique-quote,
  .section-unique-diagonal,
  .section-unique-zigzag,
  .section-unique-organic,
  .section-unique-stats,
  .section-unique-cta {
    padding: 3rem 0 !important;
  }
  
  /* Formes découpées réduites */
  .diagonal-shape-top,
  .diagonal-shape-bottom,
  .zigzag-shape-top,
  .zigzag-shape-bottom,
  .mosaic-shape-top,
  .mosaic-shape-bottom,
  .masonry-shape-top,
  .masonry-shape-bottom,
  .timeline-shape-top,
  .timeline-shape-bottom,
  .contact-shape-top,
  .contact-shape-bottom,
  .quote-shape-top,
  .quote-shape-bottom,
  .split-shape-top,
  .split-shape-bottom,
  .stats-shape-cut,
  .stats-shape-cut-bottom {
    height: 60px !important;
  }
  
  /* Images réduites */
  .zigzag-card-image,
  .masonry-card-image,
  .timeline-card-image {
    height: 200px !important;
  }
  
  .timeline-item-featured .timeline-card-image {
    height: 250px !important;
  }
  
  /* Icônes réduites */
  .unique-card-icon-large,
  .split-card-icon-large,
  .quote-form-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
  }
  
  .unique-card-icon,
  .split-feature-icon,
  .contact-info-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.2rem !important;
  }
  
  /* Marges réduites */
  .mosaic-header,
  .masonry-header,
  .timeline-header,
  .unique-header-wrapper,
  .zigzag-header,
  .organic-header {
    margin-bottom: 3rem !important;
  }
  
  .masonry-filters {
    margin-bottom: 2rem;
    gap: 0.5rem;
  }
  
  .masonry-filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Mobile très petit */
@media (max-width: 480px) {
  .unique-container {
    padding: 0 0.75rem;
  }
  
  .unique-title,
  .zigzag-title,
  .organic-title,
  .mosaic-title,
  .masonry-title,
  .timeline-title,
  .contact-info-title,
  .quote-form-title,
  .stats-title {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }
  
  .unique-card,
  .mosaic-card,
  .masonry-card,
  .timeline-card,
  .organic-testimonial-card,
  .split-card {
    padding: 1.5rem 1rem !important;
  }
  
  /* Textes encore plus petits sur très petits écrans */
  .unique-description,
  .zigzag-description p,
  .organic-intro,
  .masonry-description,
  .timeline-description,
  .contact-form-intro,
  .quote-form-intro {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }
  
  .unique-card-text,
  .unique-card-text-small,
  .mosaic-card-description,
  .masonry-card-description,
  .timeline-card-excerpt,
  .organic-testimonial-text,
  .zigzag-card-content p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }
  
  .section-unique-mosaic,
  .section-unique-masonry,
  .section-unique-split,
  .section-unique-timeline,
  .section-unique-contact,
  .section-unique-quote,
  .section-unique-diagonal,
  .section-unique-zigzag,
  .section-unique-organic,
  .section-unique-stats {
    padding: 2rem 0 !important;
  }
  
  /* Boutons pleine largeur sur très petits écrans */
  .unique-cta-button,
  .zigzag-cta-link,
  .cta-button-unique,
  .cta-alt-button {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
  }
  
  /* Headers avec moins d'espace */
  .unique-header-wrapper,
  .zigzag-header,
  .organic-header,
  .mosaic-header,
  .masonry-header,
  .timeline-header {
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
  }
}
