/* ==========================================================================
   COMPLEO - Pixel-Perfect Landing Page Styles
   Bootstrap 5 + Tailwind CDN base
   ========================================================================== */

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */
:root {
  /* Couleurs principales */
  --dark-primary: #0f172a;
  --dark-secondary: #1e293b;
  --dark-tertiary: #334155;
  --dark-hero: #030D29;
  --dark-sections: #0B193E;
  
  /* Accents */
  --yellow-primary: #f5b731;
  --yellow-hover: #fbbf24;
  --blue-primary: #3b82f6;
  --blue-light: #60a5fa;
  
  /* Neutres */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  
  /* Sémantiques */
  --success: #10b981;
  --error: #ef4444;
  
  /* Gradients */
  --gradient-hero: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(30,58,138,0.3) 0%, transparent 50%),
                   linear-gradient(180deg, #021033 0%, #030d29 100%);
  --gradient-dark-section: radial-gradient(ellipse 60% 40% at 20% 80%, rgba(245,183,49,0.08) 0%, transparent 50%),
                           radial-gradient(ellipse 50% 30% at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 50%),
                           linear-gradient(180deg, var(--dark-sections) 0%, var(--dark-sections) 100%);
  --gradient-cta: radial-gradient(ellipse 50% 50% at 30% 50%, rgba(245,183,49,0.2) 0%, transparent 60%),
                  linear-gradient(180deg, var(--dark-sections) 0%, var(--dark-sections) 100%);
  
  /* Ombres */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04),
                 0 4px 6px rgba(0,0,0,0.04),
                 0 12px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 4px 8px rgba(0,0,0,0.06),
                       0 12px 24px rgba(0,0,0,0.08),
                       0 24px 48px rgba(0,0,0,0.1);
  --shadow-btn-yellow: 0 4px 14px rgba(245,183,49,0.4);
  --shadow-btn-yellow-hover: 0 6px 20px rgba(245,183,49,0.5);
  --shadow-screenshot: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.text-large {
  font-size: 1.125rem;
}

.text-small {
  font-size: 0.875rem;
}

.text-highlight {
  display: inline;
  color: var(--yellow-primary);
}

/* Dark section text */
.dark-section {
  color: rgba(255,255,255,0.8);
}

.dark-section h1,
.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-compleo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar-compleo.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.navbar-brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.navbar-brand .compleo-logo {
  display: block;
  height: 45px;
  width: auto;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--white) !important;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 12px;
  padding: 0;
  margin-top: 0.5rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-mobile.open {
  opacity: 1;
  max-height: 500px;
  padding: 1.5rem;
}

.nav-link-mobile {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-link-mobile:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white) !important;
}

/* Responsive - Show mobile menu on small screens */
@media (max-width: 991.98px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-mobile {
    display: flex;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--yellow-primary);
  color: var(--dark-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: var(--shadow-btn-yellow);
}

/* Form Legal Text */
.form-legal-text {
  margin-top: 1.5rem;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  text-align: center;
}

.form-legal-text p {
  margin-bottom: 0.5rem;
}

.form-legal-text a {
  color: #6b7280;
  text-decoration: underline;
}

.form-legal-text a:hover {
  color: #374151;
}

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

.btn-yellow-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* ============================================
   HERO MAIN WRAPPER
   ============================================ */
.hero-main {
  /* min-height: 100vh;
  display: flex;
  flex-direction: column; */
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  flex: 1;
  background: var(--dark-hero) !important;
  color: var(--white);
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 8rem 0 2rem;
  min-height: auto;
  overflow: visible;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}

.hero-divider {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-logo {
  display: block;
  height: 34px;
  width: auto;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.08 !important;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem !important;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.hero-checklist li i {
  color: #22c55e;
  font-size: 1.125rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 4rem !important;
    max-width: 600px;
    line-height: 1.04 !important;
  }

  .hero-subtitle {
    max-width: 560px;
    font-size: 1.25rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.75rem;
  }

  .hero-checklist {
    margin-bottom: 1.75rem;
  }

  .hero-checklist li {
    font-size: 1rem;
    margin-bottom: 0.65rem;
  }

  .hero-checklist li i {
    font-size: 1.05rem;
  }
}

/* Hero Gauge - Compte-tours style */
.hero-gauge-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  /* Ensure SVG scales properly but doesn't get huge */
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .hero-gauge-wrapper {
    justify-content: center;
  }
}

.hero-gauge-stage {
  position: relative;
  width: min(520px, 100%);
  overflow: visible;
}

.hero-gauge-stage::before {
  display: none;
}

/* Box Stats Flottante (Style Capture 2) */
.gauge-stats-card {
  position: absolute;
  top: 18px;
  left: -170px;
  background: rgba(15, 23, 42, 0.85); /* Dark background */
  border: 1px solid rgba(59, 130, 246, 0.2); /* Subtle blue border */
  border-radius: 16px;
  padding: 1rem 1.125rem;
  min-width: 240px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.35);
  z-index: 10;
  animation: floatStats 7s ease-in-out infinite;
}

@media (min-width: 992px) {
  .gauge-stats-card {
    top: 24px;
    left: -180px;
    min-width: 220px;
    padding: 0.95rem 1.05rem;
  }
}

@keyframes floatStats {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-row {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.75rem;
  color: #94a3b8; /* Text muted */
  margin-bottom: 0.25rem;
}

.stat-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.stat-val {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* SVG de la jauge */
.hero-gauge-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.15));
  position: relative;
  z-index: 1;
}

/* Animation de l'aiguille */
/* 
   Needle points RIGHT (0deg) by default in SVG.
   Gauge starts at Left (180deg).
   Pour matcher la maquette, la fin doit être légèrement vers le bas à droite.
   On force une rotation au-delà de 360deg pour garder le sens horaire.
*/
@keyframes needleRotate {
  0% {
    transform: rotate(180deg); /* Start pointing Left */
  }
  100% {
    transform: rotate(382deg); /* ~22deg (droite-bas), rotation horaire */
  }
}

.gauge-needle {
  transform-origin: 300px 300px; /* Center of the gauge in SVG coords */
  transform: rotate(180deg);
  animation: needleRotate 2.2s cubic-bezier(0.18, 0.9, 0.22, 1) forwards;
  animation-delay: 0.45s;
}

@media (max-width: 991.98px) {
  .gauge-stats-card {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 1rem;
  }
}

/* Hide old styles if present */
.gauge-stat-box, .gauge-icons, .gauge-icon {
  display: none;
}

/* ============================================
   SHAPE DIVIDERS (SVG Bubbles)
   ============================================ */
.shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}

.shape-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.shape-divider.shape-top {
  top: 0;
  transform: translateY(-99%);
}

.shape-divider.shape-bottom {
  bottom: 0;
  transform: translateY(99%);
}

@media (max-width: 768px) {
  .shape-divider svg {
    height: 40px;
  }
}

/* ============================================
   PARTNERS SECTION (sur fond dark, dans le hero)
   ============================================ */
.partners-section {
  background: var(--dark-sections);
  padding: 0 0 5rem;
  position: relative;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
  height: 60px;
}

.partner-logo:hover {
  filter: none;
  opacity: 1;
}

.partner-logo .logo-svg {
  width: 100%;
  height: 100%;
  max-width: 160px;
  max-height: 50px;
}

/* ============================================
   NOTRE MÉTHODE SECTION
   ============================================ */
.methode-section {
  background: var(--dark-sections);
  padding: 3rem 0 6rem;
  position: relative;
}

.methode-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.methode-section .section-header h2 {
  margin-bottom: 1rem;
}

.methode-section .section-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Method Cards */
.method-card {
  background: #13224A;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.method-icon img {
  border-radius: 50%;
}

/* Couleurs des titres */
.text-orange {
  color: #e07a3a !important;
}

.text-green {
  color: #10b981 !important;
}

.text-blue {
  color: #60a5fa !important;
}

.method-card h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.method-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

.method-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  background: var(--yellow-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark-primary);
  box-shadow: 0 4px 12px rgba(245,183,49,0.4);
}

/* ============================================
   CAMPAGNES SECTION
   ============================================ */
.campagnes-section {
  background: var(--gradient-dark-section);
  padding: 6rem 0;
  position: relative;
  color: var(--white);
}

/* Ekomi Rating */
.ekomi-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.ekomi-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.ekomi-seal {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.ekomi-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ekomi-stars {
  color: var(--yellow-primary);
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.ekomi-score {
  color: var(--white);
  font-size: 0.9375rem;
}

/* Campaign Images Swiper */
.campaign-images {
  margin-top: 2rem;
  padding: 0;
}

.campaign-image-set {
  width: 100%;
}

.campaign-swiper {
  padding-bottom: 3rem;
}

.campaign-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-swiper .swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.campaign-swiper .swiper-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}

.campaign-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
}

.campaign-swiper .swiper-pagination-bullet-active {
  background: var(--yellow-primary);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 35px;
  font-weight: 700;
  color: #8ba3c7;
}

.section-header h2 .text-white {
  color: var(--white);
}

.campagnes-section .section-header p {
  color: rgba(255,255,255,0.7);
}

/* Campaign badges/filters */
.campaign-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: #1e3a5f;
  color: var(--white);
}

.campaign-badge:hover {
  background: #2a4a73;
  border-color: rgba(255,255,255,0.2);
}

.campaign-badge.active {
  background: var(--yellow-primary);
  color: var(--dark-primary);
  border-color: var(--yellow-primary);
}

.badge-icon {
  font-size: 1.25rem;
}

/* Campaign slider */
.campaign-slider {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.campaign-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-screenshot);
  width: 280px;
  transition: all 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-8px);
}

.campaign-card-header {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.campaign-card-header.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.campaign-card-header.yellow {
  background: linear-gradient(135deg, #f5b731 0%, #f59e0b 100%);
}

.campaign-card-header.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.campaign-card-header i {
  font-size: 1.25rem;
  color: var(--white);
}

.campaign-card-header span {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}

.campaign-card-body {
  padding: 1.25rem;
  background: var(--white);
}

.campaign-card-body p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.campaign-card-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.campaign-card-stat {
  text-align: center;
}

.campaign-card-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-primary);
}

.campaign-card-stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ============================================
   CRM SECTION
   ============================================ */
.crm-section {
  background: var(--dark-sections);
  padding: 6rem 0;
  position: relative;
}


.crm-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.crm-screenshot {
  max-width: 484px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-screenshot);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
}

.crm-intro {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.crm-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.crm-content > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.feature-list li i {
  color: #22c55e;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0;
}

.app-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.app-badges img {
  height: 47px;
  width: 157px;
  transition: transform 0.3s ease;
}

.app-badges img:hover {
  transform: scale(1.05);
}

.partner-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.partner-badges img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-badges img:hover {
  opacity: 1;
}

/* ============================================
   TÉMOIGNAGES SECTION
   ============================================ */
.temoignages-section {
  background: var(--dark-sections);
  padding: 6rem 0;
  position: relative;
  color: var(--white);
}


/* Testimonials Grid Layout */
.testimonials-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
  max-width: 450px;
}

.testimonials-col-left {
  padding-top: 0;
}

.testimonials-col-right {
  padding-top: 5rem;
}

@media (max-width: 991.98px) {
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
  .testimonials-col-right {
    padding-top: 0;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.quote-icon {
  width: 65px;
  height: 46px;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--dark-primary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.company-logo {
  height: auto;
  width: auto;
  object-fit: contain;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  color: var(--dark-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-role {
  color: var(--gray-600);
  font-size: 0.8125rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-role {
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
}

.testimonial-logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-section {
  background: var(--dark-sections);
  padding: 4rem 0;
  position: relative;
  color: var(--white);
}

.cta-section .row {
  background: linear-gradient(135deg, #0a1628 0%, #0f1d36 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-info {
  padding: 3rem;
}

.cta-info h3 {
  color: #8ba3c7;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.cta-info h3 .text-white {
  color: var(--white);
}

.cta-divider {
  width: 60px;
  height: 3px;
  background: var(--yellow-primary);
  margin-bottom: 2rem;
}

.office-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.office-icon {
  width: 24px;
  height: 24px;
  color: var(--yellow-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.office-name {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.office-address {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.office-phone {
  color: var(--yellow-primary);
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
  font-size: 1rem;
  color: var(--dark-primary);
  background: transparent;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-bottom-color: var(--yellow-primary);
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: var(--gray-600);
}

.contact-form textarea.form-control {
  resize: none;
  min-height: 80px;
}

.contact-form .btn-yellow {
  margin-top: 1rem;
  padding: 1rem 3rem;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--dark-sections);
  padding: 0;
  margin-top: -1px;
}

.footer-curve {
  width: 100%;
  line-height: 0;
  background: var(--dark-sections);
}

.footer-curve svg {
  display: block;
  width: 100%;
  height: 120px;
}

@media (max-width: 768px) {
  .footer-curve svg {
    height: 80px;
  }
}

.footer-content {
  background: var(--white);
  padding: 2rem 0 3rem;
  text-align: center;
}

.footer-logo-wrapper {
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.footer-logo .logo-text {
  color: var(--dark-primary);
}

.footer-logo .logo-icon {
  color: var(--yellow-primary);
  margin: 0 2px;
}

.footer-logo-img {
  height: 55px;
  width: auto;
  max-width: 175px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: var(--dark-primary);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--yellow-primary);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
  background: var(--yellow-primary);
  color: var(--dark-primary);
}

.footer-copyright {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 7rem 0 4rem;
  }
  
  .hero-gauge-wrapper {
    margin-top: 3rem;
  }
  
  .hero-gauge {
    max-width: 320px;
  }
  
  .methode-section,
  .campagnes-section,
  .crm-section,
  .temoignages-section,
  .cta-section {
    padding: 4rem 0;
  }
  
  .crm-image-wrapper {
    margin-bottom: 3rem;
  }
  
  .crm-screenshot {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 1.5rem;
    word-break: break-word;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.125rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 0.9375rem;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  .method-card h3 {
    font-size: 1rem;
  }
  
  .method-card p {
    font-size: 0.875rem;
  }
  
  .crm-content p,
  .feature-list li {
    font-size: 0.9375rem;
  }
  
  .cta-info h3 {
    font-size: 1.5rem;
  }
  
  .cta-info p {
    font-size: 0.9375rem;
  }
  
  .hero-section {
    padding: 6rem 0 3rem;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2rem !important;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-checklist {
    display: inline-block;
    text-align: left;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-gauge-wrapper {
    margin-top: 2rem;
    overflow: hidden;
  }
  
  .hero-gauge-stage {
    max-width: 100%;
    transform: scale(0.85);
    transform-origin: center top;
  }
  
  .hero-gauge-svg {
    max-width: 100%;
    height: auto;
  }
  
  .gauge-stats-card {
    transform: scale(0.9);
    transform-origin: top left;
  }
  
  .hero-gauge {
    max-width: 280px;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .method-card {
    padding: 1.5rem;
  }
  
  .campaign-slider {
    flex-direction: column;
  }
  
  .campaign-card {
    max-width: 100%;
    width: 100%;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 3rem;
  }
  
  .cta-phone-mockup {
    margin-top: 2rem;
  }
  
  .cta-phone-mockup img {
    max-width: 220px;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .btn-yellow,
  .btn-outline-light {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .campaign-filters {
    gap: 0.375rem;
  }
  
  .campaign-badge {
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-yellow {
  color: var(--yellow-primary) !important;
}

.bg-dark-primary {
  background-color: var(--dark-primary) !important;
}

.bg-gray-50 {
  background-color: var(--gray-50) !important;
}

/* Smooth section transitions */
section {
  position: relative;
  border: none;
  margin-top: -1px;
}

/* Hide scrollbar but keep functionality */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
