:root {
  /* Palette fournie */
  --brand-yellow: #FBBA00;
  --brand-green: #5FB842;
  --brand-olive: #B3C72B;
  --brand-rose: #DB5E60;
  --color-text: #111;
  --color-bg: #fff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { 
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  color: var(--color-text); 
  background: var(--color-bg); 
}

/* Header */
.site-header {
  position: sticky; 
  top: 0; 
  background: #fff; 
  border-bottom: 1px solid rgba(0,0,0,0.06); 
  z-index: 10; 
}
.header__logos { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: clamp(8px, 1.2vh, 14px) clamp(16px, 3vw, 32px); 
}
.header__logo { display: inline-flex; align-items: center; }
/* Hauteurs fixes par logo (desktop) */
.header__logo--ppf img { height: 54px; width: auto; display: block;
  width: 100%; }
.header__logo--mpr img { height: 95px; width: auto; display: block;
  width: 100%; }
.header__logo--cee img { height: 64px; width: auto; display: block;
  width: 100%; }

/* Groupe à droite */
.header__right { display: inline-flex; align-items: center; gap: 8px; }

/* Téléphone dans le header */
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  color: #111;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
}
.header__phone::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--brand-yellow);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  flex-shrink: 0;
}

/* Bouton Simulez vos économies dans le header */
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow);
  color: #111;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 800;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(251,186,0,0.3);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.header__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251,186,0,0.4);
  filter: brightness(1.05);
}
.header__btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .header__logo--ppf img { height: 52px; }
  .header__logo--mpr img { height: 48px; }
  .header__logo--cee img { height: 52px; }
  .header__phone { display: none; }
  .header__btn { display: none; }
}

@media (max-width: 900px) {
  .header__phone { display: none; }
  .header__btn { display: none; }
}


/* Section 1 - Nouveau Design */
.section-hero {
  position: relative;
  isolation: isolate;
}
.section-hero__bg {
  min-height: clamp(400px, 60vh, 600px);
  background-image: url("./Rectangle-249.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(20px, 4vw, 60px);
}

/* Copie principale */
.hero-copy {
  max-width: min(700px, 90vw);
}

/* Badge jaune en haut */
.hero-badge {
  display: inline-block;
  background: var(--brand-yellow);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: clamp(12px, 2vw, 18px) clamp(20px, 3vw, 32px);
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(251,186,0,0.4);
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

/* Sous-titre blanc */
.hero-subtitle {
  margin: 0 0 clamp(20px, 3vw, 32px) 0;
  font-weight: 400;
  line-height: 1.4;
  font-size: clamp(18px, 2.4vw, 32px);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Bouton CTA */
.btn-hero-cta {
  display: inline-block;
  background: var(--brand-yellow);
  color: #111;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  text-decoration: none;
  padding: clamp(12px, 2vw, 16px) clamp(24px, 3vw, 40px);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(251,186,0,0.4);
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251,186,0,0.5);
  filter: brightness(1.05);
}
.btn-hero-cta:active {
  transform: translateY(0);
}

/* Disclaimer en bas */
.hero-disclaimer {
  margin: 0;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ========= SECTION INFO - 2 blocs avec bordures jaunes ========= */
.section-info-blocks {
  background: #fff;
  padding: clamp(20px, 4vh, 40px) clamp(20px, 4vw, 60px);
}

/* Container des deux blocs info */
.info-blocks-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 60px);
  max-width: 1400px;
  margin: 0 auto;
}

/* Blocs d'information */
.info-block {
  background: #fff;
  border: 3px solid var(--brand-yellow);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 40px);
  transition: all 0.3s ease;
}

.info-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(251,186,0,0.25);
}

.info-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--brand-yellow);
  line-height: 1.2;
  margin: 0 0 clamp(16px, 2.5vw, 24px) 0;
}

.info-intro {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 400;
  color: #111;
  line-height: 1.5;
  margin: 0 0 clamp(12px, 2vw, 20px) 0;
}

.info-intro strong {
  font-weight: 700;
  color: #111;
}

.info-text {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  color: #111;
  line-height: 1.5;
  margin: 0 0 clamp(12px, 2vw, 16px) 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  color: #111;
  line-height: 1.6;
  margin-bottom: clamp(8px, 1.2vw, 12px);
  padding-left: 24px;
  position: relative;
}

.info-list li::before {
  content: "•";
  color: var(--brand-yellow);
  font-weight: 800;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.info-list-aide li::before {
  content: "•";
}

.btn-info-cta {
  display: inline-block;
  background: var(--brand-yellow);
  color: #111;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 800;
  text-decoration: none;
  padding: clamp(10px, 1.8vw, 14px) clamp(20px, 3vw, 32px);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(251,186,0,0.4);
  margin-top: clamp(16px, 2.5vw, 24px);
}

.btn-info-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251,186,0,0.5);
  filter: brightness(1.05);
}

/* Responsive section info blocs */
@media (max-width: 1023px) {
  .info-blocks-container {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 32px);
  }
}

@media (max-width: 767px) {
  .section-info-blocks {
    padding: clamp(32px, 7vh, 48px) clamp(16px, 4vw, 24px);
  }

  .info-block {
    padding: clamp(20px, 4vw, 28px);
    border-width: 2px;
  }
}

/* ========= SECTION VIDEO YOUTUBE - Simple ========= */
.section-video-simple {
  background: #fff;
  padding: clamp(30px, 6vh, 60px) clamp(20px, 4vw, 60px);
}

.video-container-simple {
  max-width: 1000px;
  margin: 0 auto;
}

.video-wrapper-simple {
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.video-wrapper-simple iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive section vidéo YouTube */
@media (max-width: 767px) {
  .section-video-simple {
    padding: clamp(24px, 5vh, 40px) clamp(16px, 4vw, 24px);
  }

  .video-wrapper-simple {
    border-radius: 8px;
  }
}

/* ========= Section 2 : 4 raisons ========= */
.section-benefits {
  background: #fff;
  /* on colle au bord gauche */
  padding: clamp(28px, 6vw, 64px) clamp(16px, 5vw, 48px) clamp(28px, 6vw, 64px) 0;
  overflow: visible;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 45% 5% 50%; /* image, espace, cartes */
  gap: 0;
  align-items: stretch;
}
.benefit-space {
  background: #fff;
}

/* Bloc gauche : grand visuel */
.benefit-hero {
  margin: 0;
  position: relative;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.benefit-hero img {
  display: block;
  width: 90%;
  max-width: 75vw;
  height: auto;
  object-fit: contain;
  position: relative;
  left: calc(-1 * clamp(16px, 5vw, 48px));
}

/* Colonne droite : grille 2x2 de cartes */
.benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2.2vw, 24px);
}

.benefit-card {
  margin: 0;
  position: relative;
}

.benefit-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Texte par-dessus l'image */
.benefit-card figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(18px, 2.5vw, 28px);
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden; /* Évite que le texte déborde de la carte */
}

.benefit-card h3 {
  margin: 0;
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1.15;
  font-weight: 800;
  text-align: left;
  max-width: 75%;
}

.benefit-card p {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.4;
  font-weight: 450;
  color: white;
  max-width: 90%;
  align-self: flex-start;
}

/* Texte par-dessus l'image de fond dans la colonne gauche */
.benefit-hero-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(20px, 4vw, 40px);
  color: white;
  z-index: 1;
}

.hero-number {
  font-size: clamp(120px, 11vw, 200px);
  font-weight: 800;
  color: white;
  line-height: 0.8;
  margin-right: clamp(10px, 2vw, 20px);
}

.hero-text {
  flex: 1;
}

.hero-text-line1,
.hero-text-line2,
.hero-text-line3 {
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin: 0;
}

.hero-text-line4,
.hero-text-line5 {
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin: 0;
}

/* ========= Section 3 : Image de fond ========= */
.section-background {
  background-image: url("/assets/images/Section-3/photo%20avec%20un%20casque.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  position: relative;
}
/* Fallback PNG pour navigateurs sans WebP */
.no-webp .section-background {
  background-image: url("/assets/images/Section-3/photo%20avec%20un%20casque.png");
}

.section-background__content {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px);
  max-width: 1920px;
  margin: 0 auto;
}

/* Contenu de la section 3 */
.section3-copy {
  max-width: 800px;
  width: 100%;
}

.section3-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0 0 clamp(20px, 3vw, 32px) 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.section3-subtitle-container {
  background: var(--brand-rose);
  color: white;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 22px;
  margin-bottom: clamp(12px, 2vw, 16px);
  display: inline-block;
  box-shadow: 0 8px 20px rgba(219,94,96,0.35);
}

.section3-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  margin: 0;
}

.section3-description {
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 400;
  color: white;
  margin: 0 0 clamp(20px, 3vw, 32px) 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn-estimate {
  background: var(--brand-yellow);
  color: white;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(251,186,0,0.35);
  transition: transform 0.2s ease;
}

.btn-estimate:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(251,186,0,0.5);
}

/* ========= Section 4 : Le spécialiste ========= */
.section-specialist {
  background: var(--brand-yellow);
  padding: clamp(55px, 9vh, 75px) clamp(40px, 6vw, 80px);
  border-radius: clamp(45px, 8vw, 85px);
  margin: clamp(25px, 4vw, 40px) auto;
  max-width: 1920px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(251,186,0,0.35);
}

.section4-content {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section4-header {
  margin-bottom: clamp(15px, 2vh, 20px);
  text-align: center;
}

.section4-title {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin: 0;
}

.section4-title-highlight {
  font-weight: 800;
  color: #111;
}

.section4-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(15px, 3vw, 40px);
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
}
 
.feature-item {
  text-align: center;
  padding: clamp(2px, 0.5vw, 4px);
}

.feature-icon {
  margin-bottom: clamp(6px, 1vw, 10px);
  height: clamp(85px, 13vw, 130px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.feature-title {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 800;
  color: #111;
  margin-bottom: clamp(2px, 0.3vw, 4px);
  line-height: 1.1;
}

.feature-desc {
  font-size: clamp(12px, 1.8vw, 15px);
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

/* Responsive pour section 4 */
@media (max-width: 1200px) {
  .section4-features {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2.4vw, 20px);
  }
}

@media (max-width: 800px) {
  .section4-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .section4-features {
    grid-template-columns: 1fr;
  }
}

/* ========= Section 5 : Besoin de rénovation ========= */
.section-need {
  background: #fff;
  padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px) clamp(5px, 1vh, 8px);
  text-align: center;
}

.section5-content {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.section5-title {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

.section5-highlight {
  color: var(--brand-yellow);
  font-weight: 800;
}

/* Responsif */

/* ========= Section 6 : Google + Maison ========= */
.section-google {
  background: #fff;
  padding: clamp(2px, 0.5vh, 5px) clamp(20px, 4vw, 40px) clamp(30px, 8vh, 80px);
}

.section6-content {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1.1fr; /* texte | google | maison */
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  position: relative;
}

.section6-left {
  text-align: left;
}

.section6-label {
  display: inline-block;
  background: var(--brand-yellow);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: clamp(16px, 2.2vw, 24px);
  box-shadow: 0 8px 20px rgba(251,186,0,0.35);
}

.section6-title {
  margin: clamp(10px, 1.5vw, 16px) 0 0 0;
  font-size: clamp(20px, 2.6vw, 36px);
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

.section6-center {
  text-align: center;
}
.section6-google { 
  max-width: clamp(200px, 20vw, 320px);
  width: 100%;
  height: auto;
}

.section6-right { text-align: right; }
.section6-house {
  max-width: clamp(320px, 36vw, 600px);
  width: 100%;
  height: auto;
}

/* Flèche positionnée en bas milieu, pointe vers le bloc Google */
.section6-arrow {
  position: absolute;
  left: 35%;
  bottom: clamp(-6px, -1.5vh, -22px);
  transform: translateX(-50%);
  width: clamp(300px, 16vw, 260px);
  height: auto;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .section6-content {
    grid-template-columns: 1fr 1fr; /* texte + google / maison en dessous */
  }
  .section6-right { grid-column: 1 / -1; text-align: center; }
  .section6-house { max-width: clamp(320px, 70vw, 820px); }
  .section6-arrow { left: 50%; bottom: -10px; }
}

@media (max-width: 640px) {
  .section6-content {
    grid-template-columns: 1fr; /* empile tout */
    gap: clamp(12px, 4vw, 20px);
  }
  .section6-center { order: 2; }
  .section6-right { order: 3; }
  .section6-arrow { display: none; }
  .section6-title { font-size: clamp(18px, 6vw, 28px); }
}

/* ========= Section 7 : Adresse + Bouton ========= */
.section-address {
  background: #fff;
  padding: clamp(36px, 8vh, 80px) clamp(20px, 5vw, 48px);
}

.section7-content {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}

.address-form {
  position: relative; /* pour positionner le bouton dedans */
}

/* Champ de saisie: bordure noire, sans ombre */
.address-input {
  width: 100%;
  height: clamp(52px, 7vh, 68px);
  padding: 0 clamp(16px, 2vw, 20px);
  padding-right: clamp(150px, 22vw, 260px); /* réserve l’espace pour le bouton à droite */
  border: 2px solid #111;
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: #111;
  font-size: clamp(16px, 1.8vw, 20px);
  box-shadow: none; /* pas d’ombre */
}
.address-input::placeholder { color: rgba(0,0,0,0.55); }

/* Bouton à l’intérieur, collé à droite */
.address-button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  height: calc(clamp(52px, 7vh, 68px) - 8px); /* un peu plus petit que l’input */
  padding: 0 clamp(16px, 2.2vw, 28px);
  border-radius: 999px;
  border: 2px solid #ffffff; /* même bordure que l’input pour fusion visuelle */
  background: var(--brand-yellow);
  color: #111;
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 18px);
  cursor: pointer;
  box-shadow: none; /* pas d’ombre */
  white-space: nowrap; /* éviter le retour à la ligne du libellé */
}
.address-button:hover { filter: brightness(1.03); }
.address-button:active { transform: translateY(-50%) scale(0.995); }

/* Mobile: la réserve à droite est plus petite, bouton pleine largeur si besoin */
@media (max-width: 520px) {
  .address-input {
    padding-right: clamp(120px, 36vw, 180px);
  }
}

/* ========= Autocomplétion d'adresses Google Places ========= */

/* Assurer que les conteneurs de formulaires ont une position relative */
.hero-search,
.address-form {
  position: relative;
}

/* Style simple pour les suggestions Google Places */
.pac-container {
  font-family: 'Poppins', sans-serif !important;
  z-index: 1000 !important;
}
@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* on empile */
  }
  .benefit-hero {
    min-height: 360px; /* garde un bon impact visuel */
  }
}

@media (max-width: 680px) {
  .benefit-cards {
    grid-template-columns: 1fr; /* cartes en colonne sur mobile */
  }
  .benefit-card { min-height: 200px; }
}

/* ========= Section 8 : Témoignages ========= */
.section-testimonials {
  background: var(--brand-yellow);
  padding: clamp(50px, 10vh, 90px) clamp(20px, 4vw, 40px);
}

.section8-content {
  max-width: 1920px;
  width: 96%;
  margin: 0 auto;
}

.section8-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #111;
  text-align: center;
  margin: 0 0 clamp(40px, 6vh, 60px) 0;
  line-height: 1.2;
}

/* Container du carrousel */
.testimonials-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  width: 100%;
}

/* Boutons de navigation */
.testimonial-nav {
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(0,0,0,0.1);
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  padding: 0;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.testimonial-nav:hover {
  background: white;
  border-color: var(--brand-yellow);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: var(--brand-yellow);
}

.testimonial-nav:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s ease;
}

/* Slider container */
.testimonials-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  width: 100%;
  padding: 20px 0; /* Espace pour le zoom sans couper */
}

.testimonials-track {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 0 4px;
}

/* Cartes témoignages */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
  flex-shrink: 0;
  min-height: 240px;
  aspect-ratio: 1 / 1.1; /* Cartes plus carrées */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Masquer le logo Google dans les cartes */
.testimonial-card .google-icon {
  display: none;
}

.testimonial-card:hover {
  transform: translateY(-3px) scale(1.015); /* Zoom réduit de 1.02 à 1.015 */
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: var(--brand-yellow);
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
  z-index: 10; /* Passe au-dessus des autres cartes */
}

.testimonial-card:hover .testimonial-name {
  color: var(--brand-yellow);
}

.testimonial-card:hover .star {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(255,215,0,0.3));
}

.testimonial-card:active {
  transform: translateY(-2px) scale(1.01);
  transition: all 0.1s ease;
}

/* Header avec avatar et info */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  background: #666;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.testimonial-avatar--orange { background: #FF6B35; }
.testimonial-avatar--purple { background: #8B5CF6; }
.testimonial-avatar--green { background: #10B981; }
.testimonial-avatar--blue { background: #3B82F6; }
.testimonial-avatar--pink { background: #EC4899; }

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

.avatar-letter {
  font-size: 17px;
  font-weight: 700;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.testimonial-date {
  font-size: 12px;
  color: #666;
}

/* Rating étoiles */
.testimonial-rating {
  margin-bottom: 10px;
}

.star {
  color: #FFD700;
  font-size: 16px;
  margin-right: 2px;
  transition: all 0.2s ease;
  display: inline-block;
}

/* Texte du témoignage */
.testimonial-text {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  flex-grow: 1;
}



/* Responsive pour témoignages */
/* Le JavaScript gère déjà l'affichage de 4 cartes sur desktop */
/* On ajuste juste les boutons de navigation pour mobile/tablette */

@media (max-width: 1023px) {
  .testimonial-nav {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .testimonials-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .testimonial-nav {
    display: none;
  }
  
  .testimonials-slider {
    border-radius: 16px;
  }
  
  .section8-title {
    font-size: clamp(24px, 6vw, 32px);
  }
}

/* ========= Section 9 : Conseils & Astuces ========= */
.section-tips {
  background: #fff;
  padding: clamp(50px, 10vh, 90px) clamp(20px, 4vw, 40px);
}

.section9-content {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.section9-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0 0 clamp(40px, 6vh, 60px) 0;
  line-height: 1.2;
}

.section9-highlight {
  background: var(--brand-yellow);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 20px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(251,186,0,0.3);
}

/* Grille des articles */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  justify-items: center;
}

/* Cartes d'articles */
.tip-card {
  background: white;
  border: 3px solid #111;
  border-radius: 20px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--brand-yellow);
}

/* Image de l'article */
.tip-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

/* Contenu de l'article */
.tip-content {
  padding: clamp(20px, 3vw, 28px);
}

.tip-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #111;
  margin: 0 0 clamp(12px, 1.5vw, 16px) 0;
  line-height: 1.3;
}

.tip-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.tip-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-yellow);
}

.tip-category {
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

.tip-description {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
  color: #333;
  margin: 0;
  font-weight: 400;
}

/* Responsive pour conseils */
@media (max-width: 1200px) {
  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 3vw, 30px);
  }
}

@media (max-width: 800px) {
  .tips-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 25px);
  }
  
  .tip-card {
    max-width: 100%;
  }
  
  .section9-title {
    font-size: clamp(24px, 6vw, 36px);
  }
}

@media (max-width: 400px) {
  .tip-image {
    height: 200px;
  }
}

/* ========= Section 11 : Contact & Footer ========= */
.section-contact {
  position: relative;
  min-height: 70vh;
  isolation: isolate;
  border-radius: 0;
  overflow: hidden;
}

.section11-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/Section-11/photo de Cannes.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.1) brightness(0.95);
  border-radius: 0;
}
/* Fallback PNG pour navigateurs sans WebP */
.no-webp .section11-bg {
  background-image: url("/assets/images/Section-11/photo de Cannes.png");
}

.section11-overlay {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(25px, 4vh, 45px) clamp(25px, 4vw, 60px);
}

/* Carte de contact */
.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: clamp(30px, 4vw, 50px);
  max-width: 450px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #111;
  margin: 0 0 clamp(20px, 3vh, 30px) 0;
  text-align: left;
}

/* Informations de contact */
.contact-info {
  margin-bottom: clamp(25px, 4vh, 35px);
}

.contact-address {
  margin-bottom: clamp(15px, 2vh, 20px);
}

.contact-address div {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  margin-bottom: 2px;
}

.contact-phone {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: #111;
  line-height: 1.4;
}

.phone-label {
  color: #111;
}

.phone-number {
  color: #FBBA00;
  font-weight: 700;
}

/* Horaires d'ouverture */
.hours-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: #111;
  margin: 0 0 clamp(20px, 3vh, 25px) 0;
  text-align: left;
}

.hours-schedule {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 12px);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  min-height: 24px;
}

.day {
  font-weight: 600;
  color: #111;
  flex-shrink: 0;
  width: 80px;
}

.times {
  color: #111;
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive pour section contact */
@media (max-width: 1200px) {
  .section11-overlay {
    justify-content: center;
    padding: clamp(20px, 3vh, 35px) clamp(20px, 4vw, 40px);
  }
  
  .contact-card {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .section-contact {
    min-height: 60vh;
  }
  
  .section11-overlay {
    min-height: 60vh;
    align-items: flex-start;
    padding-top: clamp(30px, 6vh, 50px);
  }
  
  .contact-card {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.98);
  }
  
  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .day {
    width: auto;
  }
  
  .times {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: clamp(20px, 5vw, 30px);
    border-radius: 20px;
  }
  
  .section-contact {
    min-height: 55vh;
  }
  
  .section11-overlay {
    min-height: 55vh;
  }
  
  .section11-bg {
    background-position: center bottom;
    border-radius: 0;
  }
}

/* ========================================= */
/* RESPONSIVE BREAKPOINTS - STRUCTURE       */
/* Préserve 1920x1200 comme référence       */
/* ========================================= */

/* 1920-2559px : DESIGN DE RÉFÉRENCE */
@media (min-width: 1920px) {
  /* Section 2 - Ajustements pour les grands écrans */
  
  /* Cartes de droite */
  .benefit-card h3 {
    max-width: 55%;
    font-size: clamp(24px, 1.5vw, 38px);
    margin-top: 12px;
  }
  
  .benefit-card p {
    font-size: clamp(17px, 1.05vw, 27px);
    max-width: 85%;
    margin-bottom: 12px;
  }
  
  .benefit-card figcaption {
    padding: 12px 20px 20px 20px;
  }
  
  /* Bloc gauche - texte et image responsive */
  .benefit-hero img {
    width: clamp(85%, 4vw, 95%);
  }
  
  .hero-number {
    font-size: clamp(140px, 12vw, 220px);
  }
  
  .hero-text-line1,
  .hero-text-line2,
  .hero-text-line3 {
    font-size: clamp(28px, 2.8vw, 54px);
  }
  
  .hero-text-line4,
  .hero-text-line5 {
    font-size: clamp(28px, 2.8vw, 54px);
  }
}

/* ≥ 2560px : Très grands écrans - Centrer le contenu */
@media (min-width: 2560px) {
  body {
    background: #f5f5f5;
  }
  
  .section-hero,
  .section-benefits,
  .section-background,
  .section-specialist,
  .section-need,
  .section-google,
  .section-address,
  .section-testimonials,
  .section-tips {
    max-width: 2560px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 1200-1919px : Desktop large - Layout horizontal compact */
@media (max-width: 1919px) and (min-width: 1200px) {
  .section-benefits {
    padding-left: clamp(12px, 2.5vw, 24px);
  }
  
  /* Grid 2 colonnes - supprimer les 3% d'espace */
  .benefits-grid {
    grid-template-columns: 47% 53%;
  }
  
  .benefit-space {
    display: none;
  }
  
  /* Cartes droite - texte réduit pour gagner de la place */
  .benefit-card h3 {
    font-size: clamp(18px, 1.4vw, 24px);
  }
  
  .benefit-card p {
    font-size: clamp(14px, 1vw, 17px);
  }
}

/* 1024-1199px : Passage en mode vertical (texte centré + cartes) */
@media (max-width: 1199px) and (min-width: 1024px) {
  /* Header adapté */
  .header__logos {
    padding: clamp(12px, 2vh, 22px) clamp(14px, 2.5vw, 28px);
  }
  
  .header__logo--ppf img { height: 48px; }
  .header__logo--mpr img { height: 82px; }
  .header__logo--cee img { height: 58px; }
  
  /* Hero légèrement ajusté */
  .hero-label {
    font-size: clamp(30px, 4.2vw, 52px);
  }
  
  .hero-title {
    font-size: clamp(24px, 3.6vw, 44px);
  }
  
  /* Section 2 - Layout vertical avec texte centré */
  .section-benefits {
    padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 48px);
  }
  
  .benefit-space {
    display: none;
  }
  
  .benefit-hero {
    display: block;
    position: relative;
    background: var(--brand-yellow);
    border-radius: 0 100px 0 100px;
    padding: clamp(28px, 4vw, 40px) clamp(32px, 4.5vw, 48px);
    min-height: auto;
    text-align: center;
    box-shadow: 0 8px 24px rgba(251,186,0,0.3);
    overflow: hidden;
  }
  
  .benefit-hero img {
    display: none;
  }
  
  .benefit-hero-text {
    position: static;
    width: 100%;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.5vw, 28px);
  }
  
  .hero-number {
    font-size: clamp(90px, 11vw, 140px);
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin: 0;
    flex-shrink: 0;
  }
  
  .hero-text {
    display: block;
    text-align: left;
  }
  
  .hero-text-line1,
  .hero-text-line2,
  .hero-text-line3,
  .hero-text-line4,
  .hero-text-line5 {
    display: inline;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    color: #111;
    line-height: 1.3;
  }
  
  .hero-text-line1::after,
  .hero-text-line2::after,
  .hero-text-line3::after,
  .hero-text-line4::after {
    content: " ";
  }
  
  .benefit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
  }
  
  .benefit-card {
    min-height: 240px;
  }
  
  .benefit-card figcaption {
    padding: clamp(22px, 3.5vw, 32px);
  }
  
  .benefit-card h3 {
    font-size: clamp(18px, 2vw, 24px);
    max-width: 75%;
    line-height: 1.2;
  }
  
  .benefit-card p {
    font-size: clamp(14px, 1.6vw, 19px);
    max-width: 85%;
    line-height: 1.4;
  }
  
  .benefit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
  }
  
  /* Section 4 - 3 colonnes au lieu de 5 */
  .section4-features {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3.5vw, 32px);
  }
  
  /* Section 6 - réorganiser */
  .section6-content {
    grid-template-columns: 1fr auto;
    gap: clamp(20px, 3vw, 32px);
  }
  
  .section6-right {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .section6-arrow {
    display: none;
  }
}

/* 768-1023px : Tablettes portrait */
@media (max-width: 1023px) and (min-width: 768px) {
  /* Header tablette */
  .header__logo--ppf img { height: 44px; }
  .header__logo--mpr img { height: 72px; }
  .header__logo--cee img { height: 52px; }
  
  /* Hero tablette */
  .section-hero__bg {
    min-height: 60vh;
  }
  
  .hero-label {
    font-size: clamp(26px, 5vw, 38px);
    padding: 8px 18px;
  }
  
  .hero-title {
    font-size: clamp(20px, 4.2vw, 34px);
  }
  
  .hero-search {
    width: min(540px, 95%);
  }
  
  /* Section 2 - Bloc jaune + cartes 2x2 */
  .section-benefits {
    padding: clamp(40px, 6vw, 56px) clamp(24px, 4vw, 40px);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }
  
  .benefit-space {
    display: none;
  }
  
  .benefit-hero {
    display: block;
    position: relative;
    background: var(--brand-yellow);
    border-radius: 0 110px 0 110px;
    padding: clamp(26px, 4vw, 38px) clamp(28px, 4.5vw, 42px);
    min-height: auto;
    text-align: center;
    box-shadow: 0 8px 24px rgba(251,186,0,0.3);
    overflow: hidden;
  }
  
  .benefit-hero img {
    display: none;
  }
  
  .benefit-hero-text {
    position: static;
    width: 100%;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3vw, 24px);
  }
  
  .hero-number {
    font-size: clamp(90px, 16vw, 130px);
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin: 0;
    flex-shrink: 0;
  }
  
  .hero-text {
    display: block;
    text-align: left;
  }
  
  .hero-text-line1,
  .hero-text-line2,
  .hero-text-line3,
  .hero-text-line4,
  .hero-text-line5 {
    display: inline;
    font-size: clamp(24px, 4.2vw, 36px);
    font-weight: 700;
    color: #111;
    line-height: 1.4;
  }
  
  .hero-text-line1::after,
  .hero-text-line2::after,
  .hero-text-line3::after,
  .hero-text-line4::after {
    content: " ";
  }
  
  .benefit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 3vw, 28px);
    max-width: 100%;
  }
  
  .benefit-card {
    min-height: 280px;
  }
  
  .benefit-card figcaption {
    padding: clamp(14px, 2.5vw, 20px) clamp(22px, 3.5vw, 32px) clamp(22px, 3.5vw, 32px) clamp(22px, 3.5vw, 32px);
    justify-content: flex-start;
    gap: clamp(14px, 2.5vw, 20px);
  }
  
  .benefit-card h3 {
    font-size: clamp(20px, 2.8vw, 26px);
    max-width: 75%;
    line-height: 1.2;
  }
  
  .benefit-card p {
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 85%;
    line-height: 1.4;
    margin-bottom: clamp(6px, 1vw, 10px);
  }
  
  /* Section 3 */
  .section-background {
    min-height: 60vh;
  }
  
  /* Section 4 - 2 colonnes */
  .section4-features {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 3vw, 28px);
  }
  
  /* Section 6 - tout en colonne */
  .section6-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .section6-left {
    text-align: center;
  }
  
  /* Section 9 - articles empilés */
  .tips-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
  }
}

/* ≤ 767px : Mobile (smartphones) */
@media (max-width: 767px) {
  /* Header mobile ultra compact */
  .header__logos {
    padding: 8px 12px;
  }
  
  .header__logo--ppf img { height: 40px; }
  .header__logo--mpr img { height: 62px; }
  .header__logo--cee img { height: 46px; }
  
  .header__right {
    gap: 6px;
  }
  
  /* Hero mobile */
  .section-hero__bg {
    min-height: 55vh;
    background-position: center center;
  }
  
  .section-hero__overlay {
    padding: 20px 16px;
    text-align: center;
  }
  
  .hero-copy {
    max-width: 100%;
  }
  
  .hero-label {
    font-size: clamp(20px, 6.5vw, 28px);
    padding: 8px 16px;
  }
  
  .hero-title {
    font-size: clamp(18px, 5.5vw, 26px);
    line-height: 1.3;
    margin-top: 12px;
  }
  
  .hero-search {
    width: 100%;
    margin-top: 20px;
  }
  
  .hero-search input {
    height: clamp(50px, 13vw, 64px);
    padding: 0 14px;
    padding-right: clamp(120px, 32vw, 160px);
    font-size: 15px;
  }
  
  .btn-cta {
    height: calc(clamp(50px, 13vw, 64px) - 8px);
    padding: 0 14px;
    font-size: 13px;
  }
  
  /* Section 2 mobile - Bloc jaune + cartes verticales 1 colonne */
  .section-benefits {
    padding: clamp(32px, 7vw, 48px) clamp(20px, 5vw, 28px);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 40px);
  }
  
  .benefit-space {
    display: none;
  }
  
  .benefit-hero {
    display: block;
    position: relative;
    background: var(--brand-yellow);
    border-radius: 0 80px 0 80px;
    padding: clamp(22px, 5vw, 32px) clamp(20px, 5vw, 28px);
    min-height: auto;
    text-align: center;
    box-shadow: 0 8px 20px rgba(251,186,0,0.35);
    overflow: hidden;
  }
  
  .benefit-hero img {
    display: none;
  }
  
  .benefit-hero-text {
    position: static;
    width: 100%;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3.5vw, 20px);
  }
  
  .hero-number {
    font-size: clamp(80px, 20vw, 120px);
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin: 0;
    flex-shrink: 0;
  }
  
  .hero-text {
    display: block;
    text-align: left;
  }
  
  .hero-text-line1,
  .hero-text-line2,
  .hero-text-line3,
  .hero-text-line4,
  .hero-text-line5 {
    display: inline;
    font-size: clamp(20px, 5.5vw, 30px);
    font-weight: 700;
    color: #111;
    line-height: 1.4;
  }
  
  .hero-text-line1::after,
  .hero-text-line2::after,
  .hero-text-line3::after,
  .hero-text-line4::after {
    content: " ";
  }
  
  .benefit-cards {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 28px);
    max-width: 100%;
  }
  
  .benefit-card {
    min-height: 280px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .benefit-card figcaption {
    padding: clamp(14px, 3vw, 20px) clamp(24px, 5vw, 32px) clamp(24px, 5vw, 32px) clamp(24px, 5vw, 32px);
    justify-content: flex-start;
    gap: clamp(16px, 3vw, 22px);
  }
  
  .benefit-card h3 {
    font-size: clamp(20px, 5vw, 27px);
    max-width: 75%;
    line-height: 1.25;
  }
  
  .benefit-card p {
    font-size: clamp(15px, 4vw, 20px);
    max-width: 85%;
    line-height: 1.4;
  }
  
  /* Section 3 mobile */
  .section-background {
    min-height: 55vh;
    background-size: cover;
  }
  
  .section-background__content {
    padding: clamp(28px, 6vh, 50px) 16px;
  }
  
  .section3-title {
    font-size: clamp(26px, 7.5vw, 40px);
  }
  
  .section3-subtitle-container {
    padding: 8px 16px;
  }
  
  .section3-subtitle {
    font-size: clamp(17px, 4.5vw, 22px);
  }
  
  .section3-description {
    font-size: clamp(15px, 4vw, 20px);
  }
  
  .btn-estimate {
    font-size: clamp(17px, 4.5vw, 22px);
    padding: 8px 18px;
  }
  
  /* Section 4 mobile */
  .section-specialist {
    padding: clamp(32px, 7vh, 48px) clamp(20px, 5vw, 28px);
    margin: clamp(20px, 4vw, 28px) 16px;
    border-radius: clamp(24px, 7vw, 48px);
    width: calc(100% - 32px);
  }
  
  .section4-title {
    font-size: clamp(18px, 5vw, 28px);
  }
  
  .section4-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-icon {
    height: clamp(70px, 16vw, 90px);
  }
  
  .feature-title {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .feature-desc {
    font-size: clamp(13px, 3.5vw, 16px);
  }
  
  /* Section 5 mobile */
  .section-need {
    padding: clamp(28px, 7vh, 48px) 16px clamp(10px, 2vh, 16px);
  }
  
  .section5-title {
    font-size: clamp(18px, 5vw, 30px);
  }
  
  /* Section 6 mobile */
  .section-google {
    padding: 16px;
  }
  
  .section6-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .section6-left {
    text-align: center;
  }
  
  .section6-label {
    font-size: clamp(15px, 4.5vw, 20px);
    padding: 8px 14px;
  }
  
  .section6-title {
    font-size: clamp(18px, 5vw, 28px);
  }
  
  .section6-google {
    max-width: 220px;
  }
  
  .section6-house {
    max-width: min(320px, 90vw);
  }
  
  /* Formulaires d'adresse mobile */
  .section-address {
    padding: clamp(28px, 7vh, 48px) 16px;
  }
  
  .section7-content {
    width: 100%;
  }
  
  .address-input {
    height: clamp(50px, 13vw, 60px);
    padding: 0 14px;
    padding-right: clamp(110px, 30vw, 150px);
    font-size: 15px;
  }
  
  .address-button {
    height: calc(clamp(50px, 13vw, 60px) - 8px);
    padding: 0 12px;
    font-size: 13px;
  }
  
  /* Section 8 mobile - témoignages */
  .section-testimonials {
    padding: clamp(32px, 7vh, 48px) 16px;
  }
  
  .section8-content {
    width: 100%;
  }
  
  .section8-title {
    font-size: clamp(22px, 6.5vw, 32px);
    margin-bottom: 28px;
  }
  
  .testimonials-slider {
    border-radius: 16px;
  }
  
  .testimonial-card {
    padding: 18px;
  }
  
  /* Section 9 mobile - conseils */
  .section-tips {
    padding: clamp(32px, 7vh, 48px) 16px;
  }
  
  .section9-content {
    width: 100%;
  }
  
  .section9-title {
    font-size: clamp(22px, 6.5vw, 32px);
    margin-bottom: 28px;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tip-card {
    border-width: 2px;
  }
  
  .tip-image {
    height: 220px;
  }
  
  .tip-content {
    padding: 18px;
  }
  
  .tip-title {
    font-size: clamp(17px, 5vw, 22px);
  }
  
  /* Section 11 mobile - contact */
  .section-contact {
    min-height: 55vh;
  }
  
  .section11-overlay {
    padding: 24px 16px;
    padding-top: 36px;
    min-height: 55vh;
  }
  
  .contact-card {
    padding: 24px;
    border-radius: 18px;
  }
  
  .contact-title {
    font-size: clamp(26px, 7.5vw, 36px);
  }
  
  .contact-address div,
  .contact-phone {
    font-size: clamp(15px, 4vw, 17px);
  }
  
  .hours-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  
  .schedule-row {
    font-size: clamp(13px, 3.8vw, 15px);
  }
}

/* =============================================
   Google Reviews Widget (Badge Fixe + Panneau latéral)
   ============================================= */

.google-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
}

.google-widget-trigger {
  background: white;
  border-radius: 50px;
  padding: 14px 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0,0,0,0.06);
}

.google-widget-trigger:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.1);
  border-color: var(--brand-yellow);
}

.widget-google-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.widget-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.widget-stars {
  color: #FFD700;
  font-size: 15px;
  letter-spacing: 1.5px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.widget-score {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

.widget-reviews-count {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
  font-weight: 500;
}

/* Panneau latéral */
.google-widget-panel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  background: white;
  box-shadow: 6px 0 32px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.google-widget-panel.active {
  transform: translateX(0);
}

.widget-panel-header {
  padding: 24px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
  flex-shrink: 0;
}

.widget-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.panel-google-icon {
  width: 32px;
  height: 32px;
}

.widget-brand {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 2px;
}

.widget-reviews-info {
  font-size: 13.5px;
  color: #666;
  font-weight: 500;
}

.widget-close {
  background: rgba(0,0,0,0.04);
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-weight: 300;
}

.widget-close:hover {
  background: rgba(0,0,0,0.08);
  color: #111;
  transform: rotate(90deg);
}

/* Liste des avis */
.widget-panel-reviews {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #fafafa;
}

.widget-panel-reviews::-webkit-scrollbar {
  width: 8px;
}

.widget-panel-reviews::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.02);
}

.widget-panel-reviews::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 4px;
}

.widget-panel-reviews::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.25);
}

.widget-review-item {
  padding: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s ease;
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.widget-review-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.widget-review-item:last-child {
  margin-bottom: 0;
}

.widget-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.widget-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #666;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.widget-avatar-pink { background: #EC4899; }
.widget-avatar-green { background: #10B981; }
.widget-avatar-purple { background: #8B5CF6; }
.widget-avatar-blue { background: #3B82F6; }
.widget-avatar-orange { background: #FF6B35; }

.widget-review-name {
  font-weight: 700;
  font-size: 14.5px;
  color: #111;
  margin-bottom: 2px;
}

.widget-review-time {
  font-size: 12px;
  color: #999;
}

.widget-review-stars {
  color: #FFD700;
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

.widget-review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  font-weight: 400;
}

.review-toggle-btn {
  background: none;
  border: none;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 2px 0;
  margin-top: 4px;
  display: block;
  text-decoration: none;
  font-family: inherit;
}

.review-toggle-btn:hover {
  text-decoration: underline;
}

/* Responsive widget */
@media (max-width: 480px) {
  .google-widget {
    bottom: 16px;
    left: 12px;
  }
  
  .google-widget-trigger {
    padding: 11px 18px;
    gap: 9px;
  }
  
  .widget-google-icon {
    width: 22px;
    height: 22px;
  }
  
  .widget-stars {
    font-size: 13px;
  }
  
  .widget-score {
    font-size: 17px;
  }
  
  .widget-reviews-count {
    font-size: 11px;
  }
  
  .google-widget-panel {
    width: 100%;
  }
}

/* ========================================
   SECTION TEXTE PRÉFAL INTRO
   ======================================== */
.section-prefal-intro {
  padding-top: clamp(30px, 4vh, 45px);
  padding-bottom: 0;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  background: #fff;
}

.prefal-intro-container {
  max-width: 1100px;
  margin: 0 auto;
}

.prefal-intro-text {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  color: #333;
  text-align: center;
  margin: 0;
}

.prefal-intro-text strong {
  color: var(--brand-yellow);
  font-weight: 600;
}

/* ========================================
   SECTION CTA ESTIMATION (GROS BOUTON)
   ======================================== */
.section-cta-estimation {
  padding: clamp(40px, 6vh, 70px) clamp(20px, 4vw, 40px);
  background: #fff;
  text-align: center;
}

.cta-estimation-container {
  max-width: 800px;
  margin: 0 auto;
}

.btn-cta-big {
  display: inline-block;
  padding: clamp(20px, 3vh, 28px) clamp(50px, 8vw, 80px);
  background: var(--brand-yellow);
  color: #111;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(251, 186, 0, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-cta-big:hover {
  background: #e5a800;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(251, 186, 0, 0.4);
}

.btn-cta-big:active {
  transform: translateY(-1px);
}

/* ========================================
   SECTION CATALOGUES PRÉFAL
   ======================================== */
.section-catalogues {
  padding: clamp(30px, 6vh, 60px) clamp(20px, 4vw, 40px);
  background: #f8f9fa;
}

.catalogues-container {
  max-width: 1400px;
  margin: 0 auto;
}

.catalogues-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vh, 60px);
}

.catalogues-title-yellow {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--brand-yellow);
  margin: 0 0 clamp(15px, 2vh, 25px) 0;
  line-height: 1.2;
}

.catalogues-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: #111;
  margin: 0;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.catalogues-intro {
  margin-bottom: clamp(40px, 6vh, 60px);
  text-align: center;
}

.catalogues-text {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  color: #333;
  max-width: 1100px;
  margin: 0 auto;
}

.catalogues-text strong {
  color: var(--brand-yellow);
  font-weight: 600;
}

.catalogues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(25px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}

.catalogue-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.catalogue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.catalogue-card:nth-child(1) .catalogue-content {
  border-top: 4px solid #5FB5A8;
}

.catalogue-card:nth-child(2) .catalogue-content {
  border-top: 4px solid #C97B8E;
}

.catalogue-card:nth-child(3) .catalogue-content {
  border-top: 4px solid #D4A85E;
}

.catalogue-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.catalogue-content {
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  align-items: center;
}

.catalogue-title {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.btn-catalogue {
  display: inline-block;
  padding: 12px 35px;
  background: transparent;
  color: #111;
  border: 2px solid #111;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.catalogue-card:nth-child(1) .btn-catalogue {
  border-color: #5FB5A8;
  color: #5FB5A8;
}

.catalogue-card:nth-child(1) .btn-catalogue:hover {
  background: #5FB5A8;
  color: white;
}

.catalogue-card:nth-child(2) .btn-catalogue {
  border-color: #C97B8E;
  color: #C97B8E;
}

.catalogue-card:nth-child(2) .btn-catalogue:hover {
  background: #C97B8E;
  color: white;
}

.catalogue-card:nth-child(3) .btn-catalogue {
  border-color: #D4A85E;
  color: #D4A85E;
}

.catalogue-card:nth-child(3) .btn-catalogue:hover {
  background: #D4A85E;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .catalogues-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .catalogue-image {
    height: 280px;
  }

  .catalogues-text {
    font-size: 15px;
    text-align: left;
  }
}

/* ========================================
   POPUP MODAL ESTIMATION
   ======================================== */

/* Overlay sombre */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 30, 0.75);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

/* Modal */
.popup-modal {
  background: #EEF2F6;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.active .popup-modal {
  transform: scale(1) translateY(0);
}

/* Bouton fermer */
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #333;
  transform: rotate(90deg);
}

/* Header avec logo et titre */
.popup-header {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 3vw, 18px);
  margin-bottom: clamp(16px, 3vw, 24px);
}

.popup-logo {
  width: clamp(40px, 10vw, 55px);
  height: auto;
  flex-shrink: 0;
  margin-top: 4px;
}

.popup-title {
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

/* Liste des avantages */
.popup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(20px, 4vw, 28px) 0;
}

.popup-list li {
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 600;
  color: #111;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.popup-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #111;
  font-weight: 800;
}

/* Formulaire */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 16px);
}

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

.popup-field input {
  width: 100%;
  height: clamp(48px, 12vw, 56px);
  padding: 0 clamp(16px, 4vw, 22px);
  border: 2px solid transparent;
  border-radius: 12px;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 3.5vw, 16px);
  color: #111;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popup-field input::placeholder {
  color: #999;
}

.popup-field input:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(251, 186, 0, 0.15);
}

.popup-field input.error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Messages d'erreur */
.popup-error {
  font-size: 12px;
  color: #e53935;
  margin-top: 6px;
  padding-left: 4px;
  min-height: 18px;
}

/* Bouton submit */
.popup-submit {
  width: 100%;
  height: clamp(50px, 12vw, 58px);
  background: var(--brand-yellow);
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 700;
  color: #111;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(251, 186, 0, 0.35);
  margin-top: 8px;
}

.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 186, 0, 0.45);
  filter: brightness(1.05);
}

.popup-submit:active {
  transform: translateY(0);
}

/* Texte RGPD */
.popup-rgpd {
  margin: clamp(16px, 4vw, 24px) 0 0 0;
  font-size: clamp(10px, 2.5vw, 11px);
  color: #888;
  line-height: 1.5;
  text-align: left;
}

/* Responsive popup */
@media (max-width: 480px) {
  .popup-modal {
    padding: 24px 20px;
    border-radius: 16px;
    max-width: 100%;
  }

  .popup-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .popup-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .popup-logo {
    width: 45px;
  }

  .popup-field input {
    border-radius: 10px;
  }

  .popup-submit {
    border-radius: 10px;
  }
}

/* Responsive popup pour écrans de faible hauteur */
@media (max-height: 700px) {
  .popup-modal {
    padding: 20px;
    max-height: 95vh;
  }
  .popup-header {
    margin-bottom: 12px;
  }
  .popup-list {
    margin-bottom: 16px;
  }
  .popup-list li {
    line-height: 1.4;
  }
  .popup-form {
    gap: 10px;
  }
  .popup-field input {
    padding: 12px 16px;
  }
  .popup-rgpd {
    font-size: 10px;
    margin-top: 12px;
  }
}