:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #101010;
  --panel-soft: #171717;
  --text: #ffffff;
  --muted: #c8c8c8;
  --red: #e50914;
  --red-dark: #9d0610;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 36px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 72% 18%, rgba(229, 9, 20, 0.23), transparent 28%),
    linear-gradient(135deg, #050505 0%, #111 46%, #070707 100%);
  color: var(--text);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

.promo-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 9, 20, 0.45);
  background: #e50914;
  color: #fff;
  white-space: nowrap;
}

.promo-track {
  display: inline-flex;
  gap: 28px;
  min-width: max-content;
  padding: 9px 0;
  will-change: transform;
  animation: rail 18s linear infinite;
  font-size: 0.82rem;
  font-weight: 900;
}

.promo-track span::before {
  content: "●";
  margin: 0 10px 0 0;
}

@keyframes rail {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.site-header {
  position: sticky;
  top: 36px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--red);
  font-weight: 900;
  letter-spacing: 0;
  transform: skew(-10deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav a:hover {
  color: var(--text);
}

.language-switch {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.is-active {
  color: var(--text);
  background: var(--red);
}

.hero {
  min-height: calc(100vh - 83px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 76px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.season-tag {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(229, 9, 20, 0.55);
  background: rgba(229, 9, 20, 0.12);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5.6vw, 5.45rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  margin: 24px 0;
}

.hero-actions,
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--text);
  box-shadow: 0 18px 38px rgba(229, 9, 20, 0.27);
}

.btn-primary:hover {
  background: #ff1420;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 800;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 14px;
  min-height: 500px;
}

.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.38), rgba(255, 255, 255, 0.04)),
    #111;
  box-shadow: var(--shadow);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 18px),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.35), transparent 34%);
  opacity: 0.7;
}

.showcase-card.is-main {
  grid-row: span 2;
}

.showcase-card span,
.showcase-card strong {
  position: relative;
  z-index: 1;
}

.showcase-card span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-card strong {
  max-width: 520px;
  font-size: clamp(1.65rem, 2.5vw, 3.15rem);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.showcase-card.is-main strong {
  font-size: clamp(2rem, 3vw, 3.65rem);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.38);
}

.stats-row div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 50px);
  border-right: 1px solid var(--line);
}

.stats-row div:last-child {
  border-right: 0;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}

.stats-row span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 680px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(229, 9, 20, 0.12), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 76px) clamp(46px, 6vw, 76px);
  background: #050505;
}

.proof-band div {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.proof-band span,
.proof-band strong {
  display: block;
}

.proof-band span {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-band strong {
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.12;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article,
.list-panel,
details {
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  padding: 22px;
}

.feature-grid article {
  position: relative;
  min-height: 252px;
  display: flex;
  flex-direction: column;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 46px;
  height: 4px;
  background: var(--red);
}

.card-kicker {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
}

.mini-cta {
  margin-top: auto;
  padding-top: 22px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-cta::before {
  content: "→";
  margin-right: 8px;
  color: var(--red);
}

.feature-grid p,
.list-panel p,
details p {
  color: var(--muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.list-panel {
  display: grid;
  gap: 16px;
}

.document-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  background: linear-gradient(90deg, rgba(229, 9, 20, 0.2), rgba(255, 255, 255, 0.03));
}

.document-band ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 700;
}

.document-band li + li {
  margin-top: 10px;
}

.area-section {
  background: #080808;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq .section-heading {
  margin-bottom: 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

details p {
  margin-top: 12px;
}

.contact-section {
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 76px);
  background: var(--red);
}

.contact-section .eyebrow,
.contact-section p {
  color: #fff;
}

.contact-section h2 {
  max-width: 850px;
}

.contact-section .btn-primary {
  background: #050505;
}

.legal-note {
  max-width: 950px;
  font-size: 0.9rem;
  font-weight: 800;
}

.legal-section {
  background: #080808;
}

.legal-section p:not(.eyebrow) {
  max-width: 980px;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 76px) clamp(42px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.legal-content article {
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
}

.legal-content article p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.42);
}

.cookie-overlay[hidden] {
  display: none;
}

.cookie-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  color: #1f1f1f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.cookie-modal h2 {
  margin: 0 42px 18px 0;
  color: #2b2b2b;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
}

.cookie-modal p {
  margin: 0 0 24px;
  color: #202020;
  font-size: 0.88rem;
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cookie-actions button {
  min-height: 46px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #f8f8f8;
  color: #2a2a2a;
  font: inherit;
  cursor: pointer;
}

.cookie-actions .cookie-accept {
  border-color: #000;
  background: #000;
  color: #fff;
}

.cookie-modal a {
  display: block;
  margin-top: 12px;
  color: #0a66c2;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: underline;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: start;
  gap: 8px 18px;
  padding: 13px clamp(18px, 5vw, 76px) 12px;
  color: var(--muted);
  background: #030303;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.25;
}

.site-footer p:last-child {
  grid-column: 1 / -1;
  max-width: none;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    display: none;
  }

  .mobile-call {
    display: inline-flex;
  }

  .hero,
  .split,
  .document-band {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-row div:nth-child(2) {
    border-right: 0;
  }

  .stats-row div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .showcase-card,
  .showcase-card.is-main {
    min-height: 190px;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .promo-track {
    animation-duration: 18s;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stats-row div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-row div:last-child {
    border-bottom: 0;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 16px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

}

/* ---- Transitions ---- */
.btn,
.lang-btn,
.nav a,
.mini-cta,
.footer-links a,
details summary {
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

/* ---- Focus clavier ---- */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ---- Bouton appel mobile (header) ---- */
.mobile-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.18s ease;
}

.mobile-call:hover {
  background: #ff1420;
}

/* ---- Accessibilité mouvement réduit ---- */
@media (prefers-reduced-motion: reduce) {
  .promo-track,
  .trust-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  .btn,
  .lang-btn,
  .nav a,
  .mini-cta,
  .footer-links a,
  .mobile-call {
    transition: none;
  }
}

/* ===== Trust Marquee (photos clients) ===== */
.trust-section {
  padding: clamp(40px, 6vw, 70px) clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
}

.trust-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  padding: 14px;
}

.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.95), transparent);
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(5,5,5,.95), transparent);
}

.trust-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: trustScroll 50s linear infinite;
}

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

.trust-item {
  margin: 0;
  flex: 0 0 clamp(220px, 26vw, 320px);
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  background: var(--panel);
}

.trust-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

@keyframes trustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Area info (horaires + adresse + maps) ===== */
.area-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
}

.area-info__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.area-info__item strong {
  color: var(--red);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.area-info__item span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.area-info__item span a {
  color: var(--text);
  text-decoration: none;
}

.area-info__item span a:hover {
  color: var(--red);
}

.area-info__item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
  font-size: .82rem;
}

.area-info__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 1 / -1;
}

@media (max-width: 620px) {
  .area-info__actions {
    justify-content: stretch;
  }
  .area-info__actions .btn {
    width: 100%;
  }
}

/* ===== Reviews section (Google vérifiés) ===== */
.reviews-section {
  background: rgba(0,0,0,.25);
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  margin-bottom: 24px;
}

.g-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #4285F4;
  flex-shrink: 0;
}

.reviews-header__text {
  flex: 1;
  min-width: 200px;
}

.reviews-header__text strong {
  font-size: 1rem;
  font-weight: 800;
  display: block;
  color: #fff;
  text-transform: none;
}

.reviews-header__text small {
  font-size: .82rem;
  color: var(--muted);
}

.reviews-header__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.reviews-header__rating .num {
  font-size: 1.85rem;
  font-weight: 900;
  color: #FBBC05;
  line-height: 1;
}

.reviews-header__rating .stars {
  font-size: .92rem;
  color: #FBBC05;
  letter-spacing: .05em;
}

.reviews-header__rating small {
  font-size: .76rem;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.rev-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .22s ease, transform .22s ease;
}

.rev-card:hover {
  border-color: rgba(229,9,20,.45);
  transform: translateY(-2px);
}

.rev-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  flex-shrink: 0;
  letter-spacing: .02em;
}

.rev-avatar.c-1 { background: linear-gradient(135deg, #4285F4, #1a73e8); }
.rev-avatar.c-2 { background: linear-gradient(135deg, #EA4335, #c5221f); }
.rev-avatar.c-3 { background: linear-gradient(135deg, #34A853, #188038); }
.rev-avatar.c-4 { background: linear-gradient(135deg, #FBBC05, #ea8600); }
.rev-avatar.c-5 { background: linear-gradient(135deg, #9C27B0, #673ab7); }
.rev-avatar.c-6 { background: linear-gradient(135deg, #FF6D00, #e64a19); }

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

.rev-meta strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-transform: none;
}

.rev-meta small {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}

.rev-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rev-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: .04em;
  line-height: 1;
}

.rev-stars .empty {
  color: rgba(255,255,255,.2);
}

.rev-date {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 600;
}

.rev-text {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.rev-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 4px;
}

.rev-badge svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.reviews-footer {
  margin-top: 28px;
  text-align: center;
}
