:root {
  /* Brand Colors */
  --primary-red: #E61E2A; /* From logo */
  --primary-red-hover: #c41822;
  --primary-blue: #4AB9F5; /* Bucket blue from logo */
  --dark-slate: #0F172A;
  --dark-text: #1E293B;
  --light-gray: #F8FAFC;
  --bg-slate: #1E293B;
  --white: #FFFFFF;
  --success-green: #10B981;
  --error-red: #EF4444;

  /* Gradients */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --dark-gradient: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --brand-gradient: linear-gradient(135deg, var(--primary-blue) 0%, #2563EB 100%);
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  --shadow-glow: 0 0 25px rgba(74, 185, 245, 0.3);

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-light { background-color: var(--light-gray); }
.bg-slate { background-color: var(--bg-slate); }
.text-white { color: var(--white) !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }

/* =========================================
   TOP BAR & NAVIGATION
   ========================================= */
.top-bar {
  background-color: var(--dark-slate);
  color: var(--white);
  padding: 0.5rem 5%;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.top-bar .contact-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar .contact-info a:hover {
    color: var(--primary-blue);
}

.top-bar i {
  margin-right: 0.5rem;
  color: var(--primary-blue);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.8rem 5%;
  box-shadow: var(--shadow-sm);
}

.nav-logo img {
  height: 75px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}


.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-slate);
    cursor: pointer;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--dark-text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Dropdown */
.nav-links li.dropdown {
    position: relative;
    padding: 1rem 0; /* To prevent hover loss */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-slate);
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none; /* remove underline effect for dropdown */
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-red);
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(230, 30, 42, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 30, 42, 0.4);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  padding: 4rem 5%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--light-gray);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(74, 185, 245, 0.1);
  color: var(--primary-blue);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  width: fit-content;
  border: 1px solid rgba(74, 185, 245, 0.2);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-slate);
}

.hero-content h1 span.highlight {
  color: var(--primary-red);
  position: relative;
}

.hero-content p {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-slate) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--dark-slate);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--dark-slate);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--dark-slate);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-dark:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Bento Grid */
.hero-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 600px;
}

.bento-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.bento-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card:hover img {
  transform: scale(1.1);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(15, 23, 42, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
}

.bento-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.bento-overlay .link-arrow {
  color: var(--primary-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.bento-card:hover .bento-overlay h3,
.bento-card:hover .bento-overlay .link-arrow {
  transform: translateY(0);
}

.bento-card:hover .link-arrow {
  opacity: 1;
  gap: 0.8rem;
}

.card-large {
  grid-row: span 2;
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(230, 30, 42, 0.1);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.trust-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-slate);
}

/* =========================================
   SECTIONS & PROBLEM/SOLUTION
   ========================================= */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-slate);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary-red);
}

.subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.comparison-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.card-header {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-card.bad .card-header { color: var(--error-red); }
.comparison-card.good .card-header { color: var(--success-green); }

.comparison-card ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comparison-card.bad ul li i { color: var(--error-red); margin-top: 4px; }
.comparison-card.good ul li i { color: var(--success-green); margin-top: 4px; }

.comparison-card.good {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.comparison-card.good::before {
    content: 'Recommandé';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--bg-slate);
    box-shadow: 0 0 0 4px rgba(74, 185, 245, 0.2);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: #94A3B8;
    font-size: 0.95rem;
}

/* =========================================
   SERVICES DETAILS
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: #e2e8f0;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 185, 245, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.service-item h4 {
    font-size: 1.2rem;
    color: var(--dark-slate);
    margin-bottom: 0.75rem;
}

.service-item p {
    color: #64748b;
    font-size: 0.95rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #F59E0B;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review {
    font-size: 1.05rem;
    color: #334155;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.author strong {
    display: block;
    color: var(--dark-slate);
    font-size: 1.1rem;
}

.author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--dark-slate);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #475569;
    font-size: 0.95rem;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    background: var(--brand-gradient);
    padding: 5rem 5%;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--dark-slate);
    color: var(--white);
    padding: 4rem 5% 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #94A3B8;
    font-size: 0.95rem;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-contact p {
    color: #94A3B8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    color: #94A3B8;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding-right: 0;
    text-align: center;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 3rem;
  }

  /* Centrage global sur mobile */
  h1, h2, p, .hero-content, .sh-content, .emotional-hook, .problem-solution {
    text-align: center !important;
  }
  .hero-content, .sh-content {
    align-items: center !important;
  }
  .trust-indicators {
    justify-content: center !important;
  }
  ul {
    text-align: left; /* Keep lists readable */
  }

  .hero-visuals {
    height: 500px;
  }
  .trust-indicators {
    justify-content: center;
  }
  .services-grid, .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
      display: none;
  }
  .footer-grid {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 55px; /* Agrandit le logo sur mobile */
  }
  .top-bar {
    display: none;
  }
  .mobile-menu-btn {
    display: block !important;
    position: absolute;
    right: 5%;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
  }
  .navbar {
    justify-content: center;
    position: relative;
  }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid #e2e8f0;
    z-index: 1000;
  }
  .nav-links.active {
    display: flex !important;
  }
  .nav-actions {
      display: none;
  }

  /* Centrage global sur mobile */
  h1, h2, p, .hero-content, .sh-content, .emotional-hook, .problem-solution {
    text-align: center !important;
  }
  .hero-content, .sh-content {
    align-items: center !important;
  }
  .trust-indicators {
    justify-content: center !important;
  }
  ul {
    text-align: left; /* Keep lists readable */
  }

  .hero-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .card-large {
    grid-row: span 1;
    height: 300px;
  }
  .bento-card {
    height: 250px;
  }
  .comparison-grid, .steps-grid, .services-grid, .testimonials-grid {
      grid-template-columns: 1fr;
  }
  .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }
  .footer-brand, .footer-contact {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .section-padding {
      padding: 4rem 0;
  }
}

/* Footer Watermark */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.footer-grid, .footer-bottom {
    position: relative;
    z-index: 1;
}

/* Fix dropdown overlap on mobile */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 1.5rem !important;
    transform: none !important;
    margin-top: 0.5rem;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-links li.dropdown:hover .dropdown-menu,
  .nav-links li.dropdown:active .dropdown-menu,
  .nav-links li.dropdown:focus-within .dropdown-menu {
    display: block !important;
  }
}

/* ============================================
   V2 ADDITIONS — Competitive Analysis Updates
   ============================================ */

/* Hero badges row */
.hero-badges-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.badge-award {
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}

/* Trust link in hero (Google reviews) */
.trust-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.trust-link:hover { opacity: 0.8; }

/* ── TRUST BAR ── */
.trust-bar {
    background: #0a1628;
    border-top: 1px solid rgba(74,185,245,0.15);
    border-bottom: 1px solid rgba(74,185,245,0.15);
    padding: 0.85rem 5%;
    overflow: hidden;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.5rem;
    font-size: 0.82rem;
    color: #94a3b8;
    white-space: nowrap;
}
.trust-bar-item strong { color: #e2e8f0; }
.trust-bar-item i { font-size: 0.95rem; }
.trust-bar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .trust-bar-item { padding: 0.3rem 0.8rem; font-size: 0.75rem; }
    .trust-bar-divider { display: none; }
}

/* ── LA MÉTHODE MÉNAGÉNIE ── */
.methode-section {
    background: var(--light-gray);
}
.methode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}
.methode-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.4rem 1.5rem;
    transition: background 0.2s;
}
.methode-step:hover { background: #f8fafc; }
.methode-num {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}
.methode-body h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 0.3rem;
}
.methode-body p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ── TESTIMONIALS V2 ── */
.author-service {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}
.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4285F4;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 2.5rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(66,133,244,0.25);
    border-radius: 50px;
    transition: background 0.2s, border-color 0.2s;
}
.google-reviews-link:hover {
    background: rgba(66,133,244,0.06);
    border-color: rgba(66,133,244,0.5);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ── FOOTER BADGES ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-badge {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-badge i { color: #94a3b8; }

/* ── MOBILE FLOATING CTA ── */
.mobile-fab {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(230,30,42,0.45);
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-fab:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 24px rgba(230,30,42,0.55);
}
@media (max-width: 768px) {
    .mobile-fab { display: flex; }
    /* Extra bottom padding so content isn't hidden behind FAB */
    body { padding-bottom: 5rem; }
}

/* =============================================
   UNIQUEMENT AVEC MÉNAGÉNIE — SECTION
   ============================================= */
.uniquement-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    text-align: center;
}
.uniquement-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem 1rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.uniquement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}
.uniquement-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.35rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}
.uniquement-card p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}
.uniquement-card p strong { color: var(--dark-slate); }

/* Dark variant (commercial page) */
.uniquement-dark { background: var(--dark-slate); }
.uniquement-dark .uniquement-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

@media (max-width: 1200px) {
    .uniquement-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .uniquement-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .uniquement-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
    .uniquement-card { padding: 1.25rem 0.75rem; }
    .uniquement-icon { width: 46px; height: 46px; font-size: 1.1rem; }
    .uniquement-card p { font-size: 0.82rem; }
}

/* =============================================
   SCROLL ANIMATIONS — data-animate system
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
    [data-animate] {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }
    [data-animate="fade"]        { transform: translateY(0); }
    [data-animate="slide-right"] { transform: translateX(-28px); }
    [data-animate].is-visible    { opacity: 1; transform: none; }

    [data-animate-stagger] > * {
        opacity: 0;
        transform: translateY(22px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    [data-animate-stagger].is-visible > * { opacity: 1; transform: none; }
    [data-animate-stagger].is-visible > *:nth-child(1)  { transition-delay: 0.04s; }
    [data-animate-stagger].is-visible > *:nth-child(2)  { transition-delay: 0.10s; }
    [data-animate-stagger].is-visible > *:nth-child(3)  { transition-delay: 0.16s; }
    [data-animate-stagger].is-visible > *:nth-child(4)  { transition-delay: 0.22s; }
    [data-animate-stagger].is-visible > *:nth-child(5)  { transition-delay: 0.28s; }
    [data-animate-stagger].is-visible > *:nth-child(6)  { transition-delay: 0.34s; }
    [data-animate-stagger].is-visible > *:nth-child(7)  { transition-delay: 0.40s; }
    [data-animate-stagger].is-visible > *:nth-child(8)  { transition-delay: 0.46s; }
    [data-animate-stagger].is-visible > *:nth-child(9)  { transition-delay: 0.52s; }
    [data-animate-stagger].is-visible > *:nth-child(10) { transition-delay: 0.58s; }
    [data-animate-stagger].is-visible > *:nth-child(11) { transition-delay: 0.64s; }
    [data-animate-stagger].is-visible > *:nth-child(12) { transition-delay: 0.70s; }
}

/* =============================================
   UTILITY CLASSES — replacing inline styles
   ============================================= */

/* Icon colour utilities */
.icon-gold   { color: #f59e0b !important; }
.icon-yellow { color: #facc15 !important; }
.icon-blue   { color: var(--primary-blue) !important; }
.icon-green  { color: #10b981 !important; }
.icon-red    { color: #ef4444 !important; }

/* Review stars — default colour so .stars needs no inline style */
.stars { color: #f59e0b; margin-bottom: 1rem; }

/* Review card inner text */
.review-quote       { color: var(--dark-slate); font-style: italic; margin-bottom: 1.5rem; line-height: 1.65; }
.review-author-name { margin: 0; font-size: 1rem; color: var(--dark-slate); font-weight: 700; }
.review-author-meta { color: #64748b; font-size: 0.85rem; display: block; margin-top: 2px; }

/* Hero note badge (Zenbooker callout in hero) */
.hero-note-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 500;
}
.hero-note-badge i { margin-right: 8px; }

/* How-it-works step cards */
.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.how-step {
    padding: 2.5rem 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-step-num {
    width: 60px; height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(74, 185, 245, 0.4);
    font-family: var(--font-display);
}
.how-step h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--dark-slate); }
.how-step p  { color: #475569; font-size: 0.95rem; line-height: 1.6; }

/* Subtitle centred with max-width */
.subtitle-centered {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Medium CTA button */
.btn-md { font-size: 1.1rem !important; padding: 1.1rem 2.5rem !important; }

/* Large hero CTA variants (local sector pages) */
.btn-hero { font-size: 1.2rem !important; padding: 1.2rem 3rem !important; text-transform: uppercase; font-weight: 700 !important; }
.btn-hero-amber { background: #f59e0b !important; border-color: #f59e0b !important; color: #fff !important; }
.btn-hero-white { background: var(--white) !important; color: var(--primary-blue) !important; border-color: transparent !important; }
