/* ═══════════════════════════════════════════════
 * AME Custom Theme - Homepage Styles
 *
 * Sections: Hero, Stats, Univers, Avantages,
 * Temoignages, FAQ, Blog Preview, Agence.
 *
 * Uses CSS variables from style.css / base.css.
 * ═══════════════════════════════════════════════ */


/* ─────────────────────────────────────────────
 * 1. HERO
 * ───────────────────────────────────────────── */
.hero {
  background: var(--ame-fond-clair);
  padding: 180px 40px 0;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* ── Hero Text (left) ── */
.hero__title {
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.hero__check-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ame-lime);
  flex-shrink: 0;
}

/* Google badge pill */
.hero__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--ame-blanc);
  border: 1px solid var(--ame-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
}

.hero__google-logo {
  flex-shrink: 0;
}

.hero__google-score {
  font-weight: 900;
  font-size: 16px;
  color: var(--ame-bleu-nuit);
}

.hero__google-stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 1px;
}

.hero__google-count {
  color: #888;
  font-size: 13px;
}

/* ── Hero Form (right) ── */
.hero__form-wrap {
  position: sticky;
  top: 120px;
}

.hero__form {
  background: var(--ame-blanc);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 30px rgba(0, 0, 0, 0.06);
}

.hero__form-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}

.hero__form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.hero__form-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

.hero__rgpd {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

.hero__rgpd input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--ame-lavande);
}

.hero__rgpd a {
  color: var(--ame-lavande);
  text-decoration: underline;
}

.hero__legal {
  font-size: 11px;
  color: #999;
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ── Reassurance Image Row ── */
.hero__reassurance {
  padding: 60px 40px 80px;
  background: var(--ame-fond-clair);
}

.hero__reassurance-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 360px;
}

.hero__reassurance-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__reassurance-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.hero__reassurance-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
  z-index: 2;
  flex-wrap: wrap;
}

.hero__badge--glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: var(--ame-blanc);
  font-size: 13px;
  font-weight: 600;
}

.hero__badge--glass svg {
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────
 * 2. STATS
 * ───────────────────────────────────────────── */
.stats {
  background: var(--ame-blanc);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: var(--ame-fond-card);
  border: 1px solid var(--ame-border-lavande);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.stats__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.stats__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 16px;
}

.stats__icon--lime {
  background: rgba(193, 255, 114, 0.2);
  color: #5a8a1a;
}

.stats__icon--lavande {
  background: rgba(212, 194, 252, 0.25);
  color: var(--ame-lavande);
}

.stats__number {
  font-size: 36px;
  font-weight: 900;
  color: var(--ame-bleu-nuit);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats__label {
  font-size: 14px;
  color: #888;
}


/* ─────────────────────────────────────────────
 * 3. UNIVERS
 * ───────────────────────────────────────────── */
.univers {
  background: var(--ame-fond-clair);
}

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

.univers__card {
  background: var(--ame-blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ame-border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.univers__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.univers__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.univers__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.univers__card:hover .univers__img-wrap img {
  transform: scale(1.05);
}

.univers__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.univers__badge--lavande {
  background: var(--ame-lavande-clair);
  color: var(--ame-bleu-nuit);
}

.univers__body {
  padding: 24px;
}

.univers__card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ame-bleu-nuit);
}

.univers__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.univers__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
}

.univers__arrow {
  color: var(--ame-lime);
  font-weight: 700;
  flex-shrink: 0;
}

.univers__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.3s var(--ease-out);
}

.univers__link:hover {
  gap: 10px;
}

.univers__link--lavande {
  color: var(--ame-lavande);
}


/* ─────────────────────────────────────────────
 * 4. AVANTAGES
 * ───────────────────────────────────────────── */
.avantages {
  background: var(--ame-blanc);
}

.avantages__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.avantages__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.avantages__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.avantages__card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--ame-fond-card);
  border: 1px solid var(--ame-border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.avantages__card:hover {
  border-color: var(--ame-lime);
  transform: translateX(4px);
}

.avantages__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 255, 114, 0.2);
  border-radius: 12px;
  color: #5a8a1a;
}

.avantages__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ame-bleu-nuit);
  margin-bottom: 4px;
}

.avantages__card-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


/* ─────────────────────────────────────────────
 * 5. TEMOIGNAGES
 * ───────────────────────────────────────────── */
.temoignages {
  background: var(--ame-fond-clair);
  overflow: hidden;
}

.temoignages__inner .section-title {
  text-align: center;
  margin-bottom: 12px;
}

/* Google header */
.temoignages__google-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--ame-blanc);
  border: 1px solid var(--ame-border);
  border-radius: var(--radius-md);
}

.temoignages__google-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.temoignages__google-logo {
  flex-shrink: 0;
}

.temoignages__score {
  font-size: 42px;
  font-weight: 900;
  color: var(--ame-bleu-nuit);
  line-height: 1;
}

.temoignages__stars {
  color: #FBBF24;
  font-size: 20px;
  letter-spacing: 2px;
}

.temoignages__count {
  font-size: 14px;
  color: #888;
}

.temoignages__google-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.temoignages__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--ame-fond-card);
  border: 1px solid var(--ame-border-lavande);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ame-bleu-nuit);
}

/* Scrolling columns */
.temoignages__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: 600px;
  overflow: hidden;
  position: relative;
}

/* Mask top & bottom */
.temoignages__columns::before,
.temoignages__columns::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 8%;
  z-index: 3;
  pointer-events: none;
}

.temoignages__columns::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ame-fond-clair), transparent);
}

.temoignages__columns::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ame-fond-clair), transparent);
}

.temoignages__col {
  overflow: hidden;
  position: relative;
}

.temoignages__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--scroll-duration);
}

.temoignages__track--down {
  animation-name: scrollDown;
}

.temoignages__track--up {
  animation-name: scrollUp;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollUp {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Card */
.temoignages__card {
  background: var(--ame-blanc);
  border: 1px solid var(--ame-border);
  border-radius: var(--radius-md);
  padding: 20px;
  flex-shrink: 0;
}

.temoignages__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.temoignages__card-stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 1px;
}

.temoignages__card-g {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4285F4;
  color: var(--ame-blanc);
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
}

.temoignages__card-text {
  font-size: 14px;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 14px;
}

.temoignages__card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.temoignages__card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ame-blanc);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.temoignages__card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ame-bleu-nuit);
  display: block;
}

.temoignages__card-meta {
  font-size: 12px;
  color: #999;
  display: block;
}


/* ─────────────────────────────────────────────
 * 6. FAQ
 * ───────────────────────────────────────────── */
.faq {
  background: var(--ame-blanc);
}

.faq__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.faq__image {
  position: sticky;
  top: 100px;
}

.faq__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--ame-blanc);
  border: 1px solid var(--ame-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item:hover {
  border-color: var(--ame-lavande-clair);
}

.faq__item.is-open {
  border-color: var(--ame-lavande);
  box-shadow: 0 2px 12px rgba(153, 143, 199, 0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-stack);
  font-size: 15px;
  font-weight: 700;
  color: var(--ame-bleu-nuit);
  gap: 16px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--ame-lavande);
}

.faq__question-text {
  flex: 1;
}

.faq__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--ame-lavande);
  background: #f0eef5;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.3s ease, color 0.3s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--ame-lavande);
  color: var(--ame-blanc);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
  padding: 0 20px;
}

.faq__item.is-open .faq__answer {
  max-height: 500px;
  padding: 0 20px 16px;
}

.faq__answer[hidden] {
  display: block !important;
  max-height: 0;
  padding: 0 20px;
}

.faq__answer p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.faq__answer strong {
  color: var(--ame-bleu-nuit);
  font-weight: 600;
}


/* ─────────────────────────────────────────────
 * 7. BLOG PREVIEW
 * ───────────────────────────────────────────── */
.blog-preview {
  background: var(--ame-fond-clair);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-preview__card {
  background: var(--ame-blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ame-border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.blog-preview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.blog-preview__img-link {
  display: block;
  height: 200px;
  overflow: hidden;
}

.blog-preview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.blog-preview__card:hover .blog-preview__img {
  transform: scale(1.05);
}

.blog-preview__body {
  padding: 24px;
}

.blog-preview__tag {
  display: inline-block;
  padding: 4px 12px;
  background: #ece6fc;
  color: var(--ame-bleu-nuit);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  transition: background 0.2s ease;
}

.blog-preview__tag:hover {
  background: var(--ame-lavande-clair);
}

.blog-preview__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ame-bleu-nuit);
}

.blog-preview__title a {
  transition: color 0.2s ease;
}

.blog-preview__title a:hover {
  color: var(--ame-lavande);
}

.blog-preview__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.blog-preview__footer {
  text-align: center;
  margin-top: 40px;
}


/* ─────────────────────────────────────────────
 * 8. AGENCE
 * ───────────────────────────────────────────── */
.agence {
  background: var(--ame-blanc);
}

.agence__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.agence__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.agence__name {
  font-size: 24px;
  font-weight: 800;
  color: var(--ame-bleu-nuit);
  margin-bottom: 28px;
}

.agence__rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agence__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.agence__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ece6fc;
  border-radius: 12px;
  color: var(--ame-lavande);
}

.agence__row-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 2px;
}

.agence__row-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ame-bleu-nuit);
}

.agence__row-value--link {
  transition: color 0.2s ease;
}

.agence__row-value--link:hover {
  color: var(--ame-lavande);
}


/* ═══════════════════════════════════════════════
 * RESPONSIVE - TABLET (768 - 1023px)
 * ═══════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Hero */
  .hero {
    padding: 140px 24px 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__form-wrap {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__reassurance {
    padding: 40px 24px 60px;
  }

  .hero__reassurance-inner {
    height: 280px;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Univers */
  .univers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .univers__grid .univers__card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Avantages */
  .avantages__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .avantages__image img {
    height: 300px;
  }

  /* Temoignages */
  .temoignages__columns {
    grid-template-columns: repeat(2, 1fr);
    height: 500px;
  }

  .temoignages__columns .temoignages__col:last-child {
    display: none;
  }

  /* FAQ */
  .faq__split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq__image {
    position: static;
    display: none;
  }

  .faq__question {
    padding: 14px 16px;
    font-size: 14px;
  }

  .faq__answer {
    padding: 0 16px;
  }

  .faq__item.is-open .faq__answer {
    padding: 0 16px 14px;
  }

  .faq__icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  /* Blog Preview */
  .blog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-preview__grid .blog-preview__card:last-child {
    display: none;
  }

  /* Agence */
  .agence__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .agence__image img {
    height: 300px;
  }
}


/* ═══════════════════════════════════════════════
 * RESPONSIVE - MOBILE (<768px)
 * ═══════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Hero */
  .hero {
    padding: 120px 16px 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn-primary,
  .hero__ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero__google-badge {
    width: 100%;
    justify-content: center;
  }

  .hero__form-wrap {
    position: static;
  }

  .hero__form {
    padding: 24px 20px;
  }

  .hero__form-title {
    font-size: 20px;
  }

  .hero__reassurance {
    padding: 32px 16px 48px;
  }

  .hero__reassurance-inner {
    height: 220px;
    border-radius: 16px;
  }

  .hero__reassurance-overlay {
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
  }

  .hero__badge--glass {
    padding: 8px 12px;
    font-size: 11px;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats__card {
    padding: 20px 12px;
  }

  .stats__number {
    font-size: 28px;
  }

  .stats__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  /* Univers */
  .univers__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .univers__grid .univers__card:last-child {
    max-width: none;
  }

  .univers__img-wrap {
    height: 180px;
  }

  /* Avantages */
  .avantages__split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .avantages__image img {
    height: 240px;
  }

  .avantages__card {
    padding: 20px;
  }

  /* Temoignages */
  .temoignages__google-header {
    flex-direction: column;
    text-align: center;
  }

  .temoignages__google-left {
    justify-content: center;
  }

  .temoignages__google-right {
    justify-content: center;
  }

  .temoignages__score {
    font-size: 32px;
  }

  .temoignages__columns {
    grid-template-columns: 1fr 1fr;
    height: 450px;
    gap: 10px;
  }

  .temoignages__columns .temoignages__col:last-child {
    display: none;
  }

  .temoignages__card {
    padding: 14px;
  }

  .temoignages__card-text {
    font-size: 13px;
  }

  .temoignages__card-avatar {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .temoignages__card-name {
    font-size: 13px;
  }

  .temoignages__card-meta {
    font-size: 11px;
  }

  /* FAQ */
  .faq__split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq__image {
    display: none;
  }

  .faq__question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq__answer p {
    font-size: 14px;
  }

  /* Blog Preview */
  .blog-preview__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-preview__grid .blog-preview__card:last-child {
    display: block;
  }

  .blog-preview__img-link {
    height: 180px;
  }

  .blog-preview__body {
    padding: 20px;
  }

  /* Agence */
  .agence__split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .agence__image img {
    height: 240px;
  }

  .agence__name {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .agence__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .agence__row-value {
    font-size: 14px;
  }
}


/* ═══════════════════════════════════════════════
 * RESPONSIVE - SMALL MOBILE (<400px)
 * ═══════════════════════════════════════════════ */
@media (max-width: 399px) {

  .hero__reassurance-overlay {
    flex-direction: column;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stats__number {
    font-size: 24px;
  }

  .stats__label {
    font-size: 12px;
  }

  .temoignages__columns {
    grid-template-columns: 1fr;
    height: 400px;
  }

  .temoignages__columns .temoignages__col:nth-child(2),
  .temoignages__columns .temoignages__col:last-child {
    display: none;
  }
}
