/* ============================================================
   PEPONG-IT — Styles personnalisés (par-dessus le template Satnet)
   Charte conservée : orange #ff7300 / #fd9723, bleu #6c6cfe,
   fonds sombres #18191c. Police : héritée du template.
   ============================================================ */

:root {
  --pep-orange: #ff7300;
  --pep-orange-soft: #fd9723;
  --pep-blue: #6c6cfe;
  --pep-dark: #18191c;
  --pep-card-bg: rgba(255, 255, 255, 0.04);
  --pep-card-border: rgba(255, 255, 255, 0.10);
}

/* ---------- Hygiène générale ---------- */
.offer-card, .shop-card, .usecase-card,
.offer-card *, .shop-card *, .usecase-card * {
  -webkit-user-select: text;
  user-select: text;
}
a, button, .theme-btn, .offer-filter { cursor: pointer; }
img { max-width: 100%; }

/* ---------- Boutons flottants (téléphone / WhatsApp) ---------- */
.floating-cta {
  position: fixed;
  left: 10px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.floating-cta img { width: 56px; height: 56px; }
.floating-cta.cta-phone { bottom: 160px; }
.floating-cta.cta-whatsapp { bottom: 92px; }

/* ---------- Hero / slider ---------- */
/* Titres : taille fluide pour éviter le débordement mot à mot */
.main-slider .banner-slide .banner-slide-content .banner-content .title {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15;
  max-width: 620px;
}
/* Numéro décoratif de slide : plus discret, jamais au-dessus du texte */
.main-slider .banner-slide .banner-slide-content .banner-content .slide-number {
  font-size: 110px;
  margin-top: 120px;
  opacity: 0.5;
  z-index: 0;
}
/* Légende : lisible, au-dessus du fond, sans chevaucher la pagination */
.main-slider .banner-slide .banner-slide-content .banner-content .banner-caption {
  position: absolute;
  bottom: 110px;
  right: 0;
  max-width: 380px;
  background: rgba(13, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  z-index: 3;
}
.main-slider .banner-slide .banner-slide-content .banner-content .banner-caption p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
/* Pagination (1 2 3) : en bas, hors du texte */
.main-slider .banner-slider .slick-dots {
  bottom: 22px;
  right: 50%;
  transform: translateX(50%);
  z-index: 4;
}
@media (max-width: 991px) {
  .main-slider .banner-slide .banner-slide-content .banner-content .slide-number { display: none; }
  .main-slider .banner-slide .banner-slide-content .banner-content .banner-caption {
    position: static;
    max-width: 100%;
    margin-top: 18px;
  }
}

/* ---------- Boutons : autoriser les libellés longs ---------- */
.offer-cta,
.contact-form .theme-btn,
.contact-info-list .theme-btn {
  height: auto;
  line-height: 1.4;
  padding: 15px 26px;
  white-space: normal;
  margin-left: 0;
}

/* ---------- Filtres d'offres ---------- */
.offers-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.offer-filter {
  background: transparent;
  border: 1px solid var(--pep-card-border);
  color: #cfcfd4;
  border-radius: 24px;
  padding: 8px 22px;
  font-size: 14px;
  transition: all 0.25s ease;
}
.offer-filter:hover { border-color: var(--pep-orange); color: #fff; }
.offer-filter.is-active {
  background: var(--pep-orange);
  border-color: var(--pep-orange);
  color: #fff;
}

/* ---------- Grille des offres ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.offer-col { display: flex; }

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--pep-card-bg);
  border: 1px solid var(--pep-card-border);
  border-radius: 18px;
  padding: 28px 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.offer-card:hover { border-color: var(--pep-orange-soft); transform: translateY(-4px); }
.offer-card.is-featured { border-color: var(--pep-orange); }

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pep-orange);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 4px 12px;
}

.offer-icon img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 14px; }
.offer-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pep-orange-soft);
  margin-bottom: 6px;
}
.offer-title { color: #fff; font-size: 20px; margin-bottom: 4px; }
.offer-speed { color: var(--pep-blue); font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.offer-desc { color: #b9bbc1; font-size: 14px; line-height: 1.6; margin-bottom: 14px; }

.offer-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.offer-features li {
  position: relative;
  padding-left: 20px;
  color: #d6d7db;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.offer-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--pep-orange);
}

.offer-price-table {
  width: 100%;
  font-size: 13.5px;
  color: #d6d7db;
  border-collapse: collapse;
  margin-bottom: 14px;
}
.offer-price-table td {
  padding: 5px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
.offer-price-table td:last-child { text-align: right; color: #fff; font-weight: 600; }

.offer-price { margin-top: auto; padding-top: 6px; margin-bottom: 4px; }
.offer-price .price-value { color: #fff; font-size: 26px; font-weight: 700; }
.offer-price .price-text { font-size: 18px; }
.offer-price .price-unit { color: #b9bbc1; font-size: 14px; }
.offer-price .old-price {
  display: block;
  color: #8a8c92;
  text-decoration: line-through;
  font-size: 15px;
}
.offer-target { color: #8a8c92; font-size: 12.5px; margin-bottom: 16px; }

.offer-cta {
  display: inline-block;
  text-align: center;
  width: 100%;
}

/* ---------- Boutique ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.shop-col { display: flex; }
.shop-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--pep-card-bg);
  border: 1px solid var(--pep-card-border);
  border-radius: 18px;
  padding: 18px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.shop-card:hover { border-color: var(--pep-orange-soft); transform: translateY(-4px); }
.shop-image { margin: 0 0 16px; border-radius: 12px; overflow: hidden; }
.shop-image img { width: 100%; height: 190px; object-fit: cover; display: block; }

/* ---------- Section PepZone (tickets Wi-Fi) ---------- */
.pepzone-zones {
  background: var(--pep-card-bg);
  border: 1px solid var(--pep-card-border);
  border-radius: 16px;
  padding: 26px 28px;
  margin-top: 36px;
}
.pepzone-zones h4 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.pepzone-zones p { color: #b9bbc1; font-size: 14.5px; line-height: 1.7; margin-bottom: 14px; }
.pepzone-zones ul { list-style: none; margin: 0 0 14px; padding: 0; }
.pepzone-zones li {
  display: inline-block;
  background: rgba(255, 115, 0, 0.12);
  border: 1px solid rgba(255, 115, 0, 0.35);
  color: #ffd0a3;
  border-radius: 20px;
  padding: 6px 16px;
  margin: 0 8px 8px 0;
  font-size: 13.5px;
}

/* ---------- Cas d'usage ---------- */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.usecase-card {
  background: var(--pep-card-bg);
  border: 1px solid var(--pep-card-border);
  border-radius: 14px;
  padding: 22px 20px;
}
.usecase-card h5 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.usecase-card p { color: #b9bbc1; font-size: 13.5px; line-height: 1.6; margin: 0 0 12px; }
.usecase-card .usecase-link { color: var(--pep-orange-soft); font-size: 13px; }
.usecase-card .usecase-link:hover { color: #fff; }

/* ---------- Formulaire de contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-list li { color: #d6d7db; margin-bottom: 14px; font-size: 15px; }
.contact-info-list a { color: var(--pep-orange-soft); }
.contact-info-list a:hover { color: #fff; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: block;
  color: #d6d7db;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--pep-card-border);
  border-radius: 10px;
  color: #fff;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}
.contact-form select option { color: #18191c; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pep-orange);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.form-status { margin-top: 12px; font-size: 14px; display: none; }
.form-status.ok { display: block; color: #6fdc8c; }
.form-status.error { display: block; color: #ff6b6b; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Divers ---------- */
.section-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: #b9bbc1;
  font-size: 15px;
  line-height: 1.7;
}
.starlink-flex { display: flex; gap: 40px; align-items: center; }
.starlink-flex .starlink-text { flex: 1 1 55%; }
.starlink-flex .starlink-img { flex: 1 1 45%; }
.starlink-img img { border-radius: 16px; width: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .starlink-flex { flex-direction: column; }
}
@media (max-width: 575px) {
  .offers-grid, .shop-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .offer-card, .shop-card { padding: 22px 18px; }
  .floating-cta { width: 48px; height: 48px; }
  .floating-cta img { width: 48px; height: 48px; }
}

/* ============================================================
   Correctifs hero & header (ajoutés après revue visuelle)
   ============================================================ */

/* 1. Image satellite : toujours DERRIÈRE le texte (jamais par-dessus) */
.main-slider .banner-slide .banner-slide-content .banner-img {
  z-index: 1;
  pointer-events: none;
}
.main-slider .banner-slide .banner-slide-content .banner-content {
  position: relative;
  z-index: 2;
}

/* 2. Image satellite : rester visible sur tablette et mobile
   (le template la masque sous 991px — on la réaffiche, adoucie) */
@media only screen and (max-width: 991px) {
  .main-slider .banner-slide .banner-slide-content .banner-img {
    display: block !important;
    opacity: 0.5;
    width: 70%;
    max-width: 420px;
    top: 38%;
  }
  .main-slider .banner-slide .banner-slide-content .banner-img img {
    width: 100%;
  }
}

/* 3. Header haut : email séparé des téléphones (l'ancien espaceur
   .top-center a été retiré) */
.header-top .top-right {
  margin-left: auto;
  padding-left: 24px;
}
@media (max-width: 575px) {
  .header-top .top-right {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    margin-top: 4px;
  }
}

/* 4. Menu mobile : téléphones empilés verticalement */
.mobile-menu .contact-info-box a {
  display: block;
  margin-bottom: 6px;
}

/* ============================================================
   Flyers des offres : vignette sur carte + vitrine défilante
   ============================================================ */

/* --- Vignette "Voir le flyer" sur les cartes d'offres --- */
.offer-flyer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 8px;
  border: 1px solid var(--pep-card-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.offer-flyer:hover {
  border-color: var(--pep-orange-soft);
  background: rgba(255, 115, 0, 0.08);
}
.offer-flyer img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.offer-flyer:hover img { transform: scale(1.08) rotate(-2deg); }
.offer-flyer span {
  color: #cfcfd4;
  font-size: 13px;
}
.offer-flyer:hover span { color: #fff; }
.offer-flyer span::after {
  content: " \2197";
  color: var(--pep-orange-soft);
}
/* Ancres invisibles des variantes (galerie lightbox) */
.flyer-hidden { display: none; }

/* --- Vitrine défilante "Nos offres en images" --- */
.flyers-showcase {
  padding: 90px 0;
  overflow: hidden;
}
.flyer-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 14px 0;
}
.flyer-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: pepFlyerScroll 55s linear infinite;
  will-change: transform;
}
.flyer-track.reverse { animation-direction: reverse; }
.flyer-marquee:hover .flyer-track { animation-play-state: paused; }

@keyframes pepFlyerScroll {
  to { transform: translateX(-50%); }
}

.flyer-item {
  display: block;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--pep-card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flyer-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}
.flyer-item:nth-child(odd)  { transform: rotate(-1.6deg); }
.flyer-item:nth-child(even) { transform: rotate(1.4deg) translateY(6px); }
.flyer-item:hover {
  transform: rotate(0deg) scale(1.07);
  box-shadow: 0 16px 40px rgba(255, 115, 0, 0.25);
  z-index: 2;
  position: relative;
}

@media (max-width: 575px) {
  .flyer-item img { width: 150px; height: 150px; }
  .flyers-showcase { padding: 60px 0; }
}

/* Accessibilité : pas d'animation si l'utilisateur la refuse */
@media (prefers-reduced-motion: reduce) {
  .flyer-track { animation: none; }
  .flyer-marquee { overflow-x: auto; }
}

/* --- Swipebox : icônes autonomes (remplace les images externes
       du thème qui pointent vers kodesolution.com) --- */
#swipebox-close, #swipebox-prev, #swipebox-next {
  background-image: none !important;
  color: #fff;
  font-size: 30px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
#swipebox-close::before { content: "\2715"; }
#swipebox-prev::before  { content: "\276E"; }
#swipebox-next::before  { content: "\276F"; }
#swipebox-slider .slide-loading {
  background: none !important;
}
#swipebox-overlay { background: rgba(8, 9, 12, 0.94) !important; }
#swipebox-title { font-size: 15px !important; }

/* ============================================================
   Restriction tickets, avis clients, zones de couverture,
   espacements de sections (ajouts)
   ============================================================ */

/* --- Espacements : le template impose .deals-section 100px/395px
       → on resserre toutes les grandes sections --- */
.deals-section { padding: 80px 0; }
.deals-section.pt-0 { padding-top: 0; }
.features-section { padding: 90px 0; }
.news-section { padding: 90px 0 60px; }
.movies-collection-section { padding: 90px 0; }
.flyers-showcase { padding: 70px 0; }

/* --- Bouton dans la colonne contact : contraste corrigé
       (la couleur orange des liens écrasait le texte du bouton) --- */
.contact-info-list a.theme-btn { color: #000; }
.contact-info-list a.theme-btn:hover { color: #000; }

/* --- Notice de restriction sur les cartes tickets --- */
.offer-restriction {
  background: rgba(255, 115, 0, 0.10);
  border: 1px solid rgba(255, 115, 0, 0.45);
  border-left: 4px solid var(--pep-orange);
  border-radius: 10px;
  color: #ffd0a3;
  font-size: 12.5px;
  line-height: 1.55;
  padding: 10px 12px;
  margin-bottom: 14px;
}

/* --- Bandeau d'avertissement de la section PepZone --- */
.pepzone-alert {
  max-width: 860px;
  margin: 0 auto 40px;
  background: rgba(255, 115, 0, 0.10);
  border: 1px solid rgba(255, 115, 0, 0.45);
  border-left: 5px solid var(--pep-orange);
  border-radius: 12px;
  color: #f4d8bd;
  font-size: 15px;
  line-height: 1.7;
  padding: 16px 22px;
}
.pepzone-alert strong { color: #fff; }

/* --- Avis clients --- */
.pep-testi-slider .slick-slide { padding: 0 12px; }
.pep-testi-slider .slick-dots { bottom: -38px; }
.testi-card {
  background: var(--pep-card-bg);
  border: 1px solid var(--pep-card-border);
  border-radius: 18px;
  padding: 26px 24px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.testi-stars { color: var(--pep-orange); font-size: 14px; margin-bottom: 12px; display: block; }
.testi-stars .star-off { opacity: 0.25; }
.testi-text { color: #d6d7db; font-size: 14.5px; line-height: 1.7; flex: 1; margin-bottom: 18px; }
.testi-meta { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pep-blue), var(--pep-orange));
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { color: #fff; display: block; font-size: 15px; }
.testi-role { color: #8a8c92; display: block; font-size: 12.5px; }
.testi-offer { color: var(--pep-orange-soft); display: block; font-size: 12px; margin-top: 2px; }

/* --- Zones de couverture --- */
.coverage-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  color: #b9bbc1;
  font-size: 15px;
}
.coverage-stats strong { color: var(--pep-orange); font-size: 26px; margin-right: 6px; }

.coverage-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: start;
}
.coverage-country {
  background: var(--pep-card-bg);
  border: 1px solid var(--pep-card-border);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 20px;
}
.coverage-country h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.coverage-flag { font-size: 24px; }
.coverage-city {
  border: 1px solid var(--pep-card-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.coverage-city summary {
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  padding: 13px 16px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}
.coverage-city summary::-webkit-details-marker { display: none; }
.coverage-city summary::before {
  content: "\25B8";
  color: var(--pep-orange);
  margin-right: 10px;
  transition: transform 0.2s ease;
}
.coverage-city[open] summary::before { transform: rotate(90deg); }
.coverage-city summary:hover { background: rgba(255, 115, 0, 0.08); }
.coverage-count {
  color: #8a8c92;
  font-size: 12px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 3px 10px;
}
.coverage-chips { list-style: none; margin: 0; padding: 14px 16px; }
.coverage-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 115, 0, 0.10);
  border: 1px solid rgba(255, 115, 0, 0.35);
  color: #ffd0a3;
  border-radius: 20px;
  padding: 7px 14px;
  margin: 0 8px 8px 0;
  font-size: 13.5px;
}
.coverage-chip em {
  font-style: normal;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--pep-orange);
  color: #fff;
  border-radius: 10px;
  padding: 2px 8px;
}
.coverage-chip.is-soon { border-color: rgba(108, 108, 254, 0.45); background: rgba(108, 108, 254, 0.10); color: #c9c9ff; }
.coverage-chip.is-soon em { background: var(--pep-blue); }

.coverage-map {
  height: 440px;
  border-radius: 18px;
  border: 1px solid var(--pep-card-border);
  overflow: hidden;
  z-index: 1;
}
.leaflet-container { background: #14151a; font: inherit; }

@media (max-width: 991px) {
  .coverage-wrap { grid-template-columns: 1fr; }
  .coverage-map { height: 340px; }
}

/* ============================================================
   Logo à taille FIXE (indépendant des dimensions du fichier
   image) + neutralisation du chevauchement de la section Starlink
   ============================================================ */

/* --- Logo : hauteur fixe partout, peu importe l'image fournie --- */
.main-header .logo img,
.sticky-header .logo img {
  height: 56px !important;
  width: auto !important;
  max-width: 230px;
  object-fit: contain;
}
.mobile-menu .nav-logo img {
  height: 44px !important;
  width: auto !important;
  max-width: 180px;
  object-fit: contain;
}
footer .footer-logo {
  height: 64px !important;
  width: auto !important;
  max-width: 260px;
  object-fit: contain;
}

/* --- Section Starlink : le template la faisait remonter de 264px
       sur la section précédente (margin-top négatif), d'où le
       chevauchement avec les avis. On la remet dans le flux. --- */
.deals-section-v2 {
  margin-top: 0;
  padding: 30px 0 80px;
}

/* Les avis gardent l'espace de leurs points de pagination */
#avis { padding-bottom: 60px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--pep-card-border);
  border-radius: 12px;
  margin-bottom: 12px;
  background: var(--pep-card-bg);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  padding: 16px 20px;
  transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "\25B8";
  color: var(--pep-orange);
  margin-right: 12px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::before { transform: rotate(90deg); }
.faq-item summary:hover { background: rgba(255, 115, 0, 0.08); }
.faq-item p {
  color: #b9bbc1;
  font-size: 14.5px;
  line-height: 1.7;
  padding: 0 20px 18px 20px;
  margin: 0;
}
.faq-item a { color: var(--pep-orange-soft); text-decoration: underline; }
.faq-item a:hover { color: #fff; }

/* Header et hero desktop : rendu d'origine (v2) conservé tel quel. */

/* ============================================================
   Mobile : hero = comportement v2 d'origine (aucune règle ajoutée).
   Seule la barre téléphones/email est masquée sur petit écran,
   les contacts restant dans le menu et les boutons flottants.
   ============================================================ */
@media (max-width: 767px) {
  .header-top .header-top-content { display: none; }
}

/* ---------- Ancres : le titre de section ne passe plus sous
       le header collant quand on clique un lien du menu ---------- */
section[id] {
  scroll-margin-top: 96px;
}
