/* ===========================================
   RENEUF LAB — HOMEPAGE STYLES  v1.1
   No font imports here — Baloo Thambi 2 is
   declared globally in style.css
   =========================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #fd5011;
  --navy:        #0f1f3d;
  --navy-light:  #152040;
  --white:       #ffffff;
  --gray-bg:     #f5f5f5;
  --gray-text:   #666;
  --gray-border: #e0e0e0;
  --radius:      16px;
  --max-width:   1200px;
}

.rl-page { font-family: 'Baloo Thambi 2', sans-serif; color: var(--navy); }
.rl-container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.rl-orange { color: var(--orange); }

/* Shared section labels */
.rl-section-eyebrow,
.rl-problem-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}
.rl-eyebrow-light { color: rgba(255,255,255,0.55); }

.rl-section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.rl-section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 12px auto 0;
}
.rl-title-light { color: #fff; }
.rl-title-light::after { background: var(--orange); }

/* Buttons */
.rl-btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.rl-btn-primary:hover { background: #e04610; transform: translateY(-2px); }

.rl-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.rl-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.rl-btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid var(--navy);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.rl-btn-outline-dark:hover { background: var(--navy); color: #fff; }

.rl-btn-white {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.rl-btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }


/* ===========================================
   1. HERO SLIDER
   =========================================== */

.rl-slide-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.rl-slide-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

.rl-hero {
  position: relative;
  aspect-ratio: 1779 / 629;
  max-width: 1200px;
  margin: 90px auto 32px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rl-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.8s ease; pointer-events: none;
}
.rl-slide.active { opacity: 1; pointer-events: auto; }
.rl-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 6s ease;
}
.rl-slide.active .rl-slide-bg { transform: scale(1); }
.rl-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,20,40,0.9) 40%, rgba(10,20,40,0.35) 100%);
}

.rl-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto; width: 100%; padding: 0 60px;
}
.rl-hero-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 16px; display: block;
}
.rl-hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.02;
  color: #fff; text-transform: uppercase; margin-bottom: 20px;
}
.rl-hero h1 span { color: var(--orange); }
.rl-hero p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.6; max-width: 460px; margin-bottom: 32px; }
.rl-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.rl-hero-dots { position: absolute; bottom: 36px; left: 60px; display: flex; gap: 10px; z-index: 5; }
.rl-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: background .3s, transform .3s; }
.rl-dot.active { background: var(--orange); transform: scale(1.3); }

.rl-hero-arrows { position: absolute; bottom: 28px; right: 40px; display: flex; gap: 10px; z-index: 5; }
.rl-arrow-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); background: transparent; color: #fff;
  font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.rl-arrow-btn:hover { background: var(--orange); border-color: var(--orange); }

.rl-hero-progress { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: rgba(255,255,255,0.15); z-index: 10; }
.rl-hero-progress-bar { height: 100%; width: 0%; background: var(--orange); box-shadow: 0 0 8px rgba(253,80,17,0.8); will-change: width; }

/* Hero slide 3 — Promise layout */
.rl-promise-slide {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max-width); margin: 0 auto; padding: 0 60px;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.rl-promise-eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 10px; display: block; text-align: center; }
.rl-promise-title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; text-transform: uppercase; color: #fff; text-align: center; line-height: 1.1; }
.rl-promise-green { color: #4caf50; }
.rl-promise-orange { color: var(--orange); }

.rl-promise-pillars { display: flex; align-items: center; gap: 0; }
.rl-promise-pillar { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 32px; }
.rl-pillar-circle {
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.rl-circle-blue  { background: rgba(59,130,246,0.15); border: 1.5px solid rgba(59,130,246,0.4); }
.rl-circle-green { background: rgba(76,175,80,0.15);  border: 1.5px solid rgba(76,175,80,0.4); }
.rl-circle-orange{ background: rgba(253,80,17,0.15);  border: 1.5px solid rgba(253,80,17,0.4); }
.rl-pillar-sep { width: 1px; height: 24px; margin-bottom: 12px; }
.rl-sep-blue   { background: rgba(59,130,246,0.5); }
.rl-sep-green  { background: rgba(76,175,80,0.5); }
.rl-sep-orange { background: rgba(253,80,17,0.5); }
.rl-pillar-name { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.rl-name-white { color: #fff; }
.rl-pillar-dash { width: 36px; height: 2px; margin-bottom: 14px; border-radius: 2px; }
.rl-dash-blue   { background: #3b82f6; }
.rl-dash-green  { background: #4caf50; }
.rl-dash-orange { background: var(--orange); }
.rl-pillar-sub { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.rl-sub-blue   { color: #3b82f6; }
.rl-sub-green  { color: #4caf50; }
.rl-sub-orange { color: var(--orange); }
.rl-pillar-vdivider { width: 1px; height: 200px; flex-shrink: 0; }
.rl-vdivider-blue-green  { background: linear-gradient(to bottom, #3b82f6 0%, #4caf50 100%); opacity: 0.35; }
.rl-vdivider-green-orange{ background: linear-gradient(to bottom, #4caf50 0%, #fd5011 100%); opacity: 0.35; }


/* ===========================================
   1b. NOS CATALOGUES HUB
   =========================================== */

.rl-catalogues-hub { background: #fff; padding: 80px 0; }

.rl-catalogues-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.rl-hub-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  padding: 40px 36px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.rl-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

/* Navy variant — Nos Services */
.rl-hub-card--navy { background: var(--navy) url('https://shop.reneuflab.com/wp-content/uploads/2026/05/srv.png') center/cover no-repeat; }
.rl-hub-card--navy .rl-hub-card-icon { background: rgba(255,255,255,0.1); }
.rl-hub-card--navy .rl-hub-card-icon svg { stroke: #fff; }
.rl-hub-card--navy .rl-hub-card-icon i { color: #fff; }
.rl-hub-card--navy .rl-hub-card-tag { color: rgba(255,255,255,0.45); }
.rl-hub-card--navy h3 { color: #fff; }
.rl-hub-card--navy p  { color: rgba(255,255,255,0.65); }
.rl-hub-card--navy .rl-hub-card-cta { color: rgba(255,255,255,0.85); }
.rl-hub-card--navy .rl-hub-card-cta:hover,
.rl-hub-card--navy:hover .rl-hub-card-cta { color: #fff; }

/* Orange variant — Nos Catégories */
.rl-hub-card--orange { background: var(--orange) url('https://shop.reneuflab.com/wp-content/uploads/2026/05/ctl.png') center/cover no-repeat; }
.rl-hub-card--orange .rl-hub-card-icon { background: rgba(255,255,255,0.18); }
.rl-hub-card--orange .rl-hub-card-icon svg { stroke: #fff; }
.rl-hub-card--orange .rl-hub-card-icon i { color: #fff; }
.rl-hub-card--orange .rl-hub-card-tag { color: rgba(255,255,255,0.55); }
.rl-hub-card--orange h3 { color: #fff; }
.rl-hub-card--orange p  { color: rgba(255,255,255,0.72); }
.rl-hub-card--orange .rl-hub-card-cta { color: rgba(255,255,255,0.85); }
.rl-hub-card--orange .rl-hub-card-cta:hover,
.rl-hub-card--orange:hover .rl-hub-card-cta { color: #fff; }

/* Shared sub-elements */
.rl-hub-card-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.rl-hub-card-icon svg { width: 26px; height: 26px; }
.rl-hub-card-icon i { font-size: 26px; }

.rl-hub-card-tag {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
}

.rl-hub-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800; text-transform: uppercase;
  margin-bottom: 12px; line-height: 1.15;
}

.rl-hub-card p {
  font-size: 14px; line-height: 1.7;
  margin-bottom: 28px; flex: 1;
}

.rl-hub-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color .2s, gap .2s;
}
.rl-hub-card:hover .rl-hub-card-cta { gap: 12px; }

/* Responsive */
@media (max-width: 900px) {
  .rl-catalogues-hub-grid {
    grid-template-columns: 1fr;
    max-width: 540px; margin-left: auto; margin-right: auto;
  }
}
@media (max-width: 640px) {
  .rl-catalogues-hub { padding: 60px 0; }
  .rl-hub-card { padding: 32px 24px; }
}


/* ===========================================
   2. LE PROBLÈME
   =========================================== */

.rl-problem { background: var(--navy); padding: 90px 0; }
.rl-problem-eyebrow { color: rgba(255,255,255,0.45); }
.rl-problem-title {
  font-size: clamp(38px, 6vw, 80px); font-weight: 800;
  text-transform: uppercase; color: #fff; text-align: center;
  line-height: 1.05; margin-bottom: 60px;
}
.rl-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.rl-problem-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.rl-problem-icon {
  width: 48px; height: 48px;
  background: rgba(253,80,17,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--orange);
}
.rl-problem-icon svg { stroke: var(--orange); }
.rl-problem-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.rl-problem-item p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }


/* ===========================================
   3. NOS 3 SOLUTIONS
   =========================================== */

.rl-solutions { background: var(--gray-bg); padding: 90px 0; }
.rl-solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }

.rl-solution-card {
  border-radius: var(--radius); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 0;
}
.rl-solution-dark  { background: var(--navy); }
.rl-solution-orange{ background: var(--orange); }
.rl-solution-light { background: #fff; border: 1px solid var(--gray-border); }

.rl-solution-num {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px;
}
.rl-solution-dark .rl-solution-num  { color: var(--orange); }
.rl-solution-orange .rl-solution-num{ color: rgba(255,255,255,0.6); }
.rl-solution-light .rl-solution-num { color: var(--gray-text); }

.rl-solution-icon { margin-bottom: 20px; }
.rl-solution-light .rl-solution-icon svg { stroke: var(--navy); }

.rl-solution-card h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
.rl-solution-dark h3  { color: #fff; }
.rl-solution-orange h3{ color: #fff; }
.rl-solution-light h3 { color: var(--navy); }

.rl-solution-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.rl-solution-card ul li { font-size: 14px; line-height: 1.5; padding-left: 18px; position: relative; }
.rl-solution-card ul li::before { content: '—'; position: absolute; left: 0; font-weight: 700; }
.rl-solution-dark ul li  { color: rgba(255,255,255,0.75); }
.rl-solution-dark ul li::before  { color: var(--orange); }
.rl-solution-orange ul li { color: rgba(255,255,255,0.85); }
.rl-solution-orange ul li::before{ color: rgba(255,255,255,0.6); }
.rl-solution-light ul li { color: var(--gray-text); }
.rl-solution-light ul li::before { color: var(--orange); }

.rl-solution-cta {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; margin-top: auto;
}
.rl-solution-dark .rl-solution-cta  { color: var(--orange); }
.rl-solution-orange .rl-solution-cta{ color: rgba(255,255,255,0.9); }
.rl-solution-cta-dark { color: var(--navy); }
.rl-solution-cta:hover { opacity: 0.8; }


/* ===========================================
   4. PROCESS
   =========================================== */

.rl-process { background: var(--navy); padding: 90px 0; }
.rl-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 50px; position: relative;
}
.rl-process-steps::before {
  content: ''; position: absolute; top: 30px;
  left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px; background: rgba(255,255,255,0.12);
}
.rl-process-step { text-align: center; padding: 0 16px; position: relative; }
.rl-step-num { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--orange); text-transform: uppercase; margin-bottom: 14px; }
.rl-step-icon {
  width: 60px; height: 60px; background: rgba(255,255,255,0.07);
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.rl-process-step h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.rl-process-step p  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.rl-step-arrow { position: absolute; right: -8px; top: 58px; color: rgba(255,255,255,0.2); font-size: 20px; }


/* ===========================================
   5. NOTRE VISION
   =========================================== */

.rl-vision { background: #fff; padding: 90px 0; }
.rl-vision-intro {
  font-size: 16px; color: var(--gray-text); text-align: center;
  max-width: 680px; margin: 24px auto 50px; line-height: 1.7;
}
.rl-vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rl-vision-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s;
}
.rl-vision-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.rl-vision-card-accent { background: var(--navy); }
.rl-vision-card-accent h3,
.rl-vision-card-accent p { color: #fff; }
.rl-vision-card-accent p { color: rgba(255,255,255,0.7); }

.rl-vision-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.rl-icon-blue   { background: rgba(59,130,246,0.1); }
.rl-icon-green  { background: rgba(76,175,80,0.1); }
.rl-icon-orange { background: rgba(253,80,17,0.1); }
.rl-vision-card h3 { font-size: 17px; font-weight: 800; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.rl-vision-card p  { font-size: 14px; color: var(--gray-text); line-height: 1.65; }


/* ===========================================
   6. ILS NOUS FONT CONFIANCE
   =========================================== */

.rl-trust { background: var(--gray-bg); padding: 90px 0; }

.rl-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-bottom: 60px;
}
.rl-stat-item { text-align: center; }
.rl-stat-icon {
  width: 52px; height: 52px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.rl-stat-num { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.rl-stat-label { font-size: 13px; color: var(--gray-text); line-height: 1.4; }

.rl-testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rl-testimonial {
  background: #fff; border-radius: var(--radius);
  padding: 32px 30px; border-left: 4px solid var(--orange);
}
.rl-testimonial-stars { font-size: 18px; color: var(--orange); margin-bottom: 16px; letter-spacing: 3px; }
.rl-testimonial blockquote {
  font-size: 14px; color: var(--gray-text); line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
}
.rl-testimonial cite { display: flex; flex-direction: column; gap: 3px; }
.rl-testimonial cite strong { font-size: 14px; font-weight: 700; color: var(--navy); font-style: normal; }
.rl-testimonial cite span  { font-size: 12px; color: var(--gray-text); font-style: normal; }


/* ===========================================
   7. CATALOGUE PREVIEW
   =========================================== */

.rl-catalogue-preview { background: #fff; padding: 90px 0; }
.rl-catalogue-sub {
  text-align: center; font-size: 15px; color: var(--gray-text);
  margin: 12px auto 40px; max-width: 500px;
}

.rl-cat-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 40px; }
.rl-cat-nav-item {
  display: grid; grid-template-columns: 180px 1fr auto;
  align-items: center; gap: 20px;
  background: var(--gray-bg); border-radius: 10px;
  padding: 20px 28px; text-decoration: none;
  border: 1px solid transparent;
  transition: border-color .2s, background .2s, transform .2s;
}
.rl-cat-nav-item:hover { border-color: var(--orange); background: #fff; transform: translateX(4px); }
.rl-cat-nav-name { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); }
.rl-cat-nav-desc { font-size: 13px; color: var(--gray-text); }
.rl-cat-nav-arrow { font-size: 18px; color: var(--orange); font-weight: 700; }

.rl-catalogue-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ===========================================
   8. CTA FINAL
   =========================================== */

.rl-cta-full { background: var(--orange); padding: 60px 0; }
.rl-cta-full-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.rl-cta-full-text h2 {
  font-size: clamp(20px, 2.5vw, 30px); font-weight: 800;
  text-transform: uppercase; color: #fff; margin-bottom: 10px; line-height: 1.2;
}
.rl-cta-full-text p { font-size: 15px; color: rgba(255,255,255,0.82); max-width: 500px; }
.rl-cta-full-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.rl-cta-tel { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.85); text-decoration: none; letter-spacing: 1px; }
.rl-cta-tel:hover { color: #fff; }


/* ===========================================
   ECO SECTION
   =========================================== */

.rl-eco {
  background: #0f2318;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.rl-eco::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(34,90,52,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.rl-eco-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left — text */
.rl-eco-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #4caf6e;
  margin-bottom: 16px;
}
.rl-eco-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; text-transform: uppercase;
  color: #fff; line-height: 1.1;
  margin-bottom: 20px;
}
.rl-eco-title span { color: #4caf6e; }

.rl-eco-intro {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 32px;
}
.rl-eco-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #4caf6e; text-decoration: none;
  transition: gap .2s, color .2s;
}
.rl-eco-cta:hover { color: #6dce8a; gap: 12px; }

/* Right — stats */
.rl-eco-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rl-eco-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(76,175,110,0.18);
  border-radius: 14px;
  padding: 24px 28px;
  transition: border-color .2s, background .2s;
}
.rl-eco-stat:hover {
  border-color: rgba(76,175,110,0.4);
  background: rgba(76,175,110,0.06);
}
.rl-eco-stat-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(76,175,110,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #4caf6e;
}
.rl-eco-stat-icon svg { stroke: #4caf6e; width: 22px; height: 22px; }
.rl-eco-stat strong {
  font-size: 22px; font-weight: 800;
  color: #fff; display: block;
  line-height: 1.2; white-space: nowrap;
  min-width: 110px;
}
.rl-eco-stat span {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .rl-eco-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .rl-eco { padding: 64px 0; }
  .rl-eco-stat { padding: 18px 20px; gap: 14px; }
  .rl-eco-stat strong { font-size: 18px; min-width: 90px; }
}


/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1100px) {
  .rl-problem-grid    { grid-template-columns: repeat(2, 1fr); }
  .rl-stats-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .rl-solutions-grid  { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .rl-vision-grid     { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .rl-testimonials    { grid-template-columns: 1fr; }
  .rl-process-steps   { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .rl-process-steps::before { display: none; }
  .rl-promise-pillars { flex-direction: column; gap: 24px; }
  .rl-pillar-vdivider { width: 60%; height: 1px; }
  .rl-vdivider-blue-green  { background: linear-gradient(to right, #3b82f6, #4caf50); }
  .rl-vdivider-green-orange{ background: linear-gradient(to right, #4caf50, #fd5011); }
  .rl-cat-nav-item { grid-template-columns: 1fr auto; }
  .rl-cat-nav-desc { display: none; }
}

@media (max-width: 640px) {
  .rl-problem-grid    { grid-template-columns: 1fr; }
  .rl-stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .rl-process-steps   { grid-template-columns: 1fr; }
  .rl-step-arrow      { display: none; }
  .rl-cta-full-inner  { flex-direction: column; text-align: center; }
  .rl-cta-full-text p { margin: 0 auto; }

  /* Hero mobile — same card style as desktop, shrinks with viewport */
  .rl-hero { width: calc(100% - 32px) !important; max-width: calc(100% - 32px) !important; margin: calc(var(--lpt_header_height, 80px) + 16px) 16px 16px !important; border-radius: 14px !important; }
  .rl-slide, .rl-slide-bg, .rl-slide-overlay { height: 100% !important; }
  .rl-hero-content { padding: 0 20px; text-align: center; }
  .rl-hero h1 { font-size: clamp(30px, 9vw, 48px); }
  .rl-hero p  { font-size: 14px; max-width: 100%; }
  .rl-hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .rl-btn-primary, .rl-btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .rl-hero-dots { left: 50%; transform: translateX(-50%); bottom: 28px; }
  .rl-hero-arrows { bottom: 20px; right: 16px; }
  .rl-promise-slide { padding: 0 20px; }

  .rl-cat-nav-item { grid-template-columns: 1fr auto; gap: 12px; padding: 16px 18px; }
  .rl-catalogue-cta { flex-direction: column; align-items: center; }
  .rl-btn-primary, .rl-btn-outline-dark { width: 100%; max-width: 280px; text-align: center; }
}


/* ===========================================
   v2 — SLIDE 3 MANIFESTE
   =========================================== */

.rl-manifeste-slide {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto; padding: 0 60px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 32px;
}
.rl-manifeste-line1 {
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.38); font-weight: 500;
}
.rl-manifeste-line2 {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 900; text-transform: uppercase;
  color: #fff; line-height: 1.04; margin: 0;
}
.rl-manifeste-line3 {
  font-size: clamp(17px, 2.2vw, 26px);
  font-style: italic; font-weight: 600;
  color: var(--orange);
}

@media (max-width: 640px) {
  .rl-manifeste-slide { padding: 0 24px; gap: 24px; }
  .rl-manifeste-line2 { font-size: clamp(28px, 8vw, 44px); }
}


/* ===========================================
   v2 — SOLUTION CARDS — image on top
   =========================================== */

.rl-solution-card-img {
  width: 100%; height: 200px;
  overflow: hidden; border-radius: 8px 8px 0 0;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.06);
}
.rl-solution-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.rl-solution-card:hover .rl-solution-card-img img { transform: scale(1.04); }

.rl-solution-card-body { display: flex; flex-direction: column; flex: 1; }
.rl-solution-card { padding: 0; overflow: hidden; }
.rl-solution-card-body { padding: 28px 28px 28px; }
.rl-solution-dark  .rl-solution-card-img { background: rgba(255,255,255,0.04); }
.rl-solution-orange .rl-solution-card-img { background: rgba(255,255,255,0.08); }
.rl-solution-light .rl-solution-card-img { background: var(--gray-bg); }


/* ===========================================
   v2 — SECTION 02 / 04 / 08 — BG IMAGES
   =========================================== */

.rl-problem { position: relative; }
.rl-problem-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.08; pointer-events: none;
}

.rl-process { position: relative; }
.rl-process-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.06; filter: saturate(0); pointer-events: none;
}

.rl-cta-full { position: relative; overflow: hidden; }
.rl-cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15; mix-blend-mode: multiply; pointer-events: none;
}


/* ===========================================
   v2 — SECTION 06 — HEADING + CLEAN STATS
   =========================================== */

.rl-trust { background: var(--gray-bg); padding: 90px 0; }
.rl-trust .rl-section-title { margin-bottom: 50px; }


/* ===========================================
   v2 — SECTION 07 — CATALOGUE TWO-BLOCK
   =========================================== */

.rl-cat-block {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--gray-border);
}
.rl-cat-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.rl-cat-block-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.rl-cat-block-label {
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--navy);
  background: var(--gray-bg); border: 1px solid var(--gray-border);
  border-radius: 4px; padding: 6px 14px;
}
.rl-cat-block-domain {
  font-size: 12px; color: var(--orange); font-weight: 600;
  letter-spacing: 0.5px;
}

/* Bloc A — Services layout (image left, text right) */
.rl-cat-services-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.rl-cat-services-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}
.rl-cat-services-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.rl-cat-services-img:hover img { transform: scale(1.03); }
.rl-cat-services-body { display: flex; flex-direction: column; gap: 18px; }
.rl-cat-services-body h3 {
  font-size: clamp(20px, 2vw, 26px); font-weight: 800;
  text-transform: uppercase; color: var(--navy); line-height: 1.2;
}
.rl-cat-services-body p {
  font-size: 14px; color: var(--gray-text); line-height: 1.7;
}

/* Bloc B — Products grid (4 cards) */
.rl-cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px;
}
.rl-cat-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-border); text-decoration: none;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  background: #fff;
}
.rl-cat-card:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.rl-cat-card-img {
  width: 100%; aspect-ratio: 1;
  background: var(--gray-bg); overflow: hidden;
}
.rl-cat-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rl-cat-card-img--placeholder {
  background: linear-gradient(135deg, #f0f3f8 0%, #e8edf5 100%);
}
.rl-cat-card-body { padding: 18px 16px 20px; display: flex; flex-direction: column; flex: 1; }
.rl-cat-card-body h4 {
  font-size: 14px; font-weight: 800; text-transform: uppercase;
  color: var(--navy); margin-bottom: 6px;
}
.rl-cat-card-body p {
  font-size: 12px; color: var(--gray-text); line-height: 1.5; flex: 1;
}
.rl-cat-card-arrow {
  display: block; margin-top: 12px; font-size: 16px;
  color: var(--orange); font-weight: 700;
  transition: transform 0.2s;
}
.rl-cat-card:hover .rl-cat-card-arrow { transform: translateX(4px); }

/* Responsive — catalogue v2 */
@media (max-width: 1024px) {
  .rl-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .rl-cat-services-layout { grid-template-columns: 1fr; gap: 32px; }
  .rl-cat-services-img { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .rl-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .rl-cat-block-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ══════════════════════════════════════════
   NOTRE PLATEAU TECHNIQUE  (#plateau-technique)
══════════════════════════════════════════ */
.rl-plateau {
  padding: 96px 0 80px;
  background: var(--gray-bg);
}

/* Two-column layout: intro left, features right */
.rl-plateau-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 52px;
}

/* Left column */
.rl-plateau-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 40px;
}
.rl-plateau-team {
  display: flex;
  gap: 32px;
}
.rl-plateau-team-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
  text-align: center;
}
.rl-plateau-team-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.rl-plateau-team-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.4;
}

/* Right column — feature list */
.rl-plateau-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rl-plateau-feat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 24px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.rl-plateau-feat:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.rl-plateau-feat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.rl-plateau-feat-icon svg { stroke: #fff; }
.rl-plateau-feat h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.rl-plateau-feat p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-text);
  margin: 0;
}

/* Stats band */
.rl-plateau-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 48px;
}
.rl-plateau-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.rl-plateau-stat + .rl-plateau-stat {
  border-left: 1px solid rgba(255,255,255,0.12);
}
.rl-plateau-stat-num {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.rl-plateau-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .rl-plateau-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .rl-plateau { padding: 64px 0 56px; }
  .rl-plateau-team { gap: 12px; }
  .rl-plateau-team-item { padding: 16px 12px; }
  .rl-plateau-team-num { font-size: 28px; }
  .rl-plateau-stats {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .rl-plateau-stat + .rl-plateau-stat {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 28px;
  }
}

/* ===========================================
   MARQUES PARTENAIRES
   =========================================== */
/* ── Brands ribbon ── */
.rl-brands {
  background: #0f1f3d;
  padding: 20px 0;
  border-top: none;
}
.rl-brands .rl-section-eyebrow,
.rl-brands .rl-section-title { display: none; }
.rl-brands-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 0;
}
.rl-brand-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  padding: 12px 36px;
  min-width: unset;
  text-decoration: none;
  transition: background .2s ease;
}
.rl-brand-card:last-child { border-right: none; }
.rl-brand-card:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,.06);
}
.rl-brand-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rl-brand-logo img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .6;
  transition: opacity .2s ease;
}
.rl-brand-card:hover .rl-brand-logo img {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.rl-brand-name-fallback {
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rl-brand-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rl-brand-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.rl-brand-count {
  font-size: 11px;
  color: #fd5011;
  font-weight: 600;
}
@media (max-width: 640px) {
  .rl-brands { padding: 16px 0; overflow-x: auto; }
  .rl-brands-grid { flex-wrap: nowrap; justify-content: flex-start; padding: 0 16px; }
  .rl-brand-card { padding: 10px 24px; flex-shrink: 0; }
  .rl-brand-logo img { max-width: 90px; max-height: 28px; }
}

/* ===========================================
   PRODUITS RÉCENTS
   =========================================== */
.rl-recent-products {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #e8eaf0;
}
.rl-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.rl-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rl-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,31,61,.1);
  border-color: #fd5011;
}
.rl-product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f5f7fa;
  overflow: hidden;
}
.rl-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.rl-product-card:hover .rl-product-img img {
  transform: scale(1.05);
}
.rl-product-brand-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0f1f3d;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
}
.rl-product-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  flex: 1;
}
.rl-product-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fd5011;
}
.rl-product-name {
  font-size: 13px;
  font-weight: 700;
  color: #0f1f3d;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rl-product-cta {
  margin-top: auto;
  padding-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #fd5011;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.rl-product-card:hover .rl-product-cta { gap: 10px; }
.rl-products-footer {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .rl-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .rl-recent-products { padding: 56px 0; }
  .rl-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rl-product-body { padding: 12px; }
  .rl-product-name { font-size: 12px; }
}

.rl-product-price {
  font-size: 15px;
  font-weight: 800;
  color: #0f1f3d;
  line-height: 1;
}
.rl-product-price .woocommerce-Price-amount { color: #0f1f3d; }
.rl-product-price del { font-size: 12px; color: rgba(0,0,0,.3); font-weight: 600; display: block; margin-bottom: 2px; }
.rl-product-price ins { text-decoration: none; }
.rl-product-pdr {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  font-style: italic;
}
