/* HUB213 — Premium SaaS Agency style
   Charte: couleurs / typos / boutons / layout :contentReference[oaicite:6]{index=6}
*/

:root{
  --primary:#0F1F44;        /* titres / highlights */
  --accent:#F5B301;         /* CTA principal */
  --text:#1A1A1A;
  --text2:#4A4A4A;
  --bg:#FAFAFA;
  --white:#FFFFFF;
  --muted:#F5F5F5;
  --border:#E0E0E0;

  --shadow: 0 4px 12px rgba(0,0,0,.10);
  --shadow2: 0 10px 30px rgba(0,0,0,.12);

  --radius: 12px;
  --radiusBtn: 8px;

  --max:1200px;
  --gutter:24px;
  --pad:32px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}
h1,h2,h3,h4{
  font-family:Poppins, Inter, system-ui, sans-serif;
  margin:0 0 12px;
  color:var(--text);
}
p{margin:0 0 14px; color:var(--text2); line-height:1.65}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.section{padding:80px 0}
.section.tight{padding:60px 0}
.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.grid{
  display:grid;
  gap:var(--gutter);
}

/* Header */
/* HEADER — Effet Liquid Glass */
.header{
  position:sticky;
  top:0;
  z-index:50;

  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border-bottom: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);

  transition: background .3s ease, box-shadow .3s ease;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.logo{
  width:40px; height:40px;
  border-radius:10px;
  background:linear-gradient(135deg, var(--primary), #16366f);
  box-shadow:var(--shadow);
}
.brand strong{font-weight:800; letter-spacing:.2px}
.brand small{display:block; color:var(--text2); font-weight:600}

.menu{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.menu a{
  text-decoration:none;
  color:var(--text2);
  padding:10px 12px;
  border-radius:10px;
}
.menu a:hover{background:rgba(15,31,68,.06); color:var(--primary)}

.navRight{
  display:flex;
  align-items:center;
  gap:10px;
}

.phone{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--white);
  text-decoration:none;
  color:var(--primary);
  font-weight:700;
}

/* Buttons — charte :contentReference[oaicite:7]{index=7} */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 28px;
  border-radius:var(--radiusBtn);
  font-family:Poppins, Inter, sans-serif;
  font-weight:700;
  font-size:16px;
  text-decoration:none;
  border:1.8px solid transparent;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btnPrimary{
  background:var(--accent);
  color:var(--text);
   box-shadow:0 6px 18px rgba(245,179,1,.35);
}
.btnPrimary:hover{filter:brightness(.98); box-shadow:var(--shadow2)}
.btnSecondary{
  background:transparent;
  border-color:var(--primary);
  color:var(--primary);
}
.btnSecondary:hover{
  background:var(--primary);
  color:#fff;
}
.btnFull{width:100%}

/* HERO AVEC IMAGE DE FOND */
.hero{
  position:relative;
  padding:90px 0 60px;

  /* Image + dégradé sombre */
  background:
    linear-gradient(90deg, rgba(15,31,68,.78), rgba(15,31,68,.55)),
    url("../img/site-bg.jpg") center/cover no-repeat;

  color:#fff;
  overflow:hidden;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:32px;
  align-items:center;
}

/* Badge au-dessus du titre */
.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  backdrop-filter: blur(4px);
}

/* Titre principal */
.h1{
  font-size:48px;
  line-height:1.05;
  letter-spacing:-.6px;
  color:#fff;
}

/* Texte sous le titre */
.lead{
  font-size:18px;
  color:rgba(255,255,255,.85);
}

/* Boutons */
.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Bouton secondaire adapté au fond sombre */
.hero .btnSecondary{
  border-color:rgba(255,255,255,.45);
  color:#fff;
}

.hero .btnSecondary:hover{
  background:#fff;
  color:var(--primary);
}

/* Assure que le contenu passe au-dessus de l'image */
.hero .container{
  position:relative;
  z-index:2;
}


/* Mockups (simple, clean) */
.mockWrap{
  border-radius:18px;
  border:1px solid var(--border);
  background:var(--white);
  box-shadow:var(--shadow2);
  padding:16px;
}
.mockGrid{display:grid; gap:12px}
.mock{
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--muted);
  padding:14px;
}
.mockTop{
  display:flex; align-items:center; justify-content:space-between;
  font-size:12px; color:var(--text2); margin-bottom:10px;
}
.dots{display:flex; gap:6px}
.dots span{width:8px;height:8px;border-radius:99px;background:#cfcfcf}
.dots span:nth-child(1){background:#ef4444}
.dots span:nth-child(2){background:#f59e0b}
.dots span:nth-child(3){background:#22c55e}
.kpiRow{display:flex; justify-content:space-between; gap:12px; align-items:flex-end}
.kpi{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px;
  flex:1;
}
.kpi strong{display:block; font-size:22px; color:var(--primary)}
.bar{
  height:10px; border-radius:999px;
  background:#e8e8e8; overflow:hidden;
}
.bar i{display:block; height:100%; width:70%; background:var(--accent)}

/* Problems slider — demandé :contentReference[oaicite:9]{index=9} */
.sliderSection{
  padding:38px 0 46px;
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.sliderHead{
  display:flex; justify-content:space-between; gap:16px; align-items:flex-end; flex-wrap:wrap;
  margin-bottom:14px;
}
.sliderHead h2{font-size:36px}
.sliderControls{display:flex; gap:10px}
.iconBtn{
  width:42px;height:42px;border-radius:12px;
  border:1px solid var(--border);
  background:var(--muted);
  cursor:pointer;
}
.iconBtn:hover{filter:brightness(.98)}
.slider{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding:10px 2px 14px;
}
.slide{
  flex:0 0 min(520px, 86vw);
  scroll-snap-align:start;
  border:1px solid var(--border);
  background:var(--muted);
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.slideImg{
  height:140px;
  background:linear-gradient(135deg, rgba(15,31,68,.12), rgba(255,204,77,.20));
  border-bottom:1px solid var(--border);
}
.slideBody{padding:16px}
.slideBody h3{font-size:22px; color:var(--primary)}
.slideBody p{margin:0; color:var(--text2)}

/* Feature rectangle */
.featureRect{
  padding:22px;
  border-radius:18px;
  background:var(--white);
  border:1px solid var(--border);
  box-shadow:var(--shadow2);
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:center;
}
.checklist{margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.checklist li{display:flex; gap:10px; align-items:flex-start}
.tick{
  width:24px;height:24px;border-radius:8px;
  background:rgba(255,204,77,.55);
  display:grid;place-items:center;
  font-weight:900;
  flex:0 0 auto;
}

/* Services cards */
.cards3{grid-template-columns:repeat(3, 1fr)}
.serviceCard{padding:22px}
.icon{
  width:44px;height:44px;border-radius:12px;
  display:grid; place-items:center;
  background:rgba(15,31,68,.08);
  border:1px solid var(--border);
  color:var(--primary);
  font-size:22px;
  margin-bottom:12px;
}

/* Split panels */
.split{grid-template-columns:1.1fr .9fr}
.panel{padding:22px}
.bullets{margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.bullets li{display:flex; gap:10px; align-items:flex-start}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--primary);
  margin-top:7px;
  flex:0 0 auto;
}
.chips{display:grid; gap:10px}
.chip{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--muted);
}
.chip b{color:var(--primary)}
.chip span{color:var(--text2); font-weight:600; font-size:13px}

/* Stats */
.stats{grid-template-columns:repeat(4, 1fr)}
.stat{padding:18px}
.stat strong{display:block; font-size:28px; color:var(--primary)}
.stat span{color:#14532d}

/* Pricing */
.pricing{grid-template-columns:repeat(3, 1fr)}
.priceCard{padding:22px; display:flex; flex-direction:column}
.badge{
  display:inline-flex; width:fit-content;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--muted);
  color:var(--primary);
  font-weight:800;
  font-size:12px;
  margin-bottom:12px;
}
.price{
  display:flex; align-items:flex-end; gap:10px;
  margin:10px 0 12px;
}
.price strong{font-size:36px; color:var(--primary)}
.price small{color:var(--text2); font-weight:700}
.list{margin:0 0 16px; padding:0; list-style:none; display:grid; gap:10px}
.list li{display:flex; gap:10px; align-items:flex-start}
.spacer{flex:1}
.featured{
  border:2px solid rgba(255,204,77,.9);
  box-shadow: 0 18px 40px rgba(15,31,68,.12);
}

/* Forms */
.formGrid{grid-template-columns: 1fr 1fr}
.input, select, textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  font: inherit;
}
textarea{min-height:140px; resize:vertical}
.label{font-weight:700; color:var(--primary); margin-bottom:6px; display:block}
.help{font-size:13px; color:var(--text2)}
.formCard{padding:22px}
.notice{
  padding:12px 14px;
  border-radius:12px;
  background:rgba(255,204,77,.28);
  border:1px solid rgba(255,204,77,.55);
  color:#3a2a00;
  font-weight:700;
}

/* Footer */
.footer{
  background:#19151e;
  color:#fff;
  padding:40px 0 26px;
  margin-top:30px;
}
.footer a{color:#fff; text-decoration:none; opacity:.92}
.footer a:hover{color:var(--accent); opacity:1}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap:16px;
}
.footer h4{color:#fff; margin:0 0 12px; font-size:13px; letter-spacing:.2px}
.footer p{color:rgba(255,255,255,.85)}
.subfooter{
  margin-top:18px;
  border-top:1px solid rgba(255,255,255,.16);
  padding-top:16px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.75);
  font-size:13px;
}

/* Mobile */
.burger{display:none}
.mobilePanel{display:none}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .menu{display:none}
  .phone{display:none}
  .burger{
    display:inline-flex;
    width:44px;height:44px;
    border-radius:12px;
    border:1px solid var(--border);
    background:var(--muted);
    align-items:center; justify-content:center;
    cursor:pointer;
  }
  .mobilePanel{
    display:none;
    border-top:1px solid var(--border);
    padding:10px 0 14px;
  }
  .mobilePanel.open{display:block}
  .mobilePanel a{
    display:block;
    padding:12px 10px;
    border-radius:10px;
    color:var(--text2);
    text-decoration:none;
  }
  .mobilePanel a:hover{background:rgba(15,31,68,.06); color:var(--primary)}
  .featureRect{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}
  .pricing{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr 1fr}
  .formGrid{grid-template-columns:1fr}
}
@media (max-width:520px){
  .stats{grid-template-columns:1fr}
}
/* SECTION PROBLÈMES */
.problemGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin:40px auto 0;
  max-width:1000px; /* limite largeur globale */
  justify-items:center;
  text-align:center;
}

.problemCard{
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:14px;
  padding:20px 18px;
  box-shadow:0 8px 18px rgba(0,0,0,0.05);
  max-width:280px; /* cartes plus petites */
}

.problemIcon{
  font-size:28px;
  margin-bottom:12px;
}

.problemCard h3{
  margin:0 0 8px;
  font-size:18px;
}

.problemCard p{
  margin:0;
  font-size:14px;
  color:#555;
  line-height:1.5;
}

/* 2 cartes centrées en bas */
.problemGrid .problemCard:nth-child(4){
  grid-column: 1 / 2;
  justify-self:end;
}
.problemGrid .problemCard:nth-child(5){
  grid-column: 3 / 4;
  justify-self:start;
}

/* TITRE + TEXTE CENTRÉS */
.section.tight h2,
.section.tight p{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:700px;
}

/* MOBILE */
@media(max-width:900px){
  .problemGrid{
    grid-template-columns:1fr;
  }
  .problemGrid .problemCard:nth-child(4),
  .problemGrid .problemCard:nth-child(5){
    grid-column:auto;
    justify-self:center;
  }
}
/* SECTION SERVICES — tout centré */
#services h2,
#services p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}

#services .cards3 {
  justify-items: center;
}

#services .serviceCard {
  text-align: center;
  max-width: 320px;
}

#services .icon {
  margin-left: auto;
  margin-right: auto;
}
/* SECTION STATS — centrage complet */
.statsSection h2{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.statsSection .stats{
  justify-items:center;
}

.statsSection .stat{
  text-align:center;
  max-width: 260px;
}

.statsSection .btn{
  display:inline-flex;
}
/* AVANT-FOOTER CTA CENTRÉ */
.ctaSection {
  text-align: center;
}

.ctaSection .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ctaSection .ctaRow {
  justify-content: center;
}
/* SECTION OFFRES BACKGROUND */
.offersSection{
  position:relative;
  background:
     linear-gradient(rgba(6,18,44,.65), rgba(6,18,44,.65)),
    url("../img/site-bg.jpg") center/cover no-repeat;
  padding-top:80px;
  padding-bottom:80px;
}

.offersSection h2{
  text-align:center;
  color:#fff;
  margin-bottom:50px;
}
.offersSection .priceCard:nth-child(1),
.offersSection .priceCard:nth-child(3){
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color:#fff;
}

.offersSection .priceCard:nth-child(1) h3,
.offersSection .priceCard:nth-child(3) h3{
  color:#fff;
}

.offersSection .priceCard:nth-child(1) li,
.offersSection .priceCard:nth-child(3) li{
  color:rgba(255,255,255,0.85);
}
.offersSection .priceCard:nth-child(2){
  transform:scale(1.05);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  border:2px solid var(--accent);
  z-index:2;
  position:relative;
}
/* OFFRES — rendre le texte lisible dans les cartes 1 et 3 */

.offersSection .priceCard:nth-child(1) p,
.offersSection .priceCard:nth-child(3) p {
  color: #ffffff;
}

.offersSection .priceCard:nth-child(1) h3,
.offersSection .priceCard:nth-child(3) h3 {
  color: #ffffff;
}

.offersSection .priceCard:nth-child(1) li,
.offersSection .priceCard:nth-child(3) li {
  color: #f1f1f1;
}

.offersSection .priceCard:nth-child(1) .price,
.offersSection .priceCard:nth-child(3) .price {
  color: #ffffff;
}

.offersSection .priceCard:nth-child(1) small,
.offersSection .priceCard:nth-child(3) small {
  color: #dddddd;
}
/* Animation subtile des mockups */
.mockWrap {
  transition: transform .4s ease, box-shadow .4s ease;
  animation: floatMockup 6s ease-in-out infinite;
}

.mockWrap:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Animation flottante douce */
@keyframes floatMockup {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Petits éléments internes un peu vivants */
.mock {
  transition: transform .3s ease, box-shadow .3s ease;
}

.mock:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
/* Animation subtile des cartes problèmes */
.problemCard {
  transition: transform .35s ease, box-shadow .35s ease;
  animation: floatProblem 7s ease-in-out infinite;
}

.problemCard:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Mouvement flottant doux */
@keyframes floatProblem {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Petite vie sur les icônes */
.problemIcon {
  transition: transform .3s ease;
}

.problemCard:hover .problemIcon {
  transform: scale(1.15) rotate(-5deg);
}
/* Animation subtile des cartes de contenu (références, services, panels) */
.serviceCard,
.panel,
.card.stat {
  transition: transform .35s ease, box-shadow .35s ease;
  animation: floatContent 8s ease-in-out infinite;
}

.serviceCard:hover,
.panel:hover,
.card.stat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Mouvement doux */
@keyframes floatContent {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}
/* Effet hover pour toutes les cartes offres */
.offersSection .priceCard {
  transition: transform .35s ease, box-shadow .35s ease;
}

.offersSection .priceCard:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Carte du milieu (offre PRO) effet vibration douce */
.offersSection .priceCard:nth-child(2) {
  animation: pulseCard 2.8s ease-in-out infinite;
}

@keyframes pulseCard {
  0%   { transform: scale(1.05); }
  25%  { transform: scale(1.06) rotate(0.3deg); }
  50%  { transform: scale(1.05); }
  75%  { transform: scale(1.06) rotate(-0.3deg); }
  100% { transform: scale(1.05); }
}
/* Bouton WhatsApp flottant */
.whatsapp-float{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  z-index: 999;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* Taille du logo SVG */
.whatsapp-float svg{
  width: 28px;
  height: 28px;
}

/* Animation pulsation douce */
@keyframes whatsappPulse{
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* Liquid glass plus marqué au scroll */
.header.scrolled{
  background: rgba(255,255,255,0.55);
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}
/* MOBILE HEADER FIX: bouton trop grand + burger visible */
@media (max-width: 980px){

  /* on aligne bien la barre */
  .nav{
    gap:10px;
  }

  /* le bloc de droite ne doit pas pousser le burger hors écran */
  .navRight{
    gap:8px;
  }

  /* bouton "Parler à un expert" plus compact sur mobile */
  .navRight .btnPrimary{
    padding:10px 12px;
    font-size:14px;
    border-radius:12px;
    max-width:150px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  /* si tu as aussi un bouton secondaire (Accueil) */
  .navRight .btnSecondary{
    padding:10px 12px;
    font-size:14px;
    border-radius:12px;
  }

  /* le burger doit toujours être visible */
  .burger{
    display:inline-flex !important;
    width:44px;
    height:44px;
    flex:0 0 auto;
  }

  /* option : on cache le numéro téléphone sur mobile (si jamais il apparaît) */
  .phone{
    display:none !important;
  }
}
/* PRIX PLUS LISIBLES */

/* Cartes 1 et 3 (fond sombre) */
.offersSection .priceCard:nth-child(1) .price strong,
.offersSection .priceCard:nth-child(3) .price strong{
  color:#ffffff; /* blanc net */
}

/* Texte HT sur cartes sombres */
.offersSection .priceCard:nth-child(1) .price small,
.offersSection .priceCard:nth-child(3) .price small{
  color:#e0e0e0;
}

/* Carte du milieu (fond clair) */
.offersSection .priceCard:nth-child(2) .price strong{
  color:var(--primary);
}
/* CTA avant footer — version assortie au nouveau footer */
.ctaSection .card{
  background:#2a2330 !important;
  color:#fff;
}

.ctaSection .card p{
  color:rgba(255,255,255,0.9);
}
/* TITRE TRANSITION SOLUTIONS */
.simpleSolutionsTitle{
  text-align:center;
  padding:60px 0 30px;
}

.simpleSolutionsTitle h2{
  font-size:36px;
  margin-bottom:12px;
  color:var(--primary);
}

.simpleSolutionsTitle p{
  max-width:650px;
  margin:0 auto;
  font-size:17px;
  color:var(--text2);
}
/* Réseaux sociaux footer */
.socials{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.socials a{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  opacity:.9;
  transition:opacity .2s ease, transform .2s ease;
}

.socials a:hover{
  opacity:1;
  transform:translateX(4px);
  color:var(--accent);
}

.socials svg{
  width:18px;
  height:18px;
}
/* Réseaux sociaux dans colonne CTA */
.socials{
  display:flex;
  gap:14px;
  margin-top:18px;
  justify-content:flex-start;
}

.socials a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  transition:.25s ease;
}

.socials a:hover{
  background:var(--accent);
  color:#111;
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,.25);
}

.socials svg{
  width:18px;
  height:18px;
}
/* OFFRES sur page Services (avec photos) */
.offersGallery{
  text-align:center;
}

.offersGallery .lead{
  max-width:760px;
  margin:0 auto 32px;
}

.offersGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  align-items:stretch;
}

.offerCard{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(0,0,0,.14);
  text-align:left;
  backdrop-filter: blur(8px);
  transition:transform .22s ease, box-shadow .22s ease;
}

.offerCard:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 60px rgba(0,0,0,.22);
}

.offerImg{
  height:160px;
  background:#111;
}

.offerImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05);
}

.offerBody{
  padding:18px 18px 20px;
}

.offerBody h3{
  margin:8px 0 10px;
  color:#fff;
}

.offerBody p{
  color:rgba(255,255,255,.84);
}

.offerPrice{
  display:flex;
  gap:10px;
  align-items:flex-end;
  margin:14px 0 10px;
}

.offerPrice strong{
  font-size:34px;
  color:#1DBF73; /* vert lisible */
}

.offerPrice small{
  color:rgba(255,255,255,.7);
  font-weight:700;
}

.offerBody .list li{
  color:rgba(255,255,255,.88);
}

.featuredOffer{
  border:2px solid var(--accent);
  box-shadow:0 18px 70px rgba(0,0,0,.35);
  transform:translateY(-6px);
}

@media(max-width:980px){
  .offersGrid{grid-template-columns:1fr}
  .featuredOffer{transform:none}
}
/* Offres services — sans images */
.offerImg{display:none !important;}

.offerCard{
  padding-top:0;
}

.offerBody{
  padding:22px 20px 22px;
}
/* OFFRES page services — correction lisibilité */
.offerCard{
  background:#ffffff;
  color:#1a1a1a;
  border:1px solid #e6e6e6;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.offerCard h3{
  color:var(--primary);
}

.offerCard p{
  color:#555;
}

.offerCard .badge{
  background:#f3f6fb;
  color:var(--primary);
  border:1px solid #e1e6f0;
}

.offerCard .list li{
  color:#333;
}

.offerCard .tick{
  background:rgba(255,204,77,.6);
  color:#000;
}

.offerPrice strong{
  color:#16a34a; /* vert lisible */
}

.offerPrice small{
  color:#666;
}

/* Carte centrale mise en avant */
.featuredOffer{
  border:2px solid var(--accent);
  box-shadow:0 18px 60px rgba(0,0,0,.15);
  transform:translateY(-6px);
  background:#fff;
}

/* Boutons bien visibles */
.offerCard .btnPrimary{
  background:var(--accent);
  color:#111;
}
/* ===== LOGO HEADER ===== */

.logoImg{
  height:42px;
  width:auto;
  display:block;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brandText small{
  display:block;
  font-size:13px;
  color:var(--text2);
}
/* Service avec image à gauche */
.serviceRow{
  display:flex;
  align-items:center;
  gap:28px;
}

.serviceSideImg{
  width:220px;
  height:160px;
  object-fit:cover;
  border-radius:14px;
  flex-shrink:0;
}

.serviceText{
  flex:1;
}
@media(max-width:768px){
  .serviceRow{
    flex-direction:column;
    text-align:center;
  }

  .serviceSideImg{
    width:100%;
    height:180px;
  }
}
/* Inverse image / texte */
.serviceRow.reverse{
  flex-direction:row-reverse;
}
/* SECTION PREUVE SOCIALE */
.socialProof{
  text-align:center;
  overflow:hidden;
}

.proofSlider{
  margin-top:30px;
  overflow:hidden;
  position:relative;
}

.proofTrack{
  display:flex;
  gap:24px;
  width:max-content;
  animation:scrollProof 35s linear infinite;
}

.proofTrack img{
  height:220px;          /* images plus grandes */
  width:auto;
  border-radius:18px;
  box-shadow:0 14px 40px rgba(0,0,0,.18);
  transition:transform .3s ease;
}


.proofTrack img:hover{
  transform:scale(1.05);
}

@keyframes scrollProof{
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
@media(max-width:768px){
  .proofTrack img{
    height:150px;
  }
}
/* ===== Accessibilité menu navigation ===== */
header a {
  color: #111111;
  font-weight: 500;
  text-decoration: none;
}

header a:hover {
  color: #f5b400;
}

header a:focus {
  outline: 2px solid #f5b400;
  outline-offset: 2px;
}
