/* ============================================================
   INDEX - Hero
   ============================================================ */
/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  margin-top: calc(-1 * var(--nav-h));
  padding-top: calc(var(--nav-h) + 2rem);
  z-index: 1;
}

/* ─── HALOS ─────────────────────────────────────────── */
.halo {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(110px);
  opacity: 0.13;
  mix-blend-mode: screen;
  will-change: transform;
}
.halo-cyan  { width: 500px; height: 600px; background: #00e5ff; top: -120px;   left: -100px; }
.halo-amber { width: 500px; height: 700px; background: #fec931; bottom: -60px; right: -100px; }

/* ─── CONTENU ────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
}

.badge {
  display: inline-block;
  background: #00383fd3;
  border: 1px solid rgba(59, 73, 76, 0.35);
  border-radius: 50px;
  padding: 5px 13px;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #C3F5FF;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.15s forwards;
}
.hero-title .highlight { color: #00e5ff; }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.48);
  max-width: 400px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

/* ─── BOUTONS ─────────────────────────────────────────── */
/* ── Spin wrapper ── */
.spin-btn {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  border-radius: 7px;
  padding: 1.5px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* ── Conic gradient border ── */
.spin-btn::before {
  content: '';
  position: absolute;
  inset: -1000%;
  animation: spin 2.5s linear infinite;
}

.spin-btn.btn-cyan::before {
  background: conic-gradient(
    from 90deg at 50% 50%,
    #C3F5FF 0%,
    #00c8e0 30%,
    #005a66 60%,
    #00E5FF 100%
  );
}

.spin-btn.btn-dark::before {
  background: conic-gradient(
    from 90deg at 50% 50%,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.5) 100%
  );
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Inner face ── */
.spin-btn__inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5.5px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  transition: transform 0.25s ease;
}

.spin-btn.btn-cyan .spin-btn__inner {
  background: linear-gradient(105.87deg, #C3F5FF 0%, #00E5FF 100%);
  color: #005a66;
}

.spin-btn.btn-dark .spin-btn__inner {
  background: #0a0a0a; /* ou rgba(10,10,10,0.95) */
  color: #fff;
}

.spin-btn:hover .spin-btn__inner {
  transform: translateY(-2px);
}

/* ─── SCROLL HINT ─────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeUpScroll 0.3s 0.2s forwards;
  z-index: 15;
}
.scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}
.scroll-line {
  width: 2px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.7), rgba(255,255,255,0.15), transparent);
  margin: 10px auto 0;
  animation: scrollPulse 0.8s infinite ease-in-out;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.25);
  border-radius: 2px;
}

/* ─── MOTS FLOTTANTS ──────────────────────────────────── */
.float-word {
  position: absolute;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: all;
  cursor: default;
  z-index: 3;
  white-space: nowrap;
  transition: color 0.5s ease, text-shadow 0.5s ease;
  will-change: transform;
}
.float-word:hover {
  color: rgba(0, 229, 255, 0.45);
  text-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
}

@media (max-width: 768px) {
  .float-word {
    display: none !important;
  }
}

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpScroll {
  from { opacity: 0; transform: translate(-50%, 22px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.22; transform: scaleY(1); }
  50%      { opacity: 0.7;  transform: scaleY(1.28); }
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.sr-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

:root {
  --surface:      #1a1a1a;
  --surface-hover:#212121;
  --border:       rgba(255,255,255,.07);
  --text:         #f0f0f0;
  --muted:        rgba(255,255,255,.38);
  --accent:       #00e5ff;       /* cyan */
  --accent-dim:   rgba(0, 229, 255, .15);
  --extra-badge: #2c1f00;
  --extra-color: #e8a020;
  --text-muted:  #888888;

  --font-body:    'DM Sans', sans-serif;

  --radius:      12px;
  --radius-card:  14px;
  --gap:          14px;
  --ease:         cubic-bezier(.22,.68,0,1.2);
  --trans:       0.35s cubic-bezier(.4,0,.2,1);
}

/* ── Section wrapper ──────────────────────────────────── */
.portfolio-section {
  padding: 72px 40px 80px;
  position: relative;
  z-index: 2;
}

/* ── Header ───────────────────────────────────────────── */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  padding: 80px;
  padding-bottom: 0px;
}

.portfolio-header__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portfolio-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--text);
}

.portfolio-header__right {
  max-width: 340px;
  text-align: right;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #BAC9CC;
  font-style: italic;
}

/* ── Grid ─────────────────────────────────────────────── */
/*
  Layout :
    Row 1 : large (col 1–2)  | medium (col 3)
    Row 2 : small (col 1)    | small (col 2)  | cta (col 3)
*/
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gap);
  padding: 80px;
  padding-top: 0;
}

/* ── Card base ────────────────────────────────────────── */
.project-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .35s var(--ease),
              border-color .25s ease,
              box-shadow .35s ease;
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(22px);
}

.project-card.visible {
  animation: cardIn .55s var(--ease) forwards;
}

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}

.project-card:hover {
  transform: translateY(-4px) scale(1.008);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 28px 60px rgba(0,0,0,.55);
  z-index: 2;
}

/* ── Card sizes ───────────────────────────────────────── */
.project-card--large {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
}

.project-card--medium {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
}

.project-card--small {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
}

/* ── Thumbnail / placeholder ──────────────────────────── */
.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .6s var(--ease), filter .4s ease;
  filter: brightness(.82);
  /* Garantit que l'image remplit toujours le conteneur même sans hauteur explicite */
  min-height: 100%;
}

.project-card:hover .card-thumb {
  transform: scale(1.045);
  filter: brightness(.6);
}

/* Placeholder si pas d'image */
.card-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 60%, #1a1a1a 100%);
}

.card-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(0, 229, 255, .06) 0%, transparent 70%);
}

/* ── Gradient overlay ─────────────────────────────────── */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.4)  40%,
    transparent     70%
  );
  pointer-events: none;
}

/* ── Card content ─────────────────────────────────────── */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-category {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.01em;
}

.card-meta {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

/* Arrow on large card */
.card-arrow {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, border-color .25s ease, transform .35s var(--ease);
}

.project-card:hover .card-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(3px, -3px);
}

.card-arrow svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; }
.project-card:hover .card-arrow svg { stroke: #000; }

/* ── CTA card ─────────────────────────────────────────── */
.project-card--cta {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
  background: #161616;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .35s var(--ease);
  text-decoration: none;
}

.project-card--cta:hover {
  background: #1e1e1e;
  border-color: rgba(0, 229, 255, .3);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, .12), 0 24px 50px rgba(0,0,0,.4);
}

.cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .35s var(--ease);
}

.project-card--cta:hover .cta-icon {
  background: var(--accent-dim);
  transform: scale(1.1);
}

.cta-icon svg { width: 22px; height: 22px; fill: var(--accent); }

.cta-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
}

.cta-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Loading / Error states ───────────────────────────── */
.state-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 0;
  font-size: 14px;
  color: var(--muted);
}

.state-msg.error { color: #e05c5c; }

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}

.skeleton-card {
  border-radius: var(--radius-card);
  background: var(--surface);
  border: 1px solid var(--border);
  animation: shimmer 1.5s infinite;
}

.skeleton-card:nth-child(1) { grid-column: span 3; aspect-ratio: 16/9; }
.skeleton-card:nth-child(2) { grid-column: span 3; aspect-ratio: 16/9; }
.skeleton-card:nth-child(3),
.skeleton-card:nth-child(4) { grid-column: span 3; aspect-ratio: 16/9; }

@keyframes shimmer {
  0%,100% { opacity: .5; }
  50%      { opacity: .9; }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .portfolio-section { padding: 48px 20px 72px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .portfolio-header__right { text-align: left; max-width: 100%; }
  .projects-grid, .skeleton-grid { grid-template-columns: 1fr 1fr; }
  .project-card--large, .project-card--medium { grid-column: span 2; }
  .skeleton-card:nth-child(1), .skeleton-card:nth-child(2) { grid-column: span 2; }
  .project-card--small, .project-card--cta { grid-column: span 1; }
  .skeleton-card:nth-child(3), .skeleton-card:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 560px) {
  .projects-grid, .skeleton-grid { grid-template-columns: 1fr; }
  .project-card--large,
  .project-card--medium,
  .project-card--small,
  .project-card--cta { grid-column: span 1; aspect-ratio: 16/9; }
  .skeleton-card { grid-column: span 1 !important; }
}

/* ************************************************************************************************************************ */
/* ── SECTION ── */
.extra-section {
  background: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: unset;
  padding: 60px 120px;
  gap: 8%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── LEFT – image grid ── */
.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.extra-grid__item {
  background: #5a5a5a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* ── top image spans full width */
.extra-grid__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

.extra-grid__item--square {
  aspect-ratio: 4 / 3;
}

.extra-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.extra-grid__item img.loaded {
  opacity: 1;
}

.extra-grid__item:hover img {
  transform: scale(1.04);
}

/* skeleton shimmer */
.extra-grid__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #4a4a4a 30%,
    #606060 50%,
    #4a4a4a 70%
  );
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: inherit;
  z-index: 0;
}

.extra-grid__item img.loaded ~ .extra-grid__item::before,
.extra-grid__item:has(img.loaded)::before {
  opacity: 0;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── RIGHT – text ── */
.extra-text {
  max-width: 540px;
}

.extra-text__label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C3F5FF;
  margin-bottom: 20px;
}

.extra-text__title {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.extra-text__body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 520px;
}

/* ── CTA allongement simple ── */
.extra-text__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.extra-text__cta::after {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s ease;
}

.extra-text__cta:hover::after {
  width: 80px;
}

/* ── Fade-in on load ── */
.extra-text__label,
.extra-text__title,
.extra-text__body,
.extra-text__cta {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s forwards ease;
}

.extra-text__label { animation-delay: 0.1s; }
.extra-text__title { animation-delay: 0.22s; }
.extra-text__body  { animation-delay: 0.34s; }
.extra-text__cta   { animation-delay: 0.46s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .extra-section {
    grid-template-columns: 1fr;
    padding: 60px;
    gap: 48px;
  }
  .extra-text { max-width: 100%; }
  .portfolio-header { padding: 40px; padding-bottom: 0; }
  .projects-grid { padding: 40px; padding-top: 0; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(38px, 11vw, 60px); }
  .hero-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .portfolio-section { padding: 40px 16px 60px; }
  .portfolio-header { padding: 0; flex-direction: column; align-items: flex-start; gap: .75rem; margin-bottom: 28px; }
  .portfolio-header__right { text-align: left; max-width: 100%; }
  .projects-grid { padding: 0; grid-template-columns: 1fr; gap: 10px; }
  .project-card--large,
  .project-card--medium,
  .project-card--small,
  .project-card--cta { grid-column: span 1; aspect-ratio: 16/9; }
  .extra-section { padding: 40px 16px; }
  .extra-grid { grid-template-columns: 1fr; }
  .extra-grid__item--wide { aspect-ratio: 16/8; }
  .extra-grid__item--square { aspect-ratio: 16/9; }
  .extra-text__title { font-size: clamp(22px, 7vw, 36px); }
}

section.has-hero-bg {
    padding-top: 0;
}

/* ============================================================
   SECTION AVIS / TÉMOIGNAGES — Marquee double ligne
   ============================================================ */
.reviews-section {
  padding: 80px 0 90px;
  position: relative;
  z-index: 2;
  /* clip-x only: no horizontal scroll, transform children still work vertically */
  overflow-x: clip;
  overflow-y: visible;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 52px;
  text-align: center;
}

.reviews-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--text);
}

/* ── Marquee track wrapper ── */
.rv-marquee {
  overflow: visible;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  user-select: none;
  /* Vertical space so lifted cards aren't clipped */
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: -12px;
  margin-bottom: -12px;
}

.rv-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  isolation: isolate;
}

.rv-track--fwd { animation: rvScrollFwd 32s linear infinite; }
.rv-track--rev { animation: rvScrollRev 38s linear infinite; }

.rv-marquee:hover .rv-track { animation-play-state: paused; }

@keyframes rvScrollFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 8px)); }
}

@keyframes rvScrollRev {
  from { transform: translateX(calc(-50% - 8px)); }
  to   { transform: translateX(0); }
}

/* ── Carte individuelle ── */
.rv-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: default;
  transition: border-color .25s ease, transform .3s cubic-bezier(.22,.68,0,1.2);
}

.rv-card:hover {
  border-color: rgba(255,255,255,.14);
  transform: translateY(-8px);
  z-index: 10;
  position: relative;
}

/* Header (avatar + nom + icône source) */
.rv-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-avatar {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b8d4, #005a66);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.rv-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.rv-initial {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

.rv-meta { flex: 1; min-width: 0; }

.rv-name {
  display: block;
  font-weight: 600;
  font-size: .84rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Icône source */
.rv-source-link,
.rv-source-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  flex-shrink: 0;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}

.rv-source-link:hover {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  transform: scale(1.1);
}

/* Corps de l'avis */
.rv-body {
  font-size: .83rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  font-style: italic;
  flex: 1;
  margin: 0;
  padding: 0;
  border: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .reviews-section { padding: 60px 0 70px; }
  .rv-card { width: 240px; padding: 16px 18px; }
}

@media (max-width: 640px) {
  .reviews-section { padding: 40px 0 50px; }
  .reviews-header  { margin-bottom: 36px; }
  .rv-card { width: 220px; }
}