/* =====================================================================
   MATÉRIEL ORTHOPHONIE — Site vitrine
   CSS partagé entre toutes les pages
   ===================================================================== */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1A1A2E;
  background: #FFFBF5;
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== @FONT-FACE (self-hosted) ===== */
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/DMSans-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/DMSans-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('assets/fonts/DMSans-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/Sora-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/Sora-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sora';
  src: url('assets/fonts/Sora-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ===== TOKENS ===== */
:root {
  --primary: #6C5CE7;
  --primary-hover: #5A4BD1;
  --primary-light: #F5F3FF;
  --orange: #F97316;
  --warm-cream: #FFF7ED;
  --page-bg: #FFFBF5;
  --card-bg: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-body: #44403C;
  --text-gray: #78716C;
  --text-muted: #787470;
  --border: #E7E5E4;
  --border-ui: #E5E7EB;
  --radius: 10px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.07);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 150ms ease;
}


/* ===== LAYOUT ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }


/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-size: 16px; font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(108,92,231,0.18);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: scale(1.03);
}
.hero-btn { padding: 12px 28px; font-size: 15px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary);
  font-size: 16px; font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  font-size: 15px; font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid #E7E5E4;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}


/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 700; color: var(--text-dark);
  letter-spacing: -0.4px; line-height: 1.2; margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-gray);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}


/* =====================================================================
   NAVBAR
   ===================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--page-bg);
  border-bottom: 1px solid transparent;
  transition: background 100ms linear, border-color 100ms linear, box-shadow 100ms linear;
}
.navbar.scrolled {
  background: var(--card-bg);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--primary); letter-spacing: -0.3px;
}
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a {
  font-size: 15px; font-weight: 500; color: var(--text-gray); transition: color var(--transition);
}
.navbar-links a:hover { color: var(--text-dark); }
.navbar-links a.active { color: var(--primary); }

/* Dropdown */
.navbar-dropdown { position: relative; }
.navbar-dropdown-toggle {
  font-size: 15px; font-weight: 500; color: var(--text-gray);
  display: flex; align-items: center; gap: 4px;
  cursor: pointer; transition: color var(--transition);
}
.navbar-dropdown-toggle:hover { color: var(--text-dark); }
.navbar-dropdown-toggle.active { color: var(--primary); }
.navbar-dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.navbar-dropdown:hover .navbar-dropdown-toggle svg,
.navbar-dropdown.open .navbar-dropdown-toggle svg { transform: rotate(180deg); }
.navbar-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 360px; padding: 8px; margin-top: 8px;
  background: var(--card-bg); border: 1px solid var(--border-ui); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0; visibility: hidden; transition: opacity 0.15s ease, visibility 0.15s ease;
}
.navbar-dropdown:hover .navbar-dropdown-menu,
.navbar-dropdown.open .navbar-dropdown-menu { opacity: 1; visibility: visible; }

/* Dropdown items — icon + text */
.dropdown-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: 8px;
  transition: background var(--transition);
  text-decoration: none; color: inherit;
}
.dropdown-item:hover { background: var(--primary-light); }
.dropdown-item-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--primary-light);
}
.dropdown-item-icon svg { width: 20px; height: 20px; }
.dropdown-item-icon.violet { background: #F0EDFF; color: #6C5CE7; }
.dropdown-item-icon.blue { background: #EEF4FF; color: #3B82F6; }
.dropdown-item-icon.green { background: #ECFDF5; color: #10B981; }
.dropdown-item-icon.mint { background: #E8F5EE; color: #0E5C4A; }
.dropdown-item-icon.cream { background: #FFEFD8; color: #C46A2E; }
.dropdown-item-text { flex: 1; min-width: 0; }
.dropdown-item-name {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--text-dark); display: flex; align-items: center; gap: 8px;
}
.dropdown-item-badge {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 100px;
  background: #ECFDF5; color: #059669;
}
.dropdown-item-desc {
  font-size: 13px; font-weight: 400; color: var(--text-gray);
  line-height: 1.4; margin-top: 2px;
}
.dropdown-item.disabled { cursor: default; }
.dropdown-item.disabled:hover { background: transparent; }
.dropdown-item.disabled .dropdown-item-icon { opacity: 0.5; }
.dropdown-item.disabled .dropdown-item-name { color: var(--text-gray); }
.dropdown-item.disabled .dropdown-item-desc { color: var(--text-muted); }

/* Mobile dropdown tools section */
.mobile-tools-section { padding: 8px 0; }
.mobile-tools-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted); padding: 8px 0 4px;
}
.mobile-tool-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 500; color: var(--text-dark);
}
.mobile-tool-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-tool-item .mobile-tool-badge {
  font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 100px; background: #ECFDF5; color: #065F46; margin-left: auto;
}

/* Navbar CTAs */
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-btn-login {
  font-size: 14px; font-weight: 600; color: var(--primary);
  padding: 9px 20px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-ui); background: var(--card-bg);
  transition: all var(--transition);
}
.navbar-btn-login:hover { border-color: var(--primary); background: var(--primary-light); }
.navbar-cta {
  font-size: 14px; font-weight: 600; color: #fff;
  padding: 9px 20px; border-radius: var(--radius-pill);
  background: var(--primary); transition: all var(--transition);
}
.navbar-cta:hover { background: var(--primary-hover); }

/* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; height: 24px; padding: 4px 0; margin-left: auto; flex-shrink: 0; }
.hamburger span { display: block; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s ease; }
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 999;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu {
  display: none; position: fixed; top: 0; right: -300px; width: 300px; height: 100%;
  background: var(--card-bg); z-index: 1001; padding: 80px 24px 24px;
  transition: right 0.3s ease; box-shadow: -4px 0 24px rgba(0,0,0,0.08);
  pointer-events: none; overflow: hidden;
}
.mobile-menu.active { right: 0; pointer-events: auto; overflow-y: auto; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 16px; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--border); }
.mobile-menu .mobile-menu-cta { display: block; text-align: center; margin-top: 24px; padding: 14px 24px; background: var(--primary); color: #fff; border-radius: var(--radius-pill); font-weight: 600; border-bottom: none; }
.mobile-close {
  position: absolute; top: 18px; right: 18px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); border: 1.5px solid var(--border); background: var(--card-bg);
  transition: all var(--transition);
}
.mobile-close:hover { border-color: #D6D3D1; }


/* =====================================================================
   HERO (homepage)
   ===================================================================== */
.hero {
  padding: 148px 24px 96px;
  text-align: center;
  background: var(--page-bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(108,92,231,0.06) 0%, rgba(249,115,22,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: var(--warm-cream);
  border: 1px solid #F5E6D3;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; color: #92400E;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; color: #D97706; flex-shrink: 0; }
.hero h1 {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 700; color: var(--text-dark);
  letter-spacing: -0.5px; line-height: 1.15;
  max-width: 680px; margin: 0 auto 20px;
}
.hero-subtitle {
  font-size: 18px; color: var(--text-gray);
  max-width: 540px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-cta { margin-bottom: 56px; }
.hero-screenshot {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* Browser chrome frame */
.browser-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  background: #fff;
  border: 1px solid #e0e0e0;
}
.browser-toolbar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
.browser-dots {
  display: flex; gap: 6px; flex-shrink: 0;
}
.browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-address {
  flex: 1; display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #e0e0e0; border-radius: 6px;
  padding: 6px 12px; font-size: 12px; color: #888;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.browser-address svg { flex-shrink: 0; color: #28c840; }

.hero-screenshot img, .hero-screenshot canvas {
  width: 100%; height: auto; display: block;
}


/* =====================================================================
   TRUST BAR
   ===================================================================== */
.trust-bar {
  padding: 32px 24px;
  background: var(--warm-cream);
  border-top: 1px solid rgba(253,186,116,0.12);
  border-bottom: 1px solid rgba(253,186,116,0.12);
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
  max-width: 720px; margin: 0 auto;
}
.trust-stat { display: flex; align-items: center; gap: 10px; }
.trust-stat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-stat-icon svg { width: 18px; height: 18px; }
.trust-stat-icon.violet { background: var(--primary-light); color: var(--primary); }
.trust-stat-icon.blue { background: #EFF6FF; color: #3B82F6; }
.trust-stat-icon.green { background: #ECFDF5; color: #10B981; }
.trust-stat-text strong {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--text-dark); display: block; line-height: 1.2;
}
.trust-stat-text span { font-size: 13px; color: var(--text-muted); }


/* =====================================================================
   SECTION — NOS OUTILS (homepage)
   ===================================================================== */
.section-tools { padding: 96px 24px; background: var(--card-bg); overflow: hidden; }

/* Tools carousel (Swiper) */
.tools-carousel-wrapper {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
}
.tools-swiper {
  flex: 1; min-width: 0;
  padding: 12px 0 48px;
}
.tools-nav-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card-bg); border: 1.5px solid var(--border);
  color: var(--text-gray); transition: all 200ms ease;
  flex-shrink: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: static; margin-top: -36px;
}
.tools-nav-arrow::after { font-size: 18px; font-weight: bold; }
.tools-nav-arrow:hover {
  border-color: var(--primary); color: var(--primary); background: var(--primary-light);
}
.tools-nav-arrow.swiper-button-disabled { opacity: 0.3; pointer-events: none; }
.tools-swiper .swiper-pagination { bottom: 0; }
.tools-swiper .swiper-pagination-bullet {
  width: 8px; height: 8px; background: var(--border);
  opacity: 1; transition: all 200ms ease;
}
.tools-swiper .swiper-pagination-bullet-active {
  background: var(--primary); width: 24px; border-radius: 4px;
}

/* Featured tool card */
.tool-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: 20px;
  background: white; border: 1px solid #E5E7EB; box-shadow: none;
  overflow: hidden;
  transition: box-shadow 300ms ease, transform 300ms ease, border-color 300ms ease;
}
.tool-featured:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.tool-featured-visual {
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  min-height: 100%;
}
.tool-featured-visual img { width: 100%; height: 100%; object-fit: cover; }
.tool-coming-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(108,92,231,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.tool-coming-icon svg { width: 36px; height: 36px; }
.tool-coming-icon.violet { background: rgba(108,92,231,0.08); color: #6C5CE7; }
.tool-coming-icon.mint { background: rgba(14,92,74,0.08); color: #0E5C4A; }
.tool-coming-icon.cream { background: rgba(196,106,46,0.10); color: #C46A2E; }
.tool-coming { opacity: 0.85; }
.tool-featured-content {
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.tool-featured-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  margin-bottom: 16px; width: fit-content;
}
.tool-featured-badge.available { background: #ECFDF5; color: #059669; }
.tool-featured-badge.coming { background: #FFF7ED; color: #92400E; }
.tool-featured-content h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.2px;
}
.tool-featured-content p {
  font-size: 15px; color: var(--text-gray); line-height: 1.65; margin-bottom: 8px;
}
.tool-featured-features {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 20px;
}
.tool-featured-link {
  font-size: 15px; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.tool-featured-link:hover { gap: 10px; }


/* =====================================================================
   SECTION — POURQUOI NOUS (homepage)
   ===================================================================== */
.section-why { padding: 96px 24px; background: var(--page-bg); }
.section-why .section-header { margin-bottom: 52px; }

.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 820px; margin: 0 auto;
}
.why-card {
  padding: 28px 24px; border-radius: 20px;
  background-color: white; box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 4px 0px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 200ms ease;
}
.why-card.visible:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px 0px;
  transform: translate(0px, -2px);
  transition: all 200ms ease;
}
.why-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; }
.why-icon.blue { background: #EFF6FF; color: #3B82F6; }
.why-icon.red { background: #FEF2F2; color: #EF4444; }
.why-icon.violet { background: #F5F3FF; color: #6C5CE7; }
.why-icon.orange { background: #FFF7ED; color: #F97316; }
.why-icon.green { background: #ECFDF5; color: #10B981; }
.why-icon.amber { background: #FFFBEB; color: #D97706; }
.why-text h3 {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 4px;
}
.why-text p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }


/* =====================================================================
   SECTION — TÉMOIGNAGES (homepage)
   ===================================================================== */
.section-testimonials { padding: 96px 24px; background: var(--card-bg); }
.section-testimonials .section-header { margin-bottom: 52px; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 920px; margin: 0 auto;
}
.testimonial-card {
  padding: 28px 24px; border-radius: var(--radius-lg);
  background: var(--page-bg); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-hearts { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-hearts svg { width: 14px; height: 14px; fill: var(--orange); }
.testimonial-card blockquote {
  font-size: 14.5px; color: var(--text-body); line-height: 1.65;
  margin-bottom: 20px; flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0;
}
.testimonial-avatar.purple { background: var(--primary); }
.testimonial-avatar.blue { background: #3B82F6; }
.testimonial-avatar.green { background: #10B981; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.testimonial-role { font-size: 12.5px; color: var(--text-muted); margin-top: 1px; }


/* =====================================================================
   SECTION — FAQ
   ===================================================================== */
.section-faq { padding: 96px 24px; background: var(--page-bg); }

.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 18px 0; font-size: 15px; font-weight: 600; color: var(--text-dark);
  text-align: left; transition: color var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--text-muted); transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: grid; grid-template-rows: 0fr;
  overflow: hidden; transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p {
  overflow: hidden;
  padding: 0 0 18px; font-size: 14.5px;
  color: var(--text-gray); line-height: 1.7;
}


/* =====================================================================
   SECTION — CTA FINAL
   ===================================================================== */
.section-cta-final {
  padding: 80px 24px;
  background: var(--page-bg);
  text-align: center;
  border-top: 1px solid var(--border);
}
.section-cta-final h2 {
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 14px;
  letter-spacing: -0.3px; line-height: 1.25;
}
.section-cta-final p {
  font-size: 16px; color: var(--text-gray);
  max-width: 440px; margin: 0 auto 28px; line-height: 1.7;
}


/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { padding: 56px 24px 28px; background: #1C1917; color: #A8A29E; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; max-width: 900px; margin: 0 auto;
}
.footer-brand-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand-tagline { font-size: 14px; color: #A8A29E; line-height: 1.5; }
.footer-col h3 {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 14px; color: #A8A29E; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-col .footer-coming { display: block; font-size: 14px; color: rgba(168,162,158,0.8); padding: 4px 0; cursor: default; }
.footer-bottom {
  max-width: 900px; margin: 40px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.6);
}


/* =====================================================================
   HERO — PRODUCT PAGES (Boîte à mots, Imagier, Diaporama)
   ===================================================================== */
.hero-product {
  padding: 120px 24px 80px;
  background: var(--page-bg);
}
.hero-product-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 1080px; margin: 0 auto; align-items: center;
}
.hero-product-content { display: flex; flex-direction: column; align-items: flex-start; }

/* ── Stacked hero variant (text on top, full-width image below) ── */
.hero-product-inner.hero-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  max-width: 1180px;
}
.hero-product-inner.hero-stacked .hero-product-content {
  align-items: center;
  max-width: 720px;
}
.hero-product-inner.hero-stacked .hero-product-desc { max-width: 600px; }
.hero-product-inner.hero-stacked .hero-product-visual { width: 100%; }
.hero-product-inner.hero-stacked .hero-product-visual.hero-slideshow {
  aspect-ratio: 2512 / 1616;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; margin-bottom: 24px; line-height: 1.5;
}
.breadcrumb a { color: #5C5852; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text-dark); }
.breadcrumb .breadcrumb-sep { color: var(--border); }
.breadcrumb .breadcrumb-current { color: var(--text-gray); font-weight: 500; }

.hero-product-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: #ECFDF5; border: 1px solid #D1FAE5; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; color: #065F46;
  margin-bottom: 20px;
}
.hero-product-h1 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700; color: var(--text-dark);
  letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 16px;
}
.hero-product-desc {
  font-size: 17px; color: var(--text-gray); line-height: 1.7;
  margin-bottom: 28px; max-width: 440px;
}
.hero-product-actions { display: flex; margin-top: 28px; gap: 16px; flex-wrap: wrap; }
.hero-product-visual {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--warm-cream) 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 300px;
  color: var(--text-muted); font-size: 13px; font-weight: 500;
}
.hero-product-visual img { width: 100%; height: auto; display: block; }

/* ── Hero slideshow (crossfade) ── */
.hero-product-visual.hero-slideshow {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 0;
  background: #f8f7fc;
  color: transparent;
}
.hero-slideshow .hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  animation: heroFade 15s infinite;
}
.hero-slideshow .hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slideshow .hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes heroFade {
  0%      { opacity: 0; }
  5%      { opacity: 1; }
  33.33%  { opacity: 1; }
  38.33%  { opacity: 0; }
  100%    { opacity: 0; }
}


/* =====================================================================
   SECTION — SUB-TOOLS (Boîte à mots — 3 cards)
   ===================================================================== */
.section-sub-tools { padding: 96px 24px; background: var(--card-bg); }

.sub-tools-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.sub-tool-card {
  border-radius: var(--radius-lg);
  background: var(--page-bg);
  border: 1px solid var(--border-ui);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit; cursor: pointer;
}
.sub-tool-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sub-tool-card-visual {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--warm-cream) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px; font-weight: 500;
}
.sub-tool-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.sub-tool-card-content {
  padding: 24px 22px; flex: 1;
  display: flex; flex-direction: column;
}
.sub-tool-card-content h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.sub-tool-card-content p {
  font-size: 14px; color: var(--text-gray); line-height: 1.6;
}
.sub-tool-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  margin-top: 12px; transition: gap var(--transition);
}
.sub-tool-card-link:hover { gap: 10px; }


/* =====================================================================
   SECTION — CROSS-LINKS (Découvrez aussi)
   ===================================================================== */
.section-crosslinks { padding: 64px 24px; background: var(--card-bg); }
.crosslinks-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 640px; margin: 0 auto;
}
.crosslink-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: var(--radius-lg);
  background: var(--page-bg); border: 1px solid var(--border-ui);
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.crosslink-card:hover {
  border-color: var(--primary); background: var(--primary-light);
  box-shadow: var(--shadow-sm); transform: translateY(-1px);
}
.crosslink-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.crosslink-icon svg { width: 22px; height: 22px; }
.crosslink-icon.violet { background: #F0EDFF; color: #6C5CE7; }
.crosslink-icon.orange { background: #FFF7ED; color: #F97316; }
.crosslink-icon.mint { background: #E8F5EE; color: #0E5C4A; }
.crosslink-icon.cream { background: #FFEFD8; color: #C46A2E; }
.crosslink-text { flex: 1; min-width: 0; }
.crosslink-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 2px;
}
.crosslink-desc { font-size: 13px; color: var(--text-gray); line-height: 1.4; }
.crosslink-arrow {
  flex-shrink: 0; color: var(--primary); opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.crosslink-card:hover .crosslink-arrow { opacity: 1; transform: translateX(2px); }

@media (max-width: 640px) {
  .crosslinks-grid { grid-template-columns: 1fr; max-width: 380px; }
}


/* =====================================================================
   ENTITY PARAGRAPH (Homepage)
   ===================================================================== */
.entity-paragraph {
  padding: 32px 24px;
  text-align: center;
}
.entity-paragraph p {
  max-width: 680px; margin: 0 auto;
  font-size: 15px; color: var(--text-gray); line-height: 1.75;
}


/* =====================================================================
   SECTION — FEATURES ZIGZAG
   ===================================================================== */
.section-features { padding: 96px 24px; background: var(--page-bg); }
.section-features .section-header { margin-bottom: 64px; }
.section-features.bg-white { background: var(--card-bg); }

.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 960px; margin: 0 auto 64px; align-items: center;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reversed { direction: rtl; }
.feature-row.reversed > * { direction: ltr; }

.feature-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--primary-light); border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; color: var(--primary);
  margin-bottom: 16px;
}
.feature-text h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.3px; line-height: 1.25;
  margin-bottom: 12px;
}
.feature-text p {
  font-size: 15px; color: var(--text-gray); line-height: 1.7;
  margin-bottom: 20px;
}
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--text-body); line-height: 1.5;
}
.feature-list-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: #10B981; }
.feature-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--warm-cream) 100%);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
  color: var(--text-muted); font-size: 13px; font-weight: 500;
}
.feature-visual img { width: 100%; height: auto; display: block; }


/* =====================================================================
   SECTION — HOW IT WORKS (3 steps)
   ===================================================================== */
.section-how { padding: 96px 24px; background: var(--card-bg); }
.section-how.bg-warm { background: var(--page-bg); }

.how-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 780px; margin: 0 auto;
  text-align: center;
}
.how-step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary-light);
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--card-bg);
  box-shadow: 0 0 0 2px var(--primary-light);
}
.how-step h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.how-step p {
  font-size: 14px; color: var(--text-gray); line-height: 1.6;
  max-width: 220px; margin: 0 auto;
}


/* =====================================================================
   SECTION — QUOTE / TESTIMONIAL (single)
   ===================================================================== */
.section-quote { padding: 80px 24px; background: var(--page-bg); }
.section-quote.bg-white { background: var(--card-bg); }
.quote-block { max-width: 640px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: Georgia, serif; font-size: 64px;
  color: var(--primary-light); line-height: 1; margin-bottom: -12px;
}
.quote-text {
  font-size: 18px; font-style: italic; color: var(--text-body);
  line-height: 1.75; margin-bottom: 24px;
}
.quote-author { display: flex; align-items: center; gap: 12px; justify-content: center; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff;
}
.quote-author-name { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.quote-author-role { font-size: 13px; color: var(--text-muted); }


/* =====================================================================
   SECTION — USE CASES (Diaporama — 3 cards)
   ===================================================================== */
.section-usecases { padding: 96px 24px; background: var(--card-bg); }
.usecases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.usecase-card {
  border-radius: var(--radius-lg);
  background: var(--page-bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.usecase-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.usecase-visual {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: center;
}
.usecase-visual.amber { background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%); }
.usecase-visual.blue { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); }
.usecase-visual.violet { background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%); }
.usecase-content { padding: 24px 22px; }
.usecase-icon {
  width: 38px; height: 38px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.usecase-icon svg { width: 20px; height: 20px; }
.usecase-icon.amber { background: #FEF3C7; color: #D97706; }
.usecase-icon.blue { background: #DBEAFE; color: #3B82F6; }
.usecase-icon.violet { background: #EDE9FE; color: #6C5CE7; }
.usecase-h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px;
}
.usecase-desc { font-size: 14px; color: var(--text-gray); line-height: 1.6; }


/* =====================================================================
   SECTION — TACHISTOSCOPE HIGHLIGHT (Diaporama)
   ===================================================================== */
.section-tachy { padding: 80px 24px; background: var(--page-bg); }
.tachy-block {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 52px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #FEFCE8 0%, #FFF7ED 50%, #F5F3FF 100%);
  align-items: center;
}
.tachy-label {
  display: inline-block; padding: 4px 12px;
  background: rgba(217,119,6,0.1); border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  color: #92400E; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.tachy-h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.3px; line-height: 1.25;
  margin-bottom: 12px;
}
.tachy-desc {
  font-size: 15px; color: var(--text-gray); line-height: 1.7;
  margin-bottom: 24px;
}
.tachy-stats { display: flex; gap: 32px; }
.tachy-stat-value {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--text-dark);
}
.tachy-stat-label { font-size: 13px; color: var(--text-muted); }
.tachy-visual {
  border-radius: 16px; overflow: hidden;
  background: #0F0E1A;
  display: flex; align-items: center; justify-content: center;
  min-height: 240px; padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  color: rgba(255,255,255,0.3); font-size: 13px;
}
.tachy-visual img { width: 100%; height: auto; display: block; }


/* =====================================================================
   PRICING (Tarifs)
   ===================================================================== */
.section-pricing { padding: 0 24px 96px; background: var(--page-bg); }
.pricing-wrapper {
  display: flex; justify-content: center;
  max-width: 480px; margin: 0 auto;
}
.pricing-card {
  width: 100%; max-width: 420px;
  background: var(--card-bg);
  padding: 40px 36px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); border-radius: var(--radius-pill);
  padding: 5px 18px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  color: #fff; letter-spacing: 0.5px; white-space: nowrap;
}
.pricing-badge-free {
  background: rgb(108, 92, 231); color: #fff; border: none;
}
.pricing-label {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  color: var(--text-dark); line-height: 1.1; margin-bottom: 28px;
}
.pricing-card .btn-primary { width: 100%; justify-content: center; margin-bottom: 28px; }
.pricing-features-title {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 8px; text-align: left;
}
.pricing-features-intro {
  font-size: 14px; color: var(--text-gray); line-height: 1.5;
  margin: 0 0 14px; text-align: left;
}
.pricing-features-intro strong { color: var(--text-dark); font-weight: 600; }
.pricing-features { text-align: left; }
.pricing-feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
}
.pricing-feature-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: #10B981; }
.pricing-feature-item span { font-size: 14.5px; color: var(--text-body); line-height: 1.5; }


/* =====================================================================
   HERO — CENTERED (Tarifs, etc.)
   ===================================================================== */
.hero.hero-centered {
  padding: 140px 24px 64px;
}
.hero.hero-centered .hero-content { max-width: 600px; margin: 0 auto; }
.hero.hero-centered .hero-subtitle { margin-bottom: 0; }
.hero.hero-centered::before { display: none; }

/* ===== 404 ===== */
.hero.hero-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 0;
}
.error-code {
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -4px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}


/* =====================================================================
   PRICING (Tarifs)
   — pricing-period was missing from initial build
   ===================================================================== */
.pricing-period {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 28px;
}


/* =====================================================================
   SECTION — INCLUDED (Tarifs — grid 3x2)
   ===================================================================== */
.section-included { padding: 96px 24px; background: var(--page-bg); }
.section-included .section-header { margin-bottom: 52px; }
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 860px; margin: 0 auto;
}
.included-card {
  text-align: center; padding: 28px 22px;
  border: none; border-radius: 20px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 4px 0px;
  transition: all 200ms ease;
}
.included-card.visible:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px 0px;
  transform: translate(0px, -2px);
}
.included-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.included-icon svg { width: 24px; height: 24px; }
.included-icon.violet { background: #F5F3FF; color: var(--primary); }
.included-icon.orange { background: #FFF7ED; color: #F97316; }
.included-icon.blue { background: #EFF6FF; color: #3B82F6; }
.included-icon.green { background: #ECFDF5; color: #10B981; }
.included-icon.red { background: #FEF2F2; color: #EF4444; }
.included-icon.amber { background: #FFFBEB; color: #F59E0B; }
.included-card h3 {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.included-card p {
  font-size: 13.5px; color: var(--text-gray); line-height: 1.6;
}


/* =====================================================================
   APP CARDS (Tarifs — section "Nos applications")
   ===================================================================== */
.app-cards-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 720px; margin: 0 auto;
}
.app-card {
  text-align: left; padding: 32px;
  background: var(--card-bg);
  border: 1px solid #EDE9DF; border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 4px 0px;
  transition: all 200ms ease;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.app-card:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px 0px;
  transform: translateY(-2px);
}
.app-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.app-card-icon svg { width: 28px; height: 28px; }
.app-card-icon.violet { background: #F5F3FF; color: var(--primary); }
.app-card-icon.cream { background: #FBF1DC; color: #C46A2E; }
.app-card-icon.mint { background: #D9F2E7; color: #0E5C4A; }
.app-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.app-card p {
  font-size: 14.5px; color: var(--text-gray); line-height: 1.55;
  margin-bottom: 18px;
}
.app-card-features {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.app-card-features li {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0;
  font-size: 13.5px; color: var(--text-body);
}
.app-card-features li svg { width: 14px; height: 14px; color: #10B981; flex-shrink: 0; }
.app-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--primary);
  transition: gap 200ms ease;
}
.app-card:hover .app-card-link { gap: 10px; }
.app-card-link svg { width: 16px; height: 16px; }


/* =====================================================================
   SECTION — TEASER PRO (Tarifs)
   ===================================================================== */
.section-teaser {
  padding: 64px 24px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
}
.teaser-block {
  max-width: 580px; margin: 0 auto;
  text-align: center;
  padding: 36px 32px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  border: 1px solid #E0DBFF;
}
.teaser-block h3,
.teaser-block .teaser-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.teaser-block p {
  font-size: 15px; color: var(--text-gray); line-height: 1.7;
  margin-bottom: 20px;
}
.teaser-input-group {
  display: flex; gap: 10px; max-width: 380px; margin: 0 auto;
}
.teaser-input {
  flex: 1; padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px; font-family: var(--font-body);
  background: var(--card-bg);
  outline: none; transition: border-color var(--transition);
}
.teaser-input:focus { border-color: var(--primary); }
.teaser-input::placeholder { color: var(--text-muted); }
.teaser-btn {
  padding: 11px 22px;
  background: var(--primary); color: #fff;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}
.teaser-btn:hover { background: var(--primary-hover); }
.teaser-success {
  display: none; margin-top: 12px;
  font-size: 14px; font-weight: 500; color: #059669;
}
.teaser-success.visible { display: block; }


/* =====================================================================
   TEAM (Équipe)
   ===================================================================== */
.section-team { padding: 0 24px 96px; background: var(--page-bg); text-align: center; }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; max-width: 820px; margin: 0 auto; padding: 0 24px;
}
.team-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 32px; border: none; border-radius: 20px;
  background-color: white; box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 20px 0px;
  font-size: 14px; line-height: 22px; text-align: center;
}
.team-photo {
  width: 140px; height: 140px; border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--warm-cream) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--text-muted); font-size: 13px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.team-avatar span {
  font-family: var(--font-display); font-weight: 700; font-size: 44px;
  color: white; line-height: 1;
}
.team-avatar.manon {
  background: linear-gradient(135deg, #6C5CE7 0%, #a78bfa 100%);
}
.team-avatar.arthur {
  background: linear-gradient(135deg, #3B82F6 0%, #60a5fa 100%);
}
.team-name {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px;
}
.team-role {
  font-size: 14px; font-weight: 600; color: var(--primary);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 14px; color: var(--text-gray); line-height: 1.6;
}

/* Values grid */
.section-values { padding: 96px 24px; background: var(--page-bg); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 860px; margin: 0 auto;
}
.values-grid .why-card {
  flex-direction: column; align-items: center; text-align: center;
}
.values-grid .why-icon {
  width: 56px; height: 56px; border-radius: 16px;
}
.values-grid .why-icon svg { width: 24px; height: 24px; }

/* Contribute */
.section-contribute {
  padding: 64px 24px;
  background: var(--card-bg);
  text-align: center;
}
.section-contribute p {
  font-size: 16px; color: var(--text-gray); line-height: 1.7;
  max-width: 440px; margin: 0 auto 24px;
}


/* =====================================================================
   CONTACT
   ===================================================================== */
.section-contact { padding: 0 24px 80px; background: var(--page-bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 40px; max-width: 860px; margin: 0 auto;
}
.contact-form { background: var(--card-bg); padding: 32px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--text-dark);
  border: 1.5px solid var(--border-ui); border-radius: var(--radius);
  background: var(--card-bg);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { width: 100%; justify-content: center; }

.contact-sidebar { display: flex; flex-direction: column; }
.sidebar-card {
  padding: 28px 24px;
  border-radius: 20px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 4px 0px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 200ms ease;
  margin-bottom: 20px;
}
.sidebar-card:last-child { margin-bottom: 0; }
.sidebar-card:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px 0px;
  transform: translate(0px, -2px);
}
.sidebar-icon-circle {
  width: 44px; height: 44px; border-radius: 14px;
  background: #EFF3FF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #3B82F6;
}
.sidebar-icon-circle svg { width: 22px; height: 22px; }
.sidebar-card-content { flex: 1; }
.sidebar-card h4,
.sidebar-card .sidebar-label {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.sidebar-card p { font-size: 14px; color: var(--text-gray); line-height: 1.5; }
.sidebar-card a { color: var(--primary); font-weight: 500; }


/* =====================================================================
   LEGAL PAGES (CGU, Confidentialité, Mentions légales)
   ===================================================================== */
.legal-page { padding: 120px 24px 80px; background: var(--page-bg); }
.legal-hero {
  text-align: center; max-width: 720px; margin: 0 auto;
  padding-bottom: 40px; margin-bottom: 40px;
}
.legal-hero h1 {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.3px; margin-bottom: 12px;
}
.legal-hero .last-updated {
  font-size: 14px; color: var(--text-muted);
}
.legal-content {
  max-width: 720px; margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 12px; letter-spacing: -0.3px;
}
.legal-content .legal-date {
  font-size: 14px; color: var(--text-muted); margin-bottom: 40px;
}
.legal-content h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-dark); margin-top: 40px; margin-bottom: 16px;
}
.legal-content h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: var(--text-dark); margin-top: 28px; margin-bottom: 12px;
}
.legal-content p {
  font-size: 15px; color: var(--text-gray); line-height: 1.75;
  margin-bottom: 16px;
}
.legal-content ul {
  margin-bottom: 16px; padding-left: 24px;
  list-style: disc;
}
.legal-content ul li {
  font-size: 15px; color: var(--text-gray); line-height: 1.75;
  margin-bottom: 4px;
}
.legal-content a { color: var(--primary); font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }
.legal-content table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 20px; font-size: 14.5px;
  display: block; overflow-x: auto;
}
.legal-content th {
  text-align: left; font-weight: 600; color: var(--text-dark);
  padding: 12px 16px; border: 1px solid var(--border);
  background: #F5F3FF;
}
.legal-content td {
  padding: 12px 16px; color: var(--text-gray); line-height: 1.5;
  border: 1px solid var(--border);
}


/* =====================================================================
   BLOG
   ===================================================================== */
.section-blog { padding: 96px 24px; background: var(--card-bg); }
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 820px; margin: 0 auto;
}
.blog-card {
  border-radius: var(--radius-lg);
  background: var(--page-bg); box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-visual {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--warm-cream) 100%);
}
.blog-card-content { padding: 24px; }
.blog-card-date { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card-content h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px; line-height: 1.3;
}
.blog-card-content p {
  font-size: 14px; color: var(--text-gray); line-height: 1.6;
}


/* =====================================================================
   COOKIE BANNER
   ===================================================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  padding: 16px 24px;
  display: none;
}
.cookie-banner.active { display: block; }
.cookie-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.cookie-text { font-size: 14px; color: var(--text-gray); line-height: 1.5; flex: 1; }
.cookie-text a { color: var(--primary); font-weight: 500; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept {
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--primary); padding: 8px 20px;
  border-radius: var(--radius-pill); transition: all var(--transition);
}
.cookie-btn-accept:hover { background: var(--primary-hover); }
.cookie-btn-refuse {
  font-size: 13px; font-weight: 600; color: var(--text-gray);
  padding: 8px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-ui); transition: all var(--transition);
}
.cookie-btn-refuse:hover { border-color: var(--text-muted); }


/* =====================================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================================== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-child {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-child.visible { opacity: 1; transform: translateY(0); }


/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff; font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }


/* =====================================================================
   RESPONSIVE — 1024px
   ===================================================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .hero.hero-centered h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .hero-product-h1 { font-size: 36px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .tachy-block { grid-template-columns: 1fr; padding: 36px; }
}


/* =====================================================================
   RESPONSIVE — 768px
   ===================================================================== */
@media (max-width: 768px) {
  /* Navbar → hamburger */
  .navbar-links { display: none; }
  .navbar-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-overlay, .mobile-menu { display: block; }

  .hero { padding: 120px 24px 72px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-screenshot { max-width: 100%; }

  .section-title { font-size: 26px; }

  /* Tools carousel */
  .section-tools { padding-left: 16px; padding-right: 16px; }
  .tools-nav-arrow { display: none; }
  .tool-featured { grid-template-columns: 1fr; }
  .tool-featured-visual { aspect-ratio: 16/9; min-height: auto; }
  .tool-featured-content { padding: 24px 20px; }

  /* Grids → 2 columns (tablet-friendly) */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-bar-inner { gap: 24px; }
  .trust-stat { flex: 0 0 auto; }

  .section-cta-final h2 { font-size: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }

  /* Product hero */
  .hero-product { padding: 100px 24px 60px; }
  .hero-product-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-product-h1 { font-size: 30px; }

  /* Features — keep 2 columns with smaller gap */
  .feature-row { gap: 32px; }
  .feature-text h3 { font-size: 22px; }

  /* How it works */
  .how-steps-grid { gap: 24px; }
  .how-step p { max-width: 100%; }

  /* Tachy */
  .tachy-block { grid-template-columns: 1fr; padding: 28px; }

  /* Pricing + 404 */
  .hero.hero-centered { padding: 120px 24px 48px; }
  .hero.hero-centered h1 { font-size: 30px; }
  .error-code { font-size: 100px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-price { font-size: 40px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .team-card { padding: 28px 24px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Cookie */
  .cookie-inner { flex-direction: column; text-align: center; }
}


/* =====================================================================
   RESPONSIVE — 640px
   ===================================================================== */
@media (max-width: 640px) {
  .hero { padding: 110px 16px 60px; }
  .hero h1 { font-size: 28px; }
  .btn-primary, .btn-white, .btn-ghost { padding: 12px 28px; font-size: 15px; }
  .section-title { font-size: 24px; }
  .trust-bar-inner {
    flex-direction: column; align-items: flex-start; gap: 16px;
    max-width: 240px; margin: 0 auto; padding: 0;
  }
  .tool-featured-content h3 { font-size: 19px; }
  .hero.hero-centered h1 { font-size: 26px; }
  .error-code { font-size: 80px; }
  .hero-product-h1 { font-size: 26px; }
  .hero-product-desc { font-size: 14px; }
  .hero-product-actions { flex-direction: column; align-items: stretch; align-self: stretch; }
  .hero-product-actions .btn-primary,
  .hero-product-actions .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .legal-content h1 { font-size: 28px; }
  .section-team { padding-top: 11px; padding-bottom: 64px; }
  .team-grid { padding: 0 10px; max-width: 420px; }
  .team-card { padding: 24px 10px; }

  /* Grids → single column (phone) */
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 380px; }
  .usecases-grid { grid-template-columns: 1fr; max-width: 420px; }
  .sub-tools-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .included-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .app-cards-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }

  /* Features → single column */
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row.reversed { direction: ltr; }

  /* How it works → single column */
  .how-steps-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Teaser */
  .teaser-input-group { flex-direction: column; }

  /* Contact form — reduce padding on mobile */
  .section-contact { padding: 0 16px 60px; }
  .contact-form { padding: 24px 20px; }
}
