/* ============================================================
   Landing Menuiserie — EIS Isolation
   Mobile-first | Breakpoints : 768px / 1200px
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --green:        #45AC34;
    --green-dark:   #2d7a20;
    --green-pale:   #f0faf0;
    --white:        #FFFFFF;
    --gray-dark:    #1a1a1a;
    --gray-light:   #f7f7f7;
    --red-pale:     #fff5f5;
    --red:          #e74c3c;
    --orange:       #f39c12;
    --text:         #333333;
    --text-light:   #666666;

    --font-title:   'Plus Jakarta Sans', sans-serif;
    --font-body:    'Inter', sans-serif;

    --radius:       6px;
    --shadow:       0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.16);

    --max-width:    1100px;
    --px-mobile:    20px;
    --px-desktop:   40px;
}

/* ── Reset minimal ─────────────────────────────────────────── */
.landing-toiture *,
.landing-toiture *::before,
.landing-toiture *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.landing-toiture {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ── Conteneur section ─────────────────────────────────────── */
.lrt-section {
    width: 100%;
    padding: 80px var(--px-mobile);
}

.lrt-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

/* ============================================================
   HEADER MINIMAL
   ============================================================ */
.lrt-header {
    background: var(--white);
    border-top: 8px solid var(--green);
    padding: 18px var(--px-mobile);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.lrt-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lrt-logo {
    text-decoration: none;
    display: inline-block;
}

.lrt-header .header-logo {
    height: 55px;
    width: auto;
    display: block;
}

.lrt-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    transition: color .2s;
}

.lrt-phone:hover {
    color: var(--green-dark);
}

.lrt-phone-icon {
    font-size: 20px;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.lrt-hero {
    background: linear-gradient(135deg, #f8fff6 0%, #ffffff 60%, #f0f7ff 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: var(--px-mobile);
    padding-right: var(--px-mobile);
}

/* Hero avec image de fond */
.lrt-hero--bg {
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://www.eis-renovation.com/wp-content/uploads/2026/01/Renovation-energetique-globale.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Texte hero en blanc sur fond image */
.lrt-hero--bg .lrt-hero-content h1 {
    color: #ffffff;
}

.lrt-hero--bg .lrt-hero-content h1 em {
    color: #45AC34;
}

.lrt-hero--bg .lrt-bullets li {
    color: #ffffff;
}

/* Checkmarks restent verts */
.lrt-hero--bg .lrt-bullet-icon {
    color: #45AC34;
}

/* Sous-titre hero */
.lrt-hero-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    margin-top: -12px;
    line-height: 1.5;
}

.lrt-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* Colonne gauche */
.lrt-hero-content h1 {
    font-family: var(--font-title);
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 800;
    color: var(--gray-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.lrt-hero-content h1 em {
    font-style: normal;
    color: var(--green);
}

.lrt-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.lrt-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-dark);
}

.lrt-bullet-icon {
    color: var(--green);
    font-size: 18px;
    line-height: 1.5;
    flex-shrink: 0;
}

/* Badges de confiance hero */
.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px 16px;
  width: fit-content;
}

.hero-rating .stars {
  color: #FFD700;
  font-size: 18px;
  letter-spacing: 2px;
}

.hero-rating .rating-text {
  color: white;
  font-size: 15px;
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.hero-badge .badge-icon {
  font-size: 18px;
}

.hero-logo-cert img {
  height: 60px;
  width: auto;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
}

/* Colonne droite — Formulaire */
.lrt-hero-form {
    background: white !important;
    border-radius: 12px !important;
    padding: 32px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15) !important;
    border-top: 4px solid #45AC34 !important;
}

.lrt-hero-form .wpcf7-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.lrt-hero-form .wpcf7-form label {
  display: flex !important;
  flex-direction: column !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #444 !important;
  gap: 4px !important;
  margin-bottom: 0 !important;
}

.lrt-hero-form .wpcf7-form input[type="text"],
.lrt-hero-form .wpcf7-form input[type="email"],
.lrt-hero-form .wpcf7-form input[type="tel"],
.lrt-hero-form .wpcf7-form textarea {
  width: 100% !important;
  padding: 10px 14px !important;
  border: 1.5px solid #ddd !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  background: #fafafa !important;
  color: #1a1a1a !important;
  transition: border-color 0.2s !important;
  box-sizing: border-box !important;
}

.lrt-hero-form .wpcf7-form input:focus,
.lrt-hero-form .wpcf7-form textarea:focus {
  border-color: #45AC34 !important;
  outline: none !important;
  background: #fff !important;
}

.lrt-hero-form .wpcf7-form textarea {
  min-height: 50px !important;
  max-height: 50px !important;
  height: 50px !important;
  resize: none !important;
}

.lrt-hero-form .wpcf7-form input[type="submit"] {
  background: #45AC34 !important;
  color: white !important;
  border: none !important;
  padding: 15px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  width: 100% !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  transition: background 0.2s !important;
}

.lrt-hero-form .wpcf7-form input[type="submit"]:hover {
  background: #2d7a20 !important;
}

.lrt-form-label {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
    display: block;
}

.lrt-form-disclaimer {
    font-size: 12px;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

/* ============================================================
   TITRES H2 — Ligne décorative verte via ::after
   ============================================================ */
.lrt-section h2,
.lrt-before-after h2,
.lrt-offer h2,
.lrt-proof h2,
.lrt-faq h2,
.section-zone-t h2 {
    font-family: var(--font-title);
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    text-align: center;
}

.lrt-section h2::after,
.lrt-before-after h2::after,
.lrt-offer h2::after,
.lrt-proof h2::after,
.lrt-faq h2::after,
.section-zone-t h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #45AC34;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Titre section problème — blanc sur fond sombre */
.lrt-problem h2 {
    color: #ffffff;
    text-align: left;
}

.lrt-problem h2::after {
    margin-left: 0;
    margin-right: auto;
}

/* ============================================================
   SECTION 2 — PROBLÈME (fond sombre)
   ============================================================ */
.lrt-problem {
    background: #1e2d1e;
}

.lrt-problem-intro {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    max-width: 680px;
}

.lrt-problem-subtitle {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lrt-warning-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.lrt-warning-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.lrt-warning-icon {
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
}

.lrt-problem-cta-box {
    background: rgba(255,255,255,0.08);
    border-left: 5px solid var(--orange);
    border-radius: var(--radius);
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

/* ============================================================
   SECTION 3 — AVANT / APRÈS
   ============================================================ */
.lrt-before-after {
    background: var(--white);
}

.lrt-ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
    margin-top: 36px;
}

.lrt-ba-card {
    border-radius: 10px;
    padding: 28px 24px;
    border: 1.5px solid;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lrt-ba-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.14);
}

.lrt-ba-card--before {
    background: var(--red-pale);
    border-color: var(--red);
}

.lrt-ba-card--after {
    background: var(--green-pale);
    border-color: var(--green);
}

.lrt-ba-card-title {
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.lrt-ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lrt-ba-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.5;
}

.lrt-ba-card--before .lrt-ba-list li::before {
    content: "✗";
    color: var(--red);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lrt-ba-card--after .lrt-ba-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lrt-ba-conclusion {
    text-align: center;
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    background: var(--green-pale);
    border-radius: var(--radius);
    padding: 18px 24px;
}

/* ============================================================
   SECTION 4 — L'OFFRE
   ============================================================ */
.lrt-offer {
    background: var(--white);
    border-top: 1px solid #eee;
}

.lrt-offer-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 28px;
    text-align: center;
}

.lrt-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.lrt-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.5;
}

.lrt-check-icon {
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lrt-offer-why {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 28px 24px;
    border-left: 5px solid var(--green);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lrt-offer-why:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.14);
}

.lrt-offer-why-title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

/* ============================================================
   SECTION — SERVICES GRID (cards)
   ============================================================ */
.services-grid-t {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card-t {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 4px solid #45AC34;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.service-card-t:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon-t {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-card-t h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.service-card-t p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid-t {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid-t {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SECTION 5 — PREUVES & CRÉDIBILITÉ
   ============================================================ */
.lrt-proof {
    background: var(--gray-light);
    text-align: center;
}

.lrt-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 50px;
    padding: 10px 20px;
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    box-shadow: var(--shadow);
    margin-bottom: 28px;
    border: 1.5px solid #ffe066;
}

/* Badges distinctions */
.lrt-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

.lrt-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lrt-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.lrt-badge-icon {
    color: var(--green);
    font-size: 22px;
    flex-shrink: 0;
}

/* Avis Google — 2 colonnes desktop */
.lrt-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
    text-align: left;
}

.lrt-review-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lrt-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.14);
}

.lrt-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lrt-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lrt-review-meta {
    flex: 1;
}

.lrt-review-name {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-dark);
    line-height: 1.3;
}

.lrt-review-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

.lrt-proof-conclusion {
    text-align: center;
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
    margin-top: 8px;
}

/* ============================================================
   SECTION RÉALISATIONS MENUISERIE
   ============================================================ */
.section-toiture-info {
  background: #f7f7f7;
  padding: 80px 0;
  text-align: center;
}

.section-toiture-info h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-align: center !important;
  width: 100% !important;
}

.section-toiture-info h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #45AC34;
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-toiture-info .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--px-mobile);
}

.toiture-intro {
  max-width: 750px;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Grille 2 colonnes pour menuiserie */
.toiture-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.toiture-photo-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.toiture-photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.toiture-photo-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: left center;
  display: block;
}

@media (max-width: 768px) {
  .toiture-photos {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SECTION — ZONE D'INTERVENTION
   ============================================================ */
.section-zone-t {
    background: var(--white);
    text-align: center;
}

.section-zone-t h2 {
    margin-bottom: 12px;
}

.zone-subtitle-t {
    color: #666666;
    font-size: 18px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.zone-image-wrapper-t {
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.zone-image-wrapper-t img {
    width: 100%;
    height: auto;
    display: block;
}

.zone-tags-t {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.zone-tags-t span {
    background: #f0faf0;
    border: 2px solid #45AC34;
    color: #2d7a20;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, transform 0.2s;
}

.zone-tags-t span:hover {
    background: #d4f4cc;
    transform: translateY(-2px);
}

/* ============================================================
   SECTION 6 — FAQ
   ============================================================ */
.lrt-faq {
    background: var(--white);
}

/* Accordéons */
.lrt-accordion {
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.lrt-accordion.is-open {
    box-shadow: var(--shadow);
    border-color: var(--green);
}

.lrt-accordion-trigger {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-dark);
    transition: background .2s, color .2s;
}

.lrt-accordion-trigger:hover {
    background: var(--gray-light);
}

.lrt-accordion.is-open .lrt-accordion-trigger {
    color: var(--green);
    background: var(--green-pale);
}

.lrt-accordion-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--green);
    flex-shrink: 0;
    transition: transform .3s;
    line-height: 1;
}

.lrt-accordion.is-open .lrt-accordion-icon {
    transform: rotate(45deg);
}

.lrt-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.lrt-accordion-body-inner {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Encadré urgence */
.lrt-faq-urgency {
    margin-top: 36px;
    background: #fff8e1;
    border-left: 5px solid var(--orange);
    border-radius: var(--radius);
    padding: 20px 24px;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
    font-weight: 500;
}

/* ============================================================
   SECTION 7 — CTA FINAL
   ============================================================ */
.lrt-cta-section {
    background: #2d7a20;
    padding: 80px var(--px-mobile);
}

.lrt-cta-section .lrt-container {
    max-width: 780px;
}

.lrt-cta-section h2 {
    font-family: var(--font-title);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.3px;
    text-align: left;
}

.lrt-cta-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    margin: 16px 0 0;
    border-radius: 2px;
}

.lrt-urgency-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.lrt-urgency-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.lrt-urgency-list li::before {
    content: "⚠️";
    flex-shrink: 0;
}

.lrt-cta-form-wrap {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-subtitle-t {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 24px;
  font-style: italic;
}

.cta-intro-text-t {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   FOOTER MINIMAL
   ============================================================ */
.lrt-footer {
    background: var(--gray-dark);
    padding: 24px var(--px-mobile);
    text-align: center;
}

.lrt-footer p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
}

.lrt-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    transition: color .2s;
}

.lrt-footer a:hover {
    color: var(--white);
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (min-width: 768px) {
    .lrt-section {
        padding: 90px var(--px-desktop);
    }

    .lrt-hero {
        padding: 90px var(--px-desktop);
    }

    .lrt-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .lrt-ba-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* 2 avis côte à côte */
    .lrt-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .lrt-cta-section {
        padding: 90px var(--px-desktop);
    }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (min-width: 1200px) {
    .lrt-section {
        padding: 100px 60px;
    }

    .lrt-hero {
        padding: 100px 60px;
    }

    .lrt-hero-inner {
        grid-template-columns: 55% 42%;
        gap: 80px;
    }

    .lrt-cta-section {
        padding: 100px 60px;
    }
}
 SECTION 7 — CTA FINAL
   ============================================================ */
.lrv-cta-section {
    background: #2d7a20;
    padding: 80px var(--px-mobile);
}

.lrv-cta-section .lrv-container {
    max-width: 780px;
}

.lrv-cta-section h2 {
    font-family: var(--font-title);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.3px;
    text-align: left;
}

.lrv-cta-section h2::after {
    background: rgba(255,255,255,0.5);
    margin-left: 0;
    margin-right: auto;
}

.lrv-urgency-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.lrv-urgency-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.lrv-urgency-list li::before {
    content: "⚠️";
    flex-shrink: 0;
}

.lrv-cta-form-wrap {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ============================================================
   FOOTER MINIMAL
   ============================================================ */
.lrv-footer {
    background: var(--gray-dark);
    padding: 24px var(--px-mobile);
    text-align: center;
}

.lrv-footer p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.6;
}

.lrv-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    transition: color .2s;
}

.lrv-footer a:hover {
    color: var(--white);
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (min-width: 768px) {
    .lrv-section {
        padding: 90px var(--px-desktop);
    }

    .lrv-hero {
        padding: 90px var(--px-desktop);
    }

    .lrv-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .lrv-ba-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lrv-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .lrv-cta-section {
        padding: 90px var(--px-desktop);
    }
}

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (min-width: 1200px) {
    .lrv-section {
        padding: 100px 60px;
    }

    .lrv-hero {
        padding: 100px 60px;
    }

    .lrv-hero-inner {
        grid-template-columns: 55% 42%;
        gap: 80px;
    }

    .lrv-cta-section {
        padding: 100px 60px;
    }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.lrv-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================================
   CTA FINAL — SOUS-TITRE & INTRO
   ============================================================ */
.cta-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 24px;
  font-style: italic;
}
.cta-intro-text {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   CTA FOOTER — FORMULAIRE CF7
   ============================================================ */
.lrt-cta-form-wrap .wpcf7-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
.lrt-cta-form-wrap .wpcf7-form label {
  display: flex !important;
  flex-direction: column !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #444 !important;
  gap: 3px !important;
  margin-bottom: 0 !important;
}
.lrt-cta-form-wrap .wpcf7-form input[type="text"],
.lrt-cta-form-wrap .wpcf7-form input[type="email"],
.lrt-cta-form-wrap .wpcf7-form input[type="tel"],
.lrt-cta-form-wrap .wpcf7-form textarea {
  width: 100% !important;
  padding: 9px 14px !important;
  border: 1.5px solid #ddd !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  background: #fff !important;
  color: #1a1a1a !important;
  transition: border-color 0.2s !important;
  box-sizing: border-box !important;
}
.lrt-cta-form-wrap .wpcf7-form input:focus,
.lrt-cta-form-wrap .wpcf7-form textarea:focus {
  border-color: #45AC34 !important;
  outline: none !important;
}
.lrt-cta-form-wrap .wpcf7-form textarea {
  min-height: 50px !important;
  max-height: 50px !important;
  height: 50px !important;
  resize: none !important;
}
.lrt-cta-form-wrap .wpcf7-form input[type="submit"] {
  background: #45AC34 !important;
  color: white !important;
  border: none !important;
  padding: 15px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  margin-top: 6px !important;
}
.lrt-cta-form-wrap .wpcf7-form input[type="submit"]:hover {
  background: #2d7a20 !important;
}