/* ==========================================================================
   MyWebPlace — Direction artistique « Premium SaaS »
   Inspiration : Stripe · Shopify · HubSpot
   Palette : #8CC6FF (principale) · #081D2D (secondaire) · #FFFFFF · #F8FAFC
   ========================================================================== */

/* --- Variables & reset ---------------------------------------------------- */
:root {
  --blue: #8cc6ff;            /* couleur principale (aplats, chips, accents) */
  --blue-soft: #e8f3ff;       /* fond bleuté très clair */
  --blue-ink: #2f86d6;        /* bleu lisible pour texte/liens sur fond clair */
  --navy: #081d2d;            /* couleur secondaire (texte fort, sections sombres) */
  --navy-700: #0f2f47;
  --navy-600: #16415f;

  --white: #ffffff;
  --bg: #f8fafc;              /* fond clair */
  --text: #1c2b36;           /* texte courant sur fond clair */
  --muted: #5d6b78;          /* texte secondaire */
  --border: #e7eef4;         /* bordures discrètes */

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Ombres légères, premium */
  --shadow-xs: 0 1px 2px rgba(8, 29, 45, 0.06);
  --shadow-sm: 0 1px 3px rgba(8, 29, 45, 0.06), 0 1px 2px rgba(8, 29, 45, 0.04);
  --shadow-md: 0 10px 30px -12px rgba(8, 29, 45, 0.18);
  --shadow-lg: 0 30px 60px -24px rgba(8, 29, 45, 0.28);

  --max-width: 1200px;
  --header-height: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition: 0.25s var(--ease);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }

p { color: var(--text); }

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

.section { padding: 100px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg); }

.section--dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, 0.72); }
.section--dark .eyebrow { color: var(--blue); }

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

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-top: 18px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-ink);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--muted);
}

.highlight { color: var(--blue-ink); }
.section--dark .highlight { color: var(--blue); }

/* Bloc de texte éditorial (SEO) */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { color: var(--muted); font-size: 1.1rem; line-height: 1.75; margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--blue-ink); font-weight: 600; }
.prose a:hover { text-decoration: underline; }

/* --- Boutons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

/* Primaire : navy plein, élégant et contrasté (CTA conversion) */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-xs);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline : sobre, fond blanc */
.btn-outline {
  background: var(--white);
  border-color: var(--border);
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Bleu clair (sur fonds sombres) */
.btn-light {
  background: var(--blue);
  color: var(--navy);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* CTA sur fonds sombres : bleu clair plein */
.section--dark .btn-primary,
.cta-band .btn-primary {
  background: var(--blue);
  color: var(--navy);
  box-shadow: 0 10px 30px -10px rgba(140, 198, 255, 0.5);
}
.section--dark .btn-primary:hover,
.cta-band .btn-primary:hover {
  background: #a6d3ff;
  box-shadow: 0 14px 34px -10px rgba(140, 198, 255, 0.6);
}

/* --- En-tête / navigation ------------------------------------------------- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: box-shadow var(--transition), border-color var(--transition),
    background var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.86);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 800;
  font-size: 1.1rem;
}
.logo span { color: var(--blue-ink); }
.footer .logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--navy);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--blue-ink); background: var(--bg); }
.nav-links a.active { color: var(--blue-ink); font-weight: 600; }
.nav-links .btn { margin-left: 10px; padding: 11px 22px; }
/* Le bouton CTA garde son texte clair, même actif (priorité sur .nav-links a) */
.nav-links a.btn-primary,
.nav-links a.btn-primary.active,
.nav-links a.btn-primary:hover { color: var(--white); background: var(--navy); }
.nav-links a.btn-primary:hover { background: var(--navy-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 3px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 96px) 0 120px;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(140, 198, 255, 0.28), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(140, 198, 255, 0.14), transparent 60%),
    var(--white);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--navy);
  padding: 8px 16px 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.hero h1 { margin-bottom: 26px; }
.hero h1 .highlight { white-space: nowrap; }
.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero .btn { padding: 16px 30px; font-size: 1rem; }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-size: 2.1rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-stats .stat span { font-size: 0.92rem; color: var(--muted); }

/* Hero visuel (maquette épurée, sans image) */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
}
.hero-card .browser-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.hero-card .browser-bar i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--border);
}
.hero-card .browser-bar i:nth-child(1) { background: #ff5f57; }
.hero-card .browser-bar i:nth-child(2) { background: #febc2e; }
.hero-card .browser-bar i:nth-child(3) { background: #28c840; }
.hero-bars { display: grid; gap: 16px; }
.hero-bars .row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg);
}
.hero-bars .thumb {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-ink));
  flex-shrink: 0;
}
.hero-bars .lines { flex: 1; display: grid; gap: 8px; }
.hero-bars .lines span { height: 9px; border-radius: 6px; background: #dde7ef; }
.hero-bars .lines span:first-child { width: 70%; background: #c8d6e2; }
.hero-bars .lines span:last-child { width: 45%; }
.hero-bars .tag {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-ink);
  background: var(--blue-soft);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.hero-float .icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue-ink);
}
.hero-float .icon svg { width: 18px; height: 18px; }
.hero-float--1 { top: -20px; left: -28px; animation: float 6s ease-in-out infinite; }
.hero-float--2 { bottom: -22px; right: -20px; animation: float 6s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float--1, .hero-float--2 { animation: none; }
}

/* --- Bandeau confiance ---------------------------------------------------- */
.trust-bar { padding: 48px 0; border-bottom: 1px solid var(--border); }
.trust-bar p {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px;
}
.trust-logos span {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  opacity: 0.45;
  transition: opacity var(--transition);
}
.trust-logos span:hover { opacity: 0.8; }

/* --- Cartes (services & génériques) --------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  box-shadow: var(--shadow-sm);
  display: block;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d4e6f7;
}

.card .card-icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--navy);
  margin-bottom: 26px;
}
.card .card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); margin-bottom: 20px; }
.card .card-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card:hover .card-link { gap: 11px; }

.card-list { margin: 18px 0 0; display: grid; gap: 13px; }
.card-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-size: 1rem;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f86d6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Étapes / processus --------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 36px 30px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-ink);
  background: var(--blue-soft);
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* --- Section split (texte + visuel) -------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split-text { order: 2; }

.feature-list { margin-top: 32px; display: grid; gap: 26px; }
.feature-list .feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-list .feature .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--navy);
  flex-shrink: 0;
}
.feature-list .feature .icon svg { width: 22px; height: 22px; }
.feature-list .feature h4 { color: var(--navy); margin-bottom: 4px; font-size: 1.08rem; }
.feature-list .feature p { color: var(--muted); font-size: 0.98rem; }

.media-frame {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 80% at 20% 10%, rgba(140, 198, 255, 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-600));
  padding: 56px;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.media-frame .stat-bubble {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.media-frame .stat-bubble strong {
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  display: block;
  color: var(--blue);
  margin-bottom: 8px;
}
.media-frame .stat-bubble span { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; }

/* --- Statistiques --------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 32px;
  text-align: center;
}
.stats-grid .stat strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin-bottom: 6px;
}
.stats-grid .stat strong svg { width: 38px; height: 38px; vertical-align: middle; }
.stats-grid .stat span { color: rgba(255, 255, 255, 0.74); font-size: 1.02rem; }

/* --- Réalisations / portfolio -------------------------------------------- */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--blue); color: var(--navy); }
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 28px;
}
.project {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-thumb {
  height: 190px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}
.project-thumb svg { width: 46px; height: 46px; }
.project-thumb.bg-1 { background: linear-gradient(135deg, #081d2d, #16415f); }
.project-thumb.bg-2 { background: linear-gradient(135deg, #0f2f47, #2a6f9e); }
.project-thumb.bg-3 { background: linear-gradient(135deg, #16415f, #8cc6ff); }
.project-thumb.bg-4 { background: linear-gradient(135deg, #081d2d, #3f7fb0); }
.project-thumb.bg-5 { background: linear-gradient(135deg, #0f2f47, #5fa8e8); }
.project-thumb.bg-6 { background: linear-gradient(135deg, #081d2d, #2a6f9e); }
.project-body { padding: 28px; }
.project-body .tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-ink);
}
.project-body h3 { margin: 10px 0 8px; font-size: 1.22rem; }
.project-body p { color: var(--muted); font-size: 0.98rem; }
.project-meta {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  font-size: 0.86rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.project-meta b { color: var(--navy); }

/* --- Témoignages ---------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial .quote-mark {
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--blue);
  font-family: Georgia, serif;
}
.testimonial p {
  font-size: 1.05rem;
  color: var(--text);
  margin: 18px 0 26px;
}
.testimonial .author { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--blue-soft);
}
.testimonial .author strong { display: block; color: var(--navy); }
.testimonial .author span { font-size: 0.88rem; color: var(--muted); }

/* --- Encart avis Google --------------------------------------------------- */
.reviews-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 56px 40px;
}
.reviews-card .reviews-icon {
  display: inline-grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-ink);
  margin-bottom: 24px;
}
.reviews-card .reviews-icon svg { width: 30px; height: 30px; }
.reviews-card p { color: var(--muted); margin-bottom: 28px; font-size: 1.06rem; }

/* --- À propos : valeurs & timeline --------------------------------------- */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.value {
  padding: 36px 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value .icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--navy);
  margin-bottom: 22px;
}
.value .icon svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.14rem; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 0.98rem; }

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 38px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 42px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.timeline-item .year { font-weight: 800; color: var(--blue-ink); letter-spacing: -0.01em; }
.timeline-item h3 { font-size: 1.16rem; margin: 6px 0 8px; }
.timeline-item p { color: var(--muted); }

/* --- CTA bandeau ---------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(70% 120% at 90% 0%, rgba(140, 198, 255, 0.24), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-600));
  border-radius: var(--radius-lg);
  padding: 84px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--white); position: relative; z-index: 1; }
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 18px auto 36px;
  position: relative; z-index: 1;
}
.cta-band .hero-actions {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* --- Bannière sous-pages -------------------------------------------------- */
.page-hero {
  padding: calc(var(--header-height) + 90px) 0 90px;
  background:
    radial-gradient(60% 120% at 85% 0%, rgba(140, 198, 255, 0.22), transparent 55%),
    linear-gradient(160deg, var(--navy), var(--navy-600));
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 1.18rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.breadcrumb a:hover { color: var(--blue); }

/* --- Contact -------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-info .info-item .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info .info-item .icon svg { width: 22px; height: 22px; }
.contact-info .info-item h4 { color: var(--navy); margin-bottom: 3px; font-size: 1.02rem; }
.contact-info .info-item p,
.contact-info .info-item a { color: var(--muted); }
.contact-info .info-item a:hover { color: var(--blue-ink); }

.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-row a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label .req { color: #e23744; }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control::placeholder { color: #9aa8b4; }
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(140, 198, 255, 0.28);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-error { display: none; color: #e23744; font-size: 0.83rem; margin-top: 6px; }
.form-group.invalid .form-control { border-color: #e23744; }
.form-group.invalid .form-error { display: block; }

.form-feedback {
  display: none;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.1);
  color: #167c33;
  font-weight: 600;
  margin-bottom: 22px;
}
.form-feedback.show { display: block; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 16px; }

/* --- FAQ (accordéon) ------------------------------------------------------ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-question .chev {
  transition: transform var(--transition);
  color: var(--blue-ink);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
.faq-item.open .faq-question .chev { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-answer p { padding: 0 26px 22px; color: var(--muted); }

/* --- Contenu légal -------------------------------------------------------- */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { font-size: 1.45rem; margin: 44px 0 16px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.12rem; margin: 24px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--blue-ink); }
.legal a:hover { text-decoration: underline; }
.legal .updated {
  font-size: 0.92rem;
  color: var(--muted);
  background: var(--bg);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
  margin-bottom: 36px;
}

/* --- Pied de page --------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 88px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer .logo { color: var(--white); margin-bottom: 20px; }
.footer .logo .logo-mark { background: var(--navy-600); }
.footer-about p { color: rgba(255, 255, 255, 0.58); max-width: 320px; font-size: 0.97rem; }
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; letter-spacing: 0; }
.footer-col a, .footer-col p { color: rgba(255, 255, 255, 0.58); font-size: 0.95rem; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a:hover { color: var(--blue); }

/* --- Animations au scroll ------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Blog ----------------------------------------------------------------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 56px;
}
.blog-featured .feat-thumb {
  border-radius: var(--radius);
  min-height: 340px;
  background:
    radial-gradient(80% 80% at 20% 10%, rgba(140, 198, 255, 0.22), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-600));
  display: grid;
  place-items: center;
  color: var(--blue);
}
.blog-featured .feat-thumb svg { width: 64px; height: 64px; }
.blog-featured .feat-body { padding: 24px 40px 24px 16px; }
.blog-featured .feat-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 16px 0 16px;
}
.blog-featured .feat-body p { color: var(--muted); margin-bottom: 26px; }

.post-cat {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-ink);
  background: var(--blue-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 18px;
}
.post-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.6;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-thumb {
  height: 180px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}
.post-thumb svg { width: 42px; height: 42px; }
.post-card .post-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card h3 { font-size: 1.18rem; margin: 14px 0 10px; }
.post-card p { color: var(--muted); font-size: 0.97rem; margin-bottom: 18px; }
.post-card .post-meta { margin: 0 0 18px; }
.post-card .card-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-ink);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: gap var(--transition);
}
.post-card:hover .card-link { gap: 11px; }

/* Newsletter (sur fond sombre) */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(140, 198, 255, 0.22);
}

/* Article */
.article { max-width: 760px; margin: 0 auto; }
.article .post-meta { justify-content: flex-start; margin: 0 0 8px; }
.article-content { margin-top: 8px; }
.article-content > * { margin-bottom: 24px; }
.article-content h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.article-content h3 { font-size: 1.26rem; margin: 30px 0 10px; }
.article-content p { color: var(--text); font-size: 1.1rem; line-height: 1.85; }
.article-content ul { padding-left: 24px; list-style: disc; color: var(--text); }
.article-content ul li { margin-bottom: 10px; font-size: 1.08rem; }
.article-content blockquote {
  border-left: 3px solid var(--blue);
  background: var(--bg);
  padding: 20px 26px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy);
  font-style: italic;
  font-size: 1.12rem;
}
.article-figure {
  border-radius: var(--radius);
  background:
    radial-gradient(80% 80% at 20% 10%, rgba(140, 198, 255, 0.2), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-600));
  min-height: 300px;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.article-figure svg { width: 56px; height: 56px; }
.article-share {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .feat-body { padding: 12px 20px 24px; }
  .blog-featured .feat-thumb { min-height: 230px; }
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split-text { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section { padding: 96px 0; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 18px 24px 28px;
    gap: 2px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform var(--transition);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px; border-radius: 10px; }
  .nav-links .btn { margin: 10px 0 0; width: 100%; }
  .nav-links .btn.active { color: var(--white); }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 52px; }
  .cta-band { padding: 56px 28px; }
  .contact-form { padding: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .btn { flex: 1; }
  .media-frame { padding: 40px; min-height: 280px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-float { display: none; }
  .trust-logos { gap: 32px; }
}

/* ==========================================================================
   ÉVOLUTION PREMIUM — menu déroulant, sections sombres, blocs d'expertise
   ========================================================================== */

/* --- Menu déroulant Services --------------------------------------------- */
.nav-item.has-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown-toggle .chev { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item.has-dropdown:hover .nav-dropdown-toggle .chev { transform: rotate(180deg); }

/* pont invisible pour ne pas perdre le survol */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 16px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 290px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1001;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.dropdown a:hover { background: var(--bg); color: var(--blue-ink); }
.dropdown .dropdown-all {
  font-weight: 700;
  color: var(--blue-ink);
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
  padding-bottom: 13px;
}

/* --- Section « deep » (sombre premium) ----------------------------------- */
.section--deep {
  background:
    radial-gradient(70% 120% at 85% 0%, rgba(140, 198, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #061521, #0a2436);
  color: rgba(255, 255, 255, 0.78);
}
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: var(--white); }
.section--deep p { color: rgba(255, 255, 255, 0.74); }
.section--deep .eyebrow { color: var(--blue); }
.section--deep .lead { color: rgba(255, 255, 255, 0.82); }

/* --- Mockups / fenêtres d'illustration ----------------------------------- */
.mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.section--dark .mockup, .section--deep .mockup {
  background: #0c2638;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}
.mockup-head {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.section--dark .mockup-head, .section--deep .mockup-head { border-color: rgba(255, 255, 255, 0.08); }
.mockup-head i { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.mockup-head i:nth-child(1) { background: #ff5f57; }
.mockup-head i:nth-child(2) { background: #febc2e; }
.mockup-head i:nth-child(3) { background: #28c840; }
.mockup-head span { margin-left: 8px; font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.section--dark .mockup-head span, .section--deep .mockup-head span { color: rgba(255, 255, 255, 0.55); }
.mockup-body { padding: 22px; }

/* Lignes type « audit » avec barre illustrative */
.audit-row { display: grid; gap: 8px; margin-bottom: 16px; }
.audit-row:last-child { margin-bottom: 0; }
.audit-row .audit-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.section--dark .audit-row .audit-top, .section--deep .audit-row .audit-top { color: #fff; }
.audit-row .audit-tag { font-size: 0.78rem; font-weight: 700; color: var(--blue-ink); }
.bar-track { height: 8px; border-radius: 50px; background: var(--bg); overflow: hidden; }
.section--dark .bar-track, .section--deep .bar-track { background: rgba(255, 255, 255, 0.08); }
.bar-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--blue), var(--blue-ink)); }

/* Liste à puces « check » dans un mockup */
.mini-list { display: grid; gap: 11px; }
.mini-list li { position: relative; padding-left: 26px; font-size: 0.94rem; color: var(--muted); }
.section--dark .mini-list li, .section--deep .mini-list li { color: rgba(255, 255, 255, 0.78); }
.mini-list li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232f86d6' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

.illus-caption { text-align: center; font-size: 0.84rem; color: var(--muted); margin-top: 14px; font-style: italic; }
.section--dark .illus-caption, .section--deep .illus-caption { color: rgba(255, 255, 255, 0.5); }

/* --- Schéma de flux (catalogue → connecteur → marketplaces) --------------- */
.flow {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px;
}
.flow-node {
  padding: 16px 20px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center; font-weight: 600; font-size: 0.92rem; color: var(--navy);
  min-width: 130px;
}
.flow-node small { display: block; font-weight: 500; font-size: 0.78rem; color: var(--muted); margin-top: 3px; }
.flow-node.is-accent { background: var(--navy); color: #fff; border-color: var(--navy); }
.flow-node.is-accent small { color: rgba(255, 255, 255, 0.7); }
.flow-arrow { color: var(--blue-ink); display: grid; place-items: center; }
.flow-arrow svg { width: 26px; height: 26px; }
@media (max-width: 640px) {
  .flow { flex-direction: column; }
  .flow-arrow svg { transform: rotate(90deg); }
}

/* --- Maillage interne : autres services ---------------------------------- */
.svc-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.svc-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; border-radius: 13px;
  border: 1px solid var(--border); background: var(--white);
  font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}
.svc-links a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d4e6f7; color: var(--blue-ink); }
.svc-links a span.arr { color: var(--blue-ink); transition: transform var(--transition); }
.svc-links a:hover span.arr { transform: translateX(4px); }

/* --- Bandeau de mots-clés / pills ---------------------------------------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  padding: 8px 16px; border-radius: 50px;
  background: var(--blue-soft); color: var(--blue-ink);
  font-size: 0.86rem; font-weight: 600;
}
.section--dark .pill, .section--deep .pill { background: rgba(140, 198, 255, 0.12); color: var(--blue); }

/* --- Menu déroulant : version mobile ------------------------------------- */
@media (max-width: 768px) {
  .nav-item.has-dropdown { flex-direction: column; align-items: stretch; }
  .nav-item.has-dropdown::after { display: none; }
  .nav-dropdown-toggle { justify-content: space-between; padding: 14px; border-radius: 10px; }
  .dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible;
    min-width: 0; box-shadow: none; border: none;
    border-left: 2px solid var(--border); border-radius: 0;
    margin: 2px 0 6px 14px; padding: 0 0 0 8px;
    max-height: 0; overflow: hidden;
    transition: max-height var(--transition);
  }
  .nav-item.has-dropdown.open .dropdown { max-height: 520px; }
  .nav-item.has-dropdown.open .nav-dropdown-toggle .chev { transform: rotate(180deg); }
  .dropdown a { white-space: normal; }
  .dropdown .dropdown-all { border-radius: 0; }
}
