/* ===== Variables & Base ===== */
/* Charte Xfood : fonds blancs, bleu + jaune (th?me ?l?gant) */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f8f8;
  --color-surface: #f0f0f0;
  --color-text: #1a1a1a;
  --color-text-muted: #555555;
  --color-accent: #1e3a5f;
  --color-accent-hover: #2d4a7c;
  --color-accent-yellow: #eab308;
  --color-accent-yellow-hover: #facc15;
  --color-accent-soft: rgba(30, 58, 95, 0.12);
  --color-border: #e5e5e5;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
}

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

/* ===== Animations (style Restop) ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Circuit anim? : bordure en d?grad? tournant (Boutons Circuit Anim?s) */
@keyframes circuitRotate {
  to { transform: rotate(360deg); }
}

/* Flottement l?ger pour les formes du hero */
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -15px) scale(1.02); }
}

@keyframes floatReverse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8px, 10px) scale(1.03); }
}

/* Pulse doux pour widgets / disponibilit? */
@keyframes pulseSoft {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(30, 58, 95, 0.2); }
  50% { opacity: 0.95; box-shadow: 0 0 20px 2px rgba(30, 58, 95, 0.15); }
}

/* Ligne de chargement / progression (Widget Disponibilit?) */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ?l?ments anim?s au scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }
.animate-on-scroll.delay-7 { transition-delay: 0.7s; }
.animate-on-scroll.delay-8 { transition-delay: 0.8s; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: transparent;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Fond technologique (circuit / r?seau) - toute la page */
.page-bg-tech {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-color: #f7f6f4;
}

.page-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

/* ===== Header (fond jaune charte, style capture 2) ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-accent-yellow);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background var(--transition);
}

.header.is-scrolled {
  background: var(--color-accent-yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 1.5rem;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Quicksand', var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo:hover {
  color: #0f0f0f;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  color: inherit;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.75rem;
  list-style: none;
}

.nav a {
  font-family: 'Quicksand', var(--font-sans);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.nav a:hover {
  color: #0f0f0f;
}

/* Bouton Le Support avec ic?ne ?couteurs */
.nav-btn-support {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 700;
}
.nav-btn-support:hover {
  background: #333;
  color: #fff !important;
}
.nav-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-support-icon svg {
  width: 20px;
  height: 20px;
}

.nav .badge {
  background: #1a1a1a;
  color: #fff;
  font-size: 0.65rem;
  font-family: 'Quicksand', var(--font-sans);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-left: 0.35rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

.header-cta .btn {
  white-space: nowrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary span {
  font-size: 0.8rem;
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

/* Animation pulse jaune pour le bouton D?couvrir */
@keyframes btnYellowPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4), 0 2px 8px rgba(234, 179, 8, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(234, 179, 8, 0), 0 4px 20px rgba(234, 179, 8, 0.35);
  }
}

.btn-yellow {
  background: var(--color-accent-yellow);
  color: #1a1a1a;
  border: 2px solid transparent;
  animation: btnYellowPulse 2s ease-in-out infinite;
  position: relative;
}

.btn-yellow:hover {
  background: var(--color-accent-yellow-hover);
  color: #1a1a1a;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(234, 179, 8, 0.45);
  animation: btnYellowPulse 1s ease-in-out infinite;
}

/* Boutons circuit anim?s (d?grad? conique tournant autour du bouton) */
.btn-circuit-wrap {
  position: relative;
  display: inline-flex;
  border-radius: var(--radius);
  padding: 3px;
  overflow: hidden;
}

.btn-circuit-wrap::before {
  content: "";
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
  background: conic-gradient(from 0deg, var(--color-accent), var(--color-accent-yellow), #2d4a7c, var(--color-accent));
  animation: circuitRotate 3s linear infinite;
}

.btn-circuit-wrap .btn {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) - 2px);
}

.btn-circuit-wrap.btn-circuit-outline::before {
  background: conic-gradient(from 0deg, var(--color-border), var(--color-accent), var(--color-text-muted), var(--color-border));
}

.btn-circuit-wrap.btn-circuit-outline .btn {
  background: var(--color-bg-alt);
  border: 2px solid transparent;
}

/* ===== Hero avec image de fond (style header restaurant) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: #2a2520;
}

/* Image de fond (plats / restaurant) - mettre votre image dans assets/hero-bg.jpg */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.jpg?v=2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay sombre pour lisibilit? du texte */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation-duration: 12s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--color-accent);
  top: -150px;
  right: -100px;
  animation-name: float;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: var(--color-accent-yellow);
  bottom: 10%;
  left: -80px;
  animation-name: floatReverse;
  animation-duration: 15s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* Hero : apparition anim?e gauche ? droite au chargement */
.hero .hero-title-line,
.hero .hero-subtitle,
.hero .hero-widgets,
.hero .hero-buttons,
.hero .hero-social {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.hero-ready .hero-title-line:nth-child(1) { transition-delay: 0.08s; }
.hero.hero-ready .hero-title-line:nth-child(2) { transition-delay: 0.22s; }
.hero.hero-ready .hero-subtitle { transition-delay: 0.38s; }
.hero.hero-ready .hero-widgets { transition-delay: 0.52s; }
.hero.hero-ready .hero-buttons { transition-delay: 0.68s; }
.hero.hero-ready .hero-social { transition-delay: 0.82s; }

.hero.hero-ready .hero-title-line,
.hero.hero-ready .hero-subtitle,
.hero.hero-ready .hero-widgets,
.hero.hero-ready .hero-buttons,
.hero.hero-ready .hero-social {
  opacity: 1;
  transform: translateX(0);
}

/* Police hero : Cormorant Garamond (titres) + Outfit (sous-titre) */
.hero-title {
  font-family: 'Cormorant Garamond', var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.hero-title-line:first-child {
  font-weight: 500;
  font-style: italic;
  font-size: 0.92em;
}


.hero-title-line {
  display: block;
}

.hero-title,
.hero-title-line {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title-line.accent {
  margin-left: 0.15em;
  color: var(--color-accent-yellow);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

/* ----- Barre hero style mod?le : bandes pas trop larges, m?t?o lisible, ?l?gant ----- */
.hero-widgets-bar {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  background: #fff;
  border-radius: 16px;
  padding: 0.6rem 0.85rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

/* Bandes color?es : largeur limit?e pour rester ?l?gantes (pas trop larges) */
.widget-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1rem;
  border-radius: 14px;
  color: #fff;
  flex: 0 0 auto;
  max-width: 200px;
}

.widget-block-time {
  max-width: 195px;
}
.widget-block-weather {
  max-width: 200px;
}
.widget-block-countdown {
  max-width: 215px;
  padding-right: 1.1rem;
}

.widget-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  opacity: 0.95;
}

.widget-block-icon svg {
  width: 22px;
  height: 22px;
}

.widget-weather-icon {
  width: 40px;
  height: 40px;
}
.widget-weather-icon svg {
  width: 26px;
  height: 26px;
}

.widget-block-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.widget-block-value {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.widget-block-label {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.9);
}

.widget-block-time .widget-block-label {
  color: rgba(255, 255, 255, 0.8);
}

.widget-block-time {
  background: #3E4A5C;
}

.widget-block-weather {
  background: #4285F4;
}

.widget-block-countdown {
  background: #FF2D3A;
}

.widget-block-countdown-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.95;
  font-weight: 600;
}

.widget-block-countdown-value {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.widget-bar-middle {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 1rem;
  flex: 1;
  min-width: 180px;
  flex-wrap: wrap;
}

.widget-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: #dc2626;
  font-size: 0.9rem;
}

.widget-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626;
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
  flex-shrink: 0;
  animation: pulseSoft 2s ease-in-out infinite;
}

.widget-bar-sep {
  width: 1px;
  height: 2rem;
  background: #e5e5e5;
  flex-shrink: 0;
}

.widget-bar-days {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.35;
}

.widget-bar-hours {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
}

.widget-bar-pause {
  font-size: 0.8rem;
  color: #6b7280;
}

.widget-bar-pause-hours {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ea580c;
  line-height: 1.35;
}

.widget-bar-closed {
  font-size: 0.9rem;
  font-weight: 600;
  color: #dc2626;
}

.hero-widgets-bar.is-open .widget-status {
  color: #16a34a;
}
.hero-widgets-bar.is-open .widget-status-dot {
  background: #16a34a;
}

@media (max-width: 900px) {
  .hero-widgets-bar {
    border-radius: 16px;
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .widget-block {
    border-radius: 12px;
    width: 100%;
    max-width: none;
  }
  .widget-bar-middle {
    flex-wrap: wrap;
    justify-content: flex-start;
    min-width: 0;
  }
  .widget-bar-sep {
    height: 1.25rem;
  }
}

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

.hero-social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.hero-social-icon:hover {
  transform: scale(1.08);
}

.hero-social-icon svg {
  width: 22px;
  height: 22px;
}

.hero-social-icon:first-child:hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.3);
}

.hero-social-icon:last-child:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Hero avec image : ic?nes sociales claires */
.hero .hero-social-icon {
  color: #fff;
  background: #dc2626;
  border-color: #dc2626;
}
.hero .hero-social-icon:hover {
  color: #fff;
  background: #b91c1c;
  border-color: #b91c1c;
}

/* ===== Sections communes ===== */
.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
}

/* ===== Pr?sentation ===== */
.section-presentation {
  background: var(--color-bg-alt);
}

.presentation-title {
  color: var(--color-accent-yellow);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(234, 179, 8, 0.2);
}

.presentation-content {
  max-width: 800px;
  margin: 0 auto;
}

.presentation-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* ===== Processus d'activation (charte Xfood : bleu + jaune) ===== */
@keyframes processArrowMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes processArrowMoveV {
  0% { transform: translateX(-50%) translateY(-100%); }
  100% { transform: translateX(-50%) translateY(100%); }
}

/* Lueur jaune sur les connecteurs (charte graphique) */
@keyframes processYellowGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.6), 0 0 16px rgba(234, 179, 8, 0.3);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 14px rgba(234, 179, 8, 0.9), 0 0 24px rgba(234, 179, 8, 0.5);
    opacity: 1;
  }
}

/* Pulse jaune sur les fl?ches */
@keyframes processArrowYellowPulse {
  0%, 100% { color: #eab308; filter: drop-shadow(0 0 4px rgba(234, 179, 8, 0.8)); }
  50% { color: #facc15; filter: drop-shadow(0 0 8px rgba(250, 204, 21, 1)); }
}

@keyframes processGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(30, 58, 95, 0.4), 0 0 40px rgba(30, 58, 95, 0.2); }
  50% { box-shadow: 0 0 28px rgba(30, 58, 95, 0.5), 0 0 50px rgba(30, 58, 95, 0.25); }
}

/* Particules : renforcer les points jaunes (charte) */
@keyframes processParticle {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; opacity: 0.4; }
  50% { background-position: 20px 10px, -15px 20px, 10px -10px, -20px -5px; opacity: 0.7; }
  100% { background-position: 0 0, 0 0, 0 0, 0 0; opacity: 0.4; }
}

/* Lueur jaune l?g?re sur les cartes au survol */
@keyframes processStepYellowBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
  50% { box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.4), 0 12px 32px rgba(30, 58, 95, 0.45); }
}

.section-process {
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
}

.section-process .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Particules : bleu + jaune (charte Xfood) */
.process-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(30, 58, 95, 0.4), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(234, 179, 8, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(234, 179, 8, 0.35), transparent),
    radial-gradient(2px 2px at 40% 80%, rgba(30, 58, 95, 0.3), transparent);
  background-size: 200px 200px, 180px 180px, 220px 220px, 190px 190px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  animation: processParticle 10s ease-in-out infinite;
  pointer-events: none;
}

.section-process .process-title {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

/* Piste horizontale : ?tapes + connecteurs */
.process-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2.5rem;
  max-width: 100%;
}

.process-step {
  flex: 0 0 auto;
  width: 180px;
  min-height: 200px;
  padding: 1.25rem 1rem 1.5rem;
  background: linear-gradient(145deg, #1a365d 0%, var(--color-accent) 45%, #152a47 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: processGlow 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30, 58, 95, 0.45);
  animation: processStepYellowBorder 2s ease-in-out infinite;
}

.process-num {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  background: #1a365d;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(234, 179, 8, 0.2);
  z-index: 2;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0.5rem auto 0.75rem;
}

.process-icon svg {
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0.95;
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.process-step p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.process-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.25rem;
}

/* Connecteur : ligne jaune lumineuse + fl?ches jaunes anim?es (charte Xfood) */
.process-connector {
  flex: 0 0 40px;
  align-self: center;
  position: relative;
  height: 4px;
  min-width: 24px;
}

.process-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(234, 179, 8, 0.6), var(--color-accent-yellow), rgba(234, 179, 8, 0.6));
  border-radius: 2px;
  animation: processYellowGlow 2s ease-in-out infinite;
}

.process-arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 8px;
  transform: translateY(-50%);
  overflow: hidden;
}

.process-arrows::before {
  content: "? ? ? ?";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 6px;
  color: #eab308;
  letter-spacing: 4px;
  white-space: nowrap;
  animation: processArrowMove 1.5s linear infinite, processArrowYellowPulse 1.2s ease-in-out infinite;
}

@media (min-width: 769px) {
  .process-connector {
    flex: 0 0 48px;
    min-width: 32px;
  }
}

@media (max-width: 900px) {
  .process-track {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .process-connector {
    width: 4px;
    min-width: 4px;
    flex: 0 0 24px;
    height: 24px;
  }

  .process-line {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(234, 179, 8, 0.6), var(--color-accent-yellow), rgba(234, 179, 8, 0.6));
  }

  .process-arrows {
    left: 50%;
    top: 0;
    right: auto;
    width: 8px;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
  }

  .process-arrows::before {
    content: "?";
    left: 50%;
    transform: translateX(-50%);
    animation: processArrowMoveV 1.5s linear infinite, processArrowYellowPulse 1.2s ease-in-out infinite;
    letter-spacing: 0;
  }
}

@media (max-width: 400px) {
  .process-step {
    width: 100%;
    max-width: 260px;
  }
}

/* ===== Comment ?a marche (style Restop : colonnes, cartes blanches, bordure rouge) ===== */
.section-how {
  background: #f0eeeb;
  position: relative;
  overflow: hidden;
}

/* Motif lignes rouges type circuit en filigrane */
.how-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(30, 58, 95, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(30, 58, 95, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 2rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 0;
}

/* Colonne : conteneur fond clair (ombre jaune, charte Xfood) */
.how-col {
  background: #faf9f7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.1);
}

/* Barre d'en-t?te colonne (gris tr?s fonc?, texte blanc) */
.how-col-header {
  background: #2d2d2d;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.how-col-body {
  padding: 1.25rem;
}

/* Carte d'?tape : fond blanc, bande gauche jaune (charte Xfood) */
.how-step {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1rem 1rem 0.75rem;
  margin-bottom: 0.75rem;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--color-accent-yellow);
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.12);
}

.how-step:last-child {
  margin-bottom: 0;
}

/* Cercle num?ro avec contour blanc, ombre jaune (charte Xfood) */
.how-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.35);
}

/* Triangle puce jaune (charte Xfood) */
.how-step-bullet {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--color-accent-yellow);
}

.how-step-text {
  flex: 1;
  min-width: 0;
}

.how-step-text strong {
  display: block;
  color: #1a1a1a;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.how-step-text span {
  display: block;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Ic?ne ? droite (line-art gris) */
.how-step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4a4a;
}

.how-step-icon svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Avantages (style Restop : panneaux sombres, cartes gris clair, bande rouge, ic?nes carr?es rouges) ===== */
.section-advantages {
  background: #e8e6e3;
}

.advantages-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(30, 58, 95, 0.2);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 0;
}

/* Colonne : fond jaune charte Xfood, coins arrondis en haut */
.advantages-col {
  background: var(--color-accent-yellow);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

/* En-t?te colonne : texte sombre (lisibilit? sur jaune) + soulignement bleu */
.advantages-col-header {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.advantages-col-header > span:first-child {
  display: block;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.advantages-col-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto;
  border-radius: 2px;
}

.advantages-col-body {
  padding: 1rem 1.25rem 1.5rem;
  background: var(--color-accent-yellow);
}

/* Carte avantage : fond gris clair, coins tr?s arrondis (pill), bande rouge ? gauche */
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1rem 1rem 0.75rem;
  margin-bottom: 0.75rem;
  background: #b0aeaa;
  border-radius: 999px;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.advantage-item:last-child {
  margin-bottom: 0;
}

/* Carr? rouge avec ic?ne blanche */
.advantage-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.45);
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
}

.advantage-text {
  flex: 1;
  min-width: 0;
}

.advantage-text strong {
  display: block;
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.advantage-text span {
  display: block;
  font-size: 0.88rem;
  color: #1a1a1a;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Offres / Table (style Restop : fond clair, en-t?te sombre, ic?nes rouges, coches rouges) ===== */
.section-offers {
  background: #ebe9e6;
  position: relative;
  overflow: hidden;
}

/* Motif g?om?trique l?ger type circuit en arri?re-plan */
.offers-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 77, 77, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 77, 77, 0.03) 0%, transparent 35%);
  pointer-events: none;
}

.section-offers .section-title {
  color: #1a1a1a;
}

.section-offers .section-subtitle {
  color: #555;
}

.offers-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #f8f8f8;
}

.offers-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.offers-table th,
.offers-table td {
  padding: 1rem 1.25rem;
  border: 1px solid #e5e5e5;
  vertical-align: top;
}

/* En-t?te : gris tr?s fonc?, texte blanc majuscules centr? */
.offers-table th {
  background: #282828;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.offers-table th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

.offers-table th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

/* Cellules contenu : fond gris tr?s clair */
.offers-table tbody td {
  background: #f8f8f8;
}

.offers-table tbody tr:hover td {
  background: #f0f0f0;
}

/* Colonne Licence : ic?ne rouge ronde + titre + description centr?s */
.offer-licence-cell {
  text-align: center;
  min-width: 200px;
}

.offer-licence-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 0.6rem;
}

.offer-licence-icon svg {
  width: 26px;
  height: 26px;
}

.offer-licence-cell strong {
  display: block;
  color: #1a1a1a;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.offer-licence-cell > span:not(.offer-licence-icon) {
  display: block;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.35;
}

/* Prix : gros rouge gras */
.offers-table .price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.2rem;
}

.offers-table .price small {
  font-weight: 500;
  font-size: 0.85rem;
  color: #666;
}

.offers-table .price-desc {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.6rem;
}

/* Liste de fonctionnalit?s : coche rouge (?) */
.offers-table ul {
  list-style: none;
  font-size: 0.85rem;
  color: #444;
  text-align: left;
}

.offers-table li {
  padding: 0.25rem 0;
  padding-left: 1.35rem;
  position: relative;
}

.offers-table li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Badge POPULAIRE : ovale noir, texte blanc */
.offers-table td.popular {
  background: #f8f8f8;
}

.badge-popular {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-best,
.badge-ultimate {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.badge-best {
  background: var(--color-accent);
  color: #fff;
}

.badge-ultimate {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-yellow));
  color: #fff;
}

.offers-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===== Formulaire ===== */
.section-form {
  background: var(--color-bg);
}

.offer-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-actions .btn {
  flex: 1;
}

/* ===== Partenaires ===== */
.section-partners {
  background: var(--color-bg-alt);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.partner-placeholder {
  width: 140px;
  height: 70px;
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ===== T?moignages (fond bleu charte) ===== */
.section-testimonials {
  background: var(--color-accent);
}

.section-testimonials .section-title {
  color: #fff;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-accent-yellow);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span:last-child {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== Footer (fond noir) ===== */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--color-surface);
  border: none;
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--color-accent);
}

.modal-content h2 {
  margin-bottom: 0.5rem;
}

.modal-content > p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-accent-yellow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    margin-left: auto;
  }

  /* Mobile first : header compact pour ne pas cacher le hero */
  .header-inner {
    padding: 0.6rem 1rem;
  }
  .logo-img {
    height: 56px;
  }
  .logo {
    font-size: 1.25rem;
  }
  .header-cta .btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }

  /* Hero : marge haute suffisante pour que le titre ne soit pas sous la bande jaune */
  .hero {
    padding: 7.5rem 1rem 3rem;
    min-height: auto;
    align-items: flex-start;
  }
  .hero-inner {
    width: 100%;
  }
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    margin-bottom: 0.4rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-widgets {
    flex-direction: column;
  }

  .section {
    padding: 3.5rem 0;
  }

  .offers-table th,
  .offers-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 8rem;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
  }
}

/* ========================================
   SECTION AVANTAGES - 4 CARTES
======================================== */
.section-advantages {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.advantages-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 3rem;
}

.advantages-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #eab308 0%, #f59e0b 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(234, 179, 8, 0.2);
  border-color: #eab308;
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-card .advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #eab308 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.3);
}

.advantage-card .advantage-icon svg {
  width: 40px;
  height: 40px;
  stroke: #ffffff;
}

.advantage-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.advantage-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .advantages-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .advantage-card {
    padding: 2rem 1.5rem;
  }
  
  .advantage-card .advantage-icon {
    width: 70px;
    height: 70px;
  }
  
  .advantage-card .advantage-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .advantage-card h3 {
    font-size: 1.25rem;
  }
  
  .advantage-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .advantages-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SECTION OFFRES - 4 CARTES MODERNES
======================================== */
.offers-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.offer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.2rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #eab308;
}

/* Badge */
.offer-card-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: linear-gradient(135deg, #eab308 0%, #f59e0b 100%);
  color: #ffffff;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

/* Header */
.offer-card-header {
  text-align: center;
  margin-bottom: 0.6rem;
}

.offer-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.5rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.offer-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

.offer-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.2rem;
}

.offer-card-subtitle {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 500;
}

/* Prix */
.offer-card-price {
  text-align: center;
  padding: 0.5rem 0;
  border-top: 2px solid #f1f5f9;
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 0.6rem;
}

.price-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount small {
  font-size: 0.85rem;
  font-weight: 600;
}

.price-period {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
}

/* Options de paiement */
.offer-card-payment-options {
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  margin-bottom: 0.6rem;
}

.payment-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

.payment-option:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}

.payment-label {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 500;
}

.payment-value {
  font-size: 0.7rem;
  color: #1e3a5f;
  font-weight: 700;
}

/* Description */
.offer-card-description {
  margin-bottom: 0.6rem;
}

.offer-card-description p {
  font-size: 0.7rem;
  line-height: 1.4;
  color: #64748b;
}

/* Features */
.offer-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
  flex-grow: 1;
}

.offer-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.25rem 0;
  font-size: 0.68rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.offer-card-features li:last-child {
  border-bottom: none;
}

.offer-card-features li svg {
  width: 13px;
  height: 13px;
  stroke: #22c55e;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Bouton */
.offer-card-btn {
  width: 100%;
  padding: 0.5rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.offer-card-btn:hover {
  background: linear-gradient(135deg, #2d5a8f 0%, #1e3a5f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

/* Variantes de cartes */
.offer-card-poc .offer-card-icon {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.offer-card-eco .offer-card-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.offer-card-pro .offer-card-icon {
  background: linear-gradient(135deg, #eab308 0%, #f59e0b 100%);
}

.offer-card-business .offer-card-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Carte populaire */
.offer-card-popular {
  border-color: #eab308;
  box-shadow: 0 8px 30px rgba(234, 179, 8, 0.2);
  transform: scale(1.05);
}

.offer-card-popular:hover {
  transform: scale(1.08) translateY(-10px);
}

/* Note de paiement */
.offers-payment-note {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.offers-payment-note p {
  margin: 0;
  font-size: 1rem;
  color: #1e40af;
}

.offers-payment-note strong {
  color: #1e3a5f;
}

/* Responsive */
@media (max-width: 1024px) {
  .offers-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .offer-card-popular {
    transform: scale(1);
  }

  .offer-card-popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 560px) {
  .offers-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .offer-card {
    padding: 1rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .offer-card-title {
    font-size: 1.5rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8f 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #eab308 0%, #f59e0b 50%, #eab308 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #eab308;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #eab308 0%, transparent 100%);
}

/* Liens projets */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  color: #eab308;
  transition: transform 0.3s ease;
}

.footer-link:hover {
  color: #eab308;
  transform: translateX(5px);
}

.footer-link:hover::before {
  transform: translateX(5px);
}

/* Contacts */
.footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contacts svg {
  width: 20px;
  height: 20px;
  stroke: #eab308;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contacts a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contacts a:hover {
  color: #eab308;
}

.footer-contacts span {
  color: rgba(255, 255, 255, 0.9);
}

/* R?seaux sociaux */
.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.2);
}

/* Couleurs sp?cifiques par r?seau */
.social-facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

.social-facebook:hover {
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
  transform: translateY(-3px);
}

.social-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-instagram:hover {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
  transform: translateY(-3px);
}

.social-tiktok {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social-tiktok:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.social-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px);
}

/* Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ========================================
   SECTION ILS NOUS ONT FAIT CONFIANCE
======================================== */
.section-trust {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.section-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"30\" cy=\"30\" r=\"1.5\" fill=\"%23eab308\" opacity=\"0.1\"/></svg>');
  pointer-events: none;
}

/* Grille des logos */
.trust-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}

.trust-logo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.trust-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #eab308 0%, #f59e0b 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.trust-logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(234, 179, 8, 0.15);
  border-color: #eab308;
}

.trust-logo-card:hover::before {
  transform: scaleX(1);
}

/* Placeholder pour logos */
.trust-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 120px;
  text-align: center;
}

.trust-logo-placeholder svg {
  width: 60px;
  height: 60px;
  stroke: #eab308;
  transition: all 0.3s ease;
}

.trust-logo-card:hover .trust-logo-placeholder svg {
  transform: scale(1.1);
  stroke: #f59e0b;
}

.trust-logo-placeholder span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a5f;
  transition: color 0.3s ease;
}

.trust-logo-card:hover .trust-logo-placeholder span {
  color: #eab308;
}

/* Stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e2e8f0;
}

.trust-stat {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.trust-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.15);
}

.trust-stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #eab308 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.trust-stat-label {
  display: block;
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* Animation au scroll */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.trust-logo-card {
  animation: fadeInScale 0.6s ease-out;
}

.trust-logo-card:nth-child(1) { animation-delay: 0.1s; }
.trust-logo-card:nth-child(2) { animation-delay: 0.2s; }
.trust-logo-card:nth-child(3) { animation-delay: 0.3s; }
.trust-logo-card:nth-child(4) { animation-delay: 0.4s; }
.trust-logo-card:nth-child(5) { animation-delay: 0.5s; }
.trust-logo-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
  .trust-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust-logo-card {
    padding: 1.5rem;
  }

  .trust-logo-placeholder {
    min-height: 100px;
  }

  .trust-logo-placeholder svg {
    width: 50px;
    height: 50px;
  }

  .trust-logo-placeholder span {
    font-size: 1rem;
  }

  .trust-stat-number {
    font-size: 2.5rem;
  }

  .trust-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .trust-logos-grid {
    grid-template-columns: 1fr;
  }

  .trust-stat-number {
    font-size: 2rem;
  }
}

/* Style pour les localisations des ?tablissements */
.trust-logo-placeholder small {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 400;
  margin-top: 0.25rem;
}

.trust-logo-card:hover .trust-logo-placeholder small {
  color: #f59e0b;
}

/* Style pour les images des logos */
.trust-logo-img {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

/* Augmentation de la taille des logos dans la section confiance */
.trust-logo-img {
  max-width: 180px !important;
  max-height: 180px !important;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.trust-logo-card:hover .trust-logo-img {
  transform: scale(1.08);
}

/* Ajustement responsive */
@media (max-width: 768px) {
  .trust-logo-img {
    max-width: 150px !important;
    max-height: 150px !important;
  }
}

/* ========================================
   CARROUSEL LOGOS PARTENAIRES
======================================== */
.trust-logos-carousel {
  width: 100%;
  overflow: hidden;
  padding: 3rem 0;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2 - 1.5rem));
  }
}

.carousel-item {
  flex-shrink: 0;
  width: 220px;
}

.carousel-item-inner {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.carousel-item-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.carousel-item img {
  max-width: 140px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.carousel-item-inner:hover img {
  transform: scale(1.05);
}

.carousel-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a5f;
  display: block;
}

.carousel-item small {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 400;
}

.carousel-item-inner:hover small {
  color: #f59e0b;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item {
    width: 180px;
  }
  
  .carousel-item img {
    max-width: 120px;
    max-height: 120px;
  }
  
  .carousel-track {
    gap: 2rem;
  }
}

/* ========================================
   STATISTIQUES - SECTION TRUST
======================================== */
.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-stat {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid #f59e0b;
}

.trust-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.trust-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.trust-stat-label {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .trust-stats {
    gap: 1rem;
  }
  .trust-stat {
    padding: 1.2rem 1.5rem;
    min-width: 130px;
  }
  .trust-stat-number {
    font-size: 1.8rem;
  }
  .trust-stat-label {
    font-size: 0.75rem;
  }
}

/* ========================================
   OFFRES - DESIGN COMPACT & ELEGANT
======================================== */

/* Grille : 4 cartes sur une ligne */
.offers-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1rem !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

/* Carte compacte */
.offer-card {
  padding: 1.2rem 1rem !important;
  border-radius: 16px !important;
}

/* Icone plus petite */
.offer-card-icon {
  width: 44px !important;
  height: 44px !important;
  margin: 0 auto 0.5rem !important;
}

.offer-card-icon svg {
  width: 20px !important;
  height: 20px !important;
}

/* Titre plus compact */
.offer-card-title {
  font-size: 0.95rem !important;
  margin-bottom: 0.15rem !important;
}

/* Sous-titre */
.offer-card-subtitle {
  font-size: 0.7rem !important;
  margin-bottom: 0.5rem !important;
}

/* Prix plus compact */
.offer-card-price {
  margin: 0.5rem 0 !important;
}

.offer-card-price .price-amount {
  font-size: 1.55rem !important;
}

.offer-card-price .price-currency,
.offer-card-price .price-period {
  font-size: 0.7rem !important;
}

/* Options de paiement */
.offer-card-payment-options {
  margin: 0.4rem 0 !important;
  padding: 0.4rem !important;
  font-size: 0.68rem !important;
}

/* Description */
.offer-card-description p {
  font-size: 0.72rem !important;
  line-height: 1.35 !important;
  margin-bottom: 0.4rem !important;
}

/* Features */
.offer-card-features {
  margin-top: 0.5rem !important;
  gap: 0.25rem !important;
}

.offer-card-features li {
  font-size: 0.7rem !important;
  padding: 0.2rem 0 !important;
}

/* Bouton CTA */
.offer-card-btn {
  padding: 0.5rem 0.8rem !important;
  font-size: 0.75rem !important;
  margin-top: 0.7rem !important;
}

/* Badge */
.offer-card-badge {
  font-size: 0.6rem !important;
  padding: 0.2rem 0.6rem !important;
  top: -10px !important;
}

/* Separateur */
.offer-card hr {
  margin: 0.5rem 0 !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 700px !important;
    gap: 1rem !important;
  }
}

@media (max-width: 560px) {
  .offers-grid {
    grid-template-columns: 1fr !important;
    max-width: 400px !important;
    gap: 1rem !important;
  }
  .offer-card {
    padding: 1rem 0.9rem !important;
  }
}
