.analyse {
  background: #f5f2ed;
  color: #111;
}

/* ====== ANALYSE GRID ====== */
.analyse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.analyse-card {
  background: #fff;
  color: #111;
  padding: 35px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: 0.3s ease;
 display: flex;
  flex-direction: column;
  min-height: 560px;   /* hauteur identique */
}

.analyse-card:hover {
  transform: translateY(-6px);
}

.analyse-card.recommended {
  border: 2px solid var(--gold);
}

/* ====== TITRE ====== */
.analyse-card h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  font-weight: 600;
}

/* ====== META LIGNES LABEL / VALEUR ====== */
.analyse-meta {
  margin-bottom: 18px;
}

.meta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.meta-label {
  font-weight: 600;
}

.meta-value {
  text-align: right;
}

/* ====== DESCRIPTION ====== */
.analyse-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #333;
}

/* ====== POUR / CONTRE ====== */
.analyse-block {
  margin-top: 15px;
}

.analyse-block ul {
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
}

.analyse-block li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

/* ====== VOIR PLUS ====== */
.voir-plus {
  margin-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gold);
  cursor: pointer;
  font-weight: 500;
}

/* ====== AVIS PREMIUM ====== */
.testimonial.premium {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote {
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #222;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.9rem;
}

.testimonial-footer span {
  color: #777;
  display: block;
  margin-top: 4px;
}

.badge.small {
  font-size: 0.7rem;
  padding: 4px 10px;
}

/* ====== CHECK / CROSS ====== */
.green-check { color: #2ecc71; font-weight: 600; }
.red-cross { color: #e74c3c; font-weight: 600; }
/* ====== TOP 3 - BORDURES OR / ARGENT / BRONZE ====== */

.analyse-grid .analyse-card:nth-child(1) {
  border: 3px solid #c9a86a; /* OR */
}

.analyse-grid .analyse-card:nth-child(2) {
  border: 3px solid #cfcfcf; /* ARGENT */
}

.analyse-grid .analyse-card:nth-child(3) {
  border: 3px solid #cd7f32; /* BRONZE */
}
.badge-reco {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #c9a86a, #e6d3a3);
  color: #111;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-box {
  margin-top: auto;   /* ✅ pousse le bouton en bas */
  text-align: center;
  padding-top: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 11px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2.5px solid var(--gold); /* ✅ contour plus épais */
  color: var(--gold);
  transition: 0.25s ease;
  background: transparent;
}

.cta-btn:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}
/* ===== FOOTER PREMIUM ===== */

.site-footer {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #ddd;
  padding: 80px 20px 30px;
  font-family: Inter, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.footer-col h3 {
  font-family: Playfair Display, serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-col h3 span {
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  color: var(--gold);
}

.footer-col p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: #ddd;
  opacity: 0.85;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1.5px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-box p {
  margin-bottom: 20px;
}

.footer-cta {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  background: var(--gold);
  color: #111;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 60px;
  padding-top: 25px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #777;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #777;
}

.footer-links a:hover {
  color: var(--gold);
}
/* ===== HEADER PREMIUM ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: Playfair Display, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.logo a span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 0.9rem;
  color: #ddd;
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1.5px;
  background: var(--gold);
  transition: 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Décalage du hero à cause du header fixe */
.hero {
  padding-top: 120px;
}


/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}
/* ✅ Mobile : carte recommandée affichée en premier */
@media (max-width: 768px) {

  #recommandations .cards-3 {
    display: flex;
    flex-direction: column;
  }

  #recommandations .card.highlight {
    order: -1; /* ✅ passe devant les autres */
  }

}
/* Descendre légèrement le contenu du hero sous le menu */
.hero-content {
  margin-top: 60px; /* ajuste à 40 / 80px si tu veux plus ou moins d'espace */
}
.testimonials {
  padding-top: 80px;
  padding-bottom: 100px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  background: #f9f5ee;
  padding: 6px 12px;
  border-radius: 8px;
  width: fit-content;
  border: 1px solid rgba(0,0,0,0.05);
}

.google-rating .star {
  color: var(--gold);
  font-size: 1.3rem;
  margin-right: 4px;
}

.google-rating .rating-score {
  font-weight: 700;
  font-size: 1.05rem;
  color: #111;
}

.google-rating .rating-label {
  font-size: 0.85rem;
  color: #777;
  margin-left: 4px;
}
.analyse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
  align-items: stretch; /* ✅ toutes les cartes prennent la même hauteur */
}
/* ===== FAQ SECTION ===== */
section.faq.section {
  background: #f5f2ed !important;
  color: #111;
}

/* Liste */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Item */
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* Question cliquable */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: Playfair Display, serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

/* Icône */
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

/* Réponse */
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: #333;
}

/* Actif */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.hero-lead-form {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-form-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(15, 63, 58, 0.85);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(214, 177, 106, 0.4);
    backdrop-filter: blur(6px);
    max-width: 900px;
    width: 100%;
}

.hero-form-wrapper input {
    flex: 1;
    min-width: 160px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(214, 177, 106, 0.4);
    background: transparent;
    color: #ffffff;
    font-size: 14px;
}

.hero-form-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-form-wrapper input:focus {
    outline: none;
    border-color: #d6b16a;
}

.hero-form-wrapper button {
    background: #d6b16a;
    color: #0f3f3a;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-form-wrapper button:hover {
    background: #e5c078;
    transform: translateY(-2px);
}

.hero-lead-form {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.hero-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(15, 63, 58, 0.88);
    padding: 22px;
    border-radius: 14px;
    border: 1px solid rgba(214, 177, 106, 0.4);
    backdrop-filter: blur(8px);
    max-width: 900px;
    width: 100%;
}

.hero-form-wrapper input,
.hero-form-wrapper textarea {
    flex: 1;
    min-width: 160px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(214, 177, 106, 0.35);
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    resize: none;
}

.hero-form-wrapper textarea {
    flex-basis: 100%;
}

.hero-form-wrapper input::placeholder,
.hero-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.hero-form-wrapper input:focus,
.hero-form-wrapper textarea:focus {
    outline: none;
    border-color: #d6b16a;
}

.hero-form-wrapper button {
    background: #d6b16a;
    color: #0f3f3a;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-form-wrapper button:hover {
    background: #e5c078;
    transform: translateY(-2px);
}

.hero-lead-form {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.hero-form-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    background: rgba(15, 63, 58, 0.88);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(214, 177, 106, 0.4);
    backdrop-filter: blur(8px);
    max-width: 900px;
    width: 100%;
}

/* Champs */
.hero-form-wrapper input,
.hero-form-wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(214, 177, 106, 0.35);
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    resize: none;
}

/* Textarea prend toute la largeur */
.hero-form-wrapper textarea {
    grid-column: span 2;
}

/* Bouton prend toute la largeur */
.hero-form-wrapper button {
    grid-column: span 2;
    background: #d6b16a;
    color: #0f3f3a;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-form-wrapper button:hover {
    background: #e5c078;
    transform: translateY(-2px);
}

/* Responsive mobile */
@media (max-width: 768px) {

    .hero-form-wrapper {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .hero-form-wrapper textarea,
    .hero-form-wrapper button {
        grid-column: span 1;
    }

}
