/* ============================================
   DESIGN SYSTEM — Toggl Track replica
   Clean, flat, solid backgrounds, no blur
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: #412A4C;
  background: #FEFBFA;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
.financeurs-track img { max-width: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Variables --- */
/* Les variables de couleurs sont dans css/theme.css */

/* --- Typography (lighter weights, smaller sizes) --- */
h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

h4 {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 500;
}

p {
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  color: var(--text-muted);
  line-height: 1.7;
}

.accent-text {
  color: var(--accent);
  font-style: italic;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

/* --- Buttons (flat, no shadow) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  height: 52px;
  padding: 14px 25px;
  border-radius: 26px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.15s ease-in, color 0.15s ease-in;
  gap: 8px;
}

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

.btn-primary:hover {
  background-color: var(--purple-mid);
}

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

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

.btn-light {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

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

.btn-dark {
  background-color: var(--text-dark);
  color: var(--white);
}

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

/* --- Navigation (solid bg, no blur) --- */
.nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a:not(.btn) {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.15s ease-in;
}

.nav-links a:not(.btn):hover {
  opacity: 1;
}

.nav-cta {
  height: 44px;
  font-size: 0.9rem;
  padding: 0 20px;
}

.nav-active {
  color: var(--accent) !important;
  opacity: 1 !important;
  font-weight: 500;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: transparent;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-login:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  opacity: 1;
}


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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background-color: var(--cream);
  padding: 25px 30px 30px;
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s;
}

.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--accent); }

/* --- Hero (solid dark bg) --- */
.hero {
  background-color: var(--dark);
  padding: 60px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 580px;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 2.8vw, 2.9rem);
  font-weight: 600;
}

.hero p {
  color: var(--text-light);
  opacity: 0.8;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  margin-bottom: 35px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.hero-buttons .btn {
  height: 44px;
  padding: 10px 22px;
  font-size: 0.88rem;
}

.hero-stat {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-stat-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
  font-family: 'Sora', sans-serif;
}

.hero-avatar:first-child { margin-left: 0; }

.hero-avatar-more {
  background-color: rgba(255,255,255,0.15);
  font-size: 0.58rem;
  letter-spacing: -0.02em;
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-stars {
  font-size: 0.72rem;
  color: #F0C040;
  letter-spacing: 2px;
}

.hero-stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  line-height: 1.3;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image .placeholder-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--purple-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.5;
}

/* --- Trust Bar (solid purple-mid bg like Toggl) --- */
.trust-bar {
  background-color: var(--purple-mid);
  padding: 40px 0;
}

.trust-bar-inner { text-align: center; }

.trust-bar p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text-light);
  opacity: 0.6;
  margin-bottom: 25px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-logos .logo-placeholder {
  width: 120px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-light);
  opacity: 0.5;
  font-weight: 500;
}

/* --- Section Common --- */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p { margin-top: 16px; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'Sora', sans-serif;
}

/* --- Marquee --- */
.marquee-band {
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

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

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.marquee-sep {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Marquee — fond rose pâle, texte dark, accent violet */
.marquee-band {
  background-color: #FAE5F7;
  border-top: 1px solid #EFC8EA;
  border-bottom: 1px solid #EFC8EA;
}
.marquee-item { color: var(--dark); }
.marquee-accent { color: var(--purple-mid); font-weight: 700; }
.marquee-sep { color: rgba(65,42,76,0.25); }

/* --- Intro (below hero, like Toggl "The time tracker that...") --- */
.intro {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.intro-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px;
}

.intro-header h2 {
  margin-bottom: 16px;
}

.intro-header p {
  margin: 0;
}

.intro-badges {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.intro-badge {
  text-align: center;
}

.badge-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.badge-score {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.badge-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Option A — séparateurs */
.intro-badge-sep { display: none; }

/* Option B — pills */
.intro-badges-b {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.intro-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FCF1F8;
  border: 1px solid rgba(229,124,216,0.2);
  border-radius: 50px;
  padding: 10px 20px;
}

.badge-pill-score {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.badge-pill-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Services (like Toggl "Boost team productivity") --- */
.services {
  background-color: var(--light-bg);
}

.services-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.services-header h2 { margin-bottom: 14px; }

/* Tabs row */
.services-tabs-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.svc-tab {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 200px;
  border: 0;
  background-color: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.svc-tab:hover {
  color: var(--text-dark);
}

.svc-tab.active {
  background-color: var(--accent);
  color: var(--light-bg);
}

/* Tab content — texte à gauche, doc à droite */
.svc-tab-content {
  display: none;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
}

.svc-tab-content.active {
  display: flex;
}

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

.svc-text-left {
  flex: 1;
}

.svc-text h3 {
  margin-bottom: 20px;
}

.svc-checklist {
  list-style: none;
  margin-bottom: 30px;
}

.svc-checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.svc-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.svc-tag-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F8ED;
  color: #1E7A4B;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
}

.svc-case-study {
  border-top: 1px solid var(--border-mid);
  padding-top: 20px;
  max-width: 350px;
}

.svc-case-study h4 {
  color: var(--text-dark);
  margin-bottom: 6px;
}

.svc-case-study p {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.svc-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.15s;
}

.svc-link:hover {
  color: var(--text-dark);
}

/* Doc preview (right side) */
.svc-doc {
  flex: 1;
  min-width: 0;
  max-width: 460px;
}

.doc-preview {
  background-color: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  overflow: hidden;
}

.doc-topbar {
  background-color: #F5F0F7;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-mid);
}

.doc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-dark);
}

.doc-dot:nth-child(1) { background-color: #FF6B6B; }
.doc-dot:nth-child(2) { background-color: #FFDE91; }
.doc-dot:nth-child(3) { background-color: #6BCB77; }

.doc-title {
  margin-left: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.doc-body {
  padding: 20px;
}

/* Doc style: fields (NDA) */
.doc-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F5F0F7;
}

.doc-field:last-child { border-bottom: 0; }

.doc-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.doc-value {
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
}

.doc-check {
  color: #6BCB77;
}

.doc-status {
  background-color: var(--section-peach);
  padding: 3px 10px;
  border-radius: 200px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Doc style: checklist (Création OF) */
.doc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.82rem;
  color: var(--text-dark);
  border-bottom: 1px solid #F5F0F7;
}

.doc-row:last-child { border-bottom: 0; }

.doc-check-icon {
  color: #6BCB77;
  font-weight: 600;
  width: 18px;
  text-align: center;
}

.doc-progress-icon {
  color: var(--accent);
  width: 18px;
  text-align: center;
}

.doc-pending-icon {
  color: var(--border-dark);
  width: 18px;
  text-align: center;
}

.doc-row-done { color: var(--text-dark); }
.doc-row-progress { color: var(--accent); }
.doc-row-pending { color: var(--text-muted); }

/* Doc style: audit report */
.doc-audit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #F5F0F7;
}

.doc-audit-row:last-child { border-bottom: 0; }

.doc-indicator {
  font-size: 0.78rem;
  color: var(--text-dark);
}

.doc-badge {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 200px;
  white-space: nowrap;
}

.doc-badge-ok {
  background-color: #E8F8EA;
  color: #2D8A3E;
}

.doc-badge-warn {
  background-color: #FFF4E0;
  color: #B8860B;
}

/* Doc style: progress tracker (Certification) */
.doc-progress-bar-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.doc-progress-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.doc-progress-track {
  flex: 1;
  height: 6px;
  background-color: #F5F0F7;
  border-radius: 3px;
  overflow: hidden;
}

.doc-progress-fill {
  height: 100%;
  background-color: var(--accent);
  border-radius: 3px;
}

.doc-progress-pct {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
}

.doc-indicators-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.doc-ind {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 500;
}

.doc-ind-ok {
  background-color: #E8F8EA;
  color: #2D8A3E;
}

.doc-ind-progress {
  background-color: var(--section-pink);
  color: var(--accent);
}

.doc-ind-pending {
  background-color: #F5F0F7;
  color: var(--border-dark);
}

.doc-legend {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.doc-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.doc-leg-ok, .doc-leg-progress, .doc-leg-pending {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.doc-leg-ok { background-color: #E8F8EA; }
.doc-leg-progress { background-color: var(--section-pink); }
.doc-leg-pending { background-color: #F5F0F7; }

/* --- Case Studies / Testimonials (colored flat cards) --- */
.testimonials {
  background-color: var(--light-bg);
}

.testimonials-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1 1 300px;
  min-width: 260px;
  border-radius: 10px;
  padding: 30px 25px 25px;
  transition: transform 0.3s ease-in-out 0.05s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:nth-child(1) { background-color: var(--section-peach); }
.testimonial-card:nth-child(2) { background-color: var(--section-yellow); }
.testimonial-card:nth-child(3) { background-color: var(--section-light-pink); }

.testimonial-card:hover {
  transform: scale(1.04);
}

.testimonial-stars {
  font-size: 0.75rem;
  color: #E5A000;
  letter-spacing: 1px;
}

.testimonial-rating-note {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 3px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.testimonial-stat {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  line-height: 1;
}

.testimonial-quote {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  flex: 1;
}

.testimonial-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  border: 1.5px dashed rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
}

.testimonial-img-placeholder span {
  font-size: 0.72rem;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* --- Why Us / Enterprise (grid of icon cards like Toggl) --- */
.why-us {
  background-color: var(--light-bg);
}

.why-us-header {
  margin-bottom: 50px;
}

.why-us-header .section-tag {
  margin-bottom: 12px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

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

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

.why-card {
  flex: 1 1 30%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 25px;
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: #FCF1F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h4 {
  margin: 0;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* --- Services V2 --- */
.services-v2 {
  background: var(--light-bg);
}

.sv2-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.sv2-progress-bar { display: none; }
.sv2-progress-cursor { display: none; }

.sv2-tabs-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--border-mid);
  border-radius: 50px;
  padding: 6px;
}

.sv2-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 50px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.sv2-tab:hover { color: var(--text-dark); }

.sv2-tab.active {
  background: var(--dark);
  color: #fff;
}

.sv2-tab.active .sv2-tab-icon { color: #fff; }
.sv2-tab:hover .sv2-tab-icon { color: var(--text-dark); }

.sv2-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s;
}

.sv2-tab span { white-space: nowrap; }

/* Panels */
.sv2-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  animation: fadeStepIn 0.25s ease;
}

.sv2-panel.active { display: grid; }

/* Texte */
.sv2-kpi-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.sv2-kpi-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  line-height: 1;
}

.sv2-kpi-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
  max-width: 160px;
}

.sv2-text h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 16px;
}

.sv2-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.sv2-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sv2-checklist li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.sv2-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F8ED;
  color: #1E7A4B;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sv2-case {
  background: var(--section-pink);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 20px;
}

.sv2-case-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sv2-case-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv2-case-quote {
  font-size: 0.83rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 4px;
}

.sv2-case-author {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sv2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}

.sv2-cta-btn:hover { background: var(--purple-mid); }

/* Doc */
.sv2-doc {
  background: #fff;
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44,19,56,0.06);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sv2-doc.anim-in {
  animation: sv2DocIn 0.3s ease both;
}

@keyframes sv2DocIn {
  from { opacity: 0.4; transform: scale(0.99); }
  to   { opacity: 1;   transform: scale(1); }
}

.sv2-doc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #F8F5FA;
  border-bottom: 1px solid var(--border-mid);
}

.sv2-doc-dots {
  display: flex;
  gap: 5px;
}

.sv2-doc-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-mid);
}

.sv2-doc-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}

.sv2-doc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Rows checklist doc */
.sv2-doc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  padding: 8px 12px;
  border-radius: 8px;
}

.sv2-done {
  background: #F0FAF4;
  color: #2D7A55;
}

.sv2-progress {
  background: #FEF9EC;
  color: #9A6E2A;
}

.sv2-pending {
  background: #F8F5FA;
  color: var(--text-muted);
}

/* Fields doc */
.sv2-doc-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
}

.sv2-label { color: var(--text-muted); }
.sv2-value { color: var(--text-dark); font-weight: 500; }
.sv2-ok { color: #2D7A55; }
.sv2-status { color: #9A6E2A; }

/* Progress bar */
.sv2-progress-section { margin-bottom: 14px; }

.sv2-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.sv2-progress-label span { color: var(--accent); font-weight: 600; }

.sv2-progress-track {
  height: 6px;
  background: var(--border-mid);
  border-radius: 50px;
  overflow: hidden;
}

.sv2-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 50px;
}

/* Indicators grid */
.sv2-indicators {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}

.sv2-ind {
  aspect-ratio: 1;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
}

.sv2-ind-ok { background: #EAF7F0; color: #2D7A55; }
.sv2-ind-progress { background: #FEF9EC; color: #9A6E2A; }
.sv2-ind-pending { background: #F3EFF6; color: var(--border-mid); }

.sv2-legend {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sv2-leg {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 4px;
}

.sv2-leg-ok { background: #1E7A4B; }
.sv2-leg-progress { background: #B45309; }
.sv2-leg-pending { background: var(--border-mid); }

/* Responsive */
@media (max-width: 860px) {
  .sv2-panel.active { grid-template-columns: 1fr; }
  .sv2-tabs-row { border-radius: 16px; }
}

@media (max-width: 600px) {
  .sv2-tabs-wrapper { display: block; }
  .sv2-tabs-row {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 4px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .sv2-tab {
    font-size: 0.78rem;
    padding: 7px 14px;
    gap: 0;
    border: 1px solid var(--border-mid);
    background: #fff;
    white-space: nowrap;
  }
  .sv2-tab.active { background: var(--dark); color: #fff; border-color: var(--dark); }
  .sv2-tab-icon { display: none; }
}

/* --- Why us cards B --- */
.why-card-b {
  background: #fff;
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card-b:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,19,56,0.08);
}

.why-card-b--featured {
  border-color: var(--accent);
  background: #FCF1F8;
}

.why-card-b-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--section-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-mid);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.why-card-b--featured .why-card-b-icon {
  background: var(--accent);
  color: #fff;
}

.why-card-b-stat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.why-card-b h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.why-card-b p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* --- Option 6 : Comparatif --- */
.why-us-compare { background-color: var(--cream); }

.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.compare-col-header {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-light);
}

.compare-col-them .compare-col-header {
  background-color: #F5F0F0;
  color: var(--text-muted);
}

.compare-col-us .compare-col-header {
  background-color: var(--dark);
  color: var(--white);
}

.compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.compare-row:last-child { border-bottom: none; }

.compare-col-them .compare-row { background-color: #FAF7F7; color: var(--text-muted); }
.compare-col-us .compare-row { background-color: var(--white); color: var(--text-dark); }

.compare-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-no { background-color: #FDDEDE; color: #C0392B; }
.compare-yes { background-color: #DFF5E8; color: #1A8A45; }

.compare-platform-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
  background-color: rgba(229, 124, 216, 0.08);
  border: 1px solid rgba(229, 124, 216, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
}

.compare-platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #FCF1F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-platform-card h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.compare-platform-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Option 7 : Frise --- */
.why-us-strip { background-color: var(--light-bg); }

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
}

.strip-item {
  padding: 28px 20px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strip-item:last-child { border-right: none; }

.strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #FCF1F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.strip-value {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-dark);
  line-height: 1;
}

.strip-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  flex: 1;
}

.strip-bar {
  height: 3px;
  background-color: var(--border-light);
  border-radius: 2px;
  margin-top: 8px;
}

.strip-bar-fill {
  height: 100%;
  background-color: var(--accent);
  border-radius: 2px;
}

/* --- Stats Bar --- */
.stats-bar {
  background-color: var(--cream);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- Showcase (like Toggl "The time tracker that...") --- */
.showcase {
  background-color: var(--light-bg);
}

.showcase-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.showcase-header h2 { margin-bottom: 14px; }

/* Showcase top tabs (horizontal pills) */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.show-tab {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 200px;
  border: 0;
  background-color: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.show-tab:hover { color: var(--text-dark); }

.show-tab.active {
  background-color: var(--accent);
  color: var(--light-bg);
}

/* Showcase panels — side tabs à gauche, image à droite */
.show-panel {
  display: none;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
}

.show-panel.active {
  display: flex;
}

/* Side tabs (colonne verticale à gauche) */
.show-tabs-side {
  display: flex;
  flex: 0 0 340px;
  flex-direction: column;
  gap: 0;
}

.show-side-item {
  padding: 20px 24px;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s ease-in, background-color 0.15s ease-in;
  border-radius: 0 8px 8px 0;
}

.show-side-item:hover {
  background-color: rgba(229, 124, 216, 0.04);
}

.show-side-item.active {
  border-left-color: var(--accent);
  background-color: var(--white);
}

.show-side-item h4 {
  margin-bottom: 6px;
  transition: color 0.15s;
}

.show-side-item.active h4 {
  color: var(--accent);
}

.show-side-item p {
  font-size: 0.85rem;
  line-height: 1.55;
  opacity: 0.8;
}

.show-side-item.active p {
  opacity: 1;
}

/* Showcase image area */
.show-image {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.show-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

/* Image placeholder component */
.img-placeholder {
  width: 100%;
  aspect-ratio: 680 / 460;
  background-color: #F5F0F7;
  border-radius: 10px;
  border: 2px dashed var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}

.img-placeholder-icon {
  opacity: 0.6;
}

.img-placeholder-size {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
}

.img-placeholder-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.5;
}

/* --- Process --- */
.process {
  background-color: var(--section-peach);
}

/* ---- Process body : image gauche + timeline droite ---- */
.process-body {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.process-image {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.process-image .img-placeholder {
  width: 100%;
  height: 420px;
  aspect-ratio: unset;
  border-radius: 12px;
}

/* ---- Timeline verticale ---- */
.process-timeline {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 28px 1fr;
  gap: 0 20px;
  align-items: flex-start;
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  gap: 6px;
}

.timeline-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background-color: rgba(229, 124, 216, 0.12);
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}

.timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

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

.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background-color: var(--border-light);
  margin-top: 6px;
}

.timeline-right {
  padding-bottom: 40px;
}

.timeline-item-last .timeline-right {
  padding-bottom: 0;
}

.timeline-right h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.timeline-right p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.timeline-deliverable {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.6;
}

.timeline-item-extra {
  opacity: 0.75;
}

.timeline-option-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--accent);
  background-color: rgba(229,124,216,0.1);
  border-radius: 20px;
  padding: 2px 9px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.03em;
}

/* --- Trust Badges (style Toggl) --- */
.trust-badges-section {
  background-color: #564260;
  padding: 50px 0;
}

.trust-badges-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.trust-badges-sep {
  width: 1px;
  height: 80px;
  background-color: rgba(255,255,255,0.15);
  margin: 0 50px;
  flex-shrink: 0;
}

.trust-badge-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-badge-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.trust-seal-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  border: 2px solid rgba(229,124,216,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-seal-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-seal-label span {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: none;
  letter-spacing: 0;
}

.trust-badge-content { flex: 1; }

.trust-badge-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.trust-badge-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

@media (max-width: 800px) {
  .trust-badges-inner { flex-direction: column; gap: 30px; }
  .trust-badges-sep { width: 100%; height: 1px; margin: 10px 0; }
}

/* --- CTA Section (like Toggl dual CTA) --- */
.cta-section {
  background-color: var(--section-pink);
  padding: 90px 0;
  position: relative;
}

.cta-boxes {
  display: flex;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box {
  flex: 1;
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-box h3 { margin-bottom: 0; }

.cta-box p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta-box .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* --- Blog --- */
.blog {
  background-color: var(--light-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: var(--white);
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: scale(1.02);
}

.blog-card-img .img-placeholder {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border-light);
}
.blog-card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background-color: rgba(229,124,216,0.1);
  border-radius: 20px;
  padding: 3px 10px;
  align-self: flex-start;
  letter-spacing: 0.03em;
}

.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-dark);
  margin: 0;
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

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

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

/* --- FAQ --- */
.faq {
  background-color: var(--light-bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-mid);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.15s;
  gap: 20px;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  width: 24px;
  height: 2px;
  top: 11px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 24px;
  left: 11px;
  top: 0;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 25px;
}

.faq-answer-inner p {
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Footer (dark, multi-column) --- */
.footer {
  background-color: var(--dark-deep);
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-edtech {
  margin-top: 20px;
}
.footer-edtech img {
  height: 22px !important;
  width: auto !important;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.footer-trust {
  margin-top: 20px;
}
.footer-trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
  max-width: 280px;
}
.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  max-width: 280px;
}
.footer-trust-logos img {
  height: 20px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(100%) brightness(2) opacity(0.35);
  transition: filter 0.3s ease;
}
.footer-trust-logos img:hover {
  filter: grayscale(0%) brightness(1) opacity(0.9);
}
.footer-trust-placeholder {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 4px 10px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition: border-color 0.15s, color 0.15s;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 64px; }
  .mobile-menu { top: 64px; }

  .svc-tab { font-size: 0.8rem; padding: 8px 16px; }
  .svc-tab-content { flex-direction: column; }
  .svc-doc { max-width: 100%; width: 100%; }
  .doc-preview { width: 100%; overflow-x: auto; }
  .doc-body { padding: 14px; }
  .doc-topbar { padding: 8px 14px; }
  .doc-field { flex-wrap: wrap; gap: 4px; }
  .doc-label { flex: 1 1 100%; }
  .doc-value { flex: 1 1 auto; }
  .doc-audit-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .doc-indicator { font-size: 0.78rem; }
  .doc-indicators-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-case-study { border-top: none; padding-top: 0; border-left: 3px solid var(--border-mid); padding-left: 16px; max-width: 100%; }
  .show-tab { font-size: 0.8rem; padding: 8px 16px; }
  .show-panel { flex-direction: column; gap: 24px; }
  .show-image { order: -1; }
  .show-image img { height: auto; aspect-ratio: 16/9; }
  .show-tabs-side { flex: none; flex-direction: column; }
  .show-side-item { flex: none; border-left: none; border-top: 3px solid transparent; border-radius: 0 0 8px 8px; }
  .show-side-item.active { border-top-color: var(--accent); border-left-color: transparent; }
}

@media (max-width: 800px) {
  .container { padding: 0 16px; }

  .compare-table { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .strip-item:last-child { border-bottom: none; }

  .section { padding: 60px 0; }

  .hero { padding: 80px 0 70px; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stat { justify-content: center; }
  .hero-image { max-width: 100%; }

  .testimonials-grid { flex-direction: column; }
  .testimonial-card { flex: none; }
  .testimonial-card:nth-child(3) { display: block; }
  .testimonial-card:hover { transform: none; }

  .why-card { flex: none; flex-direction: row; align-items: flex-start; gap: 16px; padding: 20px 0; }
  .why-card-icon { flex-shrink: 0; }
  .why-card-b { box-shadow: 0 2px 12px rgba(44,19,56,0.08); }
  .why-card-b:hover { transform: none; }

  .process-body { flex-direction: column; }
  .process-image { flex: none; width: 100%; position: static; }
  .process-image .img-placeholder { height: 300px; }

  .cta-boxes { flex-direction: column; }

  .stats-grid { gap: 30px; }

  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 480px) {
  .timeline-item { grid-template-columns: 70px 24px 1fr; gap: 0 12px; }
  .trust-logos { gap: 25px; }
  .btn { height: 48px; padding: 12px 20px; font-size: 0.9rem; }
  .stats-grid { flex-direction: column; gap: 25px; }
}

/* ============================================
   (compare A/B/C supprimées)
   ============================================ */

/* --- Shared header --- */
.cmp-a, .cmp-b, .cmp-c { background: var(--light-bg); }

/* ====== VERSION A — Tableau ligne par ligne ====== */
.cmpa-table {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.cmpa-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--dark);
  color: #fff;
}
.cmpa-head-empty { padding: 16px 20px; }
.cmpa-head-col {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.cmpa-head-col.cmpa-them { color: rgba(255,255,255,0.55); }
.cmpa-head-col.cmpa-us  { color: var(--accent); }

.cmpa-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  background: #fff;
  transition: background 0.15s;
}
.cmpa-row:hover { background: #fdf7fc; }

.cmpa-label {
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}
.cmpa-cell {
  padding: 14px 20px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
  color: var(--muted);
}
.cmpa-cell.cmpa-us {
  color: var(--dark);
  background: #fdf7fc;
  border-left: 1px solid #f5d6f0;
}
.cmpa-bad  { color: #c0392b; font-weight: 600; }
.cmpa-good { color: #1e7a4b; font-weight: 700; font-size: 1rem; }
.cmpa-icon-no  { color: #c0392b; font-weight: 700; flex-shrink: 0; }
.cmpa-icon-yes { color: #1e7a4b; font-weight: 700; flex-shrink: 0; }

/* ====== VERSION B — Cards avec score bar ====== */
.cmpb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.cmpb-card {
  border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 32px 28px;
  background: #fff;
}
.cmpb-card.cmpb-us {
  border-color: var(--accent);
  background: #fdf7fc;
  box-shadow: 0 4px 24px rgba(229,124,216,0.12);
}
.cmpb-header {
  margin-bottom: 24px;
}
.cmpb-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.cmpb-score {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.cmpb-score-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.cmpb-card.cmpb-them .cmpb-score-fill {
  height: 100%;
  background: #e0b0ac;
  border-radius: 99px;
}
.cmpb-card.cmpb-us .cmpb-score-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
}
.cmpb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cmpb-list li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.cmpb-card.cmpb-us .cmpb-list li { color: var(--dark); }
.cmpb-icon-no  { color: #c0392b; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cmpb-icon-yes { color: #1e7a4b; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ====== VERSION C — Tableau redesigné avec icônes ====== */
.cmpc-wrap { overflow-x: auto; }
.cmpc-table {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.cmpc-thead {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--dark);
}
.cmpc-th-empty { padding: 18px 20px; }
.cmpc-th {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  justify-content: center;
}
.cmpc-th-them { color: rgba(255,255,255,0.5); }
.cmpc-th-us   { color: var(--accent); }

.cmpc-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid var(--border);
  background: #fff;
  transition: background 0.15s;
}
.cmpc-row:hover { background: #fdf7fc; }
.cmpc-label {
  padding: 13px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}
.cmpc-cell {
  padding: 13px 20px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
}
.cmpc-us-cell {
  color: var(--dark);
  background: #fdf7fc;
  border-left: 1px solid #f5d6f0;
}

/* Mobile responsive — A, B, C */
@media (max-width: 800px) {
  .cmpa-head,
  .cmpa-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cmpa-label, .cmpa-head-empty { font-size: 0.78rem; padding: 10px 10px; }
  .cmpa-cell, .cmpa-head-col { font-size: 0.78rem; padding: 10px 8px; }

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

  .cmpc-thead,
  .cmpc-row { grid-template-columns: 1fr 0.8fr 0.8fr; }
  .cmpc-label, .cmpc-th-empty { font-size: 0.78rem; padding: 10px 10px; }
  .cmpc-cell, .cmpc-th { font-size: 0.78rem; padding: 10px 8px; }
}

/* ========== SECTION FINANCEURS ========== */
.financeurs-section {
  background: var(--light-bg);
  padding: 52px 0;
  overflow: hidden;
}
.financeurs-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 30px;
}
.financeurs-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
.financeurs-track-wrap {
  overflow: hidden;
  position: relative;
}
.financeurs-track-wrap::before,
.financeurs-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.financeurs-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), transparent);
}
.financeurs-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), transparent);
}
.financeurs-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: financeurs-scroll 28s linear infinite;
}
.financeurs-track:hover { animation-play-state: paused; }
@keyframes financeurs-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.financeurs-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.financeurs-logo-item img {
  height: 36px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
  display: block;
  flex-shrink: 0;
}
.financeurs-logo-item img:hover {
  filter: grayscale(0%) opacity(1);
}
.financeurs-placeholder {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--border-mid);
  border-radius: 6px;
  padding: 6px 14px;
  opacity: 0.5;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .financeurs-logo-item img { height: 28px; max-width: 110px; }
}

/* ========== SECTION PRESSE ========== */
.press-section {
  background: #fff;
  padding: 52px 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.press-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.press-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}

.press-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-logo-item img {
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s ease;
}

.press-logo-item--lg img {
  height: 36px;
  max-width: 160px;
}

.press-logo-item img:hover {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 800px) {
  .press-section { padding: 40px 20px; }
  .press-logos { gap: 24px 32px; }
  .press-logo-item img { height: 22px; max-width: 90px; }
  .press-logo-item--lg img { height: 26px; max-width: 100px; }
}
@media (max-width: 420px) {
  .press-logos { gap: 20px 24px; }
  .press-logo-item img { height: 20px; max-width: 80px; }
  .press-logo-item--lg img { height: 22px; max-width: 88px; }
}
