/* ==========================================================================
   COMPLEO - Premium B2B SaaS Landing Page
   ========================================================================== */

/* ============================================
   CSS VARIABLES - DESIGN SYSTEM
   ============================================ */

:root {
  /* Couleurs principales */
  --dark-primary: #0f172a;
  --dark-secondary: #1e293b;
  --dark-tertiary: #334155;
  --dark-hero: #041534;
  --dark-hero-end: #081E48;
  --dark-sections: #0B193E;
  /* Accents */
  --yellow-primary: #FFC42D;
  --yellow-hover: #ffd85c;
  --blue-primary: #2A7FFF;
  --blue-light: #60a5fa;
  --blue-glow: rgba(42, 127, 255, 0.15);
  /* Neutres */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  /* Sémantiques */
  --success: #10b981;
  --error: #ef4444;
  /* Gradients */
  --gradient-hero: linear-gradient(180deg, #041534 0%, #081E48 60%, #0B193E 100%);
  --gradient-dark-section: radial-gradient(ellipse 50% 30% at 80% 20%, rgba(42, 127, 255, 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(255, 196, 45, 0.15) 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(255, 196, 45, 0.35);
  --shadow-btn-yellow-hover: 0 6px 20px rgba(255, 196, 45, 0.5);
  --shadow-screenshot: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  /* Radius */
  --radius-lg: 20px;
  --radius-xl: 24px;

  /* ── Brief Design System ── */
  --color-bg-dark: #0B193E;
  --color-bg-dark-deep: #061238;
  --color-glow-blue: #2A7FFF;
  --color-accent-yellow: #FFC700;
  --color-accent-yellow-hover: #FFD633;
  --color-text-muted: #A8B3CC;
  --color-text-dark: #0B193E;
  --color-text-dark-muted: #5A6582;
  --color-check-green: #22C55E;
  --card-bg: rgba(11, 25, 62, 0.85);
  --card-border: rgba(42, 127, 255, 0.25);
  --card-shadow: 0 20px 60px -20px rgba(42, 127, 255, 0.4);
  --trust-card-bg: #FFFFFF;
  --trust-card-shadow: 0 24px 64px -16px rgba(11, 25, 62, 0.18);
  --trust-icon-color: #2A7FFF;
  --trust-divider: #E5EAF2;
}

/* ============================================
   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 !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
}

*,
*::before,
*::after {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
div,
button,
input,
textarea,
label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

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-highlight {
  display: inline;
  color: var(--yellow-primary);
}

.dark-section {
  color: rgba(255, 255, 255, 0.8);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes subtleMove {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(3px, -3px);
  }

  50% {
    transform: translate(-2px, 4px);
  }

  75% {
    transform: translate(4px, 2px);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content.fade-in-up { animation-delay: 0.1s; }
.hero-visual.fade-in-up { animation-delay: 0.3s; }
.trust-metrics-card.fade-in-up { animation-delay: 0.5s; }

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scroll-triggered fade-in */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar-compleo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.35s ease;
}

.navbar-compleo.scrolled {
  background: rgba(4, 21, 52, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

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

/* Nav Collapse — single menu for desktop & mobile */
.nav-collapse {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 0.625rem !important;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--yellow-primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

.nav-link:hover::after {
  width: calc(100% - 1.25rem);
}

/* Right Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.navbar-compleo .btn-yellow,
.navbar-compleo .btn-outline-pill {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* Pill Outline Button */
.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-outline-lg {
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
}

/* 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: collapse nav into dropdown */
@media (max-width: 1199.98px) {
  .nav-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(4, 21, 52, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 1.5rem;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-collapse.open {
    display: flex;
  }

  .nav-center {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem !important;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0.75rem;
  }

  .nav-actions .btn-yellow,
  .nav-actions .btn-outline-pill {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-accent-yellow);
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 8px 24px -8px rgba(255, 199, 0, 0.5);
  white-space: nowrap;
}

.btn-yellow:hover {
  background: var(--color-accent-yellow-hover);
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(255, 199, 0, 0.6);
}

.btn-yellow-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* CTA secondaire (outline sombre) */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-dark:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

.btn-lg {
  padding: 16px 32px;
}

/* 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-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 {}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #081E48 60%, var(--color-bg-dark-deep) 100%);
  color: var(--white);
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 10rem 0 8rem;
  min-height: 100vh;
  overflow: hidden;
}

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

/* Background glow effect */
.hero-bg-glow {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 127, 255, 0.35) 0%, transparent 70%);
  transform: translateY(-50%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Content (Left) */
.hero-content {
  max-width: 620px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.hero-subtitle {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 540px;
  font-weight: 400;
}

/* Check icon (CSS-only) */
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  flex-shrink: 0;
  position: relative;
}

.check-icon::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-check-green);
  border-bottom: 2px solid var(--color-check-green);
  transform: rotate(-45deg);
  position: absolute;
  top: 6px;
}

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

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}

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

/* Dashboard card sub text */
.dash-card-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

/* ============================================
   HERO VISUAL (Right Side)
   ============================================ */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-hub-wrapper {
  position: relative;
  width: 520px;
  height: 520px;
}

/* Orbit System */
.orbit-system {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(42, 127, 255, 0.12);
}

.orbit-1 {
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  border-color: rgba(42, 127, 255, 0.2);
  animation: orbitSpin 30s linear infinite;
}

.orbit-2 {
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  border-style: dashed;
  border-color: rgba(42, 127, 255, 0.1);
  animation: orbitSpinReverse 45s linear infinite;
}

.orbit-3 {
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-color: rgba(255, 255, 255, 0.05);
  animation: orbitSpin 60s linear infinite;
}

/* AI Center Hub */
.ai-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 5;
}

.ai-center-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 127, 255, 0.25) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.ai-center-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(10, 30, 72, 0.8);
  border: 1.5px solid rgba(42, 127, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(42, 127, 255, 0.2),
    inset 0 0 20px rgba(42, 127, 255, 0.1);
}

/* Platform Icons */
.platform-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 6;
  animation: subtleMove 6s ease-in-out infinite;
}

.platform-icon img,
.platform-icon svg {
  display: block;
}

.platform-google {
  top: 8%;
  left: 15%;
  animation-delay: 0s;
}

.platform-meta {
  top: 2%;
  right: 18%;
  animation-delay: 1s;
}

.platform-tiktok {
  top: 40%;
  right: 0;
  animation-delay: 2s;
}

.platform-linkedin {
  bottom: 8%;
  left: 10%;
  animation-delay: 0.5s;
}

.platform-email {
  bottom: 2%;
  right: 15%;
  animation-delay: 1.5s;
}

/* Dashboard Cards (Glassmorphism) */
.dash-card {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.125rem 1.25rem;
  z-index: 7;
  box-shadow: var(--card-shadow);
}

.dash-card-leads {
  top: 5%;
  right: -10%;
  width: 240px;
  animation: float 6s ease-in-out infinite;
}

.dash-card-conversion {
  bottom: 5%;
  left: -5%;
  width: 240px;
  animation: float 6s ease-in-out infinite 3s;
}

.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.dash-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-card-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-check-green);
  background: rgba(34, 197, 94, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}

.dash-card-badge.badge-green {
  color: var(--color-check-green);
  background: rgba(34, 197, 94, 0.12);
}

.dash-card-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.dash-card-chart {
  height: 40px;
  overflow: hidden;
  border-radius: 8px;
}

.dash-card-chart svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   TRUST METRICS SECTION
   ============================================ */

.trust-metrics-section {
  position: relative;
  margin-top: -64px;
  z-index: 10;
  padding-bottom: 0;
}

.trust-metrics-card {
  background: var(--trust-card-bg);
  border-radius: 24px;
  box-shadow: var(--trust-card-shadow);
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-metrics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px -16px rgba(11, 25, 62, 0.22);
}

.trust-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-metric-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 127, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 8px;
  color: var(--trust-icon-color);
}

.trust-metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trust-metric-label {
  font-size: 0.8125rem;
  color: var(--color-text-dark-muted);
  font-weight: 400;
}

.trust-metric-divider {
  width: 1px;
  height: 48px;
  background: var(--trust-divider);
  flex-shrink: 0;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
  background: var(--white);
  padding: 4rem 0 5rem;
  position: relative;
}

.partners-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
  height: 50px;
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
}

.partner-logo img {
  max-height: 50px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo svg {
  height: 40px;
  max-width: 130px;
  width: auto;
}

/* ============================================
   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 */
.methode-section .row {
  display: flex !important;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 90%;
  margin-top: 0;
  margin-bottom: 0;
}

.methode-section .col-md-4 {
  flex: 0 0 auto !important;
  width: 27% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
}

.method-card {
  background: #13224A;
  border: 1px solid rgba(42, 127, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 127, 255, 0.4);
}

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

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

.text-orange {
  color: #e07a3a !important;
}

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

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

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

.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(255, 196, 45, 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 */
.campaign-images {
  margin-top: 2rem;
  padding: 0;
  position: relative;
}

.campaign-images::after {
  display: none;
}

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

/* 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);
}

/* ============================================
   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%;
}

.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);
}

/* ============================================
   TÉMOIGNAGES SECTION
   ============================================ */

.temoignages-section {
  background: var(--dark-sections);
  padding: 6rem 0;
  position: relative;
  color: var(--white);
}

.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: #ffffff !important;
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  color: var(--dark-primary);
}

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

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

.testimonial-text {
  color: #1e293b !important;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #f1f5f9;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.testimonial-card .testimonial-name {
  color: #000000 !important;
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-card .testimonial-role {
  color: rgb(0 0 0 / 75%) !important;
  font-size: 0.8125rem;
}

.company-logo {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================
   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: var(--radius-lg);
  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-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;
}

/* ============================================
   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;
}

section {
  position: relative;
  border: none;
  margin-top: -1px;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

/* ============================================
   CAMPAIGN CSS SLIDER (Radio-based)
   ============================================ */

.campaign-image-set [type=radio] {
  display: none;
}

.campagnes_content {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 670px;
}

.campagnes_content::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, #FFFFFF 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.campagnes_content label {
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 3px 8px;
  cursor: pointer;
  height: 649px;
  left: 0;
  margin: 40px auto 0;
  position: absolute;
  right: 0;
  transition: transform 0.5s ease-in-out, bottom 0.5s ease-in-out;
  width: 264px;
  overflow: hidden;
}

.campagnes_content label img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* === Travaux 4 slides === */
#t1:checked~#tslide1,
#t2:checked~#tslide2,
#t3:checked~#tslide3,
#t4:checked~#tslide4 {
  bottom: -45px;
  transform: translate3d(-55%, 0, 0);
  transition: ease-in-out 0.5s;
}

#t1:checked~#tslide2,
#t2:checked~#tslide3,
#t3:checked~#tslide4,
#t4:checked~#tslide1 {
  bottom: -45px;
  transform: translate3d(55%, 0, 0);
  transition: ease-in-out 0.5s;
}

#t1:checked~#tslide4,
#t2:checked~#tslide1,
#t3:checked~#tslide2,
#t4:checked~#tslide3 {
  bottom: 0;
  transform: translate3d(-165%, 0, 0);
  transition: ease-in-out 0.5s;
}

#t1:checked~#tslide3,
#t2:checked~#tslide4,
#t3:checked~#tslide1,
#t4:checked~#tslide2 {
  bottom: 0;
  transform: translate3d(165%, 0, 0);
  transition: ease-in-out 0.5s;
}

/* === Assurances 4 slides === */
#a1:checked~#aslide1,
#a2:checked~#aslide2,
#a3:checked~#aslide3,
#a4:checked~#aslide4 {
  bottom: -45px;
  transform: translate3d(-55%, 0, 0);
  transition: ease-in-out 0.5s;
}

#a1:checked~#aslide2,
#a2:checked~#aslide3,
#a3:checked~#aslide4,
#a4:checked~#aslide1 {
  bottom: -45px;
  transform: translate3d(55%, 0, 0);
  transition: ease-in-out 0.5s;
}

#a1:checked~#aslide4,
#a2:checked~#aslide1,
#a3:checked~#aslide2,
#a4:checked~#aslide3 {
  bottom: 0;
  transform: translate3d(-165%, 0, 0);
  transition: ease-in-out 0.5s;
}

#a1:checked~#aslide3,
#a2:checked~#aslide4,
#a3:checked~#aslide1,
#a4:checked~#aslide2 {
  bottom: 0;
  transform: translate3d(165%, 0, 0);
  transition: ease-in-out 0.5s;
}

/* === Automobile 4 slides === */
#au1:checked~#auslide1,
#au2:checked~#auslide2,
#au3:checked~#auslide3,
#au4:checked~#auslide4 {
  bottom: -45px;
  transform: translate3d(-55%, 0, 0);
  transition: ease-in-out 0.5s;
}

#au1:checked~#auslide2,
#au2:checked~#auslide3,
#au3:checked~#auslide4,
#au4:checked~#auslide1 {
  bottom: -45px;
  transform: translate3d(55%, 0, 0);
  transition: ease-in-out 0.5s;
}

#au1:checked~#auslide4,
#au2:checked~#auslide1,
#au3:checked~#auslide2,
#au4:checked~#auslide3 {
  bottom: 0;
  transform: translate3d(-165%, 0, 0);
  transition: ease-in-out 0.5s;
}

#au1:checked~#auslide3,
#au2:checked~#auslide4,
#au3:checked~#auslide1,
#au4:checked~#auslide2 {
  bottom: 0;
  transform: translate3d(165%, 0, 0);
  transition: ease-in-out 0.5s;
}

/* === Sénior 4 slides === */
#b1:checked~#bslide1,
#b2:checked~#bslide2,
#b3:checked~#bslide3,
#b4:checked~#bslide4 {
  bottom: -45px;
  transform: translate3d(-55%, 0, 0);
  transition: ease-in-out 0.5s;
}

#b1:checked~#bslide2,
#b2:checked~#bslide3,
#b3:checked~#bslide4,
#b4:checked~#bslide1 {
  bottom: -45px;
  transform: translate3d(55%, 0, 0);
  transition: ease-in-out 0.5s;
}

#b1:checked~#bslide4,
#b2:checked~#bslide1,
#b3:checked~#bslide2,
#b4:checked~#bslide3 {
  bottom: 0;
  transform: translate3d(-165%, 0, 0);
  transition: ease-in-out 0.5s;
}

#b1:checked~#bslide3,
#b2:checked~#bslide4,
#b3:checked~#bslide1,
#b4:checked~#bslide2 {
  bottom: 0;
  transform: translate3d(165%, 0, 0);
  transition: ease-in-out 0.5s;
}