/* ══════════════════════════════════════════════
   POLYLANGUES — FRANCHISE.CSS (page-specific styles)
   ══════════════════════════════════════════════ */

/* ── HERO FRANCHISE ── */
.hero-franchise {
  background: #fff;
  padding: clamp(110px,13vw,160px) 0 clamp(70px,9vw,110px);
  position: relative;
  overflow: hidden;
}

/* Bloc géométrique rouge asymétrique */
.hero-geo-block {
  position: absolute;
  top: 0;
  right: -80px;
  width: 420px;
  height: 100%;
  background: var(--rouge);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: .07;
  pointer-events: none;
}

.hero-fran-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,96px);
  align-items: center;
}

.hero-fran-left { position: relative; z-index: 1; }

.hf-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 18px;
  padding-left: 28px;
  position: relative;
}
.hf-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--rouge);
}

.hero-h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: .95rem;
  color: var(--gris);
  line-height: 1.76;
  margin-bottom: 36px;
  max-width: 400px;
}

/* ── STAT BOARD (tableau de bord vertical) ── */
.hero-fran-right { position: relative; z-index: 1; }

.fran-stat-board {
  border: 1px solid rgba(26,26,46,.09);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 6px 6px 0 var(--rouge);
}

.fsb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
}
.fsb-row:hover { background: var(--off); }

.fsb-label {
  font-size: .8rem;
  color: var(--gris);
  font-weight: 500;
  line-height: 1.4;
}

.fsb-val {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  white-space: nowrap;
}

.fsb-divider {
  height: 1px;
  background: rgba(26,26,46,.06);
  margin: 0 24px;
}

.fsb-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--ink);
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.fsb-footer svg { color: var(--rouge); flex-shrink: 0; }

@media(max-width:991px) {
  .hero-fran-layout { grid-template-columns: 1fr; }
  .hero-geo-block { width: 280px; }
}

/* ── NUMBERS BAND ── */
.numbers-band {
  background: var(--rouge);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.numbers-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}

.numbers-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}

.number-item { position: relative; }
.number-item + .number-item::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,.08);
}

.number-val {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.number-val span { color: rgba(255,255,255,.75); }
.number-label { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.4; }

@media(max-width:767px) {
  .numbers-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .number-item + .number-item::before { display: none; }
}

/* ── POURQUOI POLYLANGUES ── */
.why-section { background: #fff; }

.why-header { text-align: center; margin-bottom: clamp(44px,6vw,72px); }
.why-header h2 {
  font-size: clamp(1.7rem,3.4vw,2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.why-header p { font-size: .95rem; color: var(--gris); max-width: 540px; margin: 12px auto 0; line-height: 1.65; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(32px,4vw,44px) clamp(28px,3vw,36px);
  border: 1px solid rgba(26,26,46,.06);
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.32,.72,0,1), box-shadow .5s cubic-bezier(.32,.72,0,1);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(26,26,46,.08); }
.why-card:nth-child(2) { transform: translateY(24px); }
.why-card:nth-child(2):hover { transform: translateY(18px); }

.why-card-num {
  position: absolute;
  top: -14px;
  right: 16px;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 6rem;
  letter-spacing: -.06em;
  color: rgba(200,16,46,.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(200,16,46,.07);
}
.why-icon svg { color: var(--rouge); }

.why-card h3 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  position: relative;
}
.why-card p { font-size: .87rem; color: var(--gris); line-height: 1.72; margin: 0; position: relative; }

@media(max-width:991px) {
  .why-card:nth-child(2), .why-card:nth-child(2):hover { transform: translateY(0); }
}
@media(max-width:767px) {
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card:nth-child(2), .why-card:nth-child(2):hover { transform: translateY(0); }
}

/* ── 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,3.4vw,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,2.8vw,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,4vw,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; }

@media(max-width:767px) {
  .formules-compare { grid-template-columns: 1fr; gap: 40px 0; }
  .fc-divider { display: none; }
}

/* ── CONDITIONS D'ACCÈS ── */
.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,3.4vw,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,2.4vw,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,1.8vw,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 { color: var(--rouge); flex-shrink: 0; margin-top: 2px; }

@media(max-width:991px) {
  .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; }
}
@media(max-width:575px) {
  .conditions-stats { grid-template-columns: 1fr 1fr; }
  .profil-inline { grid-template-columns: 1fr; }
  .cond-stat { padding: 20px 16px; }
}

/* ── PARCOURS ── */
.parcours-section { background: var(--off); }

.parcours-top { text-align: center; margin-bottom: clamp(44px,6vw,72px); }
.parcours-top h2 { font-size: clamp(1.7rem,3.4vw,2.5rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }
.parcours-top p { font-size: .95rem; color: var(--gris); max-width: 520px; margin: 12px auto 0; line-height: 1.65; }

.parcours-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.parcours-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--rouge), rgba(200,16,46,.15));
  z-index: 0;
}

.parcours-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.parcours-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(200,16,46,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: background .35s, color .35s, border-color .35s, box-shadow .35s;
  position: relative;
  z-index: 2;
}
.parcours-circle svg { color: var(--rouge); transition: color .35s; }
.parcours-item:hover .parcours-circle { background: var(--rouge); border-color: var(--rouge); box-shadow: 0 8px 28px rgba(200,16,46,.3); }
.parcours-item:hover .parcours-circle svg { color: #fff; }

.parcours-step-num {
  font-family: var(--fd);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 8px;
}
.parcours-item h4 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.parcours-item p { font-size: .84rem; color: var(--gris); line-height: 1.68; margin: 0; }

@media(max-width:991px) {
  .parcours-track { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .parcours-track::before { display: none; }
}
@media(max-width:575px) {
  .parcours-track { grid-template-columns: 1fr; gap: 32px; }
}

/* ── CTA ROUGE ── */
.cta-section { background: var(--rouge); position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: clamp(60px,8vw,100px) 0;
}
.cta-inner h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.cta-inner p { font-size: .95rem; color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 32px; line-height: 1.65; }

/* ══ ACCOMPAGNEMENT ══ */
.support-section { background: var(--off); }

.support-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: end;
  margin-bottom: clamp(48px,6vw,72px);
}
.support-header-left .s-title {
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: 12px 0 0;
}
.support-header-desc {
  font-size: .92rem;
  color: var(--gris);
  line-height: 1.72;
  margin: 0;
  align-self: end;
}

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

.support-item {
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  border-top: 1px solid rgba(26,26,46,.07);
  transition: background .3s;
  position: relative;
}
.support-item:nth-child(odd) { border-right: 1px solid rgba(26,26,46,.07); }
.support-item:hover { background: #fff; }

.support-num {
  font-family: var(--fd);
  font-size: .7rem;
  font-weight: 800;
  color: var(--rouge);
  letter-spacing: .1em;
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 24px;
}

.support-body h4 {
  font-family: var(--fd);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.support-body p {
  font-size: .84rem;
  color: var(--gris);
  line-height: 1.68;
  margin: 0;
}

@media(max-width:991px) {
  .support-header { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support-item:nth-child(odd) { border-right: none; }
}
@media(max-width:575px) {
  .support-item { padding: 20px 0; }
}

/* ══ PREUVES RÉSEAU ══ */
.preuves-section { background: #fff; }

.preuves-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px,7vw,96px);
  align-items: center;
}

.preuves-title {
  font-family: var(--fd);
  font-size: clamp(1.6rem,3vw,2.3rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin: 14px 0 16px;
}
.preuves-desc {
  font-size: .9rem;
  color: var(--gris);
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 340px;
}
.preuves-cta { display: inline-flex; }

.preuves-right {
  border: 1px solid rgba(26,26,46,.08);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--rouge);
}

.preuve-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  transition: background .25s;
}
.preuve-row:hover { background: var(--off); }

.preuve-meta { display: flex; flex-direction: column; gap: 3px; }
.preuve-label { font-size: .82rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.preuve-note { font-size: .71rem; color: var(--gris); }

.preuve-val {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.6rem,2.8vw,2.2rem);
  color: var(--ink);
  letter-spacing: -.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.preuve-val em { font-style: normal; font-size: .55em; color: var(--rouge); vertical-align: super; }

.preuve-sep { height: 1px; background: rgba(26,26,46,.06); margin: 0 28px; }

@media(max-width:991px) {
  .preuves-layout { grid-template-columns: 1fr; }
  .preuves-desc { max-width: 100%; }
}
@media(max-width:575px) {
  .preuve-row { padding: 18px 20px; gap: 16px; }
  .preuve-sep { margin: 0 20px; }
}

/* ══ FAQ EXPRESS ══ */
.faq-express-section { background: var(--off); }

.faq-express-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px,7vw,96px);
  align-items: start;
}

/* Image gauche */
.faq-express-img {
  position: sticky;
  top: 100px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-height: 420px;
  box-shadow: 0 24px 60px rgba(26,26,46,.1);
}
.faq-express-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,26,46,.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.faq-img-badge svg { color: var(--rouge); flex-shrink: 0; }

/* Contenu droite */
.faq-express-content { padding-top: 4px; }

.faq-express-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px,4vw,40px);
}
.faq-express-title {
  font-family: var(--fd);
  font-size: clamp(1.5rem,2.8vw,2.1rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin: 14px 0 0;
}
.faq-express-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  opacity: .4;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s, color .2s;
}
.faq-express-link:hover { opacity: 1; color: var(--rouge); }

.faq-express-list { width: 100%; }

.fqe-item { border-bottom: 1px solid rgba(26,26,46,.08); }
.fqe-item:first-child { border-top: 1px solid rgba(26,26,46,.08); }

.fqe-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--fd);
  font-size: clamp(.88rem,1.4vw,1rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  transition: color .2s;
}
.fqe-trigger:hover { color: var(--rouge); }
.fqe-trigger[aria-expanded="true"] { color: var(--rouge); }

.fqe-icon {
  flex-shrink: 0;
  color: var(--rouge);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
}
.fqe-trigger[aria-expanded="true"] .fqe-icon { transform: rotate(45deg); }

.fqe-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.32,.72,0,1);
}
.fqe-body.open { max-height: 300px; }
.fqe-body > p {
  font-size: .88rem;
  color: var(--gris);
  line-height: 1.76;
  margin: 0;
  padding-bottom: 20px;
}

@media(max-width:991px) {
  .faq-express-layout { grid-template-columns: 1fr; }
  .faq-express-img { position: static; aspect-ratio: 16/9; }
}
@media(max-width:575px) {
  .faq-express-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ══ TÉMOIGNAGES ══ */
.temoignages-band { background: var(--ink); position: relative; overflow: hidden; }
.temoignages-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 320px;
  background: var(--rouge);
  opacity: .06;
  border-radius: 50%;
  transform: translate(30%, -30%);
  pointer-events: none;
}

.temo-header {
  margin-bottom: clamp(40px,5vw,60px);
}
.temo-header .hf-eyebrow::before { background: rgba(255,255,255,.4); }
.temo-header .hf-eyebrow { color: rgba(255,255,255,.5); }
.temo-header .s-title {
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: #fff;
  margin: 12px 0 0;
}

.temo-track {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}

.temo-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: clamp(28px,3vw,40px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background .35s, border-color .35s;
  position: relative;
}
.temo-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(200,16,46,.2);
  pointer-events: none;
}
.temo-card:hover { background: rgba(255,255,255,.07); border-color: rgba(200,16,46,.25); }

.temo-quote {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.76;
  font-style: italic;
  flex: 1;
}

.temo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.temo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.temo-name {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.temo-location {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}

@media(max-width:991px) {
  .temo-track { grid-template-columns: 1fr 1fr; }
  .temo-card:last-child { display: none; }
}
@media(max-width:575px) {
  .temo-track { grid-template-columns: 1fr; }
  .temo-card:last-child { display: flex; }
}
