/* ============================================================
   banner.css — Classes extraites du composant real-estate banner
   ============================================================ */

/* section.banner */
.banner {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding-top: 2.5rem;
  /* py-10 */
  padding-bottom: 2.5rem;
  margin-top: 1.5rem;
  /* mt-6 */
}

@media (min-width: 768px) {
  .banner {
    padding-top: 3.5rem;
    /* md:py-14 */
    padding-bottom: 3.5rem;
    margin-top: 2.5rem;
    /* md:mt-10 */
  }
}

/* .container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* .px-4.sm\:px-6 */
.inner-wrapper {
  padding-left: 1rem;
  /* px-4 */
  padding-right: 1rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .inner-wrapper {
    padding-left: 1.5rem;
    /* sm:px-6 */
    padding-right: 1.5rem;
  }
}

/* Flex row principal */
.banner-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* gap-8 */
}

@media (min-width: 768px) {
  .banner-row {
    flex-direction: row;
    /* md:flex-row */
  }
}

/* Colonne gauche — texte */
.banner-text {
  position: relative;
  z-index: 10;
  /* z-10 */
}

/* Badge */
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* gap-2 */
  background-color: #111827;
  /* bg-gray-900 */
  color: #ffffff;
  font-size: 0.75rem;
  /* text-xs */
  font-weight: 500;
  padding: 0.375rem 1rem;
  /* py-1.5 px-4 */
  border-radius: 9999px;
  /* rounded-full */
  margin-top: 1rem;
  /* my-4 */
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .banner-badge {
    margin-top: 1.5rem;
    /* sm:my-6 */
    margin-bottom: 1.5rem;
  }
}

.banner-badge .icon-star {
  color: #fff;
  /* text-yellow-400 */
}

/* Titre principal */
.banner-title {
  font-size: 3rem;
  /* text-5xl */
  font-weight: 800;
  /* font-extrabold */
  line-height: 1.25;
  /* leading-tight */
  margin-bottom: 1rem;
  /* mb-4 */
}

@media (min-width: 1024px) {
  .banner-title {
    font-size: 3.75rem;
    /* lg:text-6xl */
  }
}

.highlight {
  color: #f74000 !important;
}

/* Paragraphe de description */
.banner-description {
  color: #6b7280;
  /* text-gray-500 */
  font-size: 1rem;
  /* text-base */
  line-height: 1.625;
  /* leading-relaxed */
  margin-bottom: 2rem;
  /* mb-8 */
  max-width: 36rem;
  /* max-w-sm */
}

/* Boutons CTA */
.banner-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* gap-4 */
}

.btn-primary {
  background-color: #f74000;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  /* text-sm */
  padding: 0.75rem 1.5rem;
  /* py-3 px-6 */
  border-radius: 0.375rem;
  /* rounded-md */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem
}

.btn-primary:hover {
  background-color: #f74000;
  color: white;
  /* hover:bg-orange-600 */
}

.btn-outline {
  border: 2px solid #000;
  color: #000 !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem
}


/* Colonne droite — image */
.banner-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.banner-visual .thumb-img {
  text-align: center;
}

.banner-visual img {
  width: 100%;
  max-width: 28rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1),
    0 4px 6px -4px rgba(0, 0, 0, .1);
  object-fit: cover;
}

.listed-text {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: start;
}

.listed-text-item {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  white-space: nowrap;
}



/* ============================================================
   Trust bar
   ============================================================ */

.trust-bar {
  border-top: 1px solid #f3f4f6;
  /* border-t border-gray-100 */
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .trust-bar {
    padding-top: 2rem;
    /* sm:py-8 */
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    /* sm:px-6 */
    padding-right: 1.5rem;
  }
}

.trust-bar-inner {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-bar-title {
  color: #111827;
  /* text-gray-900 */
  font-size: 1rem;
  /* text-base */
  font-weight: 600;
}

.trust-bar-title strong {
  color: #111827;
  font-weight: 700;
}

/* Bloc étoile + note */
.trust-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* gap-2 */
}

.trust-rating svg {
  width: 2rem;
  /* w-8 */
  height: 2rem;
  /* h-8 */
  color: #22c55e;
  /* text-green-500 */
  fill: currentColor;
}

.trust-rating-score {
  color: #374151;
  /* text-gray-700 */
  font-weight: 500;
  font-size: 1.25rem;
  /* text-xl */
}

.trust-meta {
  color: #868686;
  font-size: 0.875rem;
  /* text-sm */
  margin-top: 1rem;
  /* mt-4 */
}

/* Logos partenaires */
.partner-logos-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  /* my-4 */
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .partner-logos-wrapper {
    margin-top: 1.5rem;
    /* sm:my-6 */
    margin-bottom: 1.5rem;
  }
}

.partner-logos-wrapper img {
  width: 100%;
  max-width: 72rem;
  /* max-w-6xl */
  object-fit: contain;
  filter: grayscale(100%);
  /* grayscale */
  opacity: 0.8;
  /* opacity-80 */
}


/* ============================================================
   Sound Familiar
   ============================================================ */

.sound-section {
  background-color: #1B1613;
  padding: 5rem 2rem;
  font-family: sans-serif;
}

.sound-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.sound-badge {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid #444;
  box-shadow: 0 0 15px 10px rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.sound-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  max-width: 640px;
}

.sound-title .highlight {
  color: #f74000;
}

.sound-description {
  color: #7a7572;
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.7;
}

.sound-feature {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  margin-top: 1rem;
}

.sound-feature-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 14px;
  background-color: #231f1b;
  position: relative;
  border: 1px solid #2e2a26;
}

.sound-feature-items::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, #3a3530 0%, #f47000 50%, #3a3530 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.feature-description {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ============================================================
       Phone System Section
    ============================================================ */
.phone-section {
  background-color: #f5f2ee;
  padding: 5rem 2rem;
  font-family: 'Georgia', serif;
}

.phone-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- Header row ---- */
.phone-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.phone-header-left {
  max-width: 440px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.phone-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
}

.phone-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0;
}

.phone-title .highlight {
  color: #f74000;
}

.phone-header-right {
  max-width: 340px;
  padding-top: 0.5rem;
  align-self: flex-end;
}

.phone-subtitle {
  color: #7a7570;
  font-size: 0.9rem;
  line-height: 1.7;

}

/* ---- Grid ---- */
.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ---- Card ---- */
.phone-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #e8e3dc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}

.phone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, #3a3530 0%, #f47000 50%, #3a3530 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Active / featured card */
.phone-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-image: radial-gradient(circle, #EE7A1F, #F4580A);
  cursor: pointer;
}

.phone-card:hover svg {
  color: #f74000;
}



.phone-card:hover .card-title {
  color: #ffffff;
}

.phone-card:hover .card-description {
  color: rgba(255, 255, 255, 0.75);
}

/* Icon wrapper */
.card-icon {
  display: flex;
  align-items: center;
  justify-content: start;
}

.card-icon svg {
  color: #000000;
}

.phone-card.active .card-icon {
  background-color: rgba(255, 255, 255, 0.2);
}



.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  font-family: sans-serif;
}

.card-description {
  font-size: 0.82rem;
  color: #7a7570;
  line-height: 1.65;
  font-family: sans-serif;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .phone-header {
    flex-direction: column;
    gap: 1.5rem;
  }

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

@media (max-width: 560px) {
  .phone-title {
    font-size: 2rem;
  }

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

/* ============================================================
   AI Agent Section
   ============================================================ */
.agent-section {
  padding: 5.5rem 1.5rem;
  background:
    radial-gradient(circle at top center, rgba(247, 64, 0, 0.14), transparent 32%),
    linear-gradient(180deg, #211613 0%, #150f0d 100%);
  color: #f5ebe5;
}

.agent-container {
  max-width: 1120px;
  margin: 0 auto;
}

.agent-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.agent-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f6d7ca;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  margin-bottom: 1.2rem;
}

.agent-title {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
  color: #ffffff;
}

.agent-title .highlight {
  display: block;
  color: #f25b24;
}

.agent-description {
  max-width: 520px;
  margin: 1.25rem 0 0;
  color: #a79891;
  font-size: 0.96rem;
  line-height: 1.75;
}

.agent-highlights {
  display: grid;
  gap: 0.9rem;
}

.agent-highlight-card,
.agent-feature-card,
.agent-process {
  position: relative;
  border: 1px solid rgba(255, 146, 98, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.agent-highlight-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  align-items: start;
}

.agent-highlight-icon,
.agent-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f25b24;
  background: rgba(242, 91, 36, 0.12);
  border: 1px solid rgba(242, 91, 36, 0.18);
}

.agent-highlight-icon svg,
.agent-feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.agent-highlight-card h3,
.agent-feature-card h3,
.agent-process-step h4 {
  margin: 0;
  color: #fff5f0;
  font-size: 1rem;
  font-weight: 600;
}

.agent-highlight-card p,
.agent-feature-card p,
.agent-process-step p,
.agent-process-header p,
.agent-cta p {
  margin: 0.4rem 0 0;
  color: #8f7f78;
  font-size: 0.85rem;
  line-height: 1.6;
}

.agent-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.agent-feature-card {
  min-height: 210px;
  padding: 1.25rem;
}

.agent-feature-card .agent-feature-icon {
  margin-bottom: 1rem;
}

.agent-cta {
  margin-top: 1rem;
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  background: linear-gradient(90deg, #ee4b1d 0%, #f95a20 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.agent-cta-kicker {
  color: #fff7f3;
  font-size: 0.95rem;
  font-weight: 700;
}

.agent-cta p {
  color: rgba(255, 244, 238, 0.82);
  max-width: 760px;
}

.agent-cta-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: #fff7f3;
  color: #e84d1e;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.agent-process {
  margin-top: 1rem;
  padding: 1.6rem;
}

.agent-process-header {
  text-align: center;
}

.agent-process-header h3 {
  margin: 0;
  color: #fff5f0;
  font-size: 1.2rem;
  font-weight: 600;
}

.agent-process-steps {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: start;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.agent-process-step {
  text-align: center;
  max-width: 160px;
}

.agent-step-number {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 91, 36, 0.18);
  color: #ff8d61;
  border: 1px solid rgba(255, 146, 98, 0.24);
  font-size: 0.82rem;
  font-weight: 700;
}

.agent-process-arrow {
  padding-top: 0.55rem;
  color: #cf673f;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .agent-hero {
    grid-template-columns: 1fr;
  }

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

  .agent-process-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .agent-process-arrow {
    display: none;
  }
}

@media (max-width: 680px) {
  .agent-section {
    padding: 4rem 1rem;
  }

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

  .agent-highlight-card {
    grid-template-columns: 1fr;
  }

  .agent-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .agent-process-steps {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .agent-process-step {
    max-width: 260px;
  }
}

/* ============================================================
   Integrations Section
   ============================================================ */

.integrations-section {
  background-color: #faf8f5;
  padding: 5rem 2rem;
  font-family: sans-serif;
}

.integrations-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

/* Badge */
.integrations-badge {
  display: inline-flex;
  align-items: center;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
}

/* Heading */
.integrations-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

/* Description */
.integrations-description {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* Featured row (Zapier / Salesforce / HubSpot) */
.integrations-featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Secondary logos grid */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  width: 100%;
}

/* Placeholder boxes */
.partner-logo-placeholder {
  background-color: #f0ece6;
  border: 1px solid #e2ddd6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #9ca3af;
  font-weight: 500;
  aspect-ratio: 1 / 1;
  min-width: 52px;
}

.partner-logo-lg {
  aspect-ratio: auto;
  width: 110px;
  height: 44px;
  border-radius: 8px;
  font-size: 0.8rem;
}

/* API callout banner */
.integrations-api-banner {
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
  margin-top: 0.5rem;
}

.integrations-api-text {
  flex: 1;
}

.integrations-api-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.integrations-api-desc {
  color: #9ca3af;
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.integrations-api-code {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-family: monospace;
  font-size: 0.8rem;
  white-space: nowrap;
}

.api-method {
  color: #f74000;
  font-weight: 700;
}

.api-endpoint {
  color: #d1d5db;
}

/* Responsive */
@media (max-width: 780px) {
  .integrations-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 560px) {
  .integrations-title {
    font-size: 2rem;
  }

  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .integrations-api-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Setup Section
   ============================================================ */

.setup-section {
  background-color: #ffffff;
  padding: 5rem 2rem;
  font-family: sans-serif;
}

.setup-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.setup-header {
  text-align: center;
  max-width: 640px;
}

.setup-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.18;
  margin: 0 0 1.25rem;
}

.setup-description {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* 4-column grid override for setup */
.setup-grid {
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

/* Step number badge */
.setup-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f74000;
  background-color: rgba(247, 64, 0, 0.1);
  border: 1px solid rgba(247, 64, 0, 0.25);
  margin-bottom: 0.75rem;
}

/* Active (first) card — solid orange */
.phone-card.setup-card.active {
  background-image: radial-gradient(circle, #EE7A1F, #F4580A);
  border-color: transparent;
}

.phone-card.setup-card.active .setup-step-number {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.phone-card.setup-card.active .card-title {
  color: #ffffff;
}

.phone-card.setup-card.active .card-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 900px) {
  .setup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .setup-title {
    font-size: 2rem;
  }

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


/* ============================================================ */
/* Review Section  */
/* ============================================================= */


/* ============================================================
   reviews.css — Section "Trusted by growing businesses"
   ============================================================ */

/* ---- Wrapper principal ---- */
.reviews-section {
  background-color: #f3f4f6;
  /* bg-gray-100 */
  margin-top: 1.5rem;
  /* mt-6 */
}

@media (min-width: 640px) {
  .reviews-section {
    margin-top: 2.5rem;
    /* sm:mt-10 */
  }
}

/* ---- Badge "Why us" ---- */
.reviews-badge-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  /* pt-8 */
  margin-bottom: 1.25rem;
  /* mb-5 */
}

@media (min-width: 640px) {
  .reviews-badge-wrapper {
    padding-top: 2.5rem;
    /* sm:pt-10 */
  }
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  background-color: #111827;
  /* bg-gray-900 */
  color: #ffffff;
  font-size: 0.75rem;
  /* text-xs */
  font-weight: 600;
  /* font-semibold */
  padding: 0.375rem 1rem;
  /* py-1.5 px-4 */
  border-radius: 9999px;
  /* rounded-full */
  letter-spacing: 0.05em;
  /* tracking-wide */
}

/* ---- Titre ---- */
.reviews-title {
  font-size: 2.25rem;
  /* text-4xl */
  font-weight: 700;
  text-align: center;
  color: #111827;
  /* text-gray-900 */
  margin-bottom: 2.5rem;
  /* mb-10 */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  /* px-6 */
}

@media (min-width: 1024px) {
  .reviews-title {
    font-size: 3rem;
    /* lg:text-5xl */
    margin-bottom: 4rem;
    /* sm:mb-16 */
  }
}

/* ---- Zone des rangées ---- */
.reviews-rows-wrapper {
  position: relative;
  padding-bottom: 2.5rem;
  /* pb-10 */
}

/* ---- Effet de fondu sur les bords (fade-edges) ---- */
.fade-edges {
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

/* ---- Rangée de scroll ---- */
.scroll-row {
  overflow: hidden;
  width: 100%;
}

.scroll-row .scroll-track {
  display: flex;
  gap: 1.25rem;
  /* gap-5 */
  padding-top: 1rem;
  /* py-4 */
  padding-bottom: 1rem;
  padding-left: 1rem;
  /* px-4 */
  padding-right: 1rem;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

@media (min-width: 640px) {
  .scroll-row .scroll-track {
    padding-left: 60px;
    /* sm:px-[60px] */
    padding-right: 60px;
  }
}

/* Rangée inversée */
.scroll-row-reverse .scroll-track {
  animation: scrollRight 40s linear infinite;
}

/* Pause au survol */
.scroll-row:hover .scroll-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ---- Card review ---- */
.review-card {
  background-color: #ffffff;
  border-radius: 1rem;
  /* rounded-2xl */
  padding: 1.5rem;
  /* p-6 */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  /* shadow-sm */
  border: 1px solid #d1d5db;
  /* border-gray-300 */
  width: 85vw;
  /* w-[85vw] */
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .review-card {
    width: 550px;
    /* sm:w-[550px] */
  }
}

/* Variante largeur moyenne (rangée 2) */
.review-card.review-card--md {
  width: 85vw;
}

@media (min-width: 640px) {
  .review-card.review-card--md {
    width: 500px;
    /* sm:w-[500px] */
  }
}

/* Opacité réduite sur desktop pour les cards de fond */
@media (min-width: 768px) {
  .review-card.review-card--dimmed {
    opacity: 0.4;
    /* md:opacity-40 */
  }
}

/* ---- En-tête de la card (avatar + nom) ---- */
.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* gap-3 */
  margin-bottom: 1rem;
  /* mb-4 */
}

.review-card-header--mb5 {
  margin-bottom: 1.25rem;
  /* mb-5 */
}

/* ---- Avatar générique ---- */
.review-avatar {
  width: 2.25rem;
  /* w-9 */
  height: 2.25rem;
  /* h-9 */
  border-radius: 9999px;
  background-color: #e5e7eb;
  /* bg-gray-200 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  /* text-gray-500 */
  flex-shrink: 0;
}

/* Variante taille medium */
.review-avatar--md {
  width: 2.5rem;
  /* w-10 */
  height: 2.5rem;
  /* h-10 */
  font-size: 0.875rem;
}

/* Variante avec image */
.review-avatar--img {
  overflow: hidden;
}

.review-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Couleurs des avatars */
.review-avatar--orange {
  background-color: #ffedd5;
  /* bg-orange-100 */
  color: #f97316;
}

.review-avatar--yellow {
  background-color: #fef9c3;
  /* bg-yellow-100 */
  color: #ca8a04;
}

.review-avatar--purple {
  background-color: #f3e8ff;
  /* bg-purple-100 */
  color: #a855f7;
  /* text-purple-500 */
}

.review-avatar--red {
  background-color: #fee2e2;
  /* bg-red-100 */
  color: #ef4444;
  /* text-red-500 */
}

.review-avatar--gray {
  background-color: #f3f4f6;
  /* bg-gray-100 */
  color: #4b5563;
  /* text-gray-600 */
}

/* ---- Infos auteur ---- */
.review-author-name {
  font-weight: 600;
  color: #111827;
  /* text-gray-900 */
  font-size: 0.875rem;
  /* text-sm */
  margin: 0;
}

.review-author-time {
  color: #9ca3af;
  /* text-gray-400 */
  font-size: 0.75rem;
  /* text-xs */
  margin: 0;
}

/* ---- Texte du review ---- */
.review-text {
  color: #4b5563;
  /* text-gray-600 */
  font-size: 0.875rem;
  /* text-sm */
  line-height: 1.625;
  /* leading-relaxed */
  margin: 0;
}