/* ════════════════════════════════════════════════════════════════════
   vitrine-2026.css — BASE COMMUNE des pages vitrine (DA claire 2026)
   Prefix .v / wrapper <main class="v" data-nav-solid>. Encre + teal + gradient
   vert→cyan, Schibsted Grotesk + Manrope. Accent surchargeable via --v-accent
   (ex. couleur de secteur) ; accent par-carte via --v-c.
   ════════════════════════════════════════════════════════════════════ */

.v {
  --v-bg: #F6F8FB; --v-soft-bg: #F1F5F9;
  --v-ink: #0E1B2A; --v-ink-2: #2a3a4d; --v-soft: #5b6b7d; --v-muted: #93a1b2;
  --v-line: #E4EAF0; --v-line-2: #EDF1F6;
  --v-accent: #0E7490; --v-accent-d: #0b5a70; --v-accent-soft: #e6f1f4;
  --v-maxw: 1200px; --v-ease: cubic-bezier(.4, 0, .2, 1);
  --v-sh: 0 14px 34px -22px rgba(14, 27, 42, .25);
  --v-sh-hover: 0 26px 50px -28px rgba(14, 27, 42, .32);
  position: relative; background: var(--v-bg); color: var(--v-ink);
  font-family: 'Manrope', system-ui, sans-serif; overflow-x: clip;
}
.v *, .v *::before, .v *::after { box-sizing: border-box; }
.v h1, .v h2, .v h3, .v h4 { margin: 0; font-family: 'Schibsted Grotesk', sans-serif; letter-spacing: -.02em; color: var(--v-ink); }
:where(.v p) { margin: 0; }
.v a { color: inherit; text-decoration: none; }
.v .ms, .v .material-symbols-rounded { line-height: 1; vertical-align: middle; }
.v-container { width: 100%; max-width: var(--v-maxw); margin: 0 auto; padding: 0 32px; }
.v-grad { background: linear-gradient(100deg, #10b981, #0891b2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.v-accent { color: var(--v-accent); }

/* ── Boutons ── */
.v-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 600; font-size: 15px; padding: 14px 24px; border-radius: 11px; cursor: pointer; border: 1px solid transparent; font-family: inherit; transition: transform .2s var(--v-ease), box-shadow .2s, background .2s, border-color .2s, color .2s; }
.v-btn .ms, .v-btn .material-symbols-rounded { font-size: 19px; transition: transform .2s var(--v-ease); }
.v-btn-primary { background: var(--v-accent); color: #fff; box-shadow: 0 12px 26px -14px color-mix(in srgb, var(--v-accent) 60%, transparent); }
.v-btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.v-btn-primary:hover .ms, .v-btn-primary:hover .material-symbols-rounded { transform: translateX(3px); }
.v-btn-ghost { background: #fff; color: var(--v-ink); border-color: var(--v-line); }
.v-btn-ghost:hover { border-color: var(--v-accent); color: var(--v-accent); transform: translateY(-1px); }

/* ── Section / head ── */
.v-section { position: relative; padding: clamp(60px, 9vh, 108px) 0; }
.v-section--soft { background: var(--v-soft-bg); border-top: 1px solid var(--v-line-2); border-bottom: 1px solid var(--v-line-2); }
.v-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.v-eyebrow { display: inline-flex; align-items: center; gap: 8px; font: 600 12px/1 'Manrope'; letter-spacing: .14em; text-transform: uppercase; color: var(--v-accent); }
.v-eyebrow .ms, .v-eyebrow .material-symbols-rounded { font-size: 16px; }
.v-h2 { font-size: clamp(27px, 3.6vw, 42px); line-height: 1.09; margin-top: 14px; font-weight: 700; }
.v-sub { font-size: 16px; line-height: 1.65; color: var(--v-soft); margin-top: 13px; }

/* ── En-tête compact ── */
.v-pagehead { position: relative; overflow: hidden; text-align: center; background: linear-gradient(180deg, #eef3f8 0%, var(--v-bg) 92%); padding: 114px 0 44px; }
.v-pagehead__grid { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(14, 27, 42, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 27, 42, .04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 36%, #000, transparent 74%);
  mask-image: radial-gradient(ellipse 65% 60% at 50% 36%, #000, transparent 74%); }
.v-pagehead .v-container { position: relative; z-index: 1; }
.v-crumb { font-size: .84rem; color: var(--v-muted); margin-bottom: 18px; }
.v-crumb a:hover { color: var(--v-accent); }
.v-crumb .sep { margin: 0 8px; opacity: .5; }
.v-pagehead .v-eyebrow { justify-content: center; }
.v-pagehead h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.1; margin: 14px auto 0; max-width: 900px; font-weight: 800; }
.v-pagehead__sub { margin: 16px auto 0; max-width: 620px; font-size: 1.05rem; line-height: 1.6; color: var(--v-soft); }
.v-pagehead__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── Split 2 colonnes ── */
.v-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.v-split--top { align-items: start; }
.v-split--rev .v-figure, .v-split--rev .v-split__media { order: -1; }
.v-intro h2 { font-size: clamp(24px, 3vw, 36px); line-height: 1.12; margin-top: 12px; font-weight: 700; }
.v-intro p { margin-top: 15px; font-size: 1rem; line-height: 1.7; color: var(--v-soft); }
.v-intro p strong { color: var(--v-ink); font-weight: 700; }

/* ── Cartes empilées (valeurs / enjeux) ── */
.v-vcards { display: flex; flex-direction: column; gap: 14px; }
.v-vcard { display: flex; gap: 15px; padding: 20px 22px; background: #fff; border: 1px solid var(--v-line); border-radius: 14px; box-shadow: var(--v-sh); transition: transform .25s var(--v-ease), box-shadow .3s, border-color .3s; }
.v-vcard:hover { transform: translateY(-3px); box-shadow: var(--v-sh-hover); border-color: color-mix(in srgb, var(--v-accent) 35%, var(--v-line)); }
.v-vcard__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--v-accent-soft); }
.v-vcard__ic .ms, .v-vcard__ic .material-symbols-rounded { font-size: 24px; color: var(--v-accent); }
.v-vcard h3 { font-size: 1.06rem; font-weight: 700; }
.v-vcard p { margin-top: 7px; font-size: .93rem; line-height: 1.6; color: var(--v-soft); }

/* ── Grille de piliers ── */
.v-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.v-pillars--3 { grid-template-columns: repeat(3, 1fr); }
.v-pillar { position: relative; overflow: hidden; padding: 28px 24px; border-radius: 16px; background: #fff; border: 1px solid var(--v-line); box-shadow: var(--v-sh); transition: transform .25s var(--v-ease), box-shadow .3s, border-color .3s; }
.v-pillar:hover { transform: translateY(-4px); box-shadow: var(--v-sh-hover); border-color: color-mix(in srgb, var(--v-accent) 35%, var(--v-line)); }
.v-pillar__ic { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: var(--v-accent-soft); }
.v-pillar__ic .ms, .v-pillar__ic .material-symbols-rounded { font-size: 25px; color: var(--v-accent); }
.v-pillar h3 { font-size: 1.08rem; font-weight: 700; margin-top: 16px; }
.v-pillar p { margin-top: 8px; font-size: .92rem; line-height: 1.6; color: var(--v-soft); }

/* ── Checklist (prestations) ── */
.v-checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.v-checklist li { display: flex; gap: 11px; align-items: flex-start; padding: 15px 17px; background: #fff; border: 1px solid var(--v-line); border-radius: 13px; box-shadow: var(--v-sh); font-size: .95rem; line-height: 1.45; color: var(--v-ink-2); }
.v-checklist .ms, .v-checklist .material-symbols-rounded { color: var(--v-accent); font-size: 21px; flex: none; }

/* ── Liste simple à icônes ── */
.v-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 11px; }
.v-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; line-height: 1.55; color: var(--v-ink-2); }
.v-list .ms, .v-list .material-symbols-rounded { color: var(--v-accent); font-size: 20px; flex: none; }

/* ── Alerte succès (vert sémantique, hex fixe) ── */
.v-alert-ok { display: flex; gap: 12px; align-items: flex-start; padding: 18px 20px; border-radius: 14px; background: #e7f7ef; border: 1px solid #b7e4cf; color: #0a5c3c; font-size: .98rem; line-height: 1.55; }
.v-alert-ok .ms, .v-alert-ok .material-symbols-rounded { color: #0a8f5b; font-size: 22px; flex: none; }
.v-alert-ok strong { display: block; color: #08512f; }

/* ── Chips (zones / tags) ── */
.v-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.v-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--v-line); font-size: .86rem; font-weight: 600; color: var(--v-ink-2); box-shadow: var(--v-sh); }
.v-chip .ms, .v-chip .material-symbols-rounded { font-size: 17px; color: var(--v-accent); }

/* ── Steps (méthode) — timeline verticale numérotée ── */
.v-steps { position: relative; max-width: 760px; margin: 0 auto; }
.v-steps::before { content: ""; position: absolute; left: 23px; top: 24px; bottom: 24px; width: 2px; background: var(--v-line); z-index: 0; }
.v-step { position: relative; z-index: 1; display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding-bottom: 26px; }
.v-step:last-child { padding-bottom: 0; }
.v-step__n { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Schibsted Grotesk'; font-weight: 800; font-size: 1.1rem; color: #fff; background: var(--v-accent); box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--v-accent) 60%, transparent); }
.v-step__bd { padding-top: 9px; }
.v-step__bd h3 { font-size: 1.08rem; font-weight: 700; }
.v-step__bd p { margin-top: 6px; font-size: .94rem; line-height: 1.6; color: var(--v-soft); }

/* ── FAQ ── */
.v-faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.v-faq__item { background: #fff; border: 1px solid var(--v-line); border-radius: 14px; box-shadow: var(--v-sh); overflow: hidden; }
.v-faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; font-weight: 700; font-size: 1rem; color: var(--v-ink); }
.v-faq__item summary::-webkit-details-marker { display: none; }
.v-faq__item summary .ms, .v-faq__item summary .material-symbols-rounded { color: var(--v-accent); transition: transform .25s var(--v-ease); flex: none; }
.v-faq__item[open] summary .ms, .v-faq__item[open] summary .material-symbols-rounded { transform: rotate(180deg); }
.v-faq__a { padding: 0 20px 18px; }
.v-faq__a p { font-size: .94rem; line-height: 1.65; color: var(--v-soft); }

/* ── Cartes de maillage interne ── */
.v-linkcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.v-linkcard { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; background: #fff; border: 1px solid var(--v-line); box-shadow: var(--v-sh); transition: transform .2s var(--v-ease), box-shadow .25s, border-color .25s; }
.v-linkcard:hover { transform: translateY(-3px); box-shadow: var(--v-sh-hover); border-color: color-mix(in srgb, var(--v-c, var(--v-accent)) 45%, var(--v-line)); }
.v-linkcard__ic { width: 40px; height: 40px; flex: none; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--v-c, var(--v-accent)) 12%, #fff); }
.v-linkcard__ic .ms, .v-linkcard__ic .material-symbols-rounded { color: var(--v-c, var(--v-accent)); font-size: 21px; }
.v-linkcard__lbl { flex: 1; font-weight: 700; font-size: .95rem; }
.v-linkcard__arr { color: var(--v-muted); font-size: 19px; transition: transform .2s var(--v-ease), color .2s; }
.v-linkcard:hover .v-linkcard__arr { color: var(--v-c, var(--v-accent)); transform: translateX(3px); }

/* ── Figure (image) ── */
.v-figure { border-radius: 18px; overflow: hidden; border: 1px solid var(--v-line); box-shadow: var(--v-sh-hover); }
.v-figure img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── CTA (bandeau sombre) ── */
.v-cta { position: relative; overflow: hidden; border-radius: 20px; padding: 54px 46px; text-align: center; background: var(--v-ink); border: 1px solid rgba(255, 255, 255, .06); }
.v-cta::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 320px at 50% -20%, color-mix(in srgb, var(--v-accent) 42%, transparent), transparent 70%); }
.v-cta h2 { position: relative; font-size: clamp(25px, 3.5vw, 40px); color: #fff; }
.v-cta p { position: relative; margin: 13px auto 0; max-width: 600px; color: #b6c4d2; font-size: 1.02rem; line-height: 1.6; }
.v-cta__row { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.v-cta .v-btn-primary { background: #fff; color: var(--v-ink); box-shadow: none; }
.v-cta .v-btn-primary:hover { background: #eaf2f4; filter: none; }
.v-cta .v-btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .25); }
.v-cta .v-btn-ghost:hover { background: rgba(255, 255, 255, .08); border-color: #fff; color: #fff; }
.v-cta__zone { position: relative; margin-top: 22px; font-size: .86rem; color: #8aa0b2; display: inline-flex; align-items: center; gap: 7px; max-width: 640px; line-height: 1.5; }
.v-cta__zone .ms, .v-cta__zone .material-symbols-rounded { font-size: 17px; color: var(--v-accent); flex: none; }

/* ── Contenu texte long (pages légales / éditoriales) ── */
.v-prose { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--v-line); border-radius: 18px; box-shadow: var(--v-sh); padding: clamp(24px, 4vw, 48px); }
.v-prose h2 { font-size: 1.4rem; font-weight: 700; margin: 30px 0 12px; }
.v-prose h2:first-child { margin-top: 0; }
.v-prose h3 { font-size: 1.1rem; font-weight: 700; margin: 22px 0 8px; }
.v-prose p, .v-prose li { font-size: .97rem; line-height: 1.7; color: var(--v-soft); }
.v-prose p { margin-top: 10px; }
.v-prose ul, .v-prose ol { margin: 10px 0 0; padding-left: 22px; }
.v-prose li { margin-top: 6px; }
.v-prose a { color: var(--v-accent); text-decoration: underline; text-underline-offset: 2px; }
.v-prose strong { color: var(--v-ink); }

/* ── reveal ── */
.v-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--v-ease), transform .6s var(--v-ease); }
.v-reveal.is-visible { opacity: 1; transform: none; }
.v-reveal.d1 { transition-delay: .05s; } .v-reveal.d2 { transition-delay: .1s; }
.v-reveal.d3 { transition-delay: .15s; } .v-reveal.d4 { transition-delay: .2s; }

/* ── responsive ── */
@media (max-width: 980px) {
  .v-split { grid-template-columns: 1fr; gap: 34px; }
  .v-split--rev .v-figure, .v-split--rev .v-split__media { order: 0; }
  .v-pillars, .v-linkcards { grid-template-columns: repeat(2, 1fr); }
  .v-pillars--3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .v-container { padding: 0 18px; }
  .v-checklist, .v-pillars, .v-linkcards { grid-template-columns: 1fr; }
  .v-cta { padding: 40px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .v-reveal { opacity: 1 !important; transform: none !important; }
}
