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

/* ── HERO TÉMOIGNAGES ── */
.hero-temoignages {
  background: var(--off);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Grand guillemet décoratif en arrière-plan */
.hero-temoignages::before {
  content: '\201C';
  font-family: var(--fd);
  font-size: clamp(20rem, 35vw, 42rem);
  font-weight: 800;
  position: absolute;
  right: -3%;
  top: -15%;
  color: rgba(200,16,46,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-temo-inner {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-temo-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rouge);
  display: block;
  margin-bottom: 16px;
}

.hero-temo-h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
.hero-temo-h1 em { font-style: normal; color: var(--rouge); }

.hero-temo-desc {
  font-size: .97rem;
  color: var(--gris);
  line-height: 1.76;
  max-width: 440px;
  margin-bottom: 32px;
}

/* Colonne droite : KPI tiles empilées */
.hero-temo-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.temo-kpi {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(26,26,46,.06);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .4s cubic-bezier(.32,.72,0,1), box-shadow .4s cubic-bezier(.32,.72,0,1);
}
.temo-kpi:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(26,26,46,.07);
}

.temo-kpi-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(200,16,46,.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.temo-kpi-icon svg {
  width: 20px;
  height: 20px;
  color: var(--rouge);
}

.temo-kpi-val {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
  display: block;
}

.temo-kpi-label {
  font-size: .72rem;
  color: var(--gris);
  margin-top: 3px;
  display: block;
}

@media (max-width: 991px) {
  .hero-temo-inner { grid-template-columns: 1fr; }
  .hero-temo-right { flex-direction: row; flex-wrap: wrap; }
  .temo-kpi { flex: 1 1 calc(50% - 6px); }
}
@media (max-width: 575px) {
  .hero-temo-right { flex-direction: column; }
  .temo-kpi { flex: unset; }
}

/* ── FEATURED TESTIMONIAL ── */
.featured-section { background: #fff; }

.featured-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.featured-quote-icon {
  width: 64px;
  height: 64px;
  color: var(--rouge);
  fill: var(--rouge);
  opacity: .15;
  margin-bottom: 28px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.featured-text {
  font-family: var(--fd);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -.02em;
  margin-bottom: 32px;
  font-style: normal;
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.temoignage-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(26,26,46,.08);
  flex-shrink: 0;
  display: block;
}

.featured-name {
  display: block;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.featured-role {
  display: block;
  font-size: .85rem;
  color: var(--gris);
}

/* ── TESTIMONIALS GRID ── */
.temoignages-section { background: var(--off); }

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

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

.temoignage-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 36px);
  border: 1px solid rgba(26,26,46,.06);
  position: relative;
  transition: transform .5s cubic-bezier(.32,.72,0,1), box-shadow .5s cubic-bezier(.32,.72,0,1);
}
.temoignage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(26,26,46,.08);
}

.temoignage-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.temoignage-stars svg {
  width: 16px;
  height: 16px;
  color: var(--rouge);
  fill: currentColor;
}

.temoignage-text {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.72;
  margin-bottom: 24px;
}

.temoignage-sep {
  height: 1px;
  background: rgba(26,26,46,.06);
  margin-bottom: 20px;
}

.temoignage-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
}

.temoignage-bottom .temoignage-avatar {
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(26,26,46,.08);
  flex-shrink: 0;
}

.temoignage-info { line-height: 1.3; }

.temoignage-name {
  display: block;
  font-family: var(--fd);
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
}

.temoignage-role {
  display: block;
  font-size: .78rem;
  color: var(--gris);
  margin-top: 2px;
}

@media (max-width: 991px) { .temoignages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .temoignages-grid { grid-template-columns: 1fr; } }

/* ── NUMBERS BAND ── */
.numbers-band {
  background: var(--ink);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.numbers-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,16,46,.1) 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 {
  display: block;
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.number-val span { color: var(--rouge); }

.number-label {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  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; }
}
@media (max-width: 575px) {
  .numbers-row { grid-template-columns: 1fr; gap: 28px; }
}

/* ── CTA SECTION ── */
.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;
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--rouge);
  font-size: .9rem;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 6px 22px rgba(0,0,0,.15);
  transition: transform .3s cubic-bezier(.32,.72,0,1), box-shadow .3s cubic-bezier(.32,.72,0,1);
}
.btn-white-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); color: var(--rouge); }
.btn-white-pill svg { width: 15px; height: 15px; transition: transform .25s cubic-bezier(.32,.72,0,1); }
.btn-white-pill:hover svg { transform: translateX(4px); }
