/* ===== ACCESSIBILITÉ : Skip Link ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #1B3654;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid #E87D2F;
}

/* ============================================
   CavalManager - Site Vitrine v2
   Design moderne style equionline
   ============================================ */

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

:root {
  /* Couleurs — Logo CavalManager */
  --primary: #1B3654;
  --primary-light: #2874A6;
  --primary-lighter: #5FA8D3;
  --primary-dark: #0F1F33;
  --accent: #E87D2F;
  --accent-light: #F0943D;
  --accent-dark: #C96A1F;

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-alt: #F5F8FB;
  --bg-blue: #E8F1F9;
  --bg-dark: #0F1F33;
  --surface: #FFFFFF;

  /* Texte */
  --text: #1F2937;
  --text-light: #5A6677;
  --text-muted: #9CA3AF;
  --text-on-dark: #E8EDF3;
  --text-on-primary: #FFFFFF;

  /* Utilitaires */
  --border: #E5EAF0;
  --border-light: #F0F3F8;
  --shadow-sm: 0 1px 3px rgba(15, 31, 51, 0.05);
  --shadow-md: 0 4px 20px rgba(15, 31, 51, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 31, 51, 0.12);
  --shadow-xl: 0 20px 60px rgba(15, 31, 51, 0.15);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  height: 60px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.nav-cta { display: flex; gap: 12px; align-items: center; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--primary);
  transition: all 0.3s var(--ease);
  display: block;
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BOUTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--primary);
  color: var(--text-on-primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  color: var(--text-on-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: var(--text-on-primary);
}
.btn-accent:hover {
  background: var(--accent-light);
  color: var(--text-on-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 125, 47, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--text-on-primary);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 12px 16px;
}
.btn-ghost:hover { background: var(--bg-alt); color: var(--primary); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-blue) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 125, 47, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(40, 116, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232, 125, 47, 0.2);
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 10px;
  background: rgba(232, 125, 47, 0.2);
  z-index: -1;
  border-radius: 4px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-visual { position: relative; }
.hero-mockup {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.hero-mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.hero-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-mockup-dot:nth-child(1) { background: #FF5F57; }
.hero-mockup-dot:nth-child(2) { background: #FFBD2E; }
.hero-mockup-dot:nth-child(3) { background: #28C840; }
.hero-mockup-content {
  min-height: 360px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-mockup-content img,
.hero-mockup-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-mockup-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  padding: 40px;
  text-align: center;
}
.hero-mockup-placeholder i {
  font-size: 3rem;
  color: var(--primary-lighter);
}
.hero-float-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card.card-1 { top: 15%; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 15%; right: -30px; animation-delay: 2s; }
.hero-float-card-icon {
  width: 40px; height: 40px;
  background: var(--bg-blue);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.hero-float-card.card-2 .hero-float-card-icon {
  background: rgba(232, 125, 47, 0.15);
  color: var(--accent);
}
.hero-float-card-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.hero-float-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; }
section.bg-alt { background: var(--bg-alt); }
section.bg-blue { background: var(--bg-blue); }
section.bg-dark { background: var(--bg-dark); color: var(--text-on-dark); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.bg-dark .section-title { color: var(--text-on-dark); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}
.bg-dark .section-subtitle { color: rgba(232, 237, 243, 0.7); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ============================================
   STRENGTHS
   ============================================ */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-lighter);
}
.strength-icon {
  width: 56px; height: 56px;
  background: var(--bg-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.strength-card:nth-child(even) .strength-icon {
  background: rgba(232, 125, 47, 0.12);
}
.strength-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.strength-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
}

/* ============================================
   FEATURES
   ============================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 70px 0;
}
.feature-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(232, 125, 47, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.feature-row h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.feature-row p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
  hyphens: auto;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.feature-list li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.feature-visual {
  background: var(--bg-blue);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  padding: 40px;
  text-align: center;
}
.feature-visual-placeholder i {
  font-size: 3rem;
  color: var(--primary-light);
}

/* ============================================
   DEMO
   ============================================ */
.demo-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 125, 47, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.demo-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.demo-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 12px;
  text-align: justify;
  hyphens: auto;
}
.demo-features {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.demo-features li i { color: var(--accent-light); font-size: 1.1rem; }
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 148, 61, 0.15);
  color: var(--accent-light);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
}
.demo-visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.demo-visual i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.demo-visual h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.demo-visual p {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-lighter);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 125, 47, 0.12), var(--shadow-md);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-period {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.pricing-amount sup {
  font-size: 1.3rem;
  vertical-align: top;
  margin-right: 2px;
  font-weight: 700;
}
.pricing-amount sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  bottom: 0;
}
.pricing-equivalent {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
  min-height: 20px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-features li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }
.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--primary-lighter); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  user-select: none;
  transition: background 0.2s var(--ease);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question i {
  font-size: 0.85rem;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 2000px; }
.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: justify;
  hyphens: auto;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}
.contact-info p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
}
.contact-channels { display: flex; flex-direction: column; gap: 20px; }
.contact-channel { display: flex; align-items: center; gap: 16px; }
.contact-channel-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, opacity 0.2s;
}
.contact-channel-link:hover {
  transform: translateX(4px);
  opacity: 0.95;
}
.contact-channel-icon {
  width: 48px; height: 48px;
  background: var(--bg-blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-channel-icon-whatsapp {
  background: #25D366;
  color: white;
  font-size: 1.4rem;
}
.contact-channel-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}
.contact-channel-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: all 0.2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 54, 84, 0.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success i {
  font-size: 3rem;
  color: #28C840;
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo img { height: 70px; }
.footer-brand p {
  color: rgba(232, 237, 243, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 16px;
  text-align: justify;
  hyphens: auto;
}
.footer h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(232, 237, 243, 0.6);
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(232, 237, 243, 0.4);
}
.footer-bottom a { color: rgba(232, 237, 243, 0.4); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.cookie-text { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; }
.cookie-text a { color: var(--accent); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { padding: 140px 0 80px; }
.legal-page h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.legal-page .legal-date {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 0.9rem;
}
.legal-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 16px;
}
.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-page p,
.legal-page li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: justify;
  hyphens: auto;
}
.legal-page ul { margin-left: 24px; margin-bottom: 16px; }
.legal-page ul li { text-align: left; }

/* ============================================
   RESULT PAGES
   ============================================ */
.result-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
}
.result-card i { font-size: 4rem; margin-bottom: 20px; }
.result-card.success i { color: #28C840; }
.result-card.cancel i { color: #FF5F57; }
.result-card h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.result-card p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-code {
  font-size: 8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 31, 51, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: modalIn 0.4s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.modal-box .modal-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.modal-plan-info {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-plan-name { font-weight: 700; color: var(--primary); }
.modal-plan-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }
  .hero-inner { gap: 40px; }
  .feature-row { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 1000;
    padding: 100px 24px 40px;
    gap: 20px;
  }
  .nav-links.mobile-open a { font-size: 1.2rem; }
  .nav-cta .btn-sm.btn-ghost { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-float-card { display: none; }
  .hero-mockup { transform: none; }

  .strengths-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .demo-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .section-title { font-size: 2rem; }
  .demo-section h2 { font-size: 2rem; }
  .cookie-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .pricing-amount { font-size: 2.6rem; }
  .contact-form { padding: 24px; }
  .modal-box { padding: 24px; }
  .nav-logo img { height: 40px; }
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

::selection { background: rgba(232, 125, 47, 0.25); color: var(--primary); }

/* ─── Bouton flottant WhatsApp ─────────────────────────────── */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-floating:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: white;
  animation: none;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}
@media (max-width: 640px) {
  .whatsapp-floating {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
    font-size: 26px;
  }
}

/* ===== ICÔNES RÉSEAUX SOCIAUX (footer) ===== */
.footer-socials {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  flex-wrap: wrap;
}
.footer-socials li {
  margin: 0;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(232, 237, 243, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s ease;
}
.footer-socials a:hover {
  background: var(--accent, #E87D2F);
  color: #fff;
  transform: translateY(-2px);
}
.footer-socials a:focus-visible {
  outline: 2px solid var(--accent, #E87D2F);
  outline-offset: 2px;
}
