/* ══════════════════════════════════════════════
   POLYLANGUES — INDEX.CSS
   Fidèle à index.html (référence)
   ══════════════════════════════════════════════ */

/* ══ NAVBAR TRANSPARENTE (hero) ══ */
body.page-index #navbar {
  background: transparent;
  box-shadow: none;
}
body.page-index #navbar.stuck {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(200,16,46,.1);
}
body.page-index #navbar:not(.stuck) .nav-link-item { color: #fff; }
body.page-index #navbar:not(.stuck) .nav-link-item:hover { color: var(--rouge); }
body.page-index #navbar:not(.stuck) .nav-logo-img { filter: brightness(0) invert(1); }
body.page-index #navbar:not(.stuck) .menu-toggle span { background: #fff; }
body.page-index #navbar:not(.stuck) .btn-nav { background: var(--rouge); color: #fff; }

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,.82) 0%, rgba(26,26,46,.6) 50%, rgba(26,26,46,.25) 100%);
  pointer-events: none;
}
.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(120px,14vh,180px) 0 clamp(60px,8vh,100px);
  position: relative;
  z-index: 2;
}
.hero-eyeline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 7px 18px 7px 7px;
  background: rgba(200,16,46,.9);
  border-radius: 100px;
  width: fit-content;
}
.hero-eyeline span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.hero-h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  max-width: 620px;
}
.hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rouge);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 6px 22px rgba(200,16,46,.4);
  transition: transform .3s cubic-bezier(.32,.72,0,1), box-shadow .3s cubic-bezier(.32,.72,0,1);
  white-space: nowrap;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,16,46,.55); color: #fff; }
.btn-hero-primary:active { transform: translateY(0) scale(.98); }
.btn-hero-primary svg { width: 15px; height: 15px; transition: transform .25s; }
.btn-hero-primary:hover svg { transform: translateX(4px); }

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color .3s, background .3s;
}
.btn-hero-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ══ SECTION COMMONS ══ */
.s-pad { padding-block: clamp(72px, 9vw, 120px); }
.s-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rouge);
  display: block;
  margin-bottom: 12px;
}
.s-title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.85rem, 5.5vw, 2.8rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}
.s-sub { font-size: .97rem; color: var(--gris); line-height: 1.76; max-width: 470px; }

/* Scroll reveal */
.rev { opacity:0; transform:translateY(28px); transition:opacity .65s cubic-bezier(.25,1,.5,1), transform .65s cubic-bezier(.25,1,.5,1); }
.rev.in { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ══ CONCEPT ══ */
.concept-section { background: #fff; }
.concept-top { text-align: center; margin-bottom: clamp(36px,5vw,56px); }
.concept-top h2 { font-size: clamp(1.7rem,5vw,2.5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.concept-top p { font-size: .95rem; color: var(--gris); max-width: 540px; margin: 12px auto 0; line-height: 1.65; }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,72px); align-items: center; }
.concept-img-wrap { position: relative; }
.concept-img-main { width: 100%; border-radius: 16px; aspect-ratio: 4/3; object-fit: cover; display: block; box-shadow: 0 16px 48px rgba(26,26,46,.08); }
.concept-subtitle { font-family: var(--fd); font-weight: 700; font-size: clamp(1.15rem,3vw,1.4rem); margin-bottom: 14px; color: var(--ink); }
.concept-desc { font-size: .9rem; color: var(--gris); line-height: 1.72; margin-bottom: 24px; }
.service-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.service-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; font-weight: 500; color: var(--ink); line-height: 1.5; }
.service-check { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: rgba(200,16,46,.08); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.service-check svg { width: 11px; height: 11px; color: var(--rouge); }

/* ══ CONDITIONS ══ */
.conditions-section { background: var(--off); }
.conditions-header { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(32px,5vw,64px); align-items: end; margin-bottom: clamp(36px,5vw,52px); }
.conditions-header h2 { font-size: clamp(1.7rem,5.5vw,2.6rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.1; }
.conditions-header p { font-size: .9rem; color: var(--gris); line-height: 1.72; margin: 0; }
.conditions-stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(26,26,46,.07); margin-bottom: clamp(36px,5vw,52px); }
.cond-stat { padding: 28px 24px; border-right: 1px solid rgba(26,26,46,.07); transition: background .3s; }
.cond-stat:last-child { border-right: none; }
.cond-stat:hover { background: rgba(200,16,46,.02); }
.cond-stat-label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gris); margin-bottom: 8px; }
.cond-stat-val { font-family: var(--fd); font-weight: 800; font-size: clamp(1.3rem,4.5vw,1.8rem); color: var(--ink); letter-spacing: -.03em; margin-bottom: 4px; }
.cond-stat-val em { font-style: normal; color: var(--rouge); }
.cond-stat-sub { font-size: .73rem; color: var(--gris); }
.conditions-profil { padding-top: clamp(28px,4vw,40px); border-top: 1px solid rgba(26,26,46,.07); }
.conditions-profil h3 { font-family: var(--fd); font-weight: 800; font-size: clamp(1.1rem,3.5vw,1.4rem); letter-spacing: -.03em; margin-bottom: 20px; }
.profil-inline { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px 32px; list-style: none; padding: 0; margin: 0; }
.profil-inline li { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; color: var(--ink); line-height: 1.45; font-weight: 500; }
.profil-inline li svg { width: 16px; height: 16px; color: var(--rouge); flex-shrink: 0; margin-top: 2px; }

/* ══ DEUX FORMULES ══ */
.formules-section { background: var(--ink); position: relative; overflow: hidden; }
.formules-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,16,46,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(99,102,241,.06) 0%, transparent 50%);
  pointer-events: none;
}
.formules-top { text-align: center; margin-bottom: clamp(40px,5vw,60px); position: relative; }
.formules-top .pill-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 100px; background: rgba(200,16,46,.15); font-size: .72rem; font-weight: 600; color: var(--rouge); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.formules-top h2 { font-size: clamp(1.7rem,5vw,2.5rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.15; }
.formules-top p { font-size: .92rem; color: rgba(255,255,255,.5); max-width: 520px; margin: 12px auto 0; line-height: 1.65; }
.formules-compare { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0 clamp(40px,6vw,80px); }
.fc-divider { background: rgba(255,255,255,.07); }
.fc-item { padding-block: 4px; }
.fc-tag { display: block; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.28); margin-bottom: 10px; }
.fc-item--featured .fc-tag { color: rgba(200,16,46,.65); }
.fc-title { font-family: var(--fd); font-weight: 800; font-size: clamp(1.5rem,5.5vw,2.2rem); color: #fff; letter-spacing: -.035em; margin-bottom: 20px; }
.fc-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.07); }
.fc-price-val { font-family: var(--fd); font-weight: 800; font-size: clamp(2rem,6vw,2.8rem); color: #fff; letter-spacing: -.05em; }
.fc-item--featured .fc-price-val { color: var(--rouge); }
.fc-price-sub { font-size: .74rem; color: rgba(255,255,255,.3); line-height: 1.4; max-width: 110px; }
.fc-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 11px; }
.fc-list li { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: rgba(255,255,255,.58); line-height: 1.5; }
.fc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.18); flex-shrink: 0; }
.fc-item--featured .fc-list li::before { background: var(--rouge); }
.btn-fc { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; padding: 11px 26px; border-radius: 100px; border: none; transition: transform .25s cubic-bezier(.32,.72,0,1), box-shadow .25s, background .25s; cursor: pointer; }
.btn-fc--primary { background: var(--rouge); color: #fff; box-shadow: 0 4px 18px rgba(200,16,46,.35); }
.btn-fc--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(200,16,46,.5); color: #fff; }
.btn-fc--ghost { background: rgba(255,255,255,.06); color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.1); }
.btn-fc--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); color: #fff; }
.btn-fc svg { width: 13px; height: 13px; }

/* ══ ÉTAPES ══ */
.steps-section { background: var(--off); position: relative; }
.steps-track { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 60px; }
.steps-track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(52px / 2 + 28px);
  right: calc(52px / 2 + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--rouge), rgba(200,16,46,.2));
  z-index: 0;
}
.step-item { position: relative; z-index: 1; }
.step-circle {
  width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid rgba(200,16,46,.2);
  display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-weight: 800;
  font-size: 1rem; color: var(--ink); margin-bottom: 24px; transition: background .25s, color .25s, border-color .25s, box-shadow .25s; position: relative; z-index: 2;
}
.step-item:hover .step-circle { background: var(--rouge); color: #fff; border-color: var(--rouge); box-shadow: 0 6px 20px rgba(200,16,46,.3); }
.step-item-num { position: absolute; top: -12px; right: 0; font-family: var(--fd); font-weight: 800; font-size: 4.5rem; letter-spacing: -.06em; color: rgba(200,16,46,.07); line-height: 1; user-select: none; pointer-events: none; z-index: 0; }
.step-item h4 { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.step-item p { font-size: .85rem; color: var(--gris); line-height: 1.68; margin: 0; }

/* ══ TÉMOIGNAGES ══ */
.testi-section { background: var(--off); }
.testi-top { text-align: center; margin-bottom: clamp(32px,4vw,48px); }
.testi-top h2 { font-size: clamp(1.7rem,5vw,2.5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.testi-top p { font-size: .9rem; color: var(--gris); max-width: 520px; margin: 10px auto 0; line-height: 1.65; }
.testi-carousel { position: relative; }
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 24px; transition: transform .55s cubic-bezier(.32,.72,0,1); }
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(24px,3vw,32px);
  border: 1px solid rgba(26,26,46,.06);
  display: flex;
  flex-direction: column;
  width: calc((100% - 48px) / 3);
  flex-shrink: 0;
  transition: box-shadow .35s cubic-bezier(.32,.72,0,1);
}
.testi-card:hover { box-shadow: 0 16px 48px rgba(26,26,46,.08); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars svg { width: 16px; height: 16px; color: #FACC15; fill: #FACC15; }
.testi-text { font-size: .92rem; color: var(--gris); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(26,26,46,.06); }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--off); }
.testi-author-info strong { font-family: var(--fd); font-size: .88rem; font-weight: 700; color: var(--ink); display: block; }
.testi-author-info span { font-size: .75rem; color: var(--gris); }
.testi-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.testi-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(26,26,46,.1); background: #fff; color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .25s, color .25s, border-color .25s; }
.testi-btn:hover { background: var(--rouge); color: #fff; border-color: var(--rouge); }
.testi-btn svg { width: 18px; height: 18px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(26,26,46,.12); border: none; cursor: pointer; transition: background .3s, transform .3s; }
.testi-dot.active { background: var(--rouge); transform: scale(1.25); }

/* ══ AGENCES ══ */
.agencies-section { background: #fff; }
.agencies-top { text-align: center; margin-bottom: clamp(36px,5vw,56px); }
.agencies-top h2 { font-size: clamp(1.7rem,5vw,2.5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.agencies-top p { font-size: .9rem; color: var(--gris); max-width: 460px; margin: 10px auto 0; line-height: 1.65; }
.agency-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.agency-card { border-radius: 16px; overflow: hidden; border: 1px solid rgba(26,26,46,.07); background: #fff; display: flex; flex-direction: column; transition: box-shadow .45s cubic-bezier(.32,.72,0,1), transform .45s cubic-bezier(.32,.72,0,1); }
.agency-card:hover { box-shadow: 0 20px 56px rgba(26,26,46,.08); transform: translateY(-5px); }
.agency-card-top { padding: clamp(24px,3vw,32px) clamp(20px,2.5vw,28px); display: flex; flex-direction: column; align-items: center; text-align: center; border-bottom: 1px solid rgba(26,26,46,.06); }
.agency-pin { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,16,46,.06); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.agency-pin svg { width: 24px; height: 24px; color: var(--rouge); }
.agency-card-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 100px; background: rgba(34,197,94,.08); margin-bottom: 10px; }
.agency-card-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.agency-card-badge span { font-size: .68rem; font-weight: 600; color: #22c55e; text-transform: uppercase; letter-spacing: .06em; }
.agency-card-name { font-family: var(--fd); font-weight: 800; font-size: 1.08rem; color: var(--ink); letter-spacing: -.02em; }
.agency-card-bottom { padding: clamp(18px,2.5vw,24px) clamp(20px,2.5vw,28px) clamp(20px,2.5vw,28px); display: flex; flex-direction: column; flex: 1; }
.agency-card-info { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.agency-card-detail { display: flex; align-items: flex-start; gap: 8px; font-size: .8rem; color: var(--gris); line-height: 1.45; }
.agency-card-detail svg { width: 13px; height: 13px; color: var(--rouge); flex-shrink: 0; margin-top: 2px; }
.agency-contact-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 11px 16px; margin-top: 16px; border-radius: 10px; border: none; background: var(--rouge); color: #fff; font-size: .82rem; font-weight: 600; font-family: var(--fb); cursor: pointer; transition: background .3s, transform .25s; }
.agency-contact-btn:hover { background: #a00c25; transform: translateY(-1px); }

/* Modal contact agence */
.agency-modal-overlay { display: none; position: fixed; inset: 0; z-index: 2500; background: rgba(26,26,46,.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; }
.agency-modal-overlay.open { display: flex; padding: 20px; }
.agency-modal { background: #fff; border-radius: 18px; padding: 36px; max-width: 480px; width: 100%; box-shadow: 0 24px 60px rgba(0,0,0,.2); position: relative; }
.agency-modal h4 { font-family: var(--fd); font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.agency-modal p { font-size: .85rem; color: var(--gris); margin-bottom: 20px; }
.agency-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--gris); line-height: 1; }
.modal-field { width: 100%; padding: 11px 14px; border-radius: 8px; border: 1.5px solid rgba(26,26,46,.12); font-size: .87rem; font-family: var(--fb); color: var(--ink); background: #fff; outline: none; transition: border-color .2s; margin-bottom: 12px; }
.modal-field:focus { border-color: var(--rouge); }
.modal-submit { width: 100%; padding: 13px; border-radius: 8px; border: none; background: var(--rouge); color: #fff; font-size: .9rem; font-weight: 600; cursor: pointer; margin-top: 4px; transition: opacity .2s; }
.modal-submit:hover { opacity: .88; }

/* ══ BLOG ══ */
.blog-section { background: #fff; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 28px; border-bottom: 2px solid var(--ink); margin-bottom: 0; }
.blog-header-left { display: flex; align-items: baseline; gap: 20px; }
.blog-header-label { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--rouge); }
.blog-header h2 { font-family: var(--fd); font-weight: 800; font-size: clamp(1.6rem,5vw,2.4rem); letter-spacing: -.035em; line-height: 1; color: var(--ink); margin: 0; }
.blog-header-link { font-size: .8rem; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; opacity: .45; transition: opacity .2s; }
.blog-header-link:hover { opacity: 1; color: var(--ink); }
.blog-header-link svg { width: 12px; height: 12px; }
.blog-list { list-style: none; padding: 0; margin: 0; }
.blog-row { display: grid; grid-template-columns: 52px 1fr 180px 100px; align-items: center; gap: 32px; padding: 28px 0; border-bottom: 1px solid rgba(26,26,46,.07); text-decoration: none; transition: background .2s; cursor: pointer; position: relative; }
.blog-row::before { content: ''; position: absolute; inset: 0 -24px; background: var(--off); border-radius: 10px; opacity: 0; transition: opacity .25s; z-index: 0; }
.blog-row:hover::before { opacity: 1; }
.blog-row > * { position: relative; z-index: 1; }
.blog-row:last-child { border-bottom: none; }
.blog-row-num { font-family: var(--fd); font-weight: 800; font-size: 1.1rem; letter-spacing: -.04em; color: rgba(26,26,46,.18); line-height: 1; transition: color .25s; }
.blog-row:hover .blog-row-num { color: var(--rouge); }
.blog-row-body { display: flex; flex-direction: column; gap: 6px; }
.blog-row-topic { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gris); }
.blog-row-title { font-family: var(--fd); font-weight: 700; font-size: clamp(.95rem,3.5vw,1.15rem); letter-spacing: -.02em; line-height: 1.25; color: var(--ink); transition: color .2s; }
.blog-row:hover .blog-row-title { color: var(--rouge); }
.blog-row-desc { font-size: .83rem; color: var(--gris); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-row-img { width: 180px; height: 120px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.blog-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.25,1,.5,1); }
.blog-row:hover .blog-row-img img { transform: scale(1.07); }
.blog-row-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.blog-row-date { font-size: .72rem; color: var(--gris); opacity: .6; white-space: nowrap; }
.blog-row-cta { display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 700; letter-spacing: .05em; color: var(--ink); text-transform: uppercase; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s, color .25s; }
.blog-row:hover .blog-row-cta { opacity: 1; transform: translateX(0); color: var(--rouge); }
.blog-row--featured { padding: 36px 0; }
.blog-row--featured .blog-row-num { font-size: 1.4rem; color: var(--rouge); }
.blog-row--featured .blog-row-title { font-size: clamp(1.1rem,4vw,1.4rem); font-weight: 800; }
.blog-row--featured .blog-row-img { width: 200px; height: 140px; }

/* ══ FAQ ══ */
.faq-section { background: var(--off); }
.faq-top { text-align: center; margin-bottom: clamp(32px,4vw,48px); }
.faq-top h2 { font-size: clamp(1.7rem,5.5vw,2.5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.faq-top p { font-size: .9rem; color: var(--gris); max-width: 480px; margin: 10px auto 0; line-height: 1.65; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 10px; border: 1px solid rgba(26,26,46,.06); overflow: hidden; transition: box-shadow .3s cubic-bezier(.32,.72,0,1); }
.faq-item:hover { box-shadow: 0 4px 16px rgba(26,26,46,.05); }
.faq-item.open { box-shadow: 0 6px 20px rgba(26,26,46,.06); }
.faq-q { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 14px; cursor: pointer; font-family: var(--fd); font-size: .95rem; font-weight: 600; color: var(--ink); transition: color .25s; }
.faq-toggle { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: rgba(26,26,46,.04); display: flex; align-items: center; justify-content: center; color: var(--gris); transition: transform .35s cubic-bezier(.32,.72,0,1), background .3s, color .3s; }
.faq-toggle svg { width: 12px; height: 12px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--rouge); color: #fff; }
.faq-item.open .faq-q { color: var(--rouge); }
.faq-a { max-height: 0; overflow: hidden; font-size: .88rem; color: var(--gris); line-height: 1.72; padding: 0 22px; transition: max-height .4s cubic-bezier(.25,1,.5,1), padding .35s, opacity .3s; opacity: 0; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 20px; opacity: 1; }

/* ══ CANDIDATURE (CTA) ══ */
.cta-section { background: #fff; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; right: -160px; top: -160px; width: 520px; height: 520px; background: rgba(200,16,46,.04); border-radius: 50%; pointer-events: none; }
.cta-section::after { content: ''; position: absolute; left: -100px; bottom: -100px; width: 380px; height: 380px; background: rgba(200,16,46,.03); border-radius: 50%; pointer-events: none; }
.cta-left { padding-right: clamp(0px,4vw,48px); position: relative; z-index: 2; }
.cta-left .s-tag { color: var(--rouge); }
.cta-left .s-title { color: var(--ink); }
.cta-left .s-sub { color: var(--gris); max-width: 380px; }
.cta-steps { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.cta-step { display: flex; align-items: center; gap: 14px; }
.cta-step-num { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: rgba(200,16,46,.08); border: 1px solid rgba(200,16,46,.2); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-weight: 800; font-size: .72rem; color: var(--rouge); }
.cta-step-body { font-size: .85rem; font-weight: 500; color: var(--gris); }
.cta-contact-links { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px; }
.cta-contact-link { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gris); transition: color .2s; }
.cta-contact-link:hover { color: var(--rouge); }
.cta-contact-link svg { width: 13px; height: 13px; color: var(--rouge); flex-shrink: 0; }

/* Formulaire candidature dans CTA */
.form-wrap-cta { background: var(--off); border: 1px solid rgba(200,16,46,.1); border-radius: 16px; padding: clamp(24px,3.5vw,36px); position: relative; z-index: 2; }
.form-wrap-title { font-family: var(--fd); font-weight: 800; font-size: 1.1rem; color: var(--rouge); margin-bottom: 4px; }
.form-wrap-sub { font-size: .78rem; color: var(--gris); margin-bottom: 20px; }
.form-field-cta { width: 100%; background: #fff; border: 1px solid rgba(26,26,46,.12); border-radius: 8px; color: var(--ink); padding: 10px 12px; font-family: var(--fb); font-size: .85rem; transition: border-color .2s; appearance: none; }
.form-field-cta:focus { outline: none; border-color: var(--rouge); }
.form-field-cta::placeholder { color: rgba(26,26,46,.35); }
.form-group-cta { position: relative; margin-bottom: 12px; }
.form-label-cta { display: block; font-size: .68rem; font-weight: 600; color: var(--gris); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 4px; }
.form-radios-cta { display: flex; gap: 8px; flex-wrap: wrap; }
.form-radio-btn { display: none; }
.form-radio-label-cta { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(200,16,46,.2); font-size: .78rem; font-weight: 500; color: var(--gris); cursor: pointer; transition: all .2s; }
.form-radio-btn:checked + .form-radio-label-cta { border-color: var(--rouge); color: var(--rouge); background: rgba(200,16,46,.06); }
.btn-submit-cta { width: 100%; background: var(--rouge); color: #fff; font-family: var(--fb); font-size: .88rem; font-weight: 700; padding: 13px; border-radius: 8px; border: none; display: flex; align-items: center; justify-content: center; gap: 9px; transition: transform .2s, box-shadow .2s; cursor: pointer; }
.btn-submit-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,.3); }
.btn-submit-cta svg { width: 13px; height: 13px; }
.form-footer-note-cta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(200,16,46,.1); }
.form-note-text-cta { font-size: .7rem; color: var(--gris); }
.form-plaquette-link-cta { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600; color: var(--rouge); white-space: nowrap; transition: color .2s; }
.form-plaquette-link-cta:hover { color: var(--ink); }
.form-plaquette-link-cta svg { width: 11px; height: 11px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
  .steps-track { grid-template-columns: repeat(2,1fr); }
  .steps-track::before { display: none; }
  .blog-row { grid-template-columns: 36px 1fr 140px; }
  .blog-row-meta { display: none; }
  .testi-card { width: calc((100% - 24px) / 2); }
  .conditions-header { grid-template-columns: 1fr; }
  .conditions-stats { grid-template-columns: repeat(2,1fr); }
  .cond-stat:nth-child(2) { border-right: none; }
  .profil-inline { grid-template-columns: 1fr 1fr; }
  .agency-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .concept-grid { grid-template-columns: 1fr; gap: 40px; }
  .concept-img-wrap { max-width: 520px; margin: 0 auto; }
  .hero-main { padding: 100px 0 60px; text-align: center; align-items: center; }
  .hero-eyeline { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-bg::after { background: linear-gradient(to bottom, rgba(26,26,46,.8) 0%, rgba(26,26,46,.55) 100%); }
  .formules-compare { grid-template-columns: 1fr; gap: 40px 0; }
  .fc-divider { display: none; }
  .agency-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; gap: 20px; }
  .blog-row { grid-template-columns: 28px 1fr; gap: 16px; padding: 20px 0; }
  .blog-row-img { display: none; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 575px) {
  .conditions-stats { grid-template-columns: 1fr 1fr; }
  .profil-inline { grid-template-columns: 1fr; }
  .cond-stat { padding: 20px 16px; border: none; border-bottom: 1px solid rgba(26,26,46,.07); }
  .cond-stat:nth-child(3), .cond-stat:nth-child(4) { border-bottom: none; }
  .testi-card { width: 100%; }
}
