/* ============================================================
   PragmaOne — Feuille de styles principale
   Inspiré de cosmoconsult.com — Charte PragmaOne
   ============================================================ */

/* ── 1. VARIABLES & THÈME ───────────────────────────────── */
:root {
  --primary:     #0046FF;
  --primary-dark:#142644;
  --accent:      #E3FF65;
  --light-blue:  #8CC4E0;
  --bg:          #F5F5F7;
  --text:        #1d1d1f;
  --muted:       #6e6e73;
  --card-bg:     #FFFFFF;
  --border:      rgba(0,0,0,0.08);
  --radius:      28px;
  --radius-sm:   12px;
  --shadow:      0 8px 32px rgba(0,0,0,0.08);
  --shadow-hover:0 16px 48px rgba(0,0,0,0.14);
  --transition:  0.3s ease;
  --header-h:    72px;
  --max-w:       1200px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0d0d14;
    --bg-alt:      #111118;
    --text:        #F5F5F7;
    --muted:       #A1A1A6;
    --card-bg:     #1c1c26;
    --border:      rgba(255,255,255,0.09);
    --shadow:      0 8px 32px rgba(0,0,0,0.5);
    --shadow-hover:0 16px 48px rgba(0,0,0,0.7);
  }
}

/* ── 2. RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

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

/* ── 3. TYPOGRAPHIE ─────────────────────────────────────── */
h1 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}
h2 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
h3 {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
p { color: var(--muted); line-height: 1.75; }

/* ── 4. LAYOUT UTILITIES ────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.section { padding-block: clamp(56px, 7vw, 100px); }

/* Alternance de fonds pour distinguer les sections en dark mode */
.services   { background: var(--bg); }
.story      { background: var(--bg-alt, #f8f8fa); }
.references { background: var(--bg); }

@media (prefers-color-scheme: light) {
  .story { background: #f0f4ff; }
}
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title { color: var(--text); margin-bottom: 16px; text-align: left; }
.section-sub   { color: var(--muted); margin-bottom: 48px; font-size: 1.1rem; text-align: left; }

/* ── 5. BOUTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #0036cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,70,255,0.35);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-accent:hover {
  background: #d4f060;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,255,101,0.4);
}
.btn-outline {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.20);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── 6. HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  transition: height 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  height: 58px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.site-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
}

/* Navigation desktop */
.primary-nav { display: flex; align-items: center; }
.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav > ul > li { list-style: none; }
.primary-nav a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] {
  color: var(--light-blue);
  background: rgba(255,255,255,0.06);
}
.primary-nav li.nav-cta > a {
  background: var(--primary);
  color: var(--accent);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  margin-left: 8px;
  display: inline-block;
}
.primary-nav li.nav-cta > a:hover {
  background: #0036cc;
  color: var(--accent);
}

/* Burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent) !important;
  border-radius: 2px;
  transition: var(--transition);
}

/* Forcer le vert acide sur mobile — écrase Astra */
@media (max-width: 1099px) {
  .site-header .menu-toggle span,
  header .menu-toggle span,
  .menu-toggle span {
    background: #E3FF65 !important;
    background-color: #E3FF65 !important;
  }
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: fit-content;
  min-width: 180px;
  background: var(--primary-dark);
  z-index: 999;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 1s ease;
  box-shadow: -4px 8px 24px rgba(0,0,0,0.35);
}
.mobile-nav.open { grid-template-rows: 1fr; }
.mobile-nav > ul {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0; /* pas de padding ici : le padding contribue à la hauteur de la boîte
                 même à grid-template-rows:0fr, ce qui laisse une ligne visible */
}
.mobile-nav > ul > li { list-style: none; }
.mobile-nav > ul > li:first-child { padding-top: 8px; }
.mobile-nav > ul > li:last-child  { padding-bottom: 20px; }
.mobile-nav a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 24px;
  display: block;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover {
  color: var(--light-blue);
  background: rgba(255,255,255,0.06);
}
.mobile-nav li.nav-cta > a {
  background: var(--primary);
  color: var(--accent);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  margin: 10px 24px 0;
  display: inline-block;
}
.mobile-nav li.nav-cta > a:hover { background: #0036cc; color: var(--accent); }

/* ── 7. HERO CAROUSEL ───────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(320px, 52vh, 560px);
  overflow: hidden;
  background: var(--primary-dark);
  margin-top: 0;
}
.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; }

.hero-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide__media img,
.hero-slide__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 12s ease-in-out infinite alternate;
}
.hero-slide.active .hero-slide__media img,
.hero-slide.active .hero-slide__media video {
  animation-play-state: running;
}

@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,38,68,0.82) 0%,
    rgba(0,70,255,0.18) 60%,
    rgba(0,0,0,0.3) 100%
  );
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  padding-inline: clamp(20px, 5vw, 60px);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}
.hero-slide__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.hero-slide__title {
  color: #fff;
  margin-bottom: 20px;
  max-width: 680px;
}
.hero-slide__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-slide__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 32px;
  height: 16px !important;
  min-height: 0;
  padding: 0;
  border-radius: 100px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  width: 64px;
  background: var(--accent);
}

/* ── 8. MÉTRIQUES ───────────────────────────────────────── */
.metrics {
  background: var(--primary-dark);
  padding-block: 64px;
}
.metrics .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.metric-item { color: #fff; }
.metric-value {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.metric-suffix { font-size: 0.55em; }
.metric-label {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-weight: 500;
}

/* ── 9. SERVICES CARDS ──────────────────────────────────── */
.services { background: var(--bg); }
.services .container { text-align: center; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
/* Ligne colorée en haut de chaque carte */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--light-blue));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.5);
}

@media (prefers-color-scheme: dark) {
  .card:hover {
    background: rgba(40,40,42,0.72);
    border-color: rgba(255,255,255,0.12);
  }
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; fill: #fff; }

.card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card__text { font-size: 15px; color: var(--muted); line-height: 1.65; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.card__link:hover { gap: 10px; }

/* ── 10. STORY ──────────────────────────────────────────── */
.story { background: var(--bg); overflow: hidden; }
.story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.story__content {}
.story__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__image-placeholder {
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-weight: 500;
}
.story__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}
.story__list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23142644' d='M8.3 14.7L4 10.4l1.4-1.4 2.9 2.9 6.3-6.3 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ── 11. RÉFÉRENCES CLIENTS ─────────────────────────────── */
.references { background: var(--bg); overflow: hidden; }
.references .container { text-align: center; }

.refs-track-wrapper {
  position: relative;
  margin-top: 48px;
}
.refs-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 16px;
  padding-right: 40px; /* peek effect */
}
.refs-track::-webkit-scrollbar { display: none; }

.ref-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 240px;
  scroll-snap-align: start;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.ref-card__logo {
  width: 100%;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.ref-card__logo img { max-height: 40px; object-fit: contain; filter: brightness(0) invert(1); }
.ref-card__logo-placeholder {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 8px;
  line-height: 1.3;
}
.ref-card__sector {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.ref-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* Flèches de navigation */
.refs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.refs-dot {
  width: 32px;
  height: 16px !important;
  min-height: 0;
  padding: 0;
  border-radius: 100px;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.refs-dot.active {
  width: 64px;
  background: var(--accent);
}

/* ── 12. CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding-block: clamp(64px, 8vw, 100px);
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 1.1rem; }
.cta-band .btn-accent { font-size: 16px; padding: 16px 36px; }

/* ── 13. FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: #1a1a2e;
  color: #fff;
  padding-block: 64px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { line-height: 1.8; }
.footer-col ul a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--light-blue); }
.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; align-items: center; gap: 8px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom-links .sep {
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  user-select: none;
}

/* ── 14. FORMULAIRE DE CONTACT ──────────────────────────── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p  { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}
.contact-detail-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.contact-detail-item address { font-style: normal; margin: 0; padding: 0; }

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,70,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}
.form-message.success { background: rgba(52,199,89,0.1); color: #34C759; border: 1px solid rgba(52,199,89,0.2); }
.form-message.error   { background: rgba(255,59,48,0.1);  color: #FF3B30; border: 1px solid rgba(255,59,48,0.2); }

/* ── 15. CHATBOT FAB ────────────────────────────────────── */
.chatbot-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
}
.chatbot-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a84ff, #63b2ff);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(10,132,255,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(10,132,255,0.55); }
.chatbot-btn svg { width: 26px; height: 26px; fill: #fff; }

.chatbot-bubble {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 240px;
  background: var(--card-bg);
  border-radius: 20px 20px 4px 20px;
  padding: 20px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  opacity: 0;
  transform: scale(0.85) translateY(10px);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.chatbot-bubble.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.chatbot-bubble p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.chatbot-links { display: flex; flex-direction: column; gap: 8px; }
.chatbot-links a {
  display: block;
  padding: 9px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.chatbot-links a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── 16. ANIMATIONS SCROLL ──────────────────────────────── */
.fade, .fade-up, .fade-soft {
  opacity: 0;
  transition-property: opacity, transform;
}
.fade     { transition-duration: 0.9s; transition-timing-function: ease; transform: translateY(24px); }
.fade-up  { transition-duration: 0.9s; transition-timing-function: ease; transform: translateY(28px); }
.fade-soft{ transition-duration: 1.0s; transition-timing-function: ease; transform: scale(0.985); }

.fade.visible, .fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-soft.visible              { opacity: 1; transform: scale(1); }

/* Délais en cascade pour grilles */
.cards-grid .card:nth-child(1),
.refs-track .ref-card:nth-child(1) { transition-delay: 0s; }
.cards-grid .card:nth-child(2),
.refs-track .ref-card:nth-child(2) { transition-delay: 0.08s; }
.cards-grid .card:nth-child(3),
.refs-track .ref-card:nth-child(3) { transition-delay: 0.16s; }
.cards-grid .card:nth-child(4),
.refs-track .ref-card:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .fade, .fade-up, .fade-soft {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 17. PAGES INTERNES ─────────────────────────────────── */
.page-hero {
  background: var(--primary-dark);
  padding-block: clamp(80px, 10vw, 140px);
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.15rem; }

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.realisation-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.realisation-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.realisation-card__header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 28px;
  color: #fff;
}
.realisation-card__sector {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.realisation-card__header h3 { color: var(--accent); font-size: 20px; }
.realisation-card__body { padding: 24px 28px; }
.realisation-card__body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.realisation-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,70,255,0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Page Sage product */
.product-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a2560 100%);
  padding-block: clamp(80px, 10vw, 140px);
}
.product-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-hero__content h1 { color: #fff; margin-bottom: 16px; }
.product-hero__content p  { color: rgba(255,255,255,0.72); margin-bottom: 32px; font-size: 1.1rem; }
.product-hero__visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--light-blue));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 18px; height: 18px; fill: #fff; }
.feature-item h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.feature-item p  { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── 18. LIENS DANS LE CONTENU ──────────────────────────── */
/* Heroes : fond toujours sombre → vert acide */
.page-hero p a,
.product-hero p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-hero p a:hover,
.product-hero p a:hover { opacity: 0.8; }

/* Sections à fond clair : bleu en light, vert acide en dark */
.section p a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section p a:hover { opacity: 0.75; }

@media (prefers-color-scheme: dark) {
  .section p a { color: var(--accent); }
}

/* ── 18b. GRILLE 2 COLONNES DESCRIPTION (pages produit) ──── */
/* Utilisée pour les blocs "Pourquoi…" — remplace les styles inline
   afin que les media queries puissent s'appliquer. */
.desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ── 19. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .story .container { grid-template-columns: 1fr; }
  .story__image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-hero .container { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: 1fr; }
  .metrics .container { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .desc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1099px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .metrics .container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ref-card { flex: 0 0 calc(80vw - 48px); }
  .realisations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

@media (min-width: 1440px) {
  :root { --max-w: 1200px; }
}

/* ── 19. RESET ASTRA — neutraliser les styles parent ────── */

/* Supprimer les marges et paddings qu'Astra injecte autour du contenu */
.ast-plain-container,
.ast-container,
#page,
#content,
#primary,
.site-content,
.ast-article-post,
.entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Masquer le header/footer Astra — on utilise les nôtres */
#masthead,
.ast-masthead-custom-menu-items,
.main-header-bar,
.ast-main-header-wrap,
.ast-above-header,
.ast-below-header { display: none !important; }

/* Masquer le footer Astra */
#colophon,
.site-footer.ast-site-footer { display: none !important; }

/* Supprimer les styles de body/typo qu'Astra force */
body.ast-single-post .entry-content,
body .ast-article-post {
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
}

/* Empêcher Astra de contraindre la largeur sur les templates custom */
.ast-page-builder-template #content,
.ast-page-builder-template #primary {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
}

/* Retirer le padding-top qu'Astra ajoute pour compenser son sticky header */
.ast-header-break-point .ast-primary-sticky-header ~ #page,
.ast-header-sticky ~ #content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Astra 4.13.1 HFB peut ajouter padding à main — le neutraliser */
main, #main {
  padding: 0 !important;
  margin: 0 !important;
}

/* Forcer notre background sur tout le body et les wrappers Astra */
html,
body,
#page,
#content,
#primary,
.site-content,
.ast-plain-container,
.ast-container,
.ast-article-post,
.entry-content,
.ast-separate-container,
.ast-two-container,
.ast-page-builder-template { background-color: var(--bg) !important; }

/* Compenser la barre d'admin WordPress (32px desktop, 46px mobile) */
body.admin-bar .site-header { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px !important; }
}

/* Séparateur visuel subtil entre sections en dark mode */
@media (prefers-color-scheme: dark) {
  /* Aligner html/body sur la couleur des sections principales —
     tout interstice résiduel (admin-bar, Astra HFB) reste invisible */
  html, body { background-color: var(--primary-dark) !important; }

  .services   { background: #0d0d14; }
  .story      { background: #111118; }
  .references { background: #0a0a10; }

  /* Bordure supérieure très subtile pour distinguer les blocs */
  .services,
  .story,
  .references {
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  /* Cards plus visibles sur fond sombre */
  .card {
    background: #18182a;
    border-color: rgba(255,255,255,0.07);
  }
  .ref-card {
    background: #18182a;
    border-color: rgba(255,255,255,0.07);
  }
}

/* ── Points forts ─────────────────────────────────────────────────── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .pf-grid { grid-template-columns: 1fr; }
}

.pf-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--light-blue));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}
.pf-card:hover::before { opacity: 1; }
.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(var(--primary-rgb, 0,70,255), 0.18);
}

.pf-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.pf-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.pf-card:hover .pf-card__img img {
  transform: scale(1.06);
}

.pf-card__body {
  padding: 28px 28px 32px;
  flex: 1;
}
.pf-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pf-card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.pf-card__text p  { margin-bottom: 10px; }
.pf-card__text p:last-child { margin-bottom: 0; }
.pf-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.pf-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.pf-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light-blue);
}

@media (prefers-color-scheme: dark) {
  .pf-card:hover {
    background: rgba(40,40,42,0.72);
    border-color: rgba(255,255,255,0.12);
  }
  .pf-card__title { color: #e8eef8; }
}

/* ── 20. BLOC LOGO (accueil, fond sombre) ───────────────── */
.logos-band {
  background: var(--primary-dark);
  padding-block: 40px;
  text-align: center;
}
.logos-single img {
  display: block;
  margin-inline: auto;
  height: auto;
  max-width: 100%;
}

/* ── 21. PAGE NOS SOLUTIONS ─────────────────────────────── */
.solutions-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a2560 100%);
  padding-block: clamp(80px, 10vw, 130px);
  text-align: center;
}
.solutions-hero .container { text-align: left; }
.solutions-hero h1 { color: #fff; margin-bottom: 16px; }
.solutions-hero p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.solution-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--light-blue));
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.solution-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.solution-card__icon svg { width: 26px; height: 26px; fill: #fff; }
.solution-card__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(0,70,255,0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}
.solution-card h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text);
  margin-bottom: 12px;
}
.solution-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 0;
}
.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), gap var(--transition);
  width: fit-content;
}
.solution-card__link:hover {
  background: #0036cc;
  gap: 12px;
}

@media (max-width: 768px) {
  .solutions-grid { grid-template-columns: 1fr; }
}
@media (prefers-color-scheme: dark) {
  .solution-card:hover {
    background: rgba(40,40,42,0.72);
    border-color: rgba(255,255,255,0.12);
  }
}

/* ── 22. PAGE REJOIGNEZ-NOUS ────────────────────────────── */
.job-block {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  transition: box-shadow var(--transition);
}
.job-block:hover { box-shadow: var(--shadow-hover); }
.job-block__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.job-block__title {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text);
  margin-bottom: 10px;
}
.job-block__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.job-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,70,255,0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}
.job-block > p  { color: var(--muted); margin-bottom: 16px; }
.job-block__list {
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.job-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.job-block__list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23142644' d='M8.3 14.7L4 10.4l1.4-1.4 2.9 2.9 6.3-6.3 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: cover;
}

@media (max-width: 768px) {
  .job-block { padding: 24px 20px; }
  .job-block__header { flex-direction: column; align-items: stretch; }
  .job-block__header .btn { width: 100%; justify-content: center; }
}

/* ── 23. PAGE CHOIX-ERP (whitepaper) ────────────────────── */
.whitepaper-section { background: var(--bg); }
.whitepaper-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.whitepaper-cover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.whitepaper-cover img { width: 100%; height: 100%; object-fit: cover; }
.whitepaper-cover-placeholder {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

@media (max-width: 1024px) {
  .whitepaper-grid { grid-template-columns: 1fr; }
  .whitepaper-cover { position: static; aspect-ratio: 16/7; max-height: 300px; }
}

/* ── Formulaire de candidature ── */
.candidature-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.candidature-form .form-row { margin-bottom: 0; }

.file-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 20px;
  border: 2px dashed rgba(0,70,255,0.3);
  border-radius: 12px;
  background: rgba(0,70,255,0.03);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: center;
  min-height: 120px;
}
.file-zone:hover,
.file-zone--filled {
  border-color: var(--primary);
  background: rgba(0,70,255,0.06);
}
.file-zone svg { color: var(--primary); opacity: .6; }
.file-zone--filled svg { opacity: 1; }
.file-zone__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}
.file-zone__hint {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
}
@media (prefers-color-scheme: dark) {
  .file-zone { border-color: rgba(140,196,224,0.25); background: rgba(140,196,224,0.04); }
  .file-zone:hover, .file-zone--filled { border-color: var(--light-blue); background: rgba(140,196,224,0.08); }
  .file-zone svg { color: var(--light-blue); }
  .file-zone__hint { color: rgba(255,255,255,0.35); }
}

.candidature-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.candidature-status {
  font-size: 14px;
  font-weight: 500;
  display: none;
  padding: 10px 16px;
  border-radius: 8px;
}
.candidature-status.success { display:block; background: rgba(52,199,89,0.1);  color: #34C759; border: 1px solid rgba(52,199,89,0.2); }
.candidature-status.error   { display:block; background: rgba(255,59,48,0.1);   color: #FF3B30; border: 1px solid rgba(255,59,48,0.2); }

/* ── Pages de contenu standard (Mentions légales, Politique de conf., etc.) ── */
.entry-content {
  max-width: 860px !important;
  margin: 60px auto !important;
  padding: 0 32px !important;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--primary);
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.25;
}
.entry-content h1 { font-size: 2rem; }
.entry-content h2 { font-size: 1.4rem; }
.entry-content h3 { font-size: 1.15rem; }
.entry-content p  { margin-bottom: 1em; }
.entry-content a  { color: var(--primary); text-decoration: underline; }
.entry-content a:hover { color: var(--accent); }

@media (prefers-color-scheme: dark) {
  .entry-content {
    color: rgba(255,255,255,0.85);
  }
  .entry-content h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4 {
    color: #ffffff;
  }
  .entry-content a { color: var(--light-blue); }
  .entry-content a:hover { color: var(--accent); }
}

/* ── 24. PAGE SOCIÉTÉS DE SERVICES ──────────────────────── */
.profils-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .profils-grid { grid-template-columns: 1fr; }
}

.testimonial-block {
  background: var(--card-bg);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  margin: 0;
}
.testimonial-block p {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
}
.testimonial-block footer {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--primary);
  font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── 25. TUILE ENTIÈREMENT CLIQUABLE (.card--clickable) ─── */
a.card--clickable {
  display: block;
  cursor: pointer;
  text-decoration: none;
}
a.card--clickable:hover .card__link { gap: 10px; }

/* ── 26. TABLEAU POLITIQUE DE COOKIES ────────────────────── */
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.cookies-table th,
.cookies-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cookies-table th {
  background: var(--card-bg);
  color: var(--text);
  font-weight: 700;
}
.cookies-table td {
  color: var(--muted);
}
