/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
  /* Couleurs SAFTI */
  --orange-primary: #FF6B35;
  --orange-secondary: #FF8C61;
  --gris-fonce: #4A4A4A;
  --gris-clair: #E5E5E5;
  --blanc-casse: #F5F5F5;
  --noir: #1A1A1A;
  --blanc: #FFFFFF;

  /* Typographie */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Espacements */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --container-max-width: 1140px;

  /* Ombres */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border radius */
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 20px;
}

/* ========================================
   RESET ET BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gris-fonce);
  line-height: 1.6;
  background-color: var(--blanc);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   TYPOGRAPHIE
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--noir);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* ========================================
   LAYOUT GÉNÉRAL
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  color: var(--orange-primary);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gris-fonce);
  margin-bottom: 3rem;
}

/* ========================================
   BOUTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: var(--radius-large);
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--orange-primary);
  color: var(--blanc);
  border-color: var(--orange-primary);
}

.btn-primary:hover {
  background-color: var(--orange-secondary);
  border-color: var(--orange-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--blanc);
  border-color: var(--blanc);
}

.btn-secondary:hover {
  background-color: var(--blanc);
  color: var(--orange-primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--orange-primary);
  border-color: var(--orange-primary);
}

.btn-outline:hover {
  background-color: var(--orange-primary);
  color: var(--blanc);
}

.btn-submit {
  width: 100%;
  position: relative;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-loader {
  opacity: 1;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--blanc);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--blanc);
  box-shadow: var(--shadow-light);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 20px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange-primary);
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  transition: var(--transition-normal);
  cursor: pointer;
}

.logo-img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gris-fonce);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange-primary);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--orange-primary);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--orange-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-small);
  background-color: rgba(255, 107, 53, 0.1);
}

.header-phone:hover {
  background-color: var(--orange-primary);
  color: var(--blanc);
}

/* Réseaux sociaux header */
.header-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--orange-primary);
  transition: var(--transition-fast);
}

.header-social:hover {
  background-color: var(--orange-primary);
  color: var(--blanc);
  transform: translateY(-2px);
}

.header-social-google:hover {
  background-color: #f1f3f4;
}

/* Bouton Partenaire mobile header */
.header-partenaire-mobile {
  display: none;
  align-items: center;
  padding: 0.4rem 0.85rem;
  background: var(--orange-primary);
  color: var(--blanc);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: var(--transition-fast);
  z-index: 1001;
}

.header-partenaire-mobile:hover {
  background: var(--orange-secondary);
  color: var(--blanc);
}

/* Menu hamburger (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--orange-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

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

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanc);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 4rem;
  color: var(--orange-primary);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-slogan {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* ========================================
   SECTION À PROPOS
   ======================================== */
.about {
  background-color: var(--blanc-casse);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-wrapper {
  text-align: center;
  position: relative;
  width: 440px;
  height: 440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cercle décoratif externe animé */
.about-photo-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--orange-primary) 0%, transparent 50%, var(--orange-primary) 100%);
  border-radius: 50%;
  opacity: 0.1;
  animation: rotate360 20s linear infinite;
  z-index: 0;
}

/* Cercle décoratif interne avec pointillés */
.about-photo-wrapper::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 2px dashed var(--orange-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: rotate360Reverse 15s linear infinite;
  z-index: 0;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate360Reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.about-photo {
  width: 320px;
  height: 320px;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 3px solid var(--orange-primary);
  overflow: hidden;
  transition: var(--transition-normal);
  z-index: 1;
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.about-photo:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

/* Éléments décoratifs modernes */
.deco-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--orange-primary), #ff8c5a);
  border-radius: 50%;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.deco-dot-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.deco-dot-2 {
  top: 15%;
  right: 15%;
  width: 8px;
  height: 8px;
  animation-delay: 0.5s;
}

.deco-dot-3 {
  bottom: 20%;
  left: 8%;
  width: 10px;
  height: 10px;
  animation-delay: 1s;
}

.deco-dot-4 {
  bottom: 15%;
  right: 12%;
  width: 14px;
  height: 14px;
  animation-delay: 1.5s;
}

.deco-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
  height: 2px;
  z-index: 2;
  opacity: 0.4;
}

.deco-line-1 {
  top: 25%;
  left: -20px;
  width: 60px;
  transform: rotate(-30deg);
}

.deco-line-2 {
  bottom: 30%;
  right: -20px;
  width: 70px;
  transform: rotate(30deg);
}

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

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--orange-primary);
  color: var(--blanc);
  border-radius: var(--radius-large);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-name {
  color: var(--orange-primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 1.25rem;
  color: var(--gris-fonce);
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1.25rem;
}

/* ========================================
   SECTION SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--blanc);
  padding: 2rem;
  border-radius: var(--radius-medium);
  border: 2px solid var(--gris-clair);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
  border-color: var(--orange-primary);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  color: var(--orange-primary);
}

.service-title {
  font-size: 1.5rem;
  color: var(--noir);
  margin-bottom: 1.5rem;
}

.service-list {
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: auto;
}

.service-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-primary);
  font-weight: bold;
}

/* ========================================
   SECTION POURQUOI ME CHOISIR
   ======================================== */
.why-choose {
  background-color: var(--blanc-casse);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.75rem;
  background: var(--blanc);
  border-radius: var(--radius-large);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-light);
  transition: var(--transition-normal);
}

.why-card:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-6px);
  border-color: transparent;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 0.6rem;
}

.why-text {
  color: var(--gris-fonce);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   SECTION FORMULAIRE DE CONTACT
   ======================================== */
.contact {
  background-color: var(--blanc);
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--blanc-casse);
  padding: 3rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
}

.form-legend {
  font-size: 0.9rem;
  color: var(--gris-fonce);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--noir);
}

.required {
  color: #D32F2F;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gris-clair);
  border-radius: var(--radius-small);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: var(--blanc);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #D32F2F;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* Radio buttons */
.radio-group {
  display: flex;
  gap: 2rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gris-clair);
  border-radius: var(--radius-small);
  transition: var(--transition-fast);
}

.radio-label:hover {
  border-color: var(--orange-primary);
}

.radio-label input[type="radio"] {
  cursor: pointer;
  accent-color: var(--orange-primary);
}

.radio-label input[type="radio"]:checked + span {
  color: var(--orange-primary);
  font-weight: 600;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--orange-primary);
}

.checkbox-label span {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--orange-primary);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--orange-secondary);
}

/* Boutons Type de Projet */
.project-type-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.project-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border: 2px solid var(--gris-clair);
  border-radius: var(--radius-medium);
  background-color: var(--blanc);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gris-fonce);
}

.project-btn svg {
  color: var(--orange-primary);
  transition: var(--transition-fast);
}

.project-btn:hover {
  border-color: var(--orange-primary);
  background-color: rgba(255, 107, 53, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.project-btn.active {
  border-color: var(--orange-primary);
  border-width: 3px;
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--orange-primary);
}

.project-btn.active svg {
  transform: scale(1.1);
}

/* Messages d'erreur */
.error-message {
  display: block;
  color: #D32F2F;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

/* Honeypot (anti-spam) */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Message de succès */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background-color: #E8F5E9;
  border: 2px solid #4CAF50;
  border-radius: var(--radius-medium);
  animation: fadeInUp 0.5s ease;
}

.form-success.show {
  display: block;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: #4CAF50;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1.125rem;
  color: var(--gris-fonce);
  margin-bottom: 0.5rem;
}

/* ========================================
   SECTION ZONE D'INTERVENTION
   ======================================== */
.zone {
  background-color: var(--blanc-casse);
}

.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.zone-map {
  position: relative;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  border-radius: var(--radius-medium);
}

.zone-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--orange-primary);
  border-radius: var(--radius-medium);
  opacity: 0.2;
  transform: translate(-10px, -10px);
  z-index: 0;
}

.zone-map::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--orange-primary);
  border-radius: var(--radius-medium);
  opacity: 0.2;
  transform: translate(10px, 10px);
  z-index: 0;
}

.zone-map img {
  width: 100%;
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
  position: relative;
  z-index: 1;
  transition: var(--transition-normal);
}

.zone-map img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

/* Éléments décoratifs pour la carte */
.map-deco {
  position: absolute;
  background: var(--orange-primary);
  z-index: 2;
  opacity: 0.6;
}

.map-deco-1 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 20px;
  right: 20px;
  animation: pulse 3s ease-in-out infinite;
}

.map-deco-2 {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  bottom: 30px;
  left: 20px;
  animation: pulse 3s ease-in-out infinite 0.5s;
}

.map-deco-3 {
  width: 60px;
  height: 3px;
  top: 50%;
  right: -10px;
  background: linear-gradient(90deg, var(--orange-primary), transparent);
  animation: slideIn 2s ease-in-out infinite;
}

.map-deco-4 {
  width: 50px;
  height: 3px;
  bottom: 30%;
  left: -10px;
  background: linear-gradient(90deg, transparent, var(--orange-primary));
  animation: slideIn 2s ease-in-out infinite 1s;
}

@keyframes slideIn {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(0);
  }
  50% {
    opacity: 0.8;
    transform: translateX(10px);
  }
}

.zone-title {
  font-size: 1.75rem;
  color: var(--orange-primary);
  margin-bottom: 1.5rem;
}

.communes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.communes-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.communes-list li::before {
  content: '📍';
  position: absolute;
  left: 0;
}

.communes-list strong {
  color: var(--orange-primary);
}

.zone-notice {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--orange-primary);
  border-radius: var(--radius-small);
}

.zone-notice p {
  margin: 0;
  font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-main {
  background-color: var(--gris-fonce);
  color: var(--blanc);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-primary);
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.2);
}

.footer-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-role {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.footer-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blanc);
  opacity: 0.9;
  transition: var(--transition-fast);
}

.footer-link:hover {
  opacity: 1;
  color: var(--orange-primary);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blanc);
}

.footer-links,
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-info li {
  opacity: 0.9;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--orange-primary);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--blanc);
  padding: 0.75rem 1.25rem;
  background-color: rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-small);
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
  text-decoration: none;
  max-width: 200px;
}

.footer-social:hover {
  background-color: var(--orange-primary);
  transform: translateX(5px);
}

.footer-social svg {
  flex-shrink: 0;
}

.footer-social-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

/* Bande orange SAFTI */
.footer-safti {
  background-color: var(--orange-primary);
  padding: 1.5rem 0;
}

.footer-website {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blanc);
  margin: 0;
}

/* Copyright */
.footer-bottom {
  background-color: #2A2A2A;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: #B0B0B0;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-legal {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ========================================
   BOUTONS FLOTTANTS
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--orange-primary);
  color: var(--blanc);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-heavy);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse 2s infinite;
}

.floating-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.floating-cta-text {
  font-weight: 600;
  font-family: var(--font-heading);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: var(--shadow-heavy);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: rgba(74, 74, 74, 0.8);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 998;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--orange-primary);
  transform: translateY(-5px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   MODALES MENTIONS LÉGALES / POLITIQUE DE CONFIDENTIALITÉ
   ======================================== */

.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.legal-modal.open {
  display: flex;
}

.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.legal-modal-content {
  position: relative;
  background: var(--blanc);
  border-radius: var(--radius-large);
  padding: 2.5rem;
  max-width: 780px;
  width: 100%;
  margin: auto;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.legal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gris-fonce);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: var(--transition-fast);
}

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

.legal-modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gris-clair);
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-block {
  background: var(--blanc-casse);
  border-radius: var(--radius-medium);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange-primary);
}

.legal-block-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-block p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gris-fonce);
  margin-bottom: 0.4rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: var(--orange-primary);
  text-decoration: none;
}

.legal-block a:hover {
  text-decoration: underline;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0;
}

.legal-list li {
  font-size: 0.9rem;
  color: var(--gris-fonce);
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.legal-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--orange-primary);
}

/* ========================================
   SECTION VIDÉO DE PRÉSENTATION
   ======================================== */

/* Section vidéo — fond sombre, layout 2 colonnes */
.video-presentation {
  background: linear-gradient(135deg, var(--noir) 0%, #2a2a2a 100%);
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

/* Texte colonne gauche */
.video-tag {
  display: inline-block;
  background: var(--orange-primary);
  color: var(--blanc);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.video-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
}

/* Lecteur vidéo colonne droite */
.video-player-col {
  position: relative;
}

.video-player-wrapper {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  position: relative;
}

.video-overlay {
  position: relative;
  cursor: pointer;
  line-height: 0;
}

.video-cover-img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.video-overlay:hover .video-cover-img {
  transform: scale(1.02);
}

.video-play-btn-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.6));
}

.video-play-btn-custom:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.video-overlay.hidden {
  display: none;
}

.presentation-video {
  display: none;
  width: 100%;
}

.presentation-video.active {
  display: block;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablette Paysage (< 992px) */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  /* Vidéo tablette */
  .video-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .video-title {
    font-size: 2.25rem;
  }

  .video-player-wrapper {
    max-width: 680px;
    margin: 0 auto;
  }

  .nav-list {
    gap: 1.25rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  /* Why-cards tablette */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

/* Tablette Portrait (< 768px) */
@media (max-width: 768px) {
  /* Vidéo mobile */
  .video-title {
    font-size: 2rem;
  }

  .video-desc {
    font-size: 1rem;
  }

  /* Legal sections mobile */
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .legal-block {
    padding: 1.25rem;
  }

  .section {
    padding: 60px 0;
  }

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

  /* Header mobile */
  .header-container {
    padding: 0.25rem 15px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 999;
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .nav-link {
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header-partenaire-mobile {
    display: flex;
  }

  .header-phone {
    padding: 0.4rem 0.6rem;
  }

  .header-phone span {
    display: none;
  }

  .header-socials {
    display: flex;
    gap: 0.2rem;
  }

  .header-social {
    width: 28px;
    height: 28px;
  }

  .header-social svg {
    width: 14px;
    height: 16px;
  }

  .logo-img {
    height: 70px;
  }

  /* Hero mobile */
  .hero {
    min-height: 100vh;
    height: auto;
  }

  .hero-background {
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0 15px;
  }

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

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

  .hero-slogan {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    padding: 0 10px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  /* À propos mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo-wrapper {
    width: 300px;
    height: 300px;
  }

  .about-photo {
    width: 240px;
    height: 240px;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-name {
    font-size: 1.75rem;
    text-align: center;
  }

  .about-subtitle {
    text-align: center;
    font-size: 1.1rem;
  }

  .about-right {
    text-align: center;
  }

  .about-right .btn {
    width: 100%;
  }

  /* Ajustement des éléments décoratifs pour mobile */
  .deco-dot {
    width: 10px;
    height: 10px;
  }

  .deco-dot-2 {
    width: 6px;
    height: 6px;
  }

  .deco-dot-3 {
    width: 8px;
    height: 8px;
  }

  .deco-dot-4 {
    width: 11px;
    height: 11px;
  }

  .deco-line {
    display: none;
  }

  .about-photo img {
    object-fit: contain;
    object-position: center center;
  }

  /* Why-cards mobile 1 col */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Services mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .service-title {
    font-size: 1.25rem;
  }

  /* Pourquoi mobile */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 1.25rem;
  }

  /* Formulaire mobile */
  .contact-form {
    padding: 2rem 1.25rem;
  }

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

  .radio-group {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .radio-label {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }

  .project-type-buttons {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .project-btn {
    flex-direction: row;
    padding: 1rem;
    font-size: 1rem;
  }

  .project-btn svg {
    width: 20px;
    height: 20px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 10px 14px;
    font-size: 16px;
  }

  .btn-submit {
    padding: 14px;
    font-size: 1rem;
  }

  /* Zone mobile */
  .zone-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .zone-map {
    padding: 15px;
  }

  .map-deco-3,
  .map-deco-4 {
    display: none;
  }

  .map-deco-1 {
    width: 15px;
    height: 15px;
  }

  .map-deco-2 {
    width: 12px;
    height: 12px;
  }

  .communes-list {
    grid-template-columns: 1fr;
  }

  .zone-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .zone-notice {
    text-align: center;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-contact,
  .footer-links,
  .footer-info {
    align-items: center;
  }

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

  .footer-website {
    font-size: 1.25rem;
  }

  /* Boutons flottants mobile */
  .floating-cta {
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    bottom: 20px;
    right: 20px;
  }

  .floating-cta-text {
    display: none;
  }

  .back-to-top {
    bottom: 90px;
    left: 20px;
  }
}

/* Mobile Portrait (< 576px) */
@media (max-width: 576px) {
  :root {
    --container-padding: 0 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

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

  /* Header petit mobile */
  .logo-img {
    height: 55px;
  }

  .header-container {
    padding: 0.25rem 10px;
  }

  .header-partenaire-mobile {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  /* Hero petit mobile */
  .hero-title {
    font-size: 1.75rem;
  }

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

  .hero-slogan {
    font-size: 0.9rem;
  }

  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* À propos petit mobile */
  .about-photo-wrapper {
    width: 250px;
    height: 250px;
  }

  .about-photo {
    width: 200px;
    height: 200px;
  }

  .about-name {
    font-size: 1.5rem;
  }

  .badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Services petit mobile */
  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 32px;
    height: 32px;
  }

  /* Formulaire petit mobile */
  .contact-form {
    padding: 1.5rem 1rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .radio-label {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  /* Boutons */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .floating-cta {
    width: 55px;
    height: 55px;
  }

  .back-to-top {
    bottom: 85px;
    left: 15px;
    width: 42px;
    height: 42px;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
.hidden {
  display: none !important;
}

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

.text-orange {
  color: var(--orange-primary);
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

/* ========================================
   PAGE PARTENAIRE
   ======================================== */

/* Hero Partenaire */
.partenaire-hero {
  padding-top: 180px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--noir) 0%, var(--gris-fonce) 100%);
  text-align: center;
  color: var(--blanc);
}

.partenaire-hero-title {
  font-size: 3rem;
  color: var(--blanc);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.partenaire-hero-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
}

.partenaire-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats */
.partenaire-stats {
  background-color: var(--blanc);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gris-fonce);
}

/* Video */
.partenaire-video {
  background-color: var(--blanc-casse);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-heavy);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-medium);
}

.video-thumbnail {
  display: block;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.video-thumbnail img {
  width: 100%;
  display: block;
  transition: var(--transition-normal);
}

.video-thumbnail:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-normal);
  opacity: 0.9;
}

.video-thumbnail:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
}

/* Steps */
.partenaire-steps {
  background-color: var(--blanc);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--blanc-casse);
  border-radius: var(--radius-medium);
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background-color: var(--orange-primary);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 1rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  color: var(--orange-primary);
}

.step-title {
  font-size: 1.25rem;
  color: var(--noir);
  margin-bottom: 1rem;
}

.step-text {
  color: var(--gris-fonce);
  line-height: 1.6;
}

/* Code Partenaire */
.partenaire-code {
  background-color: var(--blanc-casse);
}

.code-box {
  max-width: 500px;
  margin: 0 auto 3rem;
  text-align: center;
  background-color: var(--blanc);
  padding: 2.5rem;
  border-radius: var(--radius-medium);
  border: 3px solid var(--orange-primary);
  box-shadow: var(--shadow-medium);
}

.code-label {
  font-size: 1rem;
  color: var(--gris-fonce);
  margin-bottom: 1rem;
}

.code-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange-primary);
  letter-spacing: 8px;
  margin-bottom: 1.5rem;
}

.code-copy-btn {
  width: auto;
}

.download-section {
  text-align: center;
}

.download-title {
  font-size: 1.5rem;
  color: var(--noir);
  margin-bottom: 0.75rem;
}

.download-text {
  color: var(--gris-fonce);
  margin-bottom: 1.5rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Avantages */
.partenaire-avantages {
  background-color: var(--blanc);
}

/* CTA Final */
.partenaire-cta {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
  padding: 60px 0;
}

/* Responsive Partenaire - Tablette */
@media (max-width: 992px) {
  .partenaire-hero-title {
    font-size: 2.5rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Responsive Partenaire - Mobile */
@media (max-width: 768px) {
  .partenaire-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .partenaire-hero-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .partenaire-hero-title br {
    display: none;
  }

  .partenaire-hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .partenaire-hero-buttons {
    flex-direction: column;
    padding: 0 20px;
  }

  .partenaire-hero-buttons .btn {
    width: 100%;
  }

  /* Stats en ligne scrollable ou empilées */
  .partenaire-stats {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-card {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--gris-clair);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  /* Vidéo */
  .video-thumbnail {
    border-radius: var(--radius-small);
  }

  .video-play-btn svg {
    width: 50px;
    height: 36px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-card {
    padding: 1.5rem 1.25rem;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-icon svg {
    width: 32px;
    height: 32px;
  }

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

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

  /* Code partenaire */
  .code-box {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }

  .code-value {
    font-size: 2.25rem;
    letter-spacing: 4px;
  }

  .code-copy-btn {
    width: 100%;
  }

  .download-title {
    font-size: 1.25rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .download-buttons .btn {
    width: 100%;
  }

  /* Avantages */
  .partenaire-avantages .why-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .partenaire-avantages .why-icon {
    font-size: 2.5rem;
  }

  /* CTA */
  .partenaire-cta {
    padding: 40px 0;
  }

  .partenaire-cta .section-title {
    font-size: 1.5rem;
  }

  .partenaire-cta p {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  .partenaire-cta .btn {
    width: calc(100% - 40px);
  }
}

/* Responsive Partenaire - Petit mobile */
@media (max-width: 576px) {
  .partenaire-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .partenaire-hero-title {
    font-size: 1.5rem;
  }

  .partenaire-hero-subtitle {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .code-box {
    padding: 1.5rem 1rem;
  }

  .code-value {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .step-card {
    padding: 1.25rem 1rem;
  }
}
