/* DESIGN SYSTEM EXACT EXTRACTED FROM FIGMA IN MAQUETTE Group 1_2.jpg */
:root {
  --bg-dark-charcoal: #1f1b18; /* Fond des sections sombres */
  --bg-light-cream: #faf7f2; /* Fond crème doux pour la FAQ/Tarifs/Header */
  --bg-pure-white: #ffffff;
  --primary-gold: #bc9f77; /* Teinte Mastic / Dorée mate signature */
  --primary-gold-dark: #a58963;
  --text-main-dark: #2a2521; /* Texte sombre adouci */
  --text-muted-grey: #7d736a; /* Pour les paragraphes et descriptifs secondaires */
  --border-soft: #eae3d9;
  --card-dark-bg: #2a2420; /* Éléments internes de la section sombre */

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Cormorant Garamond", serif;

  --br-lg: 16px;
  --br-md: 12px;
  --br-sm: 8px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GLOBAL STYLES & RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-pure-white);
  color: var(--text-main-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.max-width-layout-md {
  max-width: 840px;
}

/* TYPOGRAPHIE HYBRIDE SANS/SERIF D'AUTEUR */
.serif-gold {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--primary-gold);
  text-transform: capitalize;
}

/* CONFIGURATION DES GRILLES RESPONSIVES */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* BOUTONS SYSTEM COHÉRENT AVEC LA MAQUETTE */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--br-sm);
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-header {
  background-color: var(--primary-gold);
  color: var(--bg-pure-white);
}

.btn-header:hover {
  background-color: var(--primary-gold-dark);
}

.btn-gold {
  background-color: var(--primary-gold);
  color: var(--bg-pure-white);
  box-shadow: 0 4px 14px rgba(188, 159, 119, 0.2);
}

.btn-gold:hover {
  background-color: var(--primary-gold-dark);
}

.btn-dark-filled {
  background-color: var(--text-main-dark);
  color: var(--bg-pure-white);
}

.btn-dark-filled:hover {
  background-color: #151210;
}

.btn-outline-hero {
  background-color: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-main-dark);
  gap: 8px;
}

.btn-outline-hero:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.btn-white-pill {
  background-color: var(--bg-pure-white);
  color: var(--text-main-dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
}

.btn-white-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn-full {
  width: 100%;
}

/* 404 PAGE */
.notfound-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f3ee;
  padding: 60px 24px;
}

/* PAGE JURIDIQUE */
.legal-page {
  padding: 56px 0 88px;
  background: linear-gradient(180deg, #faf7f2 0%, #f7f2e9 100%);
}

.legal-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: var(--bg-pure-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--br-lg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.legal-nav-label {
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-gold);
}

.legal-nav a {
  display: block;
  padding: 10px 0;
  color: var(--text-main-dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(234, 227, 217, 0.7);
}

.legal-nav a:last-child {
  border-bottom: none;
}

.legal-nav a:hover {
  color: var(--primary-gold);
}

.legal-content {
  display: grid;
  gap: 20px;
}

.legal-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--br-lg);
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.legal-card h1,
.legal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.2;
}

.legal-card p {
  margin-bottom: 14px;
  color: var(--text-muted-grey);
}

.legal-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.legal-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal-list {
  padding-left: 20px;
  color: var(--text-muted-grey);
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 900px) {
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .legal-card {
    padding: 24px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

.notfound-card {
  width: 100%;
  max-width: 720px;
  padding: 56px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.notfound-label {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.notfound-code {
  font-size: clamp(4rem, 12vw, 6.5rem);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  color: var(--text-main-dark);
  font-weight: 800;
}

.notfound-copy {
  color: var(--text-muted-grey);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.notfound-action {
  font-size: 1rem;
  padding: 14px 36px;
}

.contact-section {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #faf7f2 0%, #f7f2e9 100%);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.section-title-center {
  text-align: center;
  margin-bottom: 50px !important;
}

.section-title-center h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted-grey);
  margin-top: 12px;
  font-size: 16px;
}

.section-subtitle-dark {
  color: #9e938a;
  margin-top: 12px;
  font-size: 16px;
}

.badge-outline-gold {
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.sub-badge-gold {
  color: var(--primary-gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

/* 1. COMPOSANT HEADER (FOND CRÈME FLUIDE) */
.main-header {
  background-color: var(--bg-light-cream);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(234, 227, 217, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-main-dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.nav-menu a:hover {
  color: var(--primary-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main-dark);
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .hamburger {
    display: none;
  }
}

/* INTERACTION MENU RESPONSIVE */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-light-cream);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.02);
}

/* ================================================================= */
/* NOUVELLE HERO SECTION "MODERN PINTEREST"                          */
/* ================================================================= */

.hero-modern-saas {
  background-color: var(--bg-light-cream); /* Fond crème doux */
  padding: 100px 0 80px 0;
  overflow: hidden;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- COLONNE GAUCHE (TEXTE) --- */
.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

/* Badge Tendance avec point clignotant */
.trend-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main-dark);
  margin-bottom: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-gold); /* Or signature[cite: 2] */
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(188, 159, 119, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(188, 159, 119, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(188, 159, 119, 0);
  }
}

/* Typographie Éditoriale */
.display-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-main-dark);
  margin-bottom: 24px;
}

.display-title .serif-gold {
  font-size: 64px; /* Plus grand pour créer un contraste de style */
}

.hero-paragraph {
  font-size: 18px;
  color: var(--text-muted-grey);
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 40px;
}

/* Boutons & Actions */
.hero-action-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

/* Preuve Sociale (Avatars) */
.social-proof-mini {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-light-cream);
  background-color: var(--primary-gold-dark);
  margin-left: -12px;
}
.avatar:first-child {
  margin-left: 0;
  background-color: var(--primary-gold);
}
.avatar:last-child {
  background-color: var(--text-main-dark);
}

.social-proof-mini p {
  font-size: 14px;
  color: var(--text-muted-grey);
  margin: 0;
}
.social-proof-mini strong {
  color: var(--text-main-dark);
}

/* --- COLONNE DROITE (IMAGE & UI) --- */
.hero-visual-content {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Conteneur d'image arrondi moderne */
.image-showcase {
  width: 85%;
  height: 90%;
  border-radius: 40px; /* Le fameux grand arrondi "Pinterest" */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- CARTES UI FLOTTANTES (Le Dynamisme) --- */
.ui-card-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 3;
  animation: floatSmooth 6s ease-in-out infinite;
}

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

.card-text strong {
  font-size: 15px;
  color: var(--text-main-dark);
}

.card-text span {
  font-size: 13px;
  color: var(--text-muted-grey);
}

/* Placement asymétrique (Overlap) */
.card-top-left {
  top: 10%;
  left: -5%; /* Dépasse de l'image sur la gauche */
  animation-delay: 0s;
}

.card-top-left .icon-circle {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light-cream);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.card-bottom-right {
  bottom: 15%;
  right: -5%; /* Dépasse de l'image sur la droite */
  animation-delay: -3s; /* Désynchronise l'animation */
}

.mini-chart {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

/* L'animation de flottement fluide */
@keyframes floatSmooth {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 992px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text-content {
    align-items: center;
  }
  .display-title {
    font-size: 42px;
  }
  .display-title .serif-gold {
    font-size: 48px;
  }
  .hero-action-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual-content {
    height: 450px;
  }
  .image-showcase {
    width: 100%;
  }
  .card-top-left {
    left: 5%;
    top: 5%;
  }
  .card-bottom-right {
    right: 5%;
    bottom: 5%;
  }
}

/* ================================================================= */
/* BANDEAU DÉFILANT INFINI (TICKER) SANS COUPURE                     */
/* ================================================================= */

.ticker-section {
  background-color: #fdfbf7; /* Fond beige/crème délicat de la maquette */
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid #f3ede4;
  border-bottom: 1px solid #f3ede4;
  width: 100%;
}

.ticker-wrap {
  display: flex;
  width: max-content; /* Force le conteneur à s'étirer sur toute la longueur des deux pistes */
}

.ticker-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  /* L'espace (gap) et le padding-right doivent être STRICTEMENT identiques */
  gap: 50px;
  padding-right: 50px;
  /* Lance l'animation continue, fluide (linear) et éternelle */
  animation: infiniteMarquee 30s linear infinite;
}

/* --- DESIGN DES TEXTES ET ICONES (Fidèle à image_716c7c.png) --- */
.ticker-content span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em; /* Lettrage noble et aéré */
  color: #5c5247; /* Teinte textuelle chocolatée douce */
}

.ticker-content .separation-dot {
  font-size: 7px;
  color: #c5a880; /* Doré précieux pour le diamant de séparation */
}

/* --- LOGIQUE DE L'ANIMATION FLUIDE --- */
@keyframes infiniteMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    /* Se déplace précisément de la largeur d'une seule piste complète */
    transform: translate3d(-100%, 0, 0);
  }
}

/* Optionnel : Met l'animation en pause si l'utilisateur passe sa souris dessus */
.ticker-wrap:hover .ticker-content {
  animation-play-state: paused;
}

/* ================================================================= */
/*  SECTION L'ART DE LA GESTION              */
/* ================================================================= */

.management-section {
  background-color: var(--bg-pure-white);
  padding: 100px 0;
}

.management-section .section-title-center h2 {
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-main-dark);
}

.management-section .section-title-center h2 .serif-gold {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-gold);
  font-size: 46px;
  padding-left: 4px;
}

.management-section .section-subtitle {
  color: var(--text-muted-grey);
  font-size: 15px;
  max-width: 620px;
  margin: 16px auto 0 auto;
  line-height: 1.6;
}

/* --- LE DESIGN DES CARTES CLAIRES --- */
.feature-card-light {
  background: #ffffff;
  border: 1px solid #f0ece6;
  border-radius: 24px;
  padding: 48px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 10px 35px rgba(42, 37, 33, 0.02);
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s ease;
}

.card-icon-line {
  font-size: 28px;
  color: #a58963;
  margin-bottom: 28px;
  display: inline-flex;
}

.feature-card-light h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-main-dark);
  margin-bottom: 16px;
}

.feature-card-light p {
  color: var(--text-muted-grey);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ================================================================= */
/* ANIMATION PARFAITE DE BORDURE SANS TRAVERSÉE DU CENTRE (CLIP-PATH)*/
/* ================================================================= */

/* Segment Haut & Droit : Révélé via clip-path */
.feature-card-light::before {
  content: "";
  position: absolute;
  inset: -1px; /* S'aligne parfaitement sur la bordure existante */
  border-top: 1.5px solid var(--primary-gold);
  border-right: 1.5px solid var(--primary-gold);
  border-radius: 24px;
  pointer-events: none;
  z-index: 5;
  /* Cache complètement les lignes au repos dans le coin supérieur gauche */
  clip-path: inset(0 100% 100% 0);
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Segment Bas & Gauche : Révélé via clip-path */
.feature-card-light::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-bottom: 1.5px solid var(--primary-gold);
  border-left: 1.5px solid var(--primary-gold);
  border-radius: 24px;
  pointer-events: none;
  z-index: 5;
  /* Cache complètement les lignes au repos dans le coin inférieur droit */
  clip-path: inset(100% 0 0 100%);
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- EFFETS AU SURVOL --- */
.feature-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(188, 159, 119, 0.08);
}

/* Déploiement fluide et instantané le long du périmètre */
.feature-card-light:hover::before,
.feature-card-light:hover::after {
  clip-path: inset(0 0 0 0);
}

/* 1. Ajustement de la grille pour l'élévation */
.management-section .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start; /* Permet aux cartes d'avoir des positions différentes */
  padding-top: 40px; /* Espace pour l'élévation de la carte centrale */
}

/* 2. Cartes plus aérées */
.feature-card-light {
  padding: 60px 40px; /* Plus d'espace interne */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: #ffffff;
  position: relative;
  /* ... (garde tes propriétés existantes : border, border-radius, etc.) */
}

/* 3. L'élévation de la carte centrale (La magie opère ici) */
.grid-3 .feature-card-light:nth-child(2) {
  transform: translateY(-40px); /* Élève la carte de 40px */
  border-color: rgba(
    197,
    168,
    128,
    0.3
  ); /* Un soupçon de couleur pour le cadre */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); /* Ombre plus marquée pour le relief */
}

/* 4. Ajustement responsive (pour ne pas casser le design sur mobile) */
@media (max-width: 992px) {
  .management-section .grid-3 {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .grid-3 .feature-card-light:nth-child(2) {
    transform: translateY(0); /* On annule l'élévation sur mobile */
  }
}

/* 5. ZONE FONCTIONNALITÉS SOMBRE ENTIÈREMENT SUIVIE */
.dark-section {
  background-color: var(--bg-dark-charcoal);
  color: var(--bg-pure-white);
  padding: 100px 0;
}

.text-white h2 {
  color: var(--bg-pure-white);
}

.solution-category {
  margin-top: 64px;
}

.category-heading {
  font-size: 19px;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 28px;
  border-left: 2px solid var(--primary-gold);
  padding-left: 14px;
}

.feature-card-dark {
  background-color: var(--card-dark-bg);
  padding: 36px 32px;
  border-radius: var(--br-md);
  border: 1px solid rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.feature-card-dark:hover {
  background-color: #312a25;
}

.icon-gold-wrapper {
  color: var(--primary-gold);
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card-dark h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 12px;
}

.feature-card-dark p {
  color: #9e938a;
  font-size: 14px;
  line-height: 1.5;
}

/* 6. COMPOSANT TARIFS CLAIR / SOMBRE MUTUEL */
/* --- SECTION GRILLE TARIFAIRE --- */
.pricing-section {
  padding: 80px 0;
  background-color: #fbf9f6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 50px;
}

/* Base des cartes (Essentiel & Enterprise) */
.pricing-card {
  background: #ffffff;
  border: 1px solid #f0ece6;
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* En-têtes de cartes */
.card-icon {
  font-size: 22px;
  color: #c5a880;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.price-info {
  font-size: 14px;
  color: #707070;
  margin-bottom: 24px;
}

/* Affichage des prix */
.price {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.price .month {
  font-size: 16px;
  font-weight: 400;
  color: #707070;
}

/* Listes de fonctionnalités */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
}

.pricing-list li {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-gold {
  color: #c5a880;
  font-size: 14px;
}

/* --- AMÉLIORATION : CARTE PRO HIGHLIGHTED (SOMBRE) --- */
.pricing-card.featured {
  background: #25201a; /* Fond ardoise/chocolat ultra-sombre du screen */
  border: none;
  color: #ffffff;
  padding: 56px 32px 40px 32px; /* Un peu plus haute */
  margin-top: -16px; /* Effet de dépassement vers le haut */
  box-shadow: 0 20px 50px rgba(37, 32, 26, 0.15);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .pricing-list li {
  color: #ffffff;
}

.pricing-card.featured .price-info,
.pricing-card.featured .price .month {
  color: #b0a8a0;
}

/* Badge "Le plus populaire" au-dessus */
.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #c5a880;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(197, 168, 128, 0.2);
}

/* --- BOUTONS --- */
.btn-full {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-dark-filled {
  background: #25201a;
  color: #ffffff;
}

.btn-dark-filled:hover {
  background: #403830;
}

.btn-gold-filled {
  background: #c5a880;
  color: #ffffff;
}

.btn-gold-filled:hover {
  background: #b3956d;
}

/* Responsive Mobile / Tablette */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pricing-card.featured {
    margin-top: 0;
  }
}

/* Cache les options supplémentaires par défaut */
.pricing-list .extra-feature {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Révèle les options quand la carte possède la classe .show-all */
.pricing-card.show-all .extra-feature {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Style du bouton "Voir plus" */
.toggle-features-btn {
  background: none;
  border: none;
  color: #c5a880; /* Couleur dorée */
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 20px auto 0 auto;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.toggle-features-btn:hover {
  background-color: rgba(197, 168, 128, 0.1);
}

/* Ajustement pour la carte sombre Pro */
.pricing-card.featured .toggle-features-btn {
  color: #eadecc;
}
.pricing-card.featured .toggle-features-btn:hover {
  background-color: rgba(234, 222, 204, 0.1);
}

/* Animation de rotation de la flèche (chevron) */
.toggle-features-btn i {
  transition: transform 0.3s ease;
  font-size: 11px;
}

.pricing-card.show-all .toggle-features-btn i {
  transform: rotate(180deg);
}

/* 7. TABLE COMPARATIVE NETTE */
.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-pure-white);
}

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14.5px;
}

.comparison-table th {
  font-weight: 600;
  background-color: var(--bg-light-cream);
  color: var(--text-main-dark);
}

.feature-name {
  font-weight: 500;
}

.check-gold {
  color: var(--primary-gold);
}

.dash-muted {
  color: #c8bfb5;
}

/* 8. FAQ BLOCS ACCORDÉONS SUR FOND CRÈME */
.faq-section {
  background-color: var(--bg-light-cream);
  padding: 100px 0;
}

.accordion-container {
  margin-top: 44px;
}

.accordion-block {
  background-color: var(--bg-pure-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--br-sm);
  margin-bottom: 14px;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-main-dark);
  cursor: pointer;
  text-align: left;
}

.accordion-trigger .arrow-icon {
  font-size: 13px;
  color: var(--text-muted-grey);
  transition: var(--transition-smooth);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.accordion-panel p {
  padding-bottom: 24px;
  color: var(--text-muted-grey);
  font-size: 14.5px;
}

/* États ouverts gérés par JS */
.accordion-block.open .accordion-panel {
  max-height: 300px;
}

.accordion-block.open .accordion-trigger .arrow-icon {
  transform: rotate(45deg);
  color: var(--primary-gold);
}

/* 9. TÉMOIGNAGES CLIENTS */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-pure-white);
}

.review-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--br-lg);
  padding: 40px;
  background-color: var(--bg-pure-white);
}

.stars-box {
  color: #e6b93b;
  font-size: 12px;
  margin-bottom: 18px;
}

.review-card p {
  font-size: 14.5px;
  color: var(--text-main-dark);
  margin-bottom: 24px;
}

.author-details strong {
  display: block;
  font-size: 14.5px;
}

.author-details span {
  font-size: 13px;
  color: var(--text-muted-grey);
}

/* 10. BLOC PANNEAU CTA ENTIÈREMENT DORÉ/MASTIC */
.cta-banner-gold {
  background-color: var(--primary-gold);
  color: var(--bg-pure-white);
  text-align: center;
  padding: 84px 24px;
}

.cta-banner-gold h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner-gold p {
  font-size: 16.5px;
  max-width: 580px;
  margin: 0 auto 36px auto;
  opacity: 0.95;
}

.sub-info-cta {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 16px;
}

/* 11. FOOTER MINIMALISTE SOMBRE */
.main-footer {
  background-color: var(--bg-dark-charcoal);
  color: #8c8176;
  padding: 36px 0;
  font-size: 13.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.01);
}

.footer-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-layout {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links-group {
  display: flex;
  gap: 24px;
}

.footer-links-group a {
  color: #8c8176;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links-group a:hover {
  color: var(--bg-pure-white);
}

/* --- AMÉLIORATIONS DU TABLEAU COMPARATIF --- */

.table-responsive-wrapper {
  max-height: 700px; /* Hauteur max pour voir l'effet sticky si besoin, ou géré par la page */
  overflow-y: auto;
  overflow-x: auto;
  border-radius: 16px; /* Coins arrondis du tableau comme sur le screen */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03); /* Ombre très légère */
  border: 1px solid #f0ece6;
}

.comparison-table {
  width: 100%;
  border-collapse: separate; /* Permet de garder les border-radius clean */
  border-spacing: 0;
  text-align: left;
  background-color: #fff;
}

/* Base des cellules */
.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #f7f4ef;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s ease; /* Transition fluide pour le hover */
}

/* Alignement des colonnes d'offres au centre */
.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
  width: 22%; /* Largeur égale pour les colonnes d'offres */
}

/* --- AMÉLIORATION 1 : STICKY HEADER --- */
.comparison-table thead th {
  position: sticky;
  top: 0;
  background-color: #fbf9f6; /* Fond opaque pour masquer les lignes du dessous */
  color: #1a1a1a;
  font-weight: 600;
  z-index: 10;
  border-bottom: 2px solid #eadecc;
}

/* Petite ombre sous le header sticky uniquement quand on défile */
.comparison-table thead th::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 5px;
  pointer-events: none;
  box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.08);
}

/* --- AMÉLIORATION 2 : MISE EN AVANT DE LA COLONNE PRO (STYLE SCREEN) --- */
/* Cible la 3ème colonne (Pro) */
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
  background-color: #f7f3eb; /* Teinte beige/or très douce du screen */
}

/* --- AMÉLIORATION 3 : HOVER DYNAMIQUE --- */
.comparison-table tbody tr:hover td {
  background-color: rgba(
    234,
    222,
    204,
    0.3
  ) !important; /* Surlignage de la ligne au survol */
  cursor: pointer;
}

/* Style des tirets grisés */
.dash-muted {
  color: #ccc;
  font-weight: 300;
}

/* Style des icônes de validation */
.check-gold {
  color: #c5a880; /* Couleur dorée icones */
  font-size: 16px;
}

/* --- DESIGN DE LA SCROLLBAR SUR MESURE --- */

/* 1. Pour Chrome, Safari et récents Microsoft Edge */
.table-responsive-wrapper::-webkit-scrollbar {
  width: 6px; /* Épaisseur pour la scrollbar verticale (si le tableau dépasse en hauteur) */
  height: 6px; /* Épaisseur pour la scrollbar horizontale (très utile sur mobile) */
}

/* Le fond de la piste (le rail) */
.table-responsive-wrapper::-webkit-scrollbar-track {
  background: #fbf9f6; /* Fond beige très clair identique à l'entête de ton tableau */
  border-radius: 10px;
}

/* La barre rétractable (la poignée que l'on glisse) */
.table-responsive-wrapper::-webkit-scrollbar-thumb {
  background-color: #eadecc; /* Teinte dorée/beige subtile */
  border-radius: 10px;
  border: 1px solid #fbf9f6; /* Crée un léger espace visuel */
  transition: background-color 0.3s ease;
}

/* Changement de couleur au survol de la scrollbar pour l'accessibilité */
.table-responsive-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #c5a880; /* Rappel du doré plus soutenu de tes icônes */
}

/* 2. Pour Firefox (qui utilise des propriétés différentes et plus limitées) */
.table-responsive-wrapper {
  scrollbar-width: thin; /* Rend la barre fine */
  scrollbar-color: #eadecc #fbf9f6; /* Format : [Couleur Poignée] [Couleur Rail] */
}

/* --- SECTION SOMBRE SANS FOND SUR LES CARTES (STYLE PREMIUM) --- */

.solution-category {
  background-color: #25201a; /* Fond chocolat conservé comme demandé */
  padding: 60px 40px;
  border-radius: 32px;
}

.category-heading {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}

.category-subtitle {
  color: #b0a8a0;
  font-size: 16px;
  text-align: center;
  margin-bottom: 48px;
}

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

/* --- STYLE DES CARTES --- */
.feature-card-dark {
  background: transparent; /* PLUS DE FOND : on garde uniquement le chocolat de la section */
  border: 1px solid rgba(197, 168, 128, 0.15); /* Bordure or fine */
  border-radius: 28px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 1;
  overflow: hidden; /* INDISPENSABLE pour masquer le surplus de l'icône géante */
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.feature-card-dark h4 {
  color: #ffffff;
  font-size: 20px;
  margin: 24px 0 12px 0;
  font-weight: 600;
  z-index: 2; /* Reste au-dessus de l'icône de fond */
}

.feature-card-dark p {
  color: #b0a8a0;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  z-index: 2; /* Reste au-dessus de l'icône de fond */
}

/* --- L'ICÔNE GÉANTE EN FOND (WATERMARK) --- */
.watermark-icon {
  position: absolute;
  right: -20px; /* Décalée pour dépasser légèrement de la carte */
  bottom: -30px; /* Décalée vers le bas */
  font-size: 140px; /* Taille XL */
  color: #c5a880;
  opacity: 0.03; /* Ultra-discrète pour ne pas gêner la lecture du texte */
  pointer-events: none; /* Ignore les interactions de la souris */
  z-index: 0; /* Passe derrière le texte */
  transition:
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.5s ease;
}

/* --- ANIMATIONS AU HOVER DE LA CARTE --- */
.feature-card-dark:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 168, 128, 0.4);
  /* Effet halo lumineux arrière léger */
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(197, 168, 128, 0.12);
}

/* Animation de l'icône géante en fond au survol */
.feature-card-dark:hover .watermark-icon {
  transform: scale(1.12) rotate(-8deg); /* Zoom léger + petite rotation dynamique */
  opacity: 0.06; /* S'illumine très légèrement */
}

/* --- PETITE ICÔNE EN HAUT (CONSERVÉE AVEC SON EFFET) --- */
.icon-gold-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(197, 168, 128, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.4s ease;
}

.icon-gold-wrapper i {
  color: #c5a880;
  font-size: 22px;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.4s ease;
}

.feature-card-dark:hover .icon-gold-wrapper {
  background-color: #c5a880;
}

.feature-card-dark:hover .icon-gold-wrapper i {
  color: #25201a;
  transform: rotate(15deg) scale(1.05);
}

/* Responsive Mobile */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Espacement élégant entre chaque bloc de catégorie */
.solution-category {
  margin-bottom: 40px;
}

.solution-category:last-child {
  margin-bottom: 0;
}

/* Centre le titre s'il n'y a pas de sous-titre pour équilibrer le rendu visuel */
.solution-category .section-title-center {
  margin-bottom: 54px !important; /* Ajustement pour resserrer l'espace avec les cartes */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Le titre principal en Blanc Pur et Épuré */
.solution-category .category-heading {
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em; /* Effet lettrage serré haut de gamme */
  margin-bottom: 12px;
  border-left: none !important; /* Supprime l'ancienne barre latérale si présente */
  padding-left: 0 !important;
}

/* Le sous-titre basculé en police Serif Italique Éditoriale */
.solution-category .category-subtitle {
  color: #c5a880 !important; /* Couleur Dorée Signature */
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.02em;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.4;
  opacity: 0.95;
}

/* Ajout d'un séparateur or minimaliste sous le bloc de titre */
.solution-category .section-title-center::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-gold),
    transparent
  );
  margin-top: 22px;
}

/* ================================================================= */
/* SECTION CONTACT PREMIUM & FORMULAIRE CONVERTISSEUR               */
/* ================================================================= */

.contact-premium-section {
  background-color: var(--bg-light-cream); /* Fond crème de réassurance */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-container-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* --- COLONNE GAUCHE : IDENTITÉ ET CANAUX --- */
.contact-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge thématique Or */
.trend-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(188, 159, 119, 0.1);
  border: 1px solid rgba(188, 159, 119, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-gold-dark);
  margin-bottom: 24px;
}

.contact-display-title {
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main-dark);
  margin-bottom: 20px;
}

.contact-display-title .serif-italic-gold {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-gold);
}

.contact-description {
  font-size: 16px;
  color: var(--text-muted-grey);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Cartes de contact cliquables (Pinterest style) */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
}

.channel-card {
  display: flex;
  align-items: center;
  background: var(--bg-pure-white);
  border: 1px solid var(--border-soft);
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.channel-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 25px rgba(188, 159, 119, 0.06);
}

.channel-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light-cream);
  color: var(--primary-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 16px;
  transition: var(--transition-smooth);
}

.channel-card:hover .channel-icon {
  background: var(--primary-gold);
  color: var(--bg-pure-white);
}

.channel-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.channel-details span {
  font-size: 12px;
  color: var(--text-muted-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.channel-details strong {
  font-size: 16px;
  color: var(--text-main-dark);
}

.channel-arrow {
  font-size: 14px;
  color: var(--border-soft);
  transition: var(--transition-smooth);
}

.channel-card:hover .channel-arrow {
  color: var(--primary-gold);
  transform: translateX(4px);
}

/* Indicateur de disponibilité live */
.contact-availability {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-indicator-green {
  width: 8px;
  height: 8px;
  background-color: #2e7d32;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.15);
}

.contact-availability p {
  font-size: 13.5px;
  color: var(--text-muted-grey);
  margin: 0;
}

/* --- COLONNE DROITE : FORMULAIRE HAUTE COUTURE --- */
.contact-form-block {
  width: 100%;
}

.premium-interactive-form {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-soft);
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(42, 37, 33, 0.04);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main-dark);
}

.premium-interactive-form input,
.premium-interactive-form textarea {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text-main-dark);
  background-color: var(--bg-light-cream);
  border: 1px solid var(--border-soft);
  padding: 14px 18px;
  border-radius: 12px;
  outline: none;
  transition: var(--transition-smooth);
}

.premium-interactive-form input::placeholder,
.premium-interactive-form textarea::placeholder {
  color: #a0968d;
}

.premium-interactive-form input:focus,
.premium-interactive-form textarea:focus {
  border-color: var(--primary-gold);
  background-color: var(--bg-pure-white);
  box-shadow: 0 0 0 4px rgba(188, 159, 119, 0.1);
}

.premium-interactive-form textarea {
  resize: none;
}

/* Surcharge du bouton pour le mettre à 100% de largeur */
.btn-full-width {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
}

.form-secure-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted-grey);
  margin-top: 16px;
  margin-bottom: 0;
}

.form-secure-notice i {
  font-size: 11px;
  color: #2e7d32;
}

/* --- ADAPTATION MOBILE (RESPONSIVE) --- */
@media (max-width: 992px) {
  .contact-premium-section {
    padding: 80px 0;
  }
  .contact-container-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-info-block {
    align-items: center;
    text-align: center;
  }
  .contact-display-title {
    font-size: 34px;
  }
  .premium-interactive-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .form-row-two {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.btn-gold-pill {
  background-color: var(--primary-gold);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px; /* Arrondi total exigé */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(188, 159, 119, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-gold-pill:hover {
  background-color: var(--primary-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(188, 159, 119, 0.35);
}

.btn-gold-pill .arrow-icon {
  transition: transform 0.3s ease;
}

.btn-gold-pill:hover .arrow-icon {
  transform: translateX(4px); /* Petit effet dynamique sur la flèche */
}

/* Bouton Contour Secondaire */
.btn-outline-pill {
  background-color: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-main-dark) !important;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px; /* Arrondi total exigé */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-outline-pill:hover {
  background-color: #ffffff;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 37, 33, 0.04);
}

/* --- SECTION DÉCOMPTE FLIP CLOCK --- */
.flip-countdown-section {
  background-color: var(
    --bg-dark-charcoal
  ); /* Le marron très sombre de votre charte */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.countdown-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  font-family: var(--font-sans);
}

.flip-clock-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.flip-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* La carte noire avec ses ombres */
.flip-card {
  position: relative;
  background-color: #121212;
  border-radius: 12px;
  width: 120px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.05);
}

.flip-num {
  font-size: 4.5rem;
  font-weight: 700;
  color: #f4f4f4;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -1px;
  z-index: 2;
}

/* La ligne de séparation au milieu */
.flip-divider {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #000000;
  z-index: 3;
  transform: translateY(-50%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Les petits "crans/charnières" sur les bords de la ligne */
.flip-divider::before,
.flip-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 14px;
  background-color: #222222;
  transform: translateY(-50%);
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

.flip-divider::before {
  left: -2px;
}

.flip-divider::after {
  right: -2px;
}

.flip-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted-grey);
  font-weight: 600;
}

.countdown-description {
  color: #a59b93;
  font-size: 1rem;
  margin-bottom: 20px;
}

.social-links-vintage {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-links-vintage a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links-vintage a:hover {
  color: var(--bg-pure-white);
}

/* Version Mobile */
@media (max-width: 768px) {
  .flip-clock-container {
    gap: 12px;
  }
  .flip-card {
    width: 75px;
    height: 90px;
    border-radius: 8px;
  }
  .flip-num {
    font-size: 2.5rem;
  }
  .countdown-heading {
    font-size: 1.8rem;
  }
  .flip-label {
    font-size: 0.7rem;
  }
}

/* --- ENHANCED RETRO FLIP CLOCK SECTION --- */
.flip-countdown-section {
  /* Fond marron texturé par un dégradé radial subtil */
  background: radial-gradient(
    circle at center,
    #2c2420 0%,
    var(--bg-dark-charcoal) 100%
  );
  padding: 100px 0;
  text-align: center;
  color: var(--bg-light-cream);
  position: relative;
  overflow: hidden;
}

/* Encadrement global de l'horloge */
.flip-clock-wrapper {
  background: rgba(18, 16, 15, 0.4);
  padding: 40px 50px;
  border-radius: 24px;
  display: inline-block;
  border: 1px solid rgba(188, 159, 119, 0.15);
  box-shadow: cubic-bezier(0.4, 0, 0.2, 1) 0px 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 45px;
}

.flip-clock-container {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.flip-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* La carte avec effet de profondeur 3D réaliste */
.flip-card {
  position: relative;
  background-color: #161413;
  border-radius: 14px;
  width: 130px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.7),
    inset 0 -8px 16px rgba(0, 0, 0, 0.4),
    inset 0 8px 16px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

/* Ombrages asymétriques haut et bas pour simuler la pliure physique des volets */
.flip-card-top,
.flip-card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  pointer-events: none;
  z-index: 1;
}
.flip-card-top {
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.flip-card-bottom {
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.flip-num {
  font-size: 5rem;
  font-weight: 700;
  color: #f8f6f3;
  font-family: var(--font-sans);
  letter-spacing: -2px;
  z-index: 2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Ligne centrale métallique */
.flip-divider {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #0a0909;
  z-index: 3;
  transform: translateY(-50%);
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.05);
}

/* Charnières latérales */
.flip-divider::before,
.flip-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 16px;
  background-color: #332c28;
  transform: translateY(-50%);
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}
.flip-divider::before {
  left: -1px;
}
.flip-divider::after {
  right: -1px;
}

/* Labels sous les cartes */
.flip-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold);
  font-weight: 600;
}

/* Zone d'action et description */
.roadmap-cta-box {
  max-width: 620px;
  margin: 0 auto;
}

.countdown-description {
  color: #a59b93;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.countdown-description strong {
  color: var(--bg-light-cream);
  font-weight: 600;
}

/* Boutons réseaux premium sous forme de capsules */
.social-links-vintage {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-light-cream);
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(188, 159, 119, 0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-social-pill:hover {
  background: var(--primary-gold);
  color: var(--bg-dark-charcoal);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(188, 159, 119, 0.2);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .flip-clock-wrapper {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .flip-clock-container {
    gap: 12px;
  }
  .flip-card {
    width: 72px;
    height: 85px;
    border-radius: 8px;
  }
  .flip-num {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
  .flip-divider::before,
  .flip-divider::after {
    height: 10px;
    width: 3px;
  }
  .social-links-vintage {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-social-pill {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* --- COMPLÉMENTS DESIGN TARIFS --- */

/* Structure de la colonne Premium pour empiler la carte et l'option */
.pricing-column-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Carte Option Multi-Établissement */
.multi-store-card {
  background-color: var(--bg-dark-charcoal);
  border: 1px dashed rgba(188, 159, 119, 0.4);
  border-radius: var(--br-lg);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.multi-store-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}
.multi-store-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.addon-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.multi-store-header h4 {
  font-size: 1.15rem;
  color: var(--bg-pure-white);
  margin: 0 0 6px 0;
}
.addon-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-gold);
}
.addon-price span {
  font-size: 0.8rem;
  color: var(--text-muted-grey);
  font-weight: 400;
}
.addon-desc {
  font-size: 0.85rem;
  color: var(--text-muted-grey);
  margin-bottom: 10px;
}
.addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.addon-list li {
  font-size: 0.85rem;
  color: var(--bg-light-cream);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.addon-list li i {
  color: var(--primary-gold);
  margin-top: 3px;
  font-size: 0.85rem;
}

/* --- OPTIMISATION DE LA CARTE FRANCHISE --- */

.franchise-large-card {
  background: linear-gradient(135deg, #161311 0%, #1e1a17 100%);
  border: 1px solid rgba(188, 159, 119, 0.3);
  border-radius: 16px;
  margin-top: 40px;
  padding: 45px;
  display: flex;
  align-items: stretch; /* Aligne le bouton verticalement avec le contenu */
  justify-content: space-between;
  gap: 50px;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.franchise-info {
  flex: 1;
}

.franchise-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.franchise-tech-tag {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.franchise-info h3 {
  font-size: 2.25rem;
  color: #fff;
  margin: 0 0 15px 0;
}

.franchise-lead {
  color: #a0a0a0;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 90%;
}

/* Grille interne de 4 éléments */
.franchise-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.franchise-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ffi-icon {
  background-color: rgba(188, 159, 119, 0.1);
  color: #bc9f77;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(188, 159, 119, 0.2);
}

.ffi-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ffi-text strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.ffi-text span {
  color: #8e8e8e;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Bloc d'appel à l'action de droite */
.franchise-cta-block {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.franchise-price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: #bc9f77;
  margin-bottom: 8px;
}

.franchise-cta-block p {
  font-size: 0.85rem;
  color: #8e8e8e;
  line-height: 1.4;
  margin-bottom: 25px;
}

/* Version Mobile / Tablette */
@media (max-width: 1024px) {
  .franchise-large-card {
    flex-direction: column;
    padding: 30px;
    gap: 35px;
  }

  .franchise-lead {
    max-width: 100%;
  }

  .franchise-cta-block {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 600px) {
  .franchise-features-grid {
    grid-template-columns: 1fr; /* 1 seule colonne sur petit mobile */
    gap: 20px;
  }
}

/* ================================================================= */
/* FUSION EXPERTISE : KINETIC DUAL LAYOUT                            */
/* ================================================================= */

.fusion-section {
  position: relative;
  background-color: #0f0e0c;
  padding: 0;
  /* On nettoie les propriétés flex qui créaient le bug de scroll */
  width: 100%;
}

.fusion-container {
  display: flex;
  width: 100%;
  /* On applique la hauteur minimale directement ici pour forcer les blocs à tout occuper */
  min-height: 80vh;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Comportement cinétique des blocs */
.fusion-block {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  overflow: hidden;
}

/* L'effet de survol cinétique */
.fusion-block:hover {
  flex: 1.4;
}

/* --- STYLE BLOC TECH (GAUCHE) --- */
.block-tech {
  background-color: #141311;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.block-tech .block-title {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 30px 0;
}

.block-tech .mono-text {
  font-family: "Courier New", monospace;
  font-weight: 300;
  color: var(--primary-gold);
  opacity: 0.8;
}

/* --- STYLE BLOC TERRAIN (DROITE) --- */
.block-terrain {
  background-color: var(--bg-light-cream);
}

.block-terrain .block-title {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 700;
  color: var(--text-main-dark);
  line-height: 1.1;
  margin: 30px 0;
}

.block-terrain .serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary-gold-dark);
  font-weight: 400;
}

/* --- MICRO-TYPOGRAPHIES --- */
.block-meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}
.block-tech .block-meta {
  color: rgba(255, 255, 255, 0.4);
}
.block-terrain .block-meta {
  color: var(--text-muted-grey);
}

.block-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
  transition: transform 0.5s ease;
}
.block-tech .block-desc {
  color: rgba(255, 255, 255, 0.6);
}
.block-terrain .block-desc {
  color: var(--text-main-dark);
}

.fusion-block:hover .block-desc {
  transform: translateY(-5px);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .fusion-container {
    flex-direction: column;
    min-height: auto; /* Libère la hauteur pour s'adapter au contenu mobile */
  }
  .fusion-block {
    padding: 60px 40px;
  }
  .fusion-block:hover {
    flex: 1;
  }
}
