/* ============================================
   MetaLink - Style Glassmorphism Crystal
   Fond gris clair nuancé, ambiance froide et lumineuse
   ============================================ */

/* Variables CSS */
:root {
  /* Palette de couleurs - Nuances plus foncées */
  --bg-start: #dde3ea;
  --bg-center: #c6ceda;
  --bg-end: #9ba4b5;
  --accent-dark: #7f8c9f;
  --accent-darker: #6c7a8f;
  --text-primary: rgba(20, 25, 35, 0.95);
  --text-secondary: rgba(30, 35, 45, 0.85);
  --text-muted: rgba(40, 45, 55, 0.7);
  --text-dark: rgba(20, 25, 35, 0.95);
  --text-dark-secondary: rgba(30, 35, 45, 0.85);
  --text-dark-muted: rgba(50, 55, 65, 0.65);
  
  /* Glass effect - Plus contrasté */
  --glass-bg: rgba(205, 215, 228, 0.45);
  --glass-bg-hover: rgba(205, 215, 228, 0.55);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-border-hover: rgba(255, 255, 255, 0.8);
  --glass-blur: blur(22px) saturate(1.6);
  --glass-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  --glass-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.30);
  --glass-radius: 32px;
  
  /* Spacing */
  --container-max: 1320px;
  --section-padding: 8rem 2rem;
  --section-gap: 6rem;
  --section-margin: 4rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: rgba(20, 25, 35, 0.95);
  background: 
    linear-gradient(180deg, #e4e9f0 0%, #d1d9e5 30%, #c6ceda 60%, #b8c2d0 100%);
  background-attachment: fixed;
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari fallback */
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(127, 140, 159, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(108, 122, 143, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(155, 164, 181, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Glass Surface - Classe réutilisable */
.glass-surface {
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.glass-surface:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Boutons Glass */
.btn-glass {
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: rgba(180, 195, 210, 0.5);
  border-radius: 999px;
  border: 1px solid rgba(30, 35, 45, 0.3);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(20, 25, 35, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-family);
  white-space: nowrap;
}

.btn-glass:hover {
  background: rgba(180, 195, 210, 0.65);
  border-color: rgba(30, 35, 45, 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.30);
  transform: translateY(-2px);
  color: rgba(20, 25, 35, 1);
}

.btn-glass:active {
  transform: scale(0.97) translateY(0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.btn-glass-secondary {
  background: rgba(180, 195, 210, 0.35);
  border-color: rgba(30, 35, 45, 0.25);
  color: rgba(30, 35, 45, 0.85);
}

.btn-glass-secondary:hover {
  background: rgba(180, 195, 210, 0.5);
  border-color: rgba(30, 35, 45, 0.35);
  color: rgba(20, 25, 35, 0.95);
}

.btn-glass-large {
  padding: 16px 40px;
  font-size: 16px;
  background: rgba(180, 195, 210, 0.65);
  border-color: rgba(30, 35, 45, 0.4);
  color: var(--text-dark);
  font-weight: 600;
}

.btn-glass-large:hover {
  background: rgba(180, 195, 210, 0.8);
  border-color: rgba(30, 35, 45, 0.5);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.30),
              0 0 25px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-glass-round {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(30, 35, 45, 0.3);
  background: rgba(180, 195, 210, 0.5);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.btn-glass-round:hover {
  background: rgba(180, 195, 210, 0.65);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.30);
  transform: translateY(-2px) scale(1.05);
}

.btn-glass-round:active {
  transform: scale(0.97);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.btn-glass-round svg {
  width: 24px;
  height: 24px;
  stroke: rgba(20, 25, 35, 0.95);
  stroke-width: 2;
}

/* Container */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Header Glass */
.header-glass {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  border-bottom: none;
  transition: var(--transition);
}

.header-glass.scrolled {
  background: transparent;
  box-shadow: none;
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Menu unique long avec logo et icônes */
.header-menu-long {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: var(--transition);
  max-width: 600px;
  width: 100%;
  gap: 2rem;
  margin: 0 auto;
}

.header-menu-long:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transform: translateY(-1px);
}

/* Groupe d'icônes à droite */
.header-icons-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

/* Logo texte */
.logo-link .logo-text {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(20, 25, 35, 0.9);
  text-transform: uppercase;
  transition: var(--transition);
}

.logo-link:hover .logo-text {
  color: rgba(20, 25, 35, 1);
  font-weight: 500;
}

/* Logo texte blanc sur fond noir */
.header-dark .logo-link .logo-text {
  color: #ffffff;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-dark .logo-link:hover .logo-text {
  color: rgba(255, 255, 255, 0.9);
}

.header-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  opacity: 0.7;
}

.header-icon-link svg {
  stroke: rgba(20, 25, 35, 0.8);
  stroke-width: 2;
  transition: var(--transition);
}

/* Icônes blanches sur fond noir */
.header-dark .header-icon-link {
  opacity: 0.8;
}

.header-dark .header-icon-link svg {
  stroke: rgba(255, 255, 255, 0.8);
  transition: stroke 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-dark .header-icon-link:hover {
  opacity: 1;
}

.header-dark .header-icon-link:hover svg {
  stroke: rgba(255, 255, 255, 1);
}

.header-icon-link:hover {
  opacity: 1;
  transform: translateY(-1px) scale(1.1);
}

.header-icon-link:hover svg {
  stroke-width: 2.5;
}

.header-icon-link:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Hero Section - Style Polaris Amélioré */
.hero-section {
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari */
  height: 100vh;
  height: 100svh; /* iOS Safari */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  position: relative;
  padding: 0 6rem 6rem;
  padding-bottom: calc(6rem + env(safe-area-inset-bottom));
  overflow: hidden;
  background: transparent;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    url('../images/accueil.jpg') center center / cover no-repeat,
    radial-gradient(circle at 15% 25%, rgba(127, 140, 159, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(108, 122, 143, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bottom-container {
  position: absolute;
  bottom: 6rem;
  left: 6rem;
  right: 6rem;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem 3rem;
  pointer-events: none;
  width: auto;
  max-width: calc(100% - 12rem);
  margin: 0;
  text-align: left;
}

.hero-bottom-container > * {
  pointer-events: auto;
}

.hero-title-crystal {
  font-size: 7.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  /* Même matière que le menu - style simple et élégant */
  color: rgba(255, 255, 255, 0.95);
  text-shadow: none;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: heroCrystalFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  line-height: 1;
  text-align: left;
  transition: var(--transition);
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 100%;
}

.hero-domains-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
}

.hero-domain-item {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-family);
  animation: heroCrystalFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
  opacity: 0;
  transition: var(--transition);
}

.hero-subtitle-crystal {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  /* Même matière que le menu - style simple et élégant */
  color: rgba(255, 255, 255, 0.75);
  text-shadow: none;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: heroCrystalFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  opacity: 0;
  line-height: 1.4;
  text-align: left;
  transition: var(--transition);
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.hero-description-crystal {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  /* Même matière que le menu - style simple et élégant */
  color: rgba(255, 255, 255, 0.75);
  text-shadow: none;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: heroCrystalFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  opacity: 0;
  line-height: 1.6;
  text-align: left;
  max-width: 500px;
  transition: var(--transition);
}

/* Conteneur pour les boutons CTA */
.hero-cta-group {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: heroCrystalFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
  opacity: 0;
  flex-wrap: nowrap;
  min-width: fit-content;
  flex-shrink: 0;
  margin-left: auto;
}

.hero-cta-crystal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-family: var(--font-family);
  transition: var(--transition);
  pointer-events: auto;
  cursor: pointer;
}

.hero-cta-crystal svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.hero-cta-crystal:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 1);
}

.hero-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  font-family: var(--font-family);
  transition: var(--transition);
  pointer-events: auto;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-cta-contact:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 1);
}

@keyframes heroCrystalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}




/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
  display: block;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  font-family: var(--font-family);
  max-width: 800px;
}

.section-subtitle {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(20, 25, 35, 0.7);
  margin: 0 auto 2rem;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  font-family: var(--font-family);
  max-width: 650px;
}

/* Section Plan du site - Design minimaliste style Next.js/Apple */
.site-map-section {
  padding: 120px 2rem;
  background: #ffffff;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-map-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.site-map-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 48px;
  font-family: -apple-system, system-ui, "SF Pro Text", sans-serif;
  font-weight: 500;
  text-align: center;
}

.site-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  border: 1px solid #e3e3e3;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.02);
  margin: 0 auto;
}

.site-map-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
  border-radius: 12px;
  padding: 10px 12px;
}

.site-map-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-map-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #111111;
  font-family: -apple-system, system-ui, "SF Pro Text", sans-serif;
  letter-spacing: -0.01em;
}

.site-map-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #7a7a7a;
  font-family: -apple-system, system-ui, "SF Pro Text", sans-serif;
  }

.site-map-arrow {
  font-size: 18px;
  transform: translateX(0);
  transition: transform 0.2s ease;
  color: #111111;
  line-height: 1;
  }

.site-map-item:hover {
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-1px);
  }

.site-map-item:hover .site-map-arrow {
  transform: translateX(4px);
  }

.site-map-item:hover h3 {
  color: #000000;
  }

/* Responsive pour Plan du site */
@media (max-width: 900px) {
  .site-map-section {
    padding: 100px 2rem;
  }
  
  .site-map-inner {
    max-width: 100%;
  }
  
  .site-map-eyebrow {
    margin-bottom: 40px;
  }
  
  .site-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    padding: 40px 32px;
  }
}

@media (max-width: 600px) {
  .site-map-section {
    padding: 80px 1.5rem;
    min-height: auto;
  }
  
  .site-map-eyebrow {
    margin-bottom: 32px;
  }

  .site-map-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }

  .site-map-item {
    padding: 12px;
  }
}


/* Presentation Section */
.presentation-section {
  position: relative;
  padding: 2rem 2rem 0;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari */
  width: 100%;
  padding-top: 3rem;
}

.presentation-intro-block {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  margin-top: 0;
  gap: 0;
}

.presentation-intro-text {
  font-size: 1.875rem;
  line-height: 1.7;
  color: rgba(20, 25, 35, 0.95);
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 0 2rem;
  display: block;
  width: 100%;
  font-family: var(--font-family);
  font-style: normal;
}

.presentation-intro-text .text-bold {
  color: rgba(20, 25, 35, 0.95);
  font-weight: 600;
}

.presentation-intro-text .text-gray {
  color: rgba(20, 25, 35, 0.5);
  font-weight: 400;
}




@media (max-width: 768px) {
  .presentation-section {
    padding: 2rem 1rem;
  }

  .presentation-intro-text {
    font-size: 1.25rem;
  }
}

/* Méthode Section */
/* Section Méthode Premium - Style Apple Vision Pro */
/* Section Méthode */
.methode-section {
  position: relative;
  padding: 2rem 2rem;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari */
  width: 100%;
  overflow: hidden;
}

/* Grille graphique en fond - style technique */
.methode-grid-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: 
    /* Marqueurs aux intersections de la grille majeure */
    url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Crect x='0' y='0' width='2' height='2' rx='0.5' fill='%23b0b0b0'/%3E%3C/g%3E%3C/svg%3E"),
    /* Grille majeure (carrés de 50px avec coins arrondis) */
    url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d0d0d0' stroke-width='0.5'%3E%3Crect x='0' y='0' width='50' height='50' rx='1'/%3E%3C/g%3E%3C/svg%3E"),
    /* Grille mineure (carrés de 10px) */
    linear-gradient(rgba(229, 229, 229, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 229, 229, 0.4) 1px, transparent 1px);
  background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  opacity: 0.6;
  mask-image: 
    linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.3) 10%, black 20%, black 80%, rgba(0, 0, 0, 0.3) 90%, transparent 100%);
  -webkit-mask-image: 
    linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.3) 10%, black 20%, black 80%, rgba(0, 0, 0, 0.3) 90%, transparent 100%);
}

.methode-grid-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 8%, transparent 20%),
    linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 8%, transparent 20%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
}

/* Timeline Méthode */
.methode-section .section-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.methode-title {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  width: 100%;
}

.methode-title .univers-gray {
  color: rgba(20, 25, 35, 0.25);
  display: inline-block;
}

.methode-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(20, 25, 35, 0.85);
  margin-bottom: 2rem;
  margin-top: 0;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
}

.methode-timeline {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0;
  margin-top: -75px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(20, 25, 35, 0.2) 10%, 
    rgba(20, 25, 35, 0.3) 50%, 
    rgba(20, 25, 35, 0.2) 90%, 
    transparent 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-arrow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 48px;
  height: 28px;
  -webkit-transform: translateX(-50%) translateY(-28px) translateZ(0);
  transform: translateX(-50%) translateY(-28px) translateZ(0);
  z-index: 4;
  pointer-events: none;
  will-change: top, transform;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4))
          drop-shadow(0 0 40px rgba(255, 255, 255, 0.2))
          drop-shadow(0 4px 12px rgba(20, 25, 35, 0.3));
}

.timeline-arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 28px solid rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6))
          drop-shadow(0 0 30px rgba(255, 255, 255, 0.3))
          drop-shadow(0 2px 8px rgba(20, 25, 35, 0.25));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
              0 0 40px rgba(255, 255, 255, 0.15),
              inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.timeline-arrow::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.2);
  }
}


.timeline-step {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-step:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-point {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #dc3545;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, background-color, border-color, box-shadow;
}

.timeline-point.completed {
  border-color: #28a745;
  background: #28a745;
}

.timeline-point.active {
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 0 8px rgba(220, 53, 69, 0.2);
}

.timeline-step {
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.active {
  transform: translateX(12px);
}

.timeline-step:nth-child(even).active {
  transform: translateX(-12px);
}

.timeline-step.active .timeline-content {
  opacity: 1;
  filter: brightness(1.15);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, filter;
}

.timeline-step.active .step-title {
  color: rgba(20, 25, 35, 1);
  font-weight: 600;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              font-weight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: color, font-weight;
}

.timeline-content {
  flex: 1;
  max-width: 400px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.timeline-step:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: auto;
  padding-right: 2rem;
}

.timeline-step:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  padding-left: 2rem;
  text-align: right;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(20, 25, 35, 0.6);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(20, 25, 35, 0.95);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-text {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(20, 25, 35, 0.85);
  letter-spacing: 0.01em;
}


/* Responsive Méthode */
@media (max-width: 1024px) {
  .methode-section .section-container {
    padding: 1.5rem;
  }

  .methode-title {
    font-size: 60px;
    margin-bottom: 1.5rem;
  }

  .methode-timeline {
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .methode-section {
    padding: 1.5rem 1rem;
  }

  .methode-section .section-container {
    padding: 1rem;
    min-height: auto;
  }

  .methode-section .portfolio-header {
    margin-bottom: 2rem;
  }

  .methode-title {
    font-size: 48px;
    margin-bottom: 1.5rem;
  }

  .methode-timeline {
    gap: 1.5rem;
  }
}

/* Section Portfolio */
.portfolio-section {
  position: relative;
  padding: 120px 2rem;
  background: #ffffff;
  min-height: auto;
}

.portfolio-hero {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.portfolio-header {
  text-align: center;
  max-width: 100%;
  margin: 0 0 0.5rem 0;
  padding: 0;
  width: 100%;
}

/* Espacement accru pour la section Méthode */
.methode-section .portfolio-header {
  margin-bottom: 2.5rem;
}

.methode-section .portfolio-subtitle {
  margin-bottom: 0;
}

.portfolio-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
  text-align: center;
  width: 100%;
  color: rgba(20, 25, 35, 0.95);
  font-family: var(--font-family);
  white-space: normal;
  overflow: visible;
}

.portfolio-subtitle {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.75;
  color: rgba(20, 25, 35, 0.5);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
  text-align: center;
  font-family: var(--font-family);
}

.portfolio-micro-line {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.58;
  color: rgba(20, 25, 35, 0.58);
  margin: 0;
  margin-top: 0.75rem;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  font-family: -apple-system, system-ui, "SF Pro Text", sans-serif;
}

/* Texte au-dessus du carrousel */
.portfolio-text-above {
  max-width: 100%;
  margin: 0 0 0 0;
  padding: 0;
  text-align: center;
}

.portfolio-text-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-family);
}

.portfolio-text-paragraph {
  font-size: 1.375rem;
  line-height: 1.75;
  color: rgba(20, 25, 35, 0.95);
  margin: 0 0 1rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-family);
}

.portfolio-text-paragraph:last-child {
  margin-bottom: 0;
}

.portfolio-text-above {
  margin-top: 0;
  margin-bottom: 0;
}

.portfolio-footer-text {
  margin-top: 2rem;
  text-align: center;
}

.portfolio-footer-text .portfolio-text-paragraph {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(20, 25, 35, 0.6);
  line-height: 1.6;
}

.portfolio-footer-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 25, 35, 0.65);
  margin: 0 0 1.5rem 0;
  font-family: -apple-system, system-ui, "SF Pro Text", sans-serif;
  opacity: 0.65;
}

.portfolio-footer-text {
  font-size: 1.375rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  color: rgba(20, 25, 35, 0.95);
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 100%;
  display: block;
  text-align: center;
}

.portfolio-footer-text:first-of-type {
  color: rgba(20, 25, 35, 0.95);
  font-weight: 600;
}

.portfolio-footer-text:last-child {
  margin-bottom: 0;
}

.portfolio-arc {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: grab;
  margin-top: 2rem;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.portfolio-arc:active {
  cursor: grabbing;
}


.portfolio-carousel-scroll {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.portfolio-carousel-tile {
  position: absolute;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e3e3e3;
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  will-change: transform, opacity;
}

.portfolio-carousel-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .portfolio-section {
    padding: 80px 1.5rem;
    min-height: auto;
  }

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

  .portfolio-title {
    font-size: 1.875rem;
    white-space: normal;
    margin-bottom: 0;
  }

  .portfolio-subtitle {
    font-size: 0.875rem;
  }

  .portfolio-text-title {
    font-size: 1.125rem;
  }

  .portfolio-text-paragraph {
    font-size: 1.125rem;
  }

  .portfolio-footer {
    margin-top: 1.5rem;
    max-width: 100%;
    padding: 0;
  }

  .portfolio-micro-line {
    font-size: 0.8125rem;
  }

  .portfolio-footer-label {
    font-size: 0.625rem;
    margin-bottom: 1.25rem;
  }

  .portfolio-text-above {
    margin: 2.5rem auto 1.5rem;
  }

  .portfolio-text-title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }

  .portfolio-text-paragraph {
    font-size: 1.125rem;
  }

  .portfolio-carousel-tile {
    width: 140px;
    height: 140px;
  }

  .portfolio-tile-label {
    font-size: 0.625rem;
    bottom: 8px;
    left: 8px;
    padding: 6px 10px;
  }

  .portfolio-arc {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .portfolio-title {
    font-size: 48px;
    white-space: normal;
    margin-bottom: 1.5rem;
  }

  .portfolio-subtitle {
    font-size: 0.9375rem;
  }

  .portfolio-text-title {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .portfolio-text-paragraph {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .portfolio-text-title {
    font-size: 0.8125rem;
  }

  .portfolio-text-paragraph {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .portfolio-carousel-tile {
    width: 120px;
    height: 120px;
  }

  .portfolio-arc {
    height: 160px;
  }

  .portfolio-title {
    font-size: 1.75rem;
    white-space: normal;
  }

  .portfolio-subtitle {
    font-size: 1rem;
  }

  .portfolio-text-title {
    font-size: 1rem;
  }

  .portfolio-text-paragraph {
    font-size: 1rem;
  }
}

/* Section Résultats */
.resultats-section {
  position: relative;
  padding: 120px 2rem;
  background: #ffffff;
  min-height: auto;
}

.resultats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  overflow: visible;
}

/* Groupe d'images polaroid superposées */
.resultats-polaroids {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.resultats-polaroids.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Effet hover individuel sur chaque carte */
.polaroid-card:hover {
  z-index: 10 !important;
}

.polaroid-card {
  position: absolute;
  width: 280px;
  height: 280px;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(20, 25, 35, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.polaroid-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
              0 4px 12px rgba(0, 0, 0, 0.06);
}

.polaroid-card.forward {
  transform: scale(1.15) translateY(-30px) !important;
  z-index: 10 !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
              0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(20, 25, 35, 0.15);
}

/* L'image cliquée garde sa position même au hover */
.resultats-polaroids:hover .polaroid-card.forward {
  transform: scale(1.15) translateY(-30px) !important;
}

.polaroid-1 {
  transform: translateX(0) translateY(0);
  z-index: 2;
}

.polaroid-2 {
  transform: rotate(12deg) translateX(80px) translateY(-20px);
  z-index: 3;
}

.polaroid-3 {
  transform: rotate(-12deg) translateX(-80px) translateY(-20px);
  z-index: 1;
}

.polaroid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Contenu texte */
.resultats-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.resultats-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.resultats-title {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
}

.resultats-subtitle {
  font-size: 1.375rem;
  line-height: 1.75;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  font-weight: 600;
  text-align: left;
}

/* Bouton */
.resultats-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #F5F5F7;
  color: rgba(20, 25, 35, 0.95);
  border: 1px solid #E5E5EA;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
  text-decoration: none;
  width: fit-content;
}

.resultats-btn:hover {
  background: #E8E8E8;
  transform: translateY(-1px);
  border-color: #D1D1D6;
}

/* Stats */
.resultats-stats {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.resultats-stat {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 0 0 auto;
  min-width: 80px;
}

.resultats-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(20, 25, 35, 0.95);
  line-height: 1;
  letter-spacing: -0.02em;
}

.resultats-stat-label {
  font-size: 0.8125rem;
  color: rgba(20, 25, 35, 0.6);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Responsive Résultats */
@media (max-width: 768px) {
  .resultats-section {
    padding: 80px 1.5rem;
  }

  .resultats-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .resultats-polaroids {
    height: 350px;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
  }

  .resultats-polaroids:hover .polaroid-2 {
    transform: rotate(0deg) translateX(260px) translateY(0);
  }

  .resultats-polaroids:hover .polaroid-3 {
    transform: rotate(0deg) translateX(-260px) translateY(0);
  }

  .polaroid-card {
    width: 240px;
    height: 240px;
    padding: 8px;
    border: 1px solid rgba(20, 25, 35, 0.12);
  }

  .polaroid-1 {
    transform: translateX(0) translateY(0);
  }

  .polaroid-2 {
    transform: rotate(10deg) translateX(60px) translateY(-15px);
  }

  .polaroid-3 {
    transform: rotate(-10deg) translateX(-60px) translateY(-15px);
  }

  .resultats-content {
    text-align: center;
    align-items: center;
  }

  .resultats-title {
    font-size: 1.875rem;
  }

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

  .resultats-stats {
    gap: 1.5rem 2.5rem;
    justify-content: center;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .resultats-stat-number {
    font-size: 1.375rem;
  }

  .resultats-stat {
    text-align: center;
    flex: 0 1 auto;
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .resultats-section {
    padding: 60px 1rem;
  }

  .resultats-polaroids {
    height: 350px;
    overflow: visible;
  }

  .resultats-polaroids:hover .polaroid-2 {
    transform: rotate(0deg) translateX(220px) translateY(0);
  }

  .resultats-polaroids:hover .polaroid-3 {
    transform: rotate(0deg) translateX(-220px) translateY(0);
  }

  .polaroid-card {
    width: 200px;
    height: 200px;
    padding: 7px;
    border: 1px solid rgba(20, 25, 35, 0.12);
  }

  .polaroid-1 {
    transform: translateX(0) translateY(0);
  }

  .polaroid-2 {
    transform: rotate(8deg) translateX(45px) translateY(-10px);
  }

  .polaroid-3 {
    transform: rotate(-8deg) translateX(-45px) translateY(-10px);
  }

  .resultats-content {
    text-align: center;
    align-items: center;
  }

  .resultats-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .resultats-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .resultats-stats {
    gap: 1rem 1.5rem;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .resultats-stat {
    flex: 0 1 auto;
    min-width: 65px;
    max-width: 100px;
    text-align: center;
  }

  .resultats-stat-number {
    font-size: 1.125rem;
    text-align: center;
  }

  .resultats-stat-label {
    font-size: 0.625rem;
    line-height: 1.3;
    text-align: center;
  }
}

/* Flèches animées */
.transition-arrows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  margin-top: 2rem;
  width: 100%;
}

/* Chevron cliquable */
.transition-arrows-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.transition-arrows-link:hover {
  transform: translateY(4px);
}

.transition-arrows-link:hover .transition-arrow {
  opacity: 0.8;
}

/* Chevron dans la section Impact */
.resultats-content .transition-arrows {
  align-self: center;
  margin-top: 3rem;
}

.transition-arrow {
  width: 28px;
  height: 28px;
  position: relative;
  animation: arrowPulse 1.5s ease-in-out infinite;
  opacity: 0.4;
}

.transition-arrow::before,
.transition-arrow::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2.5px;
  background: rgba(20, 25, 35, 0.4);
  top: 50%;
  transition: all 0.3s ease;
}

.transition-arrow::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.transition-arrow::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}

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

.transition-arrow:nth-child(2) {
  animation-delay: 0.3s;
}

.transition-arrow:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes arrowPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.transition-arrow:nth-child(1)::before,
.transition-arrow:nth-child(1)::after {
  animation: chevronGlow 1.5s ease-in-out infinite 0s;
}

.transition-arrow:nth-child(2)::before,
.transition-arrow:nth-child(2)::after {
  animation: chevronGlow 1.5s ease-in-out infinite 0.3s;
}

.transition-arrow:nth-child(3)::before,
.transition-arrow:nth-child(3)::after {
  animation: chevronGlow 1.5s ease-in-out infinite 0.6s;
}

@keyframes chevronGlow {
  0%, 100% {
    background: rgba(20, 25, 35, 0.4);
  }
  50% {
    background: rgba(20, 25, 35, 0.9);
  }
}

/* Section Contact - Design simple et sobre */
.contact-section {
  padding: 100px 2rem;
  background: #ffffff;
  position: relative;
  min-height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.contact-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: rgba(20, 25, 35, 0.7);
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.mlk-contact-btn {
  padding: 1rem 2.5rem;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

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

.mlk-contact-btn:active {
  transform: translateY(0);
}

/* Bouton de démarrage */
.mlk-start-button-container {
  text-align: center;
  margin: 2.5rem 0;
}

.mlk-start-button {
  padding: 1rem 2.5rem;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

.mlk-start-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

.mlk-start-button:active {
  transform: translateY(0);
}

/* Formulaire Contact Multi-étapes (sur la page) */
.mlk-form-container {
  max-width: 800px;
  margin: 3rem auto 0;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
}

/* Barre de progression */
.mlk-progress-bar {
  height: 3px;
  background: rgba(20, 25, 35, 0.08);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.mlk-progress-fill {
  height: 100%;
  background: rgba(20, 25, 35, 0.9);
  width: 25%;
  transition: width 0.3s ease;
}

.mlk-progress-fill[data-progress="2"] {
  width: 50%;
}

.mlk-progress-fill[data-progress="3"] {
  width: 75%;
}

.mlk-progress-fill[data-progress="4"] {
  width: 100%;
}

/* Contenu formulaire */
.mlk-form-content {
  padding: 0;
}

.mlk-step {
  animation: fadeIn 0.2s ease;
}

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

.mlk-step-header {
  margin-bottom: 3rem;
}

.mlk-step-indicator {
  display: block;
  font-size: 0.8125rem;
  color: rgba(20, 25, 35, 0.6);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.mlk-step-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mlk-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Pour les champs qui doivent être pleine largeur (textarea) */
.mlk-field:has(textarea) {
  grid-column: 1 / -1;
}

.mlk-field {
  display: flex;
  flex-direction: column;
}

.mlk-field label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(20, 25, 35, 0.9);
  margin-bottom: 0.75rem;
  display: block;
}

.mlk-required {
  color: rgba(20, 25, 35, 0.5);
}

.mlk-field input,
.mlk-field select,
.mlk-field textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #E5E5EA;
  border-radius: 12px;
  background: #F5F5F7;
  font-size: 16px; /* Minimum 16px to prevent iOS zoom */
  font-family: var(--font-family);
  color: rgba(20, 25, 35, 0.95);
  transition: all 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mlk-field input:focus,
.mlk-field select:focus,
.mlk-field textarea:focus {
  outline: none;
  border-color: rgba(20, 25, 35, 0.3);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 25, 35, 0.05);
  -webkit-tap-highlight-color: transparent;
}

.mlk-field input:invalid:not(:focus):not(:placeholder-shown),
.mlk-field select:invalid:not(:focus),
.mlk-field textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(20, 25, 35, 0.2);
}

.mlk-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Forcer le textarea à prendre toute la largeur */
.mlk-field:has(textarea) {
  grid-column: 1 / -1;
}

.mlk-char-count {
  font-size: 0.8125rem;
  color: rgba(20, 25, 35, 0.5);
  margin-top: 0.5rem;
  text-align: right;
}

.mlk-error {
  display: block;
  font-size: 0.8125rem;
  color: rgba(20, 25, 35, 0.6);
  margin-top: 0.375rem;
  min-height: 1.25rem;
}

.mlk-field input:invalid:not(:focus):not(:placeholder-shown) ~ .mlk-error,
.mlk-field select:invalid:not(:focus) ~ .mlk-error,
.mlk-field textarea:invalid:not(:focus):not(:placeholder-shown) ~ .mlk-error {
  color: rgba(20, 25, 35, 0.7);
}

/* Actions formulaire */
.mlk-form-actions {
  display: flex;
  gap: 1rem;
  padding: 2.5rem 0 0;
  border-top: none;
  justify-content: space-between;
  align-items: center;
}

.mlk-btn {
  padding: 0.875rem 1.75rem;
  border-radius: 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
  border: none;
  min-width: 120px;
  min-height: 44px; /* iOS minimum tap target */
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mlk-btn-primary {
  background: #000000;
  color: #ffffff;
}

.mlk-btn-primary:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

.mlk-btn-primary:disabled {
  background: rgba(20, 25, 35, 0.2);
  color: rgba(20, 25, 35, 0.4);
  cursor: not-allowed;
}

.mlk-btn-secondary {
  background: #F5F5F7;
  color: rgba(20, 25, 35, 0.9);
  border: 1px solid #E5E5EA;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mlk-btn-secondary:hover {
  background: #E8E8E8;
  border-color: #D1D1D6;
  transform: translateY(-1px);
}

.mlk-btn-secondary:active {
  transform: translateY(0);
}

/* Confirmation */
.mlk-confirmation {
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeIn 0.3s ease;
}

.mlk-confirmation-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 25, 35, 0.06);
  border-radius: 50%;
  color: rgba(20, 25, 35, 0.9);
}

.mlk-confirmation-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.mlk-confirmation-text {
  font-size: 1rem;
  color: rgba(20, 25, 35, 0.7);
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Responsive Formulaire */
@media (max-width: 768px) {
  .mlk-form-container {
    max-width: 100%;
    border-radius: 20px;
  }

  .mlk-form-content {
    padding: 2rem 1.5rem 1rem;
  }

  .mlk-step-title {
    font-size: 1.5rem;
  }

  .mlk-form-actions {
    padding: 1.25rem 1.5rem 1.5rem;
    flex-direction: column-reverse;
  }

  .mlk-btn {
    width: 100%;
  }

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

  .contact-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mlk-form-content {
    padding: 1.75rem 1.25rem 1rem;
  }

  .mlk-step-title {
    font-size: 1.375rem;
  }

  .mlk-form-fields {
    gap: 1.25rem;
  }

  .mlk-form-fields {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 80px 1.5rem;
  }

  .contact-title {
    font-size: 1.75rem;
  }
}

.contact-background-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0 !important;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
  display: none; /* Désactivé pour garder le formulaire en clair */
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


.contact-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #111111;
  font-family: -apple-system, system-ui, "SF Pro Text", sans-serif;
  letter-spacing: -0.01em;
}

.contact-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 400px;
  color: #7a7a7a;
  margin: 0 0 2.5rem 0;
  font-family: -apple-system, system-ui, "SF Pro Text", sans-serif;
}



/* Responsive */
@media (max-width: 900px) {
  .hero-section {
    padding: 0 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .hero-bottom-container {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-cta-group {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 0;
    flex-wrap: nowrap;
  }

  .contact-section {
    padding: 4rem 1.5rem;
    min-height: auto;
  }

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

  .contact-subtitle {
    max-width: 100%;
    font-size: 0.9375rem;
  }

  .contact-form {
    max-width: 100%;
  }

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

  .form-row-two {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 1.5rem;
  }

  .domain-pills {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.contact-card-horizontal {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  min-height: auto;
  max-height: none;
  animation: none;
  transition: none;
}

/* Colonne gauche : Informations MetaLink */
.contact-info-column {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  background: transparent;
  color: rgba(20, 25, 35, 0.95);
  gap: 2rem;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  color: rgba(20, 25, 35, 0.9);
  margin-bottom: 0.5rem;
  border: 1px solid rgba(180, 195, 210, 0.3);
}

.contact-info-icon svg {
  stroke: rgba(20, 25, 35, 0.9);
}

.contact-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  letter-spacing: 0.01em;
}

.contact-info-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(20, 25, 35, 0.7);
  margin: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(20, 25, 35, 0.85);
}

.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: rgba(20, 25, 35, 0.7);
  stroke: rgba(20, 25, 35, 0.7);
}

.contact-info-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.contact-info-item-content strong {
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 0.125rem;
}

.contact-info-item-content span {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(20, 25, 35, 0.7);
}

.contact-info-email {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(180, 195, 210, 0.3);
}

.contact-info-email p {
  font-size: 0.875rem;
  color: rgba(20, 25, 35, 0.7);
  margin: 0;
}

.contact-info-email a {
  color: rgba(20, 25, 35, 0.9);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-button {
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(20, 25, 35, 0.15);
  border-radius: 50px;
  color: rgba(20, 25, 35, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  font-family: var(--font-family);
  margin-top: auto;
}

.contact-info-button:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(20, 25, 35, 0.25);
  transform: translateY(-1px);
}

/* Colonne droite : Formulaire */
.contact-form-column {
  width: 62%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  background: transparent;
  gap: 2rem;
}

.contact-form-header {
  margin-bottom: 0.5rem;
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(20, 25, 35, 0.95);
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.01em;
}

.contact-form-subtitle {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(20, 25, 35, 0.7);
  margin: 0;
}

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

.form-row-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field-new {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field-new label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(20, 25, 35, 0.85);
  letter-spacing: 0.01em;
}

.form-field-new input,
.form-field-new select,
.form-field-new textarea {
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(180, 195, 210, 0.4);
  border-radius: 12px;
  color: rgba(20, 25, 35, 0.95);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  width: 100%;
  outline: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-field-new input::placeholder,
.form-field-new textarea::placeholder {
  color: rgba(20, 25, 35, 0.4);
  font-weight: 300;
}

.form-field-new textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  font-family: var(--font-family);
}

/* Boutons de domaine */
.domain-buttons-new {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.domain-radio-new {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.domain-button-new {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(180, 195, 210, 0.4);
  border-radius: 12px;
  color: rgba(20, 25, 35, 0.85);
  font-size: 0.9375rem;
  font-weight: 400;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-family);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.domain-radio-new:checked + .domain-button-new {
  background: rgba(20, 25, 35, 0.95);
  border-color: rgba(20, 25, 35, 0.95);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form-question {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(20, 25, 35, 0.85);
  margin-bottom: 0.75rem;
}

.form-radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: rgba(20, 25, 35, 0.8);
  padding: 0.625rem 1rem;
  border: 1px solid rgba(20, 25, 35, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.form-radio-option:hover {
  border-color: rgba(20, 25, 35, 0.25);
  background: rgba(255, 255, 255, 0.9);
}

.form-radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: rgba(20, 25, 35, 0.9);
}

.form-radio-option input[type="radio"]:checked + span {
  font-weight: 500;
}

.contact-form-agreement {
  font-size: 0.75rem;
  color: rgba(20, 25, 35, 0.5);
  line-height: 1.5;
  margin: 0.5rem 0 0 0;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-reset {
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(20, 25, 35, 0.15);
  border-radius: 50px;
  color: rgba(20, 25, 35, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-family);
}

.btn-reset:hover {
  border-color: rgba(20, 25, 35, 0.3);
  color: rgba(20, 25, 35, 0.9);
  background: rgba(20, 25, 35, 0.02);
}

.btn-submit-new {
  padding: 0.875rem 2rem;
  background: rgba(20, 25, 35, 0.95);
  border: 1px solid rgba(20, 25, 35, 0.95);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: var(--font-family);
  align-self: flex-start;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.btn-submit-new:hover {
  background: rgba(20, 25, 35, 1);
  border-color: rgba(20, 25, 35, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}


.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 2rem;
  max-width: 280px;
}

.info-card {
  width: 200px;
  height: 200px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.info-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(205, 215, 228, 0.5);
  border-radius: 10px;
  margin-bottom: 0.25rem;
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(20, 25, 35, 0.9);
  stroke-width: 1.5;
}

.info-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.info-card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(20, 25, 35, 0.85);
  margin: 0;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(30, 35, 45, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1.25rem;
  background: rgba(180, 195, 210, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: rgba(20, 25, 35, 0.95);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.required {
  color: rgba(239, 68, 68, 0.8);
  margin-left: 0.25rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(180, 195, 210, 0.45);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.form-group input[type="radio"]:focus + .domain-label-form {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(50, 55, 65, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-family);
}


.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  text-align: center;
  margin-top: 0.5rem;
}


/* Mentions & Politique - Design simplifié */
.mentions-section {
  padding: 8rem 2rem 4rem;
  padding-top: calc(8rem + env(safe-area-inset-top));
  padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  background: #ffffff;
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari */
}

.mentions-card {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 3.5rem 3rem;
  animation: fadeInUp 0.6s ease-out;
}

.mention-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}

.mention-block {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mention-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}


/* Ancien style pour compatibilité */
.mention-panel {
  display: none;
}

.mention-panel.active {
  display: block;
}

.mention-panel h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.mention-panel h3:first-child {
  margin-top: 0;
}

.mention-panel p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dark-secondary);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.mention-panel ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.mention-panel ul li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(30, 35, 45, 0.85);
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  max-width: 800px;
}

.mention-panel ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(50, 55, 65, 0.7);
}

/* Section Pourquoi nous - Layout LUXURA identique */
.pourquoi-section-luxura {
  position: relative;
  padding: 5rem 2rem;
  background: #ffffff;
  min-height: auto;
}

.pourquoi-container-luxura {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* En-tête centré */
.pourquoi-header-luxura {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pourquoi-pill-micro {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(20, 25, 35, 0.08);
  border-radius: 16px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 25, 35, 0.65);
  margin-bottom: 1.5rem;
}

.pourquoi-title-luxura {
  font-size: 2rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 800px;
  text-align: center;
  font-family: var(--font-family);
}

.pourquoi-subtitle-luxura {
  font-size: 1rem;
  color: #7A7A7A;
  margin: 0 auto 4rem;
  line-height: 1.6;
  max-width: 650px;
  font-weight: 400;
}

/* Grille de cases */
.pourquoi-grid-cases {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto 1fr;
  gap: 24px;
  margin-top: 3rem;
  align-items: start;
}

/* Rectangle vertical à gauche - s'étend sur toutes les lignes */
.pourquoi-case-vertical {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 0;
  grid-row: 1 / -1;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pourquoi-case-image-vertical {
  width: calc(100% - 96px);
  max-width: calc(100% - 96px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 32px auto 0;
  align-self: flex-start;
  border-radius: 20px;
}

.pourquoi-case-vertical-content {
  padding: 0;
  margin: 24px auto 32px;
  width: calc(100% - 96px);
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.pourquoi-case-vertical-text {
  font-size: 1.25rem;
  line-height: 1.4;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  font-weight: 700;
  text-align: center;
  word-spacing: -0.1em;
  letter-spacing: -0.02em;
}

.pourquoi-case-vertical-text .text-gray {
  color: rgba(20, 25, 35, 0.5);
  font-weight: 500;
}

.pourquoi-case-vertical-btn {
  margin-top: 20px;
  padding: 0.875rem 1.75rem;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: fit-content;
  align-self: center;
  font-family: var(--font-family);
  display: inline-flex;
  align-items: center;
}

.pourquoi-case-vertical-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

.pourquoi-case-vertical-btn .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 0.625rem;
  background: #ffffff;
  border-radius: 50%;
  color: rgba(20, 25, 35, 0.7);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  line-height: 1;
}

.pourquoi-case-vertical-btn:hover .btn-arrow {
  transform: translateX(4px);
  color: rgba(20, 25, 35, 0.9);
}

/* Colonne droite - utilise la grille principale */
.pourquoi-col-cases {
  display: contents;
}

/* Ligne des deux carrés */
.pourquoi-row-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-row: 1;
}

/* Case carrée */
.pourquoi-case-square {
  background: #F5F5F5;
  border-radius: 24px;
  aspect-ratio: 1;
  padding: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.pourquoi-case-image-square {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.pourquoi-case-square-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  height: 100%;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(245, 245, 245, 0.98) 0%, rgba(245, 245, 245, 0.95) 40%, rgba(245, 245, 245, 0.7) 70%, transparent 100%);
}

.pourquoi-case-square-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-align: left;
  word-spacing: -0.15em;
  max-width: 85%;
}

.pourquoi-case-square-title .text-gray {
  color: rgba(20, 25, 35, 0.55);
  font-weight: 600;
}

.pourquoi-case-square-text {
  font-size: 1.25rem;
  line-height: 1.4;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  font-weight: 700;
  text-align: left;
  max-width: 90%;
  word-spacing: -0.1em;
  letter-spacing: -0.02em;
}

.pourquoi-case-square-text .text-gray {
  color: rgba(20, 25, 35, 0.5);
  font-weight: 500;
}

/* Rectangle horizontal en bas */
.pourquoi-case-horizontal {
  background: #F5F5F5;
  border-radius: 24px;
  min-height: 200px;
  padding: 0;
  overflow: hidden;
  position: relative;
  grid-row: 2;
  margin-top: 24px;
}

.pourquoi-case-image-horizontal {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.pourquoi-case-horizontal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(to top, rgba(245, 245, 245, 0.98) 0%, rgba(245, 245, 245, 0.95) 50%, rgba(245, 245, 245, 0.7) 80%, transparent 100%);
}

.pourquoi-case-horizontal-text {
  font-size: 1.375rem;
  line-height: 1.4;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  font-weight: 700;
  text-align: left;
  max-width: 85%;
  word-spacing: -0.1em;
  letter-spacing: -0.02em;
}

.pourquoi-case-horizontal-text .text-gray {
  color: rgba(20, 25, 35, 0.5);
  font-weight: 500;
}

/* Wrapper gris principal */
.pourquoi-wrapper-luxura {
  background: #F8F8F8;
  border-radius: 36px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Grille 12 colonnes */
.pourquoi-grid-luxura {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

/* 1) Grande card verticale gauche (4/12 colonnes) - FULL HEIGHT */
.pourquoi-card-vertical {
  grid-column: span 4;
  background: #ffffff;
  border-radius: 30px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pourquoi-card-vertical:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.pourquoi-card-image-vertical {
  width: 100%;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.pourquoi-card-image-vertical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pourquoi-placeholder-vertical {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E5E5E5 0%, #D5D5D5 100%);
  border-radius: 24px;
}

.pourquoi-card-vertical-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.pourquoi-card-vertical-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.pourquoi-card-vertical-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(20, 25, 35, 0.7);
  margin: 0;
  font-weight: 400;
}

.pourquoi-btn-pill {
  margin-top: auto;
  padding: 0.5rem 1rem;
  background: rgba(20, 25, 35, 0.95);
  color: #ffffff;
  border: none;
  border-radius: 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: fit-content;
  font-family: var(--font-family);
}

.pourquoi-btn-pill:hover {
  background: rgba(20, 25, 35, 1);
  transform: translateY(-1px);
}

/* 2) Card horizontale centre haut (5/12 colonnes) */
.pourquoi-card-horizontal-top {
  grid-column: span 5;
  background: #ffffff;
  border-radius: 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pourquoi-card-horizontal-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.pourquoi-card-image-horizontal {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.pourquoi-card-image-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pourquoi-placeholder-horizontal {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E5E5E5 0%, #D5D5D5 100%);
}

.pourquoi-card-horizontal-content {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pourquoi-card-horizontal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(20, 25, 35, 0.95);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.pourquoi-card-horizontal-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(20, 25, 35, 0.7);
  margin: 0;
  font-weight: 400;
}

/* 3) Petite card stat droite (3/12 colonnes) */
.pourquoi-card-stat-luxura {
  grid-column: span 3;
  background: #ffffff;
  border-radius: 30px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pourquoi-card-stat-luxura:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.pourquoi-stat-big {
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(20, 25, 35, 0.95);
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}

.pourquoi-stat-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(20, 25, 35, 0.7);
  margin: 0;
  font-weight: 400;
}

/* 4) Grande card horizontale bas centre (5/12 colonnes) */
.pourquoi-card-horizontal-bottom {
  grid-column: span 5;
  background: #ffffff;
  border-radius: 30px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pourquoi-card-horizontal-bottom:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

/* 5) Image bas droite (3/12 colonnes) */
.pourquoi-image-portrait {
  grid-column: span 3;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  min-height: 200px;
}

.pourquoi-image-portrait:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.pourquoi-image-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pourquoi-placeholder-portrait {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E5E5E5 0%, #D5D5D5 100%);
}

/* Responsive Grille de cases */
@media (max-width: 1024px) {
  .pourquoi-grid-cases {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .pourquoi-case-vertical {
    grid-row: auto;
    height: auto;
    min-height: 400px;
  }

  .pourquoi-col-cases {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pourquoi-row-squares {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-row: auto;
  }

  .pourquoi-case-horizontal {
    grid-row: auto;
    margin-top: 0;
  }
}

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

  .pourquoi-case-vertical,
  .pourquoi-case-square,
  .pourquoi-case-horizontal {
    padding: 0;
    border-radius: 20px;
  }

  /* Transformation des boxes carrées en layout vertical image/texte */
  .pourquoi-case-square {
    aspect-ratio: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .pourquoi-case-image-square {
    position: relative;
    width: 100%;
    height: 180px;
    min-height: 180px;
    flex-shrink: 0;
  }

  .pourquoi-case-square-content {
    position: relative;
    padding: 20px 24px;
    min-height: auto;
    height: auto;
    background: #F5F5F5;
    justify-content: flex-start;
  }

  /* Transformation de la box horizontale */
  .pourquoi-case-horizontal {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .pourquoi-case-image-horizontal {
    position: relative;
    width: 100%;
    height: 160px;
    min-height: 160px;
    flex-shrink: 0;
  }

  .pourquoi-case-horizontal-content {
    position: relative;
    padding: 20px 24px;
    background: #F5F5F5;
  }
}

@media (max-width: 480px) {
  .pourquoi-case-vertical,
  .pourquoi-case-square,
  .pourquoi-case-horizontal {
    padding: 0;
    border-radius: 18px;
  }

  .pourquoi-case-vertical {
    min-height: 320px;
  }

  .pourquoi-case-vertical-content {
    width: calc(100% - 48px);
    margin: 20px auto 24px;
  }

  .pourquoi-case-image-vertical {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    margin: 24px auto 0;
  }

  .pourquoi-case-image-square {
    height: 160px;
    min-height: 160px;
  }

  .pourquoi-case-square-content {
    padding: 16px 20px;
  }

  .pourquoi-case-square-text {
    font-size: 1.125rem;
  }

  .pourquoi-case-image-horizontal {
    height: 140px;
    min-height: 140px;
  }

  .pourquoi-case-horizontal-content {
    padding: 16px 20px;
  }

  .pourquoi-case-horizontal-text {
    font-size: 1.125rem;
  }
}

/* Responsive Section Pourquoi LUXURA */
@media (max-width: 1024px) {
  .pourquoi-grid-luxura {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }

  .pourquoi-card-vertical {
    grid-column: span 6;
  }

  .pourquoi-card-horizontal-top {
    grid-column: span 6;
  }

  .pourquoi-card-stat-luxura {
    grid-column: span 3;
  }

  .pourquoi-card-horizontal-bottom {
    grid-column: span 6;
  }

  .pourquoi-image-portrait {
    grid-column: span 3;
  }

  .pourquoi-card-image-vertical {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .pourquoi-section-luxura {
    padding: 4rem 1.5rem;
  }

  .pourquoi-container-luxura {
    max-width: 100%;
  }

  .pourquoi-wrapper-luxura {
    padding: 22px;
    border-radius: 28px;
  }

  .pourquoi-grid-luxura {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pourquoi-card-vertical,
  .pourquoi-card-horizontal-top,
  .pourquoi-card-stat-luxura,
  .pourquoi-card-horizontal-bottom,
  .pourquoi-image-portrait {
    grid-column: span 1;
  }

  .pourquoi-title-luxura {
    font-size: 1.875rem;
  }

  .pourquoi-subtitle-luxura {
    font-size: 0.9375rem;
  }

  .pourquoi-card-image-vertical {
    height: 240px;
  }

  .pourquoi-card-image-horizontal {
    height: 180px;
  }

  .pourquoi-card-vertical-title {
    font-size: 1.25rem;
  }

  .pourquoi-card-horizontal-title {
    font-size: 1.125rem;
  }

  .pourquoi-stat-big {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .pourquoi-section-luxura {
    padding: 3rem 1rem;
  }

  .pourquoi-wrapper-luxura {
    padding: 18px;
    border-radius: 24px;
  }

  .pourquoi-title-luxura {
    font-size: 1.875rem;
  }

  .pourquoi-pill-micro {
    font-size: 0.625rem;
    padding: 0.3125rem 0.75rem;
  }

  .pourquoi-card-vertical,
  .pourquoi-card-horizontal-top,
  .pourquoi-card-stat-luxura,
  .pourquoi-card-horizontal-bottom {
    padding: 20px;
    border-radius: 24px;
  }

  .pourquoi-card-image-vertical {
    height: 200px;
    border-radius: 20px;
  }

  .pourquoi-card-image-horizontal {
    height: 160px;
  }

  .pourquoi-image-portrait {
    border-radius: 24px;
    min-height: 180px;
  }

  .pourquoi-stat-big {
    font-size: 2.5rem;
  }
}


/* ============================================
   Footer Premium - Design moderne et structuré
   ============================================ */
.footer-premium {
  background: #0a0a0a;
  color: #ffffff;
  padding: 64px 2rem 32px;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Sections communes */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 8px 0;
}

/* Section Identité */
.footer-identity {
  gap: 16px;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
}


.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.7);
  transition: stroke 0.25s ease;
}

.footer-social-link:hover svg {
  stroke: #ffffff;
}

/* Section Navigation */
.footer-nav {
  gap: 16px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

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

/* Section Légal */
.footer-legal-section {
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

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

/* Section Contact */
.footer-contact {
  gap: 16px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: #ffffff;
}

.footer-email svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 8px;
  width: fit-content;
}

.footer-cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.12);
}

.footer-cta-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Barre du bas */
.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* Footer Simple (fallback pour sous-pages) */
.footer-simple {
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 2rem;
  margin-top: 0;
  border-top: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  width: 100%;
}

.footer-simple p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.8125rem;
}

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

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer Premium */
@media (max-width: 1024px) {
  .footer-premium {
    padding: 56px 2rem 28px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-identity {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-premium {
    padding: 48px 1.5rem 24px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-identity {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .footer-tagline {
    text-align: center;
    max-width: 320px;
  }

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

  .footer-section {
    align-items: flex-start;
  }

  .footer-section-title {
    font-size: 0.625rem;
  }

  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 36px;
  }
}

@media (max-width: 480px) {
  .footer-premium {
    padding: 40px 1.25rem 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-section {
    align-items: center;
    text-align: center;
  }

  .footer-nav-links,
  .footer-legal-links {
    align-items: center;
  }

  .footer-email {
    justify-content: center;
  }

  .footer-cta-btn {
    width: auto;
    padding: 12px 24px;
  }

  .footer-logo-text {
    font-size: 1rem;
  }

  .footer-tagline {
    font-size: 0.8125rem;
  }

  .footer-nav-links a,
  .footer-legal-links a {
    font-size: 0.8125rem;
  }

  .footer-simple {
    padding: 32px 1rem;
  }
}

/* Animations - Inspirées de Linear, Lusion, Cuberto */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Classes d'animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Animation séquentielle pour les grilles (inspirée de Cuberto) */
.grid-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délai progressif pour les éléments de grille */
.grid-item:nth-child(1) { transition-delay: 0ms; }
.grid-item:nth-child(2) { transition-delay: 100ms; }
.grid-item:nth-child(3) { transition-delay: 200ms; }
.grid-item:nth-child(4) { transition-delay: 300ms; }
.grid-item:nth-child(5) { transition-delay: 400ms; }
.grid-item:nth-child(6) { transition-delay: 500ms; }
.grid-item:nth-child(7) { transition-delay: 600ms; }
.grid-item:nth-child(8) { transition-delay: 700ms; }
.grid-item:nth-child(9) { transition-delay: 800ms; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-section {
    padding: 0 3rem 4rem;
  }

  .hero-bottom-container {
    bottom: 4rem;
    left: 3rem;
    right: 3rem;
    max-width: calc(100% - 6rem);
    min-width: 0;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero-left-content {
    max-width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }

  .hero-title-crystal {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-crystal {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-cta-group {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    max-width: none;
    min-width: fit-content;
    flex-wrap: nowrap;
    flex-shrink: 0;
    margin-left: auto;
  }

  .section-container {
    padding: 0 3rem;
  }

  .header-container {
    padding: 1.5rem 3rem;
  }

  .header-menu-long {
    max-width: 100%;
    padding: 0.875rem 2rem;
    gap: 1.5rem;
  }

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

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

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

  /* Présentation section responsive géré dans .presentation-grid */

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

  .contact-info-cards {
    padding-right: 0;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .info-card {
    width: 160px;
    height: 160px;
    padding: 1.25rem;
  }

  .info-card-title {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 6rem 1.5rem;
  }

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

  .path-arrow {
    width: 100%;
    height: 48px;
    transform: rotate(90deg);
  }

  .section-container {
    padding: 0 1.5rem;
  }

  .header-container {
    padding: 1.25rem 1.5rem;
  }

  .header-menu-long {
    max-width: 100%;
    padding: 0.75rem 1.75rem;
    gap: 1rem;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-section {
    padding: 0 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .hero-bottom-container {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .hero-title-container {
    bottom: 3rem;
    left: 2rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero-title-main {
    font-size: 4rem;
  }

  .hero-title-crystal {
    font-size: 3rem;
    letter-spacing: 0.08em;
    word-break: normal;
    white-space: normal;
  }

  .hero-subtitle-crystal {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-description-crystal {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-cta-group {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 0;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .hero-cta-crystal {
    width: 56px;
    height: 56px;
    padding: 1.125rem;
    flex-shrink: 0;
  }

  .hero-cta-crystal svg {
    width: 22px;
    height: 22px;
  }

  .hero-cta-contact {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }

  .hero-subtitle-main {
    font-size: 1.25rem;
  }

  .hero-right {
    max-width: 100%;
    align-items: flex-start;
  }

  .hero-description {
    text-align: left;
    font-size: 0.9375rem;
  }

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

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

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

  .methode-path {
    flex-direction: column;
    gap: 2rem;
  }

  .path-line {
    width: 2px;
    height: 60px;
    flex: 0 0 auto;
  }

  .path-line::after {
    top: auto;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.3);
    border-bottom: none;
  }

  .presentation-text {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem 1.25rem;
  }

  .header-menu-long {
    padding: 0.75rem 1.25rem;
  }

  .hero-section {
    padding: 0 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .hero-bottom-container {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
  }

  .hero-left-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .hero-title-container {
    bottom: 3rem;
    left: 1rem;
  }

  .hero-content {
    gap: 2.5rem;
  }

  .hero-title-main {
    font-size: 3.5rem;
    margin-top: 0.5rem;
  }

  .hero-title-crystal {
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    line-height: 1.1;
    word-break: keep-all;
    white-space: nowrap;
    overflow: visible;
    width: auto;
  }

  .hero-subtitle-crystal {
    font-size: 0.875rem;
    max-width: 100%;
    line-height: 1.4;
  }

  .hero-description-crystal {
    font-size: 0.875rem;
    max-width: 100%;
  }

  .hero-cta-group {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0;
    margin-left: 0;
  }

  .hero-cta-crystal {
    width: 52px;
    height: 52px;
    padding: 1rem;
    flex-shrink: 0;
  }

  .hero-cta-crystal svg {
    width: 20px;
    height: 20px;
  }

  .hero-cta-contact {
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }

  .hero-subtitle-main {
    font-size: 1rem;
  }

  .hero-cta-button {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }

  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

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

  .domaines-intro-text p {
    font-size: 48px;
  }

  .dashboard-card,
  .domaine-card,
  .avantage-card {
    padding: 2rem;
  }

  .contact-card,
  .mentions-card {
    padding: 2.5rem 2rem;
  }

  .contact-section {
    padding: 3rem 1rem;
    min-height: auto;
  }

  .contact-title {
    font-size: 1.75rem;
  }

  .contact-subtitle {
    font-size: 0.875rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-field input,
  .form-field textarea {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .pill {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
  }

  .submit-btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    width: 100%;
  }

  .contact-card-horizontal {
    flex-direction: column;
    max-width: 100%;
    min-height: auto;
    max-height: none;
  }

  .contact-info-column {
    width: 100%;
    padding: 2rem 1.5rem;
    order: 1;
  }

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

  .contact-info-subtitle {
    font-size: 0.9375rem;
  }

  .contact-info-item {
    font-size: 0.875rem;
  }

  .contact-form-column {
    width: 100%;
    padding: 2rem 1.5rem;
    order: 2;
  }

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

  .contact-form-subtitle {
    font-size: 0.875rem;
  }

  .contact-form-new {
    gap: 1.25rem;
  }

  .form-row-two-cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-field-new input,
  .form-field-new select,
  .form-field-new textarea {
    font-size: 0.875rem;
    padding: 0.75rem;
  }

  .form-radio-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-form-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-reset,
  .btn-submit-new {
    width: 100%;
  }
}

/* ============================================
   AMÉLIORATIONS ESPACEMENTS ET HARMONISATION
   ============================================ */

/* Harmonisation des espacements entre sections */
.site-map-section {
  padding: 100px 2rem;
}

.presentation-section {
  padding: 100px 2rem;
}

.pourquoi-section-luxura {
  padding: 100px 2rem;
}

.portfolio-section {
  padding: 100px 2rem;
}

.methode-section {
  padding: 100px 2rem;
}

.methode-section .portfolio-header {
  margin-bottom: 4rem;
}

.resultats-section {
  padding: 100px 2rem;
}

.contact-section {
  padding: 100px 2rem;
}

/* Amélioration des en-têtes de section */
.portfolio-header {
  margin-bottom: 48px;
}

.portfolio-subtitle {
  margin-bottom: 0;
}

/* Amélioration du site-map */
.site-map-grid {
  gap: 40px;
  padding: 40px 36px;
}

.site-map-item {
  padding: 16px 20px;
  gap: 10px;
}

.site-map-item p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* Amélioration section Pourquoi nous */
.pourquoi-header-luxura {
  margin-bottom: 48px;
}

.pourquoi-grid-cases {
  gap: 24px;
}

/* Amélioration section Résultats */
.resultats-container {
  gap: 60px;
}

.resultats-stats {
  gap: 40px;
  margin-top: 40px;
}

/* Amélioration Timeline Méthode */
.methode-timeline {
  gap: 32px;
}

.timeline-content {
  padding: 28px 32px;
}

/* ============================================
   AMÉLIORATIONS RESPONSIVE GLOBALES
   ============================================ */

/* Desktop large (1440px+) */
@media (min-width: 1440px) {
  .section-container {
    max-width: 1400px;
  }
  
  .footer-container {
    max-width: 1400px;
  }
}

/* Tablette paysage et petit desktop */
@media (max-width: 1200px) {
  .site-map-section,
  .presentation-section,
  .pourquoi-section-luxura,
  .portfolio-section,
  .methode-section,
  .resultats-section,
  .contact-section {
    padding: 80px 2rem;
  }

  .hero-title-crystal {
    font-size: 5.5rem;
  }

  .hero-subtitle-crystal {
    font-size: 1.25rem;
  }
}

/* Tablette portrait */
@media (max-width: 1024px) {
  .site-map-section,
  .presentation-section,
  .pourquoi-section-luxura,
  .portfolio-section,
  .methode-section,
  .resultats-section,
  .contact-section {
    padding: 70px 1.5rem;
  }

  .site-map-grid {
    gap: 32px;
    padding: 32px 28px;
  }

  .pourquoi-grid-cases {
    flex-direction: column;
  }

  .pourquoi-case-vertical {
    width: 100%;
    min-height: 400px;
  }

  .pourquoi-col-cases {
    width: 100%;
  }

  .pourquoi-row-squares {
    flex-direction: row;
  }

  .resultats-container {
    gap: 48px;
  }
}

/* Mobile paysage et tablette petite */
@media (max-width: 768px) {
  .site-map-section,
  .presentation-section,
  .pourquoi-section-luxura,
  .portfolio-section,
  .methode-section,
  .resultats-section,
  .contact-section {
    padding: 60px 1.5rem;
  }

  .site-map-eyebrow {
    font-size: 11px;
    margin-bottom: 32px;
  }

  .site-map-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .site-map-item {
    padding: 14px 16px;
  }

  .site-map-item h3 {
    font-size: 15px;
  }

  .pourquoi-row-squares {
    flex-direction: column;
  }

  .pourquoi-case-square {
    width: 100%;
    min-height: 280px;
  }

  .pourquoi-case-horizontal {
    min-height: 200px;
  }

  .portfolio-header {
    margin-bottom: 32px;
  }

  .portfolio-title {
    font-size: 1.5rem;
  }

  .portfolio-subtitle {
    font-size: 1rem;
  }

  .portfolio-text-above {
    margin-bottom: 24px;
  }

  .portfolio-text-title {
    font-size: 1rem;
    line-height: 1.6;
  }

  .methode-timeline {
    gap: 24px;
  }

  .timeline-content {
    padding: 20px 24px;
  }

  .resultats-container {
    gap: 40px;
  }

  .resultats-stats {
    gap: 1rem 2rem;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .resultats-stat {
    flex: 0 1 auto;
    text-align: center;
    min-width: 70px;
    max-width: 110px;
  }

  .contact-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .site-map-section,
  .presentation-section,
  .pourquoi-section-luxura,
  .portfolio-section,
  .methode-section,
  .resultats-section,
  .contact-section {
    padding: 48px 1rem;
  }

  .site-map-inner {
    padding: 0;
  }

  .site-map-grid {
    border-radius: 12px;
    gap: 16px;
    padding: 20px 16px;
  }

  .site-map-item {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .site-map-item h3 {
    font-size: 14px;
  }

  .site-map-item p {
    font-size: 12px;
  }

  .pourquoi-case-vertical {
    min-height: 350px;
  }

  .pourquoi-case-square {
    min-height: 250px;
  }

  .pourquoi-case-horizontal {
    min-height: 180px;
  }

  .portfolio-header {
    margin-bottom: 24px;
  }

  .methode-timeline {
    gap: 20px;
  }

  .timeline-content {
    padding: 16px 20px;
  }

  .step-number {
    font-size: 0.75rem;
  }

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

  .step-text {
    font-size: 0.8125rem;
  }

  .resultats-title {
    font-size: 1.5rem;
  }

  .resultats-subtitle {
    font-size: 0.9375rem;
  }

  .resultats-stat-number {
    font-size: 1.25rem;
  }

  .resultats-stat-label {
    font-size: 0.6875rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .contact-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .mlk-start-button {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}

/* Très petits écrans (moins de 360px) */
@media (max-width: 360px) {
  .hero-title-crystal {
    font-size: 1.625rem;
    letter-spacing: 0.05em;
  }

  .hero-subtitle-crystal {
    font-size: 0.9rem;
  }
}

/* Fix débordements horizontaux */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

.hero-section,
.site-map-section,
.presentation-section,
.pourquoi-section-luxura,
.portfolio-section,
.methode-section,
.resultats-section,
.contact-section {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Amélioration de la lisibilité du texte */
.presentation-intro-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.presentation-intro-text .text-bold {
  font-weight: 500;
}

.presentation-intro-text .text-gray {
  opacity: 0.65;
}

/* Transition fluide entre sections */
section {
  position: relative;
}

/* Amélioration du focus pour accessibilité */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(20, 25, 35, 0.4);
  outline-offset: 2px;
}

/* Amélioration du scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   iOS Safari Compatibility Fixes
   ============================================ */

/* Safe Area Insets pour iPhone avec notch */
body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Fix 100vh sur iOS Safari avec variable JS */
.hero-section {
  height: calc(var(--vh, 1vh) * 100);
  min-height: calc(var(--vh, 1vh) * 100);
}

/* Fix 100vh sur iOS Safari */
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
  
  .hero-section {
    min-height: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  
  .presentation-section,
  .methode-section,
  .resultats-section,
  .contact-section {
    min-height: -webkit-fill-available;
  }
}

/* Fix flexbox gap pour Safari < 14.1 */
@supports not (gap: 0.5rem) {
  .header-icons-group > * + * {
    margin-left: 0.5rem;
  }
  
  .site-map-grid > * {
    margin: 0.5rem;
  }
  
  .hero-cta-group > * + * {
    margin-left: 1rem;
  }
  
  .resultats-stats > * + * {
    margin-left: 1.5rem;
  }
  
  .footer-container > * + * {
    margin-left: 2rem;
  }
}

/* Fix smooth scroll iOS */
html {
  -webkit-overflow-scrolling: touch;
}

/* Fix position fixed sur iOS */
.header-glass {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Fix pour les inputs iOS */
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-size: 16px; /* Empêche le zoom sur focus iOS */
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
}

/* Fix pour le focus iOS */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* Désactive le highlight sur tap iOS */
a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

/* Fix pour les boutons iOS */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Touch action pour meilleur scroll */
.portfolio-arc,
.portfolio-carousel-scroll {
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

/* Fix backdrop-filter pour Safari */
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .glass-surface,
  .header-menu-long {
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
  }
}

/* Fallback si backdrop-filter pas supporté */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-surface,
  .header-menu-long {
    background: rgba(205, 215, 228, 0.95);
  }
}

/* Fix pour les animations sur iOS */
.hero-title-crystal,
.hero-subtitle-crystal,
.hero-cta-crystal,
.hero-cta-contact {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Fix overflow scrolling iOS */
.methode-timeline,
.portfolio-arc {
  -webkit-overflow-scrolling: touch;
}

/* Fix pour éviter le bounce effect indésirable */
.contact-section,
.footer-premium {
  overscroll-behavior: none;
  -webkit-overscroll-behavior: none;
}

/* Améliore le rendu des images sur iOS */
img {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Fix pour les pseudo-éléments iOS */
.hero-background::before,
.hero-background::after,
body::before {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Fix safe area pour le footer */
.footer-premium {
  padding-bottom: calc(3rem + env(safe-area-inset-bottom));
}

.footer-bottom {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Fix pour le header sur iOS */
.header-glass {
  padding-top: env(safe-area-inset-top);
}

/* Fix pour les sections avec padding iOS */
@supports (padding: max(0px)) {
  .site-map-section,
  .presentation-section,
  .pourquoi-section-luxura,
  .portfolio-section,
  .methode-section,
  .resultats-section,
  .contact-section {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }
}

/* Fix hover sur iOS (désactive hover sur touch) */
@media (hover: none) and (pointer: coarse) {
  .site-map-item:hover,
  .pourquoi-case-vertical:hover,
  .pourquoi-case-square:hover,
  .pourquoi-case-horizontal:hover,
  .polaroid-card:hover,
  .timeline-step:hover {
    transform: none;
    box-shadow: inherit;
  }
  
  /* Augmente la zone de tap pour les petits éléments */
  .header-icon-link {
    min-width: 44px;
    min-height: 44px;
  }
  
  a, button {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Fix pour le scroll momentum iOS */
* {
  -webkit-overflow-scrolling: touch;
}

/* Fix pour les formulaires iOS */
.mlk-form-container input,
.mlk-form-container textarea,
.mlk-form-container select {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* Fix pour éviter le zoom automatique iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
  textarea,
  input {
    font-size: 16px;
  }
}

/* Fix pour le clavier iOS qui pousse le contenu */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mlk-form-actions {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}


