:root {
  color-scheme: light only;
  --bg: #eef0f2;
  --bg-soft: #e6e9ec;
  --bg-tint: #f0f4f8;
  --bg-card: #ffffff;
  --bg-cream: #f8f6f1;
  --bg-dark: #0f1720;
  --bg-mesh: radial-gradient(at 20% 0%, rgba(30, 58, 95, 0.04) 0px, transparent 50%),
              radial-gradient(at 80% 100%, rgba(30, 58, 95, 0.06) 0px, transparent 50%);
  --ink: #0f1720;
  --ink-soft: #1f2937;
  --muted: #5a6573;
  --muted-soft: #8b95a3;
  --line: rgba(15, 23, 32, 0.08);
  --line-strong: rgba(15, 23, 32, 0.14);
  --accent: #1e3a5f;
  --accent-light: #2a4d7a;
  --accent-soft: rgba(30, 58, 95, 0.08);
  --accent-medium: rgba(30, 58, 95, 0.14);
  --accent-glow: rgba(30, 58, 95, 0.25);
  --warm: #1e3a5f;
  --warm-soft: rgba(30, 58, 95, 0.08);
  --green: #16a34a;

  /* Ombres en couches (2025/2026 - inspiré Linear/Vercel) */
  --shadow-sm: 0 1px 2px rgba(15, 23, 32, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 32, 0.05), 0 2px 4px -2px rgba(15, 23, 32, 0.04);
  --shadow-lg: 0 12px 24px -8px rgba(15, 23, 32, 0.1), 0 4px 8px -2px rgba(15, 23, 32, 0.04);
  --shadow-xl: 0 24px 48px -16px rgba(15, 23, 32, 0.15), 0 8px 16px -4px rgba(15, 23, 32, 0.06);
  --shadow-glow: 0 0 0 1px rgba(30, 58, 95, 0.04), 0 8px 16px -4px rgba(30, 58, 95, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* FORCE LIGHT MODE - bloque toute inversion */
html, body {
  background-color: #eef0f2 !important;
  color: #0f1720 !important;
  forced-color-adjust: none !important;
  -webkit-forced-color-adjust: none !important;
  color-scheme: light only !important;
}

@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #eef0f2 !important;
    color: #0f1720 !important;
  }
  :root {
    --bg: #eef0f2 !important;
    --bg-soft: #e6e9ec !important;
    --bg-card: #ffffff !important;
    --ink: #0f1720 !important;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  background-image: var(--bg-mesh);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 240, 242, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

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

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 9px;
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  border-right-color: var(--accent);
  border-bottom-color: var(--accent);
  transform: rotate(-45deg);
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.logo-name span { color: var(--accent); }
.logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.nav-cta .cta-full { display: inline; }
.nav-cta .cta-short { display: none; }

@media (max-width: 720px) {
  .nav-cta { padding: 10px 18px; font-size: 13px; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
  .logo-img { height: 36px; }
  .nav { gap: 12px; }
}

@media (max-width: 380px) {
  .logo-img { height: 32px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 32px 0 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--ink); font-weight: 600; }
.breadcrumb .sep { margin: 0 12px; color: var(--muted-soft); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 56px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  height: 600px;
}

@media (max-width: 980px) {
  .hero-visual { height: 460px; }
}

@media (max-width: 600px) {
  .hero-visual { height: 380px; }
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -32px rgba(15, 23, 32, 0.5),
    0 16px 32px -12px rgba(15, 23, 32, 0.25),
    0 0 0 1px rgba(15, 23, 32, 0.08);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.04);
}

.hero-image-overlay {
  display: none;
}

.hero-grid-pattern {
  display: none;
}

.hero-image-wrap::before {
  display: none;
}

/* ===== HERO FLOATING CARD (stats) ===== */
.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(15, 23, 32, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow:
    0 16px 40px -12px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  z-index: 2;
  animation: floatIn 0.8s 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.floating-card-header {
  color: rgba(255, 255, 255, 0.5);
}

.floating-stat-num {
  color: #fff;
}

.floating-stat-num .pct {
  color: #4d7ab0;
}

.floating-stat-label {
  color: rgba(255, 255, 255, 0.5);
}

.floating-stat-sep {
  background: rgba(255, 255, 255, 0.1);
}

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

.floating-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.floating-card-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}

.floating-card-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.floating-card-stats {
  display: flex;
  align-items: center;
  gap: 18px;
}

.floating-stat {
  flex: 1;
}

.floating-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.floating-stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.floating-stat-num .pct {
  color: var(--accent);
  font-weight: 700;
}

.floating-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ===== HERO BADGE TAG (top-right) ===== */
.hero-badge-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 32, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  box-shadow:
    0 12px 32px -8px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  z-index: 2;
  animation: floatIn 0.8s 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.badge-tag-icon {
  width: 22px;
  height: 22px;
  background: rgba(77, 122, 176, 0.2);
  border: 1px solid rgba(77, 122, 176, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #a8c8e8;
  flex-shrink: 0;
}

.badge-tag-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  color: #fff;
}

.badge-tag-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-top: 2px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .hero-badge-tag {
    padding: 10px 14px 10px 10px;
  }
  .badge-tag-icon { width: 24px; height: 24px; font-size: 12px; }
  .badge-tag-num { font-size: 12px; }
  .badge-tag-label { font-size: 9px; }

  .hero-floating-card { padding: 14px 16px; bottom: 16px; left: 16px; right: 16px; }
  .floating-stat-num { font-size: 1.4rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 580px;
  color: var(--ink);
  word-spacing: 0.02em;
}

.page-hero h1 .accent { color: var(--accent); }

.page-hero p.lead {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 400;
}

/* ===== TOGGLE ===== */
.toggle-wrap {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  gap: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 8px 24px -16px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
  padding: 13px 28px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.toggle-btn:hover { color: var(--ink); }

.toggle-btn.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(15, 23, 32, 0.3);
}

/* ===== INDICATEUR DE FILTRAGE ===== */
.toggle-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  margin-left: 16px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}

.toggle-info-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.toggle-info-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.6); opacity: 0; }
}

.toggle-info strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 600px) {
  .toggle-info {
    display: flex;
    margin-left: 0;
    margin-top: 14px;
  }
}

/* ===== ANIMATION FILTRAGE UNIVERS ===== */
.univers {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.univers.hidden {
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* ===== SECTION COMMUNES ===== */
section { padding: 110px 0; }

/* ===== PADDINGS RESPONSIVE MOBILE ===== */
@media (max-width: 980px) {
  section { padding: 80px 0; }
  .stats-section { padding: 0; }
  .cases-section { padding: 80px 0 50px; }
  .cta-final-wrap { padding: 80px 0 90px; }
  .guarantees-section { padding: 50px 0; }
  .groupe-band { padding: 24px 0; }
  .trust-band { padding: 40px 0 50px; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .page-hero { padding: 32px 0 56px; }
  .stats-section { padding: 0; }
  .cases-section { padding: 56px 0 40px; }
  .cta-final-wrap { padding: 56px 0 64px; }
  .guarantees-section { padding: 40px 0; }
  .groupe-band { padding: 20px 0; }
  .trust-band { padding: 32px 0 40px; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  section { padding: 44px 0; }
  .page-hero { padding: 24px 0 44px; }
  .cases-section { padding: 44px 0 32px; }
  .cta-final-wrap { padding: 44px 0 50px; }
  .guarantees-section { padding: 32px 0; }
  .container { padding: 0 18px; }
}

.section-header {
  margin-bottom: 64px;
  max-width: 720px;
}

@media (max-width: 720px) {
  .section-header { margin-bottom: 36px; }
  .cases-header { margin-bottom: 36px !important; }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--ink);
  word-spacing: 0.02em;
}

.section-title .accent { color: var(--accent); }

.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}

/* ===== CHIFFRES CLÉS ===== */
.stats-section {
  padding: 0;
  margin-bottom: 0;
}

.stats-bar {
  background: linear-gradient(135deg, #15233a 0%, #0f1720 100%);
  border-radius: 20px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(15, 23, 32, 0.25);
}

.stats-bar::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.stats-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.stat-num {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-num .plus,
.stat-num .unit {
  color: #4d7ab0;
  font-size: 0.7em;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 70px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    padding: 40px 32px;
  }
  .stat-divider { display: none; }
  .stat-item:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .stats-bar {
    padding: 32px 24px;
  }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 11px; }
}

/* ===== 5 UNIVERS ===== */
.univers-section { padding-top: 0; }

.univers-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.univers {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.univers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--accent-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.univers:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 32, 0.12), 0 4px 8px -2px rgba(15, 23, 32, 0.05);
  border-color: var(--line-strong);
}

.univers:hover::before { opacity: 1; }

.univers-1 { grid-column: span 7; min-height: 440px; }
.univers-2 { grid-column: span 5; min-height: 440px; }
.univers-3 { grid-column: span 4; min-height: 360px; }
.univers-4 { grid-column: span 4; min-height: 360px; }
.univers-5 { grid-column: span 4; min-height: 360px; }

@media (max-width: 980px) {
  .univers-1, .univers-2 { grid-column: span 12; }
  .univers-3, .univers-4, .univers-5 { grid-column: span 12; min-height: auto; }
}

.univers-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted-soft);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.univers-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  margin-bottom: 28px;
  align-self: flex-start;
}

.univers-tag.warm {
  background: var(--warm-soft);
  color: var(--warm);
}

.univers-tag.neutral {
  background: rgba(15, 23, 32, 0.06);
  color: var(--ink-soft);
}

.univers h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--ink);
  word-spacing: 0.02em;
}

.univers-1 h3 { font-size: 2rem; line-height: 1.15; letter-spacing: -0.025em; }

.univers h3 .accent { color: var(--accent); }
.univers h3 .warm { color: var(--warm); }

.univers p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
  flex-grow: 1;
  font-weight: 400;
}

.univers-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.univers-features li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 12px 0 12px 28px;
  position: relative;
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.univers-features li:first-child { border-top: none; }

.univers-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 14px;
  height: 2px;
  background: var(--accent);
}

.univers-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  padding: 14px 0 0;
  letter-spacing: 0.01em;
}

.univers-link::after {
  content: "→";
  transition: transform 0.3s ease;
  font-weight: 400;
}

.univers-link:hover { color: var(--accent); }
.univers-link:hover::after { transform: translateX(6px); }

.univers-link.warm:hover { color: var(--warm); }

/* SPLIT */
.univers-1 .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .univers-1 .split { grid-template-columns: 1fr; }
}

.split-item {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--bg);
}

.split-item:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px rgba(30, 58, 95, 0.1);
}

.split-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.split-item p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 14px;
  font-weight: 400;
}

.split-item .price {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.split-item .price::before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--accent);
}

/* ===== MODES FINANCEMENT ===== */
.modes {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
}

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

.mode {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  transition: background 0.4s ease;
  position: relative;
}

.mode:last-child { border-right: none; }

@media (max-width: 800px) {
  .mode { border-right: none; border-bottom: 1px solid var(--line); }
  .mode:last-child { border-bottom: none; }
}

.mode:hover { background: var(--bg-soft); }

.mode-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mode-num::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.mode h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.2;
}

.mode .mode-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-soft);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  display: block;
}

.mode p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ===== POURQUOI NOUS ===== */
.why-section {
  background: var(--bg-tint);
  position: relative;
}

.why-grid-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 980px) {
  .why-grid-wrap { grid-template-columns: 1fr; gap: 48px; }
}

.why-header {
  position: sticky;
  top: 110px;
}

@media (max-width: 980px) {
  .why-header { position: relative; top: 0; }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(15, 23, 32, 0.1), 0 4px 8px -2px rgba(15, 23, 32, 0.04);
  border-color: var(--line-strong);
}

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

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

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

.why-card:hover .why-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.why-num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted-soft);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--ink);
}

.why-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ===== ATELIER COLLECTION ===== */
.vintage-section {
  background: linear-gradient(180deg, #15233a 0%, #0f1720 100%);
  position: relative;
  color: #fff;
}

.vintage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

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

.vintage-section .section-label {
  color: #4d7ab0;
}
.vintage-section .section-label::before { background: #4d7ab0; }

.vintage-section .vintage-content h2 {
  color: #fff;
}

.vintage-section .vintage-content h2 .warm,
.vintage-section .vintage-content h2 .accent {
  color: #4d7ab0;
}

.vintage-section .vintage-content p {
  color: rgba(255, 255, 255, 0.7);
}

.vintage-section .vintage-features li {
  color: rgba(255, 255, 255, 0.85);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.vintage-section .vintage-features li:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.vintage-section .univers-link {
  color: #fff;
}

.vintage-section .univers-link:hover {
  color: #4d7ab0;
}

.vintage-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .vintage-wrap { grid-template-columns: 1fr; gap: 48px; }
}

.vintage-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
  word-spacing: 0.02em;
}

.vintage-content h2 .warm { color: var(--warm); }

.vintage-content p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.vintage-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.vintage-features li {
  padding: 18px 0 18px 32px;
  position: relative;
  font-size: 1rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.vintage-features li:last-child { border-bottom: 1px solid var(--line); }

.vintage-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 18px;
  height: 2px;
  background: var(--warm);
}

.vintage-visual {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(15, 23, 32, 0.1);
}

.vintage-visual::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 80%;
  height: 180%;
  background: radial-gradient(circle, var(--warm-soft) 0%, transparent 60%);
}

.vintage-quote {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
  color: var(--ink);
}

.vintage-quote::before {
  content: "—";
  font-size: 2rem;
  color: var(--warm);
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
}

.vintage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.vintage-stat .num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.vintage-stat .num .warm { color: var(--warm); }

.vintage-stat .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
}

/* ===== CTA FINAL ===== */
.cta-final-wrap {
  padding: 110px 0 130px;
  background: linear-gradient(180deg, #0f1720 0%, #15233a 100%);
  position: relative;
  overflow: hidden;
}

.cta-final-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-final-wrap .container {
  position: relative;
  z-index: 1;
}

.cta-final {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 90px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px -32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-final::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(77, 122, 176, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final h2 {
  color: #fff !important;
}

.cta-final h2 .accent {
  color: #4d7ab0 !important;
}

.cta-final .section-label {
  color: #4d7ab0 !important;
}

.cta-final .section-label::before {
  background: #4d7ab0 !important;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final .section-label {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.cta-final h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
  word-spacing: 0.02em;
}

.cta-final h2 .accent { color: var(--accent); }

.cta-final p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 44px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(30, 58, 95, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--line-strong);
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}

@media (max-width: 720px) {
  .cta-final { padding: 60px 32px; }
}

/* ===== FOOTER ===== */
footer {
  padding: 80px 0 40px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  footer { padding-bottom: 100px; }
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

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

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 340px;
  margin-top: 22px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.footer-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.soon-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--ink); }

/* ===== VISUELS UNIVERS ===== */
.split-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg);
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Image univers 02 IMPORT */
.univers-image {
  width: calc(100% + 80px);
  margin: -44px -40px 28px -40px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  position: relative;
  background: var(--bg);
}

.univers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.univers:hover .univers-image img {
  transform: scale(1.04);
}

.univers-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 32, 0.4) 100%);
  pointer-events: none;
}

/* ===== MOCKUP DASHBOARD ===== */
.dashboard-mockup {
  width: calc(100% + 80px);
  margin: -44px -40px 28px -40px;
  background: linear-gradient(135deg, #1a2433 0%, #0f1720 100%);
  padding: 24px 24px 28px;
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  color: #fff;
}

.dashboard-mockup::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.5) 0%, transparent 60%);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.dashboard-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-dot:nth-child(1) { background: #ff5f57; }
.dashboard-dot:nth-child(2) { background: #ffbd2e; }
.dashboard-dot:nth-child(3) { background: #28c840; }

.dashboard-title {
  margin-left: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.dashboard-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 14px 12px;
}

.dashboard-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.dashboard-stat-num .pct {
  color: var(--accent-light);
  font-weight: 600;
}

.dashboard-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  position: relative;
  z-index: 1;
}

.dashboard-chart .bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px 3px 0 0;
  transition: background 0.3s ease;
}

.dashboard-chart .bar.active {
  background: var(--accent-light);
  box-shadow: 0 0 12px rgba(42, 77, 122, 0.5);
}

.univers:hover .dashboard-chart .bar:not(.active) {
  background: rgba(255, 255, 255, 0.18);
}

/* ===== PHOTO VINTAGE COLLECTION ===== */
.vintage-visual {
  padding: 0 !important;
  border: none !important;
  background: var(--ink) !important;
  box-shadow: 0 24px 48px -20px rgba(15, 23, 32, 0.2);
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vintage-visual::before { display: none; }

.vintage-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 18px;
}

.vintage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vintage-section .vintage-visual:hover .vintage-photo img {
  transform: scale(1.04);
}

.vintage-quote-overlay {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 32, 0.85) 50%, rgba(15, 23, 32, 0.95) 100%);
  border-radius: 0 0 18px 18px;
}

.vintage-quote-overlay .vintage-quote {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 28px;
}

.vintage-quote-overlay .vintage-quote::before {
  content: "—";
  display: block;
  font-size: 1.4rem;
  color: var(--accent-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.vintage-quote-overlay .vintage-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.vintage-quote-overlay .vintage-stat .num {
  color: #fff;
  font-size: 1.9rem;
}

.vintage-quote-overlay .vintage-stat .num .warm {
  color: var(--accent-light);
}

.vintage-quote-overlay .vintage-stat .label {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
  .vintage-visual { min-height: 400px; }
}

/* ===== FORMULAIRE DE CONTACT ===== */
.contact-form {
  text-align: left;
  max-width: 720px;
  margin: 48px auto 0;
}

/* Adaptation formulaire sur fond sombre */
.cta-final .contact-form .form-field label {
  color: rgba(255, 255, 255, 0.7);
}

.cta-final .contact-form .form-field label .opt {
  color: rgba(255, 255, 255, 0.4);
}

.cta-final .contact-form .form-field input,
.cta-final .contact-form .form-field select,
.cta-final .contact-form .form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-final .contact-form .form-field input::placeholder,
.cta-final .contact-form .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cta-final .contact-form .form-field input:hover,
.cta-final .contact-form .form-field select:hover,
.cta-final .contact-form .form-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.cta-final .contact-form .form-field input:focus,
.cta-final .contact-form .form-field select:focus,
.cta-final .contact-form .form-field textarea:focus {
  border-color: #4d7ab0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(77, 122, 176, 0.2);
}

.cta-final .contact-form .form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234d7ab0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.cta-final .form-rgpd {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.cta-final .form-rgpd label {
  color: rgba(255, 255, 255, 0.7);
}

.cta-final .form-rgpd label a {
  color: #4d7ab0;
}

.cta-final .form-or {
  color: rgba(255, 255, 255, 0.4);
}

.cta-final .form-or::before,
.cta-final .form-or::after {
  background: rgba(255, 255, 255, 0.1);
}

.cta-final .form-link {
  color: #4d7ab0;
}

.cta-final .form-link:hover {
  color: #6d96cc;
}

.cta-final .form-sep {
  color: rgba(255, 255, 255, 0.3);
}

.cta-final .btn-primary {
  background: #4d7ab0;
  border-color: #4d7ab0;
}

.cta-final .btn-primary:hover {
  background: #6d96cc;
  border-color: #6d96cc;
}

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

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

.form-field {
  margin-bottom: 16px;
  position: relative;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.form-field label .opt {
  font-weight: 500;
  color: var(--muted-soft);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted-soft);
  font-weight: 400;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--line-strong);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231e3a5f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-field input:invalid:not(:placeholder-shown),
.form-field select:invalid:not([value=""]),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(200, 16, 46, 0.3);
}

.form-rgpd {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.form-rgpd input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.form-rgpd label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}

.form-rgpd label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-actions {
  text-align: center;
  margin-top: 28px;
}

.form-actions .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 16px;
}

.form-or {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-or::before,
.form-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.form-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 15px;
}

.form-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.form-link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.form-sep {
  color: var(--muted-soft);
}

.form-success {
  display: none;
  padding: 28px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 12px;
  text-align: center;
  margin-top: 24px;
}

.form-success.visible { display: block; }

.form-success strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.form-success p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== BANDEAU GROUPE COHESIF (statique, premium) ===== */
.groupe-band {
  padding: 28px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.groupe-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.groupe-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.groupe-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.groupe-poles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.groupe-pole {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.groupe-pole:hover {
  color: var(--accent);
}

.groupe-pole.current {
  color: var(--accent);
  position: relative;
}

.groupe-pole.current::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 4px;
  animation: groupePulse 2s ease-in-out infinite;
}

@keyframes groupePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.groupe-pole.soon {
  color: var(--muted-soft);
  cursor: not-allowed;
}

.soon-mini {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  background: rgba(15, 23, 32, 0.06);
  color: var(--muted);
  border-radius: 4px;
}

.groupe-sep {
  width: 1px;
  height: 14px;
  background: var(--line-strong);
  opacity: 0.6;
}

@media (max-width: 900px) {
  .groupe-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .groupe-poles {
    gap: 12px;
  }
  .groupe-pole {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .groupe-sep { display: none; }
  .groupe-poles {
    gap: 8px 16px;
  }
}

/* ===== ENHANCEMENTS CARDS UNIVERS - effet 2026 ===== */
.univers {
  box-shadow: var(--shadow-sm);
  position: relative;
}

.univers::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

.univers:hover {
  box-shadow: var(--shadow-xl);
}

.univers:hover::after {
  opacity: 0.6;
}

/* ===== ENHANCEMENT EYEBROWS ===== */
.eyebrow,
.section-label {
  position: relative;
}

.eyebrow::after,
.section-label::after {
  display: none;
}

/* ===== HERO TITLE - effet display moderne ===== */
.page-hero h1 {
  position: relative;
}

.page-hero h1 .accent {
  position: relative;
  display: inline-block;
}

.page-hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 0.08em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 2px;
  z-index: -1;
}

/* ===== ENHANCEMENT BTN PRIMARY ===== */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

/* ===== AMÉLIORATION SECTION TITLES - taille + tracking 2026 ===== */
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

/* ===== BADGE VIVANT ===== */
.eyebrow {
  background: var(--bg-card);
  padding: 8px 16px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ===== MICRO-INTERACTIONS ===== */
a, button {
  -webkit-tap-highlight-color: transparent;
}

.univers-link {
  position: relative;
}

.univers-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.univers-link:hover::before {
  width: 100%;
}

/* ===== STATS BAR - amélioration profondeur ===== */
.stats-bar {
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-num {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== WHY-CARD enhancement ===== */
.why-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card) 100%);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

/* ===== SCROLL INDICATOR HERO ===== */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted-soft);
  text-transform: uppercase;
  opacity: 0.7;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-hint-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--muted-soft));
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 4px); }
}

@media (max-width: 980px) {
  .scroll-hint { display: none; }
}

/* ===== HEADER avec bordure animée ===== */
header {
  border-bottom: 1px solid transparent;
  background-image:
    linear-gradient(var(--bg), var(--bg)),
    linear-gradient(90deg, transparent, var(--accent), transparent);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ===== SECTIONS avec séparateurs subtils ===== */
section {
  position: relative;
}

/* ===== AMÉLIORATION PHOTO HERO ===== */
.hero-image-wrap::before {
  display: none;
}

/* ===== HERO CTA ROW + TRUST ===== */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

/* Eyebrow "live" avec pulsation verte */
.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px !important;
}

.eyebrow-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.eyebrow-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

.btn-large {
  padding: 18px 28px !important;
  font-size: 15px !important;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  font-size: 13px;
  color: var(--muted);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row a { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px; font-size: 12px; }
}

/* ===== BANDEAU GARANTIES ===== */
.trust-band {
  padding: 50px 0 60px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
}

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

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

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

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

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

.trust-card:hover .trust-icon {
  background: var(--accent);
  color: #fff;
}

.trust-content h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}

.trust-content p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== BENEFIT TAGS UNIVERS ===== */
.univers-benefit {
  margin: -8px 0 20px;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.benefit-tag::before {
  content: "★";
  color: #a8c8e8;
  font-size: 11px;
}

.benefit-tag.warm {
  background: var(--warm);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.process-step {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  background: var(--accent);
  transform: scale(1.05);
}

.process-line {
  position: absolute;
  top: 56px;
  right: -24px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

@media (max-width: 900px) {
  .process-line { display: none; }
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}

.process-step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.process-step strong {
  color: var(--ink);
  font-weight: 700;
}

.process-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.process-cta {
  text-align: center;
}

/* ===== CAS D'USAGE ===== */
.cases-section {
  padding: 110px 0 60px;
  background: var(--bg);
  position: relative;
}

.cases-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.cases-header .section-label {
  display: inline-flex;
  margin: 0 auto 22px;
}

.cases-header .section-intro {
  margin: 0 auto;
}

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

@media (max-width: 980px) {
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 540px;
    margin: 0 auto;
  }
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(15, 23, 32, 0.1), 0 4px 8px -2px rgba(15, 23, 32, 0.04);
  border-color: var(--line-strong);
}

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

/* Carte mise en avant (au milieu) */
.case-card-featured {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-color: var(--accent-medium);
}

.case-card-featured::after {
  content: "POPULAIRE";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
}

.case-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  margin-bottom: 28px;
  align-self: flex-start;
}

.case-stat {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.case-stat-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}

.case-stat-num .case-stat-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-left: 6px;
}

.case-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.case-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}

.case-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.case-text strong {
  color: var(--ink);
  font-weight: 700;
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.case-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted-soft);
  text-transform: uppercase;
}

.case-meta-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.case-meta-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.cases-footer {
  text-align: center;
  margin-top: 56px;
}

.cases-footer p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

.cases-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.cases-link::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.cases-link:hover {
  color: var(--accent-light);
}

.cases-link:hover::after {
  transform: translateX(4px);
}

/* ===== BANDEAU GARANTIES ===== */
.guarantees-section {
  padding: 60px 0;
  background: var(--bg-tint);
}

.guarantees-bar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 12px -4px rgba(15, 23, 32, 0.05);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.guarantee-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

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

.guarantee-item:hover .guarantee-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.guarantee-text h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}

.guarantee-text p {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.guarantee-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

/* Tablette : 2x2 */
@media (max-width: 980px) {
  .guarantees-bar {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
    padding: 32px 28px;
  }
  .guarantee-divider {
    display: none;
  }
}

/* Mobile : 1 colonne */
@media (max-width: 600px) {
  .guarantees-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
  }
  .guarantee-item {
    gap: 14px;
  }
}

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  gap: 10px;
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta.hidden {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}

.sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.sticky-btn:active {
  transform: scale(0.97);
}

.sticky-btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(15, 23, 32, 0.4), 0 4px 8px -2px rgba(15, 23, 32, 0.2);
}

.sticky-btn-secondary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(30, 58, 95, 0.5), 0 4px 8px -2px rgba(30, 58, 95, 0.25);
}

.sticky-btn svg {
  flex-shrink: 0;
}

/* Affiché uniquement sur mobile/tablette */
@media (max-width: 980px) {
  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 380px) {
  .sticky-btn {
    padding: 14px 10px;
    font-size: 13px;
    gap: 6px;
  }
  .sticky-cta {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in:nth-child(2) { transition-delay: 0.06s; }
.fade-in:nth-child(3) { transition-delay: 0.12s; }
.fade-in:nth-child(4) { transition-delay: 0.18s; }
.fade-in:nth-child(5) { transition-delay: 0.24s; }