/* ============================================
   RK-Transports Clone — Main Stylesheet
   ============================================ */

/* Fonts loaded via PHP wp_enqueue_style — no render-blocking @import */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #4B4F58;
  background: #0170B9; /* gap area matches topbar color */
  line-height: 1.6;
  padding-top: 0 !important;
}
/* overflow-x: hidden removed — breaks iOS Safari viewport/scroll */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0170B9;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #337bff;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Mada', sans-serif;
  color: #3a3a3a;
  line-height: 1.25;
}

h1 { font-size: 2.67rem; font-weight: 700; }
h2 { font-size: 2.13rem; font-weight: 700; }
h3 { font-size: 1.73rem; font-weight: 600; }
h4 { font-size: 1.33rem; font-weight: 600; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #0170B9;
  color: #fff;
  border-color: #0170B9;
}

.btn-primary:hover {
  background: transparent;
  color: #0170B9;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #0170B9;
}

.btn-blue-outline {
  background: transparent;
  color: #0170B9;
  border-color: #0170B9;
}

.btn-blue-outline:hover {
  background: #0170B9;
  color: #fff;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: #0170B9;
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 0;
  margin: 0 !important;
  display: block;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-contact a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.topbar-contact a:hover {
  color: #cce4f7;
}

.topbar-social {
  display: flex;
  gap: 12px;
}

.topbar-social a {
  color: #fff;
  font-size: 0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.topbar-social a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border-top: 3px solid #0170B9;
  margin: 0 !important;
  padding: 0 !important;
}
body.admin-bar .site-header { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px !important; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  position: relative;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

.site-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.site-logo .logo-placeholder {
  width: 80px;
  height: 80px;
  background: #0170B9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Mada', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.1;
}

/* ── Nav ── */
.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.main-nav ul li { list-style: none !important; }

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: #3a3a3a;
  font-family: 'Mada', sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li a.active {
  color: #0170B9;
  background: #f0f7ff;
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.main-nav ul li.cta a {
  background: #0170B9;
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 20px;
  margin-left: 8px;
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
}

.main-nav ul li.cta a:hover,
.main-nav ul li.cta a:focus {
  background: #337bff !important;
  color: #fff !important;
  border: none !important;
  border-bottom: none !important;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

/* Desktop: nav-cta-btn is a standalone flex item on the right */
.nav-cta-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #0170B9;
  color: #fff !important;
  border-radius: 30px;
  font-family: 'Mada', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none !important;
}
.nav-cta-btn:hover { background: #337bff; color: #fff !important; }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3a3a3a;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background: #1a2a3a;
}

.slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0, 40, 80, 0.55);
}

/* Slide backgrounds — SVG-based color blocks as placeholder */
.slide-1 { background: linear-gradient(135deg, #0a1628 0%, #0170B9 100%); }
.slide-2 { background: linear-gradient(135deg, #1a3a5c 0%, #0a4a8a 100%); }
.slide-3 { background: linear-gradient(135deg, #0d2137 0%, #2a6098 100%); }

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 760px;
  padding: 0 24px;
}

.slide-content .slide-tag {
  display: inline-block;
  background: #0170B9;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.slide-content h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.07rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.slide-content .slide-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(1,112,185,0.7);
  border-color: #0170B9;
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ============================================
   SECTION — SERVICES RAPIDES (icon strip)
   ============================================ */
.quick-services {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  z-index: 5;
}

.quick-services-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.qs-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid #e5e5e5;
  transition: background 0.2s;
  cursor: default;
}

.qs-item:last-child { border-right: none; }

.qs-item:hover {
  background: #f0f7ff;
}

.qs-icon {
  width: 50px;
  height: 50px;
  background: #0170B9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: #fff;
}

.qs-text h4 {
  font-size: 0.93rem;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 2px;
}

.qs-text p {
  font-size: 0.78rem;
  color: #4B4F58;
  line-height: 1.4;
}

/* ============================================
   SECTION — À PROPOS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #f5f8fc;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  color: #0170B9;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.13rem;
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #4B4F58;
  font-size: 1rem;
}

.divider {
  width: 56px;
  height: 3px;
  background: #0170B9;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #0170B9 0%, #337bff 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 5rem;
  box-shadow: 0 8px 32px rgba(1,112,185,0.25);
}

.about-img-placeholder p {
  font-size: 1rem;
  font-family: 'Mada', sans-serif;
  margin-top: 12px;
  color: rgba(255,255,255,0.9);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.about-badge img {
  width: 100%;
  border-radius: 50%;
}

.about-badge-placeholder {
  width: 100%;
  height: 100%;
  background: #0170B9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Mada', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-align: center;
  line-height: 1.3;
  padding: 8px;
}

.about-content .section-tag { text-align: left; }

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 18px;
  line-height: 1.75;
  color: #4B4F58;
}

.about-checklist {
  margin: 24px 0 32px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  color: #3a3a3a;
}

.about-checklist li::before {
  content: '✓';
  background: #0170B9;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   SECTION — SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(1,112,185,0.15);
  border-top-color: #0170B9;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0170B9, #337bff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 20px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(1,112,185,0.3);
}

.service-card h3 {
  font-size: 1.13rem;
  margin-bottom: 12px;
  color: #3a3a3a;
}

.service-card p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: #4B4F58;
  margin-bottom: 20px;
}

.service-card .btn {
  font-size: 0.8rem;
  padding: 8px 24px;
}

/* ============================================
   SECTION — CHIFFRES CLÉS
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, #0170B9 0%, #337bff 100%);
  padding: 64px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: 'Mada', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ============================================
   SECTION — ZONE DE COUVERTURE
   ============================================ */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.zone-map {
  background: #e8f2fc;
  border-radius: 12px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #0170B9;
  border: 2px dashed #0170B9;
}

.zone-map p {
  font-size: 1rem;
  font-family: 'Mada', sans-serif;
  margin-top: 12px;
  color: #0170B9;
}

.zone-list {
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zone-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: #4B4F58;
}

.zone-list li::before {
  content: '📍';
  font-size: 0.8rem;
}

/* ============================================
   SECTION — CERTIFICATIONS
   ============================================ */
.certs-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.cert-item {
  text-align: center;
  max-width: 180px;
}

.cert-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0170B9, #337bff);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Mada', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(1,112,185,0.25);
  transition: transform 0.2s;
}

.cert-badge:hover {
  transform: scale(1.05);
}

.cert-item p {
  font-size: 0.85rem;
  color: #4B4F58;
  line-height: 1.5;
}

/* ============================================
   SECTION — COMMENT ÇA MARCHE
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #e5e5e5;
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0170B9;
  color: #0170B9;
  font-family: 'Mada', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(1,112,185,0.15);
}

.step-item.active .step-number {
  background: #0170B9;
  color: #fff;
}

.step-item h4 {
  font-size: 0.97rem;
  margin-bottom: 8px;
  color: #3a3a3a;
}

.step-item p {
  font-size: 0.8rem;
  color: #4B4F58;
  line-height: 1.6;
}

/* ============================================
   SECTION — CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
}

.contact-info h3 {
  margin-bottom: 28px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f5f8fc;
  border-radius: 10px;
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: 0 4px 16px rgba(1,112,185,0.1);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: #0170B9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-size: 0.87rem;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 3px;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 0.87rem;
  color: #4B4F58;
}

/* Contact form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.47rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.87rem;
  color: #3a3a3a;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0170B9;
  box-shadow: 0 0 0 3px rgba(1,112,185,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   SECTION — CTA BANDEAU
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #0a1628 0%, #0170B9 100%);
  padding: 72px 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.07rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0d1f33;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-family: 'Mada', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: #0170B9;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-circle {
  width: 64px;
  height: 64px;
  background: #0170B9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Mada', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: 'Mada', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.13rem;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: #0170B9;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-links li a::before {
  content: '›';
  color: #0170B9;
  font-size: 1rem;
  font-weight: 700;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  color: #0170B9;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.8);
  font-size: 0.83rem;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-panel ul li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #3a3a3a;
  font-family: 'Mada', sans-serif;
  font-weight: 500;
  font-size: 1rem;
}

.mobile-nav-panel ul li a:hover {
  color: #0170B9;
  padding-left: 8px;
}

/* ── About real image ── */
.about-real-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(1,112,185,0.2);
  display: block;
}

/* ── Cert badge with real image ── */
.cert-badge-img {
  background: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  overflow: hidden;
}

.cert-badge-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Partners ── */
.partners-section {
  background: #f5f8fc;
  padding: 56px 0;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.partner-item {
  background: #fff;
  border-radius: 10px;
  padding: 16px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  min-width: 120px;
  height: 80px;
}

.partner-item:hover {
  box-shadow: 0 4px 20px rgba(1,112,185,0.15);
  transform: translateY(-3px);
}

.partner-item img {
  max-height: 50px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.2s;
}

.partner-item:hover img {
  filter: grayscale(0%);
}

/* ── Slide background override (uses inline style + CSS overlay) ── */
.slide[style] {
  background-size: cover;
  background-position: center;
}

/* ── Site logo img ── */
.site-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #0170B9;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(1,112,185,0.35);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 900;
  border: none;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: #337bff;
  color: #fff;
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }

  .topbar-contact .hide-mobile { display: none; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta-btn { display: none; }

  .mobile-nav { display: block; }

  .hero-slider { height: 440px; }
  .slide-content h1 { font-size: 1.87rem; }
  .slide-content p { font-size: 0.93rem; }
  .slider-arrow { display: none; }

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

  .qs-item:nth-child(2) { border-right: none; }
  .qs-item:nth-child(3),
  .qs-item:nth-child(4) { border-top: 1px solid #e5e5e5; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 0; bottom: -16px; }

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

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .steps-grid::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-section h2 { font-size: 1.73rem; }
}

@media (max-width: 480px) {
  .quick-services-inner { grid-template-columns: 1fr; }
  .qs-item { border-right: none; border-bottom: 1px solid #e5e5e5; }
  .qs-item:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.73rem; }
  .hero-actions { flex-direction: column; }
  .btn-call, .btn-devis { width: 100%; justify-content: center; }
  .landing-cards-grid { grid-template-columns: 1fr; }
  .proof-partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CRO P2 — TRUST BAR
   ============================================================ */

.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e8eff8;
  box-shadow: 0 2px 12px rgba(1,112,185,0.07);
  position: relative;
  z-index: 4;
}

.trust-bar-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid #e8eff8;
  flex: 1;
  transition: background 0.2s;
}

.tb-item:last-child { border-right: none; }

.tb-item:hover { background: #f5f9ff; }

.tb-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0170B9, #337bff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.tb-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}

.tb-text {
  display: flex;
  flex-direction: column;
}

.tb-text strong {
  font-family: 'Mada', sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.2;
}

.tb-text span {
  font-size: 0.72rem;
  color: #4B4F58;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .trust-bar-grid { flex-wrap: wrap; }
  .tb-item { flex: 0 0 50%; border-bottom: 1px solid #e8eff8; }
  .tb-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 480px) {
  .tb-item { flex: 0 0 100%; border-right: none; padding: 14px 20px; }
}

/* ============================================================
   CRO P2 — DIRECT PHONE IN HERO
   ============================================================ */

.hero-direct-call {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  margin-top: -28px;
  margin-bottom: 30px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.hero-direct-call a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  transition: border-color 0.2s;
}

.hero-direct-call a:hover {
  border-bottom-color: #fff;
  color: #fff;
}

/* ============================================================
   CRO P2 — PULSE ANIMATION ON CALL BUTTONS
   ============================================================ */

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 6px 24px rgba(1,112,185,0.45); }
  50% { box-shadow: 0 6px 32px rgba(1,112,185,0.7), 0 0 0 10px rgba(1,112,185,0.08); }
}

@keyframes pulse-cta-light {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.1); }
  50% { box-shadow: 0 12px 38px rgba(0,0,0,0.36), 0 0 0 10px rgba(255,255,255,0.12); }
}

.btn-call {
  animation: pulse-cta 3.5s ease-in-out infinite;
}

.hero-new .btn-call,
.cta-section .btn-call {
  animation: pulse-cta-light 3.5s ease-in-out infinite;
}

.btn-call:hover {
  animation: none;
}

@keyframes pulse-sticky {
  0%, 100% { box-shadow: 0 -4px 24px rgba(1,112,185,0.45); }
  50% { box-shadow: 0 -4px 32px rgba(1,112,185,0.8); }
}

.mobile-call-sticky {
  animation: pulse-sticky 3.5s ease-in-out infinite;
}

/* ============================================================
   CRO P2 — QUICK SERVICES CLICKABLE
   ============================================================ */

.qs-item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid #e5e5e5;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.qs-item-link:last-child { border-right: none; }

.qs-item-link:hover {
  background: #f0f7ff;
  color: inherit;
}

.qs-item-link:hover .qs-icon {
  background: linear-gradient(135deg, #0157a0, #1a5fd1);
  transform: scale(1.05);
}

.qs-icon {
  transition: transform 0.2s, background 0.2s;
}

/* ============================================================
   CRO P2 — MICRO-CTA STRIP AFTER SERVICES
   ============================================================ */

.services-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(105deg, #f0f7ff 0%, #e0effa 100%);
  border: 1px solid #c3dcf5;
  border-radius: 14px;
  padding: 24px 32px;
  margin-top: 48px;
}

.scta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scta-text i {
  font-size: 1.6rem;
  color: #0170B9;
  flex-shrink: 0;
}

.scta-text div {
  display: flex;
  flex-direction: column;
}

.scta-text strong {
  font-family: 'Mada', sans-serif;
  font-size: 1.05rem;
  color: #3a3a3a;
  margin-bottom: 3px;
}

.scta-text span {
  font-size: 0.85rem;
  color: #4B4F58;
}

@media (max-width: 768px) {
  .services-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 20px 20px;
  }
  .scta-text { flex-direction: column; text-align: center; }
  .services-cta-strip .btn-call { width: 100%; justify-content: center; }
}

/* ============================================================
   CRO P2 — STEP 1 CTA (COMMENT ÇA MARCHE)
   ============================================================ */

.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: #0170B9;
  color: #fff;
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Mada', sans-serif;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.step-cta:hover {
  background: #337bff;
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   CRO P2 — FAQ SECTION
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e8eff8;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
  background: #fff;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(1,112,185,0.1);
}

.faq-item.open {
  box-shadow: 0 4px 20px rgba(1,112,185,0.15);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Mada', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3a3a3a;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover { color: #0170B9; }

.faq-item.open .faq-q { color: #0170B9; }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f7ff;
  border: 1px solid #c3dcf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #0170B9;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
  background: #0170B9;
  color: #fff;
  border-color: #0170B9;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #4B4F58;
}

/* FAQ CTA at bottom */
.faq-cta-row {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: #f5f8fc;
  border-radius: 14px;
  border: 1px solid #e8eff8;
}

.faq-cta-row p {
  font-size: 1.07rem;
  font-family: 'Mada', sans-serif;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 20px;
}

/* ============================================================
   CRO P2 — IMPROVED CTA BANDEAU URGENCY
   ============================================================ */

.cta-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.4);
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-urgency-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}

/* ============================================================
   P1 — HERO CONVERSION REFONTE
   ============================================================ */

.hero-new {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 90px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 8%, rgba(80, 170, 240, 0.38), transparent 60%),
    radial-gradient(ellipse 60% 50% at 92% 90%, rgba(56, 200, 255, 0.22), transparent 55%),
    linear-gradient(135deg, #02173a 0%, #022f63 38%, #014a8e 72%, #0170B9 100%);
}

.hero-new::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.hero-new .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-body {
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.32);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-title {
  font-family: 'Mada', sans-serif;
  font-size: 3.33rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.hero-title-accent {
  color: #b8e3ff;
  display: block;
  text-shadow: 0 2px 18px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.96);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  align-items: center;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0170B9;
  color: #fff;
  padding: 17px 38px;
  border-radius: 50px;
  font-family: 'Mada', sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border: 2px solid #0170B9;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(1,112,185,0.45);
  cursor: pointer;
}

.btn-call:hover {
  background: #fff;
  color: #0170B9;
  box-shadow: 0 8px 28px rgba(1,112,185,0.5);
  transform: translateY(-2px);
}

.btn-call:focus-visible {
  outline: 3px solid #b8e3ff;
  outline-offset: 3px;
}

/* Inverted on dark hero/CTA backgrounds */
.hero-new .btn-call,
.cta-section .btn-call {
  background: #fff;
  color: #014a8e;
  border-color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-new .btn-call:hover,
.cta-section .btn-call:hover {
  background: #f0f7ff;
  color: #014a8e;
  border-color: #f0f7ff;
  box-shadow: 0 14px 38px rgba(0,0,0,0.34);
}

.btn-devis {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #0170B9;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: 'Mada', sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  border: 2px solid #0170B9;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-devis:hover {
  background: #0170B9;
  color: #fff;
  transform: translateY(-2px);
}

/* Sur fond sombre (hero, CTA) : blanc */
.hero-new .btn-devis,
.cta-section .btn-devis {
  color: #fff;
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-new .btn-devis:hover,
.cta-section .btn-devis:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
}
.hero-new .btn-devis:focus-visible,
.cta-section .btn-devis:focus-visible {
  outline: 3px solid #b8e3ff;
  outline-offset: 3px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.28);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.97);
  font-size: 0.86rem;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.trust-check {
  width: 22px;
  height: 22px;
  background: rgba(74,222,128,0.28);
  border: 1.5px solid rgba(134,239,172,0.85);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #86efac;
  font-weight: 900;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-new { min-height: 520px; padding: 70px 0 56px; }
  .hero-title { font-size: 2.13rem; }
  .hero-sub { font-size: 0.93rem; }
  .btn-call, .btn-devis { padding: 14px 28px; font-size: 0.97rem; }
  .hero-trust { gap: 10px 20px; }
}

/* ============================================================
   P2 — BOUTON APPEL STICKY MOBILE
   ============================================================ */

.mobile-call-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: #0170B9;
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-family: 'Mada', sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  text-decoration: none;
  box-shadow: 0 -4px 24px rgba(1,112,185,0.45);
  letter-spacing: 0.3px;
  border-top: 3px solid #337bff;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mobile-call-sticky:hover {
  background: #005a96;
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-call-sticky { display: flex; }
  body { padding-bottom: 74px; }
}

/* ============================================================
   P3 — SECTION PREUVES SOCIALES
   ============================================================ */

.section-proof {
  background: #fff;
}

.proof-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.proof-partner {
  background: #f5f8fc;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #e5eef8;
  transition: all 0.25s;
}

.proof-partner:hover {
  border-color: #0170B9;
  box-shadow: 0 4px 20px rgba(1,112,185,0.1);
  transform: translateY(-4px);
}

.proof-partner-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #0170B9, #337bff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(1,112,185,0.3);
}

.proof-partner-name {
  font-family: 'Mada', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: #3a3a3a;
  line-height: 1.4;
}

.proof-partner-name small {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: #4B4F58;
  margin-top: 3px;
}

/* Testimonial premium */
.testimonial-premium {
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-inner {
  background: linear-gradient(135deg, #0a1e3d 0%, #0170B9 100%);
  border-radius: 20px;
  padding: 52px 56px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.testimonial-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.testimonial-inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.testimonial-quote-icon {
  font-size: 2.4rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 20px;
}

.testimonial-inner blockquote {
  font-family: 'Mada', sans-serif;
  font-size: 1.47rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 22px 10px 10px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.testimonial-meta {
  text-align: left;
}

.testimonial-meta strong {
  display: block;
  color: #fff;
  font-size: 0.87rem;
  font-weight: 600;
}

.testimonial-meta span {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .proof-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-inner { padding: 36px 28px; }
  .testimonial-inner blockquote { font-size: 1.13rem; }
}

/* ============================================================
   P4 — FORMULAIRE DEVIS
   ============================================================ */

.form-intro {
  font-size: 0.87rem;
  color: #4B4F58;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-intro::before {
  content: '⚡';
  font-size: 0.9rem;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   P5 — LANDING PAGES PREVIEW (SOLUTIONS)
   ============================================================ */

.section-solutions {
  background: #f0f7ff;
}

.landing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.landing-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.landing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0170B9, #337bff);
  opacity: 0;
  transition: opacity 0.25s;
}

.landing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(1,112,185,0.15);
  border-color: #dbeeff;
}

.landing-card:hover::before {
  opacity: 1;
}

.landing-card-featured {
  border-color: #0170B9;
  box-shadow: 0 6px 28px rgba(1,112,185,0.18);
}

.landing-card-featured::before {
  opacity: 1;
}

.landing-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0170B9, #337bff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(1,112,185,0.3);
}

.landing-card-badge {
  display: inline-block;
  background: #e8f3fd;
  color: #0170B9;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid #c3dcf5;
}

.landing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #3a3a3a;
}

.landing-card p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: #4B4F58;
  margin-bottom: 20px;
  flex: 1;
}

.landing-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.landing-card-tags span {
  background: #f0f7ff;
  color: #0170B9;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #c3dcf5;
}

.landing-card-cta {
  text-align: center;
  width: 100%;
  font-size: 0.87rem;
  padding: 12px 20px;
  display: block;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .landing-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .landing-cards-grid { grid-template-columns: 1fr; }
  .testimonial-inner { padding: 28px 20px; }
  .testimonial-inner blockquote { font-size: 1rem; }
  .proof-partners-grid { grid-template-columns: repeat(2, 1fr); }
}
