/* =========================================================
   ELYSIOM FINANCE — VITRINE PUBLIQUE
   Design system : Teal navy plateforme (motif 103dr 2026-05-12)
   ========================================================= */

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body.vitrine {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--v-text);
  background: var(--v-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  /* Navy = teal-foncé profond (aligné --navy de la plateforme #0f4c5c) */
  --v-navy:        #0f4c5c;
  --v-navy-dark:   #0a3742;
  --v-navy-light:  #1B5B6E;
  --v-navy-soft:   #2A7388;
  /* Accent (anciennement "gold") = teal vif de la plateforme #1a7f73 */
  /* Accent OR (motif 103eg 2026-05-14) — remplace l'ancien teal #1a7f73 */
  --v-gold:        rgba(200, 165, 90, 0.82);
  --v-gold-dark:   rgb(160, 132, 72);
  --v-gold-light:  rgb(230, 210, 165);
  /* Cream conservé pour les fonds clairs ; teintes légèrement réchauffées vers le vert */
  --v-cream:       #eef4f2;
  --v-cream-light: #f5f9f7;
  --v-white:       #FFFFFF;
  --v-text:        #123840;
  --v-text-muted:  rgba(18, 56, 64, 0.72);
  --v-text-light:  rgba(18, 56, 64, 0.50);
  --v-border:      rgba(18, 56, 64, 0.14);
  --v-border-soft: rgba(18, 56, 64, 0.07);
  --v-shadow-sm: 0 1px 3px rgba(8, 31, 37, 0.06);
  --v-shadow-md: 0 6px 24px rgba(8, 31, 37, 0.09);
  --v-shadow-lg: 0 16px 48px rgba(8, 31, 37, 0.12);
  --v-radius: 4px;
  --v-radius-md: 6px;
  --v-radius-lg: 10px;
  --v-container: 1240px;
  --v-container-narrow: 980px;
  --v-font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --v-font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Typography ---------- */
.vitrine h1, .vitrine h2, .vitrine h3, .vitrine h4 {
  font-family: var(--v-font-serif);
  font-weight: 500;
  color: var(--v-navy);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
.vitrine h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.1; }
.vitrine h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); line-height: 1.2; }
.vitrine h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.3; }
.vitrine h4 { font-size: 1.1rem; line-height: 1.4; }
.vitrine p  { margin: 0 0 1rem; color: var(--v-text); }
.vitrine .text-muted { color: var(--v-text-muted); }

.v-eyebrow {
  display: inline-block;
  font-family: var(--v-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v-gold);
  margin-bottom: 1rem;
}
.v-divider {
  width: 56px; height: 2px;
  background: var(--v-gold);
  margin: 1.25rem 0 1.5rem;
  border: 0;
}
.v-divider--center { margin-left: auto; margin-right: auto; }

/* ---------- Container & layout ---------- */
.v-container {
  width: 100%;
  max-width: var(--v-container);
  margin: 0 auto;
  padding: 0 24px;
}
.v-container--narrow { max-width: var(--v-container-narrow); }

.v-section { padding: 88px 0; }
.v-section--cream { background: var(--v-cream); }
.v-section--navy { background: var(--v-navy); color: var(--v-white); }
.v-section--navy h2,
.v-section--navy h3 { color: var(--v-white); }
.v-section--navy p { color: rgba(255,255,255,0.85); }
.v-section--tight { padding: 56px 0; }

@media (max-width: 768px) {
  .v-section { padding: 56px 0; }
  .v-section--tight { padding: 40px 0; }
}

/* ---------- Buttons ---------- */
.v-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-family: var(--v-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--v-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.v-btn--primary {
  background: var(--v-gold);
  color: var(--v-white);
  border-color: var(--v-gold);
}
.v-btn--primary:hover { background: var(--v-gold-dark); border-color: var(--v-gold-dark); }
.v-btn--outline {
  background: transparent;
  color: var(--v-navy);
  border-color: var(--v-navy);
}
.v-btn--outline:hover { background: var(--v-navy); color: var(--v-white); }
.v-btn--outline-light {
  background: transparent;
  color: var(--v-white);
  border-color: rgba(255,255,255,0.4);
}
.v-btn--outline-light:hover { border-color: var(--v-white); background: rgba(255,255,255,0.08); }
.v-btn--ghost {
  background: transparent;
  color: var(--v-navy);
  padding: 10px 0;
  letter-spacing: 0.16em;
}
.v-btn--ghost:hover { color: var(--v-gold); }
.v-btn .v-arrow { transition: transform 0.2s; }
.v-btn:hover .v-arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.v-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--v-navy);
  color: var(--v-white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* Header : container pleine largeur (logo plus à gauche, près du bord viewport) */
.v-header .v-container {
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
}
.v-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.v-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--v-white);
  flex-shrink: 0;
}
.v-header__brand-symbol {
  height: 58px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.v-header__brand-textimg {
  height: 27px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .v-header__brand-symbol { height: 43px; }
  .v-header__brand-textimg { height: 20px; }
}
.v-header__brand-text { display: flex; flex-direction: column; line-height: 1; }
.v-header__brand-text strong { font-weight: 600; letter-spacing: 0.12em; }
.v-header__brand-text small {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--v-gold);
  margin-top: 4px;
  font-family: var(--v-font-sans);
  font-weight: 500;
  text-transform: uppercase;
}
.v-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  margin-right: auto;
}
.v-nav__link {
  font-family: var(--v-font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.v-nav__link:hover,
.v-nav__link.is-active { color: var(--v-white); }
.v-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--v-gold);
}

/* Sous-menus déroulants au survol (motif 103ed 2026-05-13) */
.v-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}
.v-nav__item--has-sub::after {
  /* zone tampon invisible pour ne pas perdre le hover entre lien et panel */
  content: "";
  position: absolute;
  top: 100%;
  left: -10px; right: -10px;
  height: 14px;
}
.v-nav__sub {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  box-shadow: var(--v-shadow-lg);
  min-width: 220px;
  padding: 10px 0;
  z-index: 100;
}
.v-nav__item--has-sub:hover .v-nav__sub,
.v-nav__item--has-sub:focus-within .v-nav__sub {
  display: block;
}
.v-nav__sub a {
  display: block;
  padding: 9px 22px;
  font-family: var(--v-font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--v-navy);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.v-nav__sub a:hover {
  background: var(--v-cream);
  color: var(--v-gold);
}
.v-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-gold);
  border: 1px solid var(--v-gold);
  border-radius: var(--v-radius);
  background: var(--v-navy-dark);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.v-header__cta:hover {
  background: var(--v-gold);
  color: var(--v-navy);
}
.v-header__cta:hover { background: var(--v-gold); }
.v-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  position: relative;
}
.v-burger span {
  position: absolute;
  left: 8px; right: 8px; height: 2px;
  background: var(--v-white);
  transition: transform 0.2s;
}
.v-burger span:nth-child(1) { top: 13px; }
.v-burger span:nth-child(2) { top: 19px; }
.v-burger span:nth-child(3) { top: 25px; }

@media (max-width: 1024px) {
  .v-burger { display: block; }
  .v-nav, .v-header__cta { display: none; }
  .v-header__inner { flex-wrap: wrap; }
  .v-header.is-open .v-header__inner {
    height: auto;
    padding-bottom: 16px;
  }
  .v-header.is-open .v-nav,
  .v-header.is-open .v-header__cta {
    display: flex;
    width: 100%;
  }
  .v-header.is-open .v-nav {
    order: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 4px;
    margin-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .v-header.is-open .v-nav__link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  /* En mobile, les sous-menus sont dépliés en bloc sous le lien parent */
  .v-nav__item, .v-header.is-open .v-nav__item { display: block; width: 100%; }
  .v-nav__item--has-sub::after { display: none; }
  .v-header.is-open .v-nav__sub {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 4px 0 8px 16px;
    min-width: 0;
  }
  .v-header.is-open .v-nav__sub a {
    color: rgba(255,255,255,0.72);
    padding: 8px 0;
    font-size: 0.78rem;
  }
  .v-header.is-open .v-nav__sub a:hover {
    background: transparent;
    color: var(--v-white);
  }
  .v-header.is-open .v-header__cta {
    order: 3;
    justify-content: center;
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .v-header__inner {
    height: 76px;
    transition: height 0.2s;
  }
}

/* ---------- Hero ---------- */
.v-hero {
  position: relative;
  min-height: 540px;
  background: var(--v-navy);
  color: var(--v-white);
  overflow: hidden;
}
.v-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.v-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6,15,35,0.92) 0%,
    rgba(8,18,40,0.88) 50%,
    rgba(10,22,46,0.65) 75%,
    rgba(13,31,58,0.3) 100%
  );
}
.v-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.v-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 540px;
  padding: 80px 0;
}
.v-hero__content {
  max-width: 640px;
}
.v-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--v-gold-light);
  margin-bottom: 1.25rem;
}
.v-hero h1 {
  color: var(--v-white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.v-hero__subtitle {
  font-family: var(--v-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v-gold);
  margin-bottom: 1.5rem;
}
.vitrine .v-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  max-width: 520px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.v-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.v-hero__actions .v-btn--outline {
  color: var(--v-white);
  border-color: rgba(255,255,255,0.5);
}
.v-hero__actions .v-btn--outline:hover {
  background: var(--v-white);
  color: var(--v-navy);
  border-color: var(--v-white);
}

.v-hero--compact { min-height: 380px; }
.v-hero--compact .v-hero__inner { min-height: 380px; padding: 60px 0; }

/* Variante split — texte gauche, image encadrée à droite, fond clair */
.v-hero--split {
  background: var(--v-cream);
  color: var(--v-text);
  min-height: 0;
  padding: 88px 0 104px;
  overflow: visible;
}
.v-hero--split .v-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  min-height: 0;
  padding: 0;
}
.v-hero--split .v-hero__content {
  max-width: 600px;
}
.v-hero--split h1 {
  color: var(--v-navy);
  font-size: clamp(2rem, 3.6vw, 3rem);
  text-wrap: balance;
  hyphens: manual;
  overflow-wrap: normal;
}
.v-hero--split .v-hero__subtitle {
  color: var(--v-gold);
  margin-bottom: 1.25rem;
}
.vitrine .v-hero--split .v-hero__lead {
  color: var(--v-text-muted);
  text-shadow: none;
  max-width: 540px;
}
.v-hero--split .v-hero__actions .v-btn--outline {
  color: var(--v-navy);
  border-color: var(--v-navy);
}
.v-hero--split .v-hero__actions .v-btn--outline:hover {
  background: var(--v-navy);
  color: var(--v-white);
  border-color: var(--v-navy);
}
.v-hero--split .v-hero__media {
  position: relative;
  inset: auto;
  z-index: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--v-radius-md);
  overflow: hidden;
  box-shadow: var(--v-shadow-lg);
}
.v-hero--split .v-hero__media::after { display: none; }
.v-hero--split .v-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 960px) {
  .v-hero--split { padding: 56px 0 64px; }
  .v-hero--split .v-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v-hero--split .v-hero__media { aspect-ratio: 16 / 10; }
}

/* Variante texte seul : manifeste cabinet, centré sur fond cream */
.v-hero--split.v-hero--text-only {
  padding: 80px 0 96px;
}
.v-hero--split.v-hero--text-only .v-hero__inner {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}
.v-hero--split.v-hero--text-only .v-hero__content {
  max-width: none;
  width: 100%;
}
.v-hero--split.v-hero--text-only .v-hero__subtitle {
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.22em;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--v-gold);
}
.v-hero--split.v-hero--text-only h1 {
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  line-height: 1.18;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  text-wrap: balance;
}
.v-hero-accent {
  text-decoration: underline;
  text-decoration-color: var(--v-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: none;
}
.brand-name {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vitrine .v-hero--split.v-hero--text-only .v-hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.v-hero--split.v-hero--text-only .v-hero__actions {
  justify-content: center;
}
/* Variante minimale (pages courtes : Actualités, Contact) — bloc un peu plus compact, typo identique aux autres */
.v-hero--split.v-hero--text-only.v-hero--minimal {
  padding: 64px 0 80px;
}
@media (max-width: 720px) {
  .v-hero--split.v-hero--text-only { padding: 60px 0 72px; }
  .v-hero--split.v-hero--text-only .v-hero__subtitle { font-size: 1.1rem; letter-spacing: 0.16em; }
  .v-hero--split.v-hero--text-only h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .vitrine .v-hero--split.v-hero--text-only .v-hero__lead { font-size: 1rem; }
  .v-hero--split.v-hero--text-only.v-hero--minimal { padding: 48px 0 64px; }
}

/* ---------- Section header ---------- */
.v-section__head {
  max-width: 720px;
  margin-bottom: 56px;
}
.v-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.v-section__head h2 { margin-bottom: 1rem; }
.v-section__lead { font-size: 1.05rem; color: var(--v-text-muted); }

/* ---------- Cards & icons ---------- */
.v-card {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  padding: 36px 32px;
  transition: all 0.25s ease;
}
.v-card:hover {
  border-color: var(--v-gold);
  box-shadow: var(--v-shadow-md);
  transform: translateY(-2px);
}
.v-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--v-cream);
  border: 1px solid var(--v-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-gold);
  margin-bottom: 1.25rem;
  padding: 12px;
}
.v-card__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.v-card h3 { margin-bottom: 0.75rem; }
.v-card p { color: var(--v-text-muted); margin-bottom: 0; }

.v-grid { display: grid; gap: 24px; }
.v-grid--2 { grid-template-columns: repeat(2, 1fr); }
.v-grid--3 { grid-template-columns: repeat(3, 1fr); }
.v-grid--4 { grid-template-columns: repeat(4, 1fr); }
.v-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
  .v-grid--4, .v-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .v-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .v-grid--2, .v-grid--3, .v-grid--4, .v-grid--5 { grid-template-columns: 1fr; }
}

/* ---------- Steps (5-step process) ---------- */
.v-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.v-steps::before {
  content: "";
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: var(--v-border);
  z-index: 0;
}
.v-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
  z-index: 1;
}
.v-step__number {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--v-cream);
  border: 1px solid var(--v-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-gold);
}
.v-step__number svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.v-step__number--filled {
  background: var(--v-navy);
  border-color: var(--v-navy);
  color: var(--v-gold-light);
  font-family: var(--v-font-serif);
  font-size: 1.35rem;
}
.v-step h4 {
  font-family: var(--v-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-navy);
  margin-bottom: 0.4rem;
}
.v-step p { font-size: 0.92rem; color: var(--v-text-muted); margin: 0; }
@media (max-width: 1024px) {
  .v-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .v-steps::before { display: none; }
}
@media (max-width: 540px) {
  .v-steps { grid-template-columns: 1fr; }
}

/* ---------- Two-col split (image + text) ---------- */
.v-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.v-split--reverse { direction: rtl; }
.v-split--reverse > * { direction: ltr; }
.v-split__media {
  border-radius: var(--v-radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--v-cream);
}
.v-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Variante split--carousel (Entreprises § Expertise dédiée) : image plus haute + texte compact, pour équilibrer les 2 colonnes */
.v-split--carousel { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); }
.v-split--carousel .v-split__media { aspect-ratio: 4 / 3.2; }
.v-split--carousel .v-list { font-size: 0.92rem; }
.v-split--carousel .v-list li { padding: 4px 0 4px 28px; }
.v-split--carousel p { font-size: 0.95rem; }
.v-split--carousel h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); }

/* ---------- Carousel (motif 103eh 2026-05-14) — secteurs éligibles ---------- */
.v-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--v-navy-dark);
  overflow: hidden;
}
.v-carousel__slides {
  position: absolute;
  inset: 0;
}
.v-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.v-carousel__slide.is-active {
  opacity: 1;
}
.v-carousel__caption {
  position: absolute;
  bottom: 44px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--v-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--v-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
  padding: 0 12px;
  pointer-events: none;
}
.v-carousel__bullets {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.v-carousel__bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.v-carousel__bullet:hover { background: rgba(255,255,255,0.75); }
.v-carousel__bullet.is-active {
  background: var(--v-gold);
  transform: scale(1.18);
}
@media (max-width: 900px) {
  .v-split { grid-template-columns: 1fr; gap: 32px; }
  .v-split--reverse { direction: ltr; }
}

/* ---------- Profile (Le Cabinet team) ---------- */
.v-profile {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  overflow: hidden;
}
.v-profile__photo {
  aspect-ratio: 1 / 1;
  background: var(--v-cream);
  position: relative;
  overflow: hidden;
}
.v-profile__photo img { width: 100%; height: 100%; object-fit: cover; }
.v-profile__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--v-gold);
  font-family: var(--v-font-serif);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--v-cream) 0%, var(--v-cream-light) 100%);
}
.v-profile__body { padding: 28px 28px 32px; }
.v-profile__body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--v-border);
}
.v-profile__body p { font-size: 0.95rem; color: var(--v-text-muted); margin-bottom: 0.85rem; }

/* ---------- Article cards (Actualités) ---------- */
.v-article {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.v-article:hover {
  box-shadow: var(--v-shadow-md);
  transform: translateY(-3px);
}
.v-article__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--v-cream);
}
.v-article__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.v-article:hover .v-article__media img { transform: scale(1.04); }
.v-article__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.v-article__meta {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v-text-muted);
  margin-bottom: 0.85rem;
}
.v-article__meta strong { color: var(--v-gold); font-weight: 600; }
.v-article__title {
  font-family: var(--v-font-serif);
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--v-navy);
  margin: 0 0 0.85rem;
  font-weight: 500;
}
.v-article__excerpt { font-size: 0.95rem; color: var(--v-text-muted); margin-bottom: 1.25rem; flex: 1; }
.v-article__cta {
  font-family: var(--v-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.v-article__cta:hover { color: var(--v-gold-dark); }

/* ---------- Forms ---------- */
.v-form { display: grid; gap: 20px; }
.v-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.v-form__row--single { grid-template-columns: 1fr; }
@media (max-width: 640px) { .v-form__row { grid-template-columns: 1fr; } }

.v-field { display: flex; flex-direction: column; gap: 8px; }
.v-field label {
  font-family: var(--v-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--v-navy);
}
.v-field label .req { color: var(--v-gold); margin-left: 2px; }
.v-field input,
.v-field select,
.v-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--v-text);
  padding: 14px 16px;
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  background: var(--v-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.v-field input:focus,
.v-field select:focus,
.v-field textarea:focus {
  outline: none;
  border-color: var(--v-gold);
  box-shadow: 0 0 0 3px rgba(182,154,95,0.15);
}
.v-field input.is-error,
.v-field select.is-error,
.v-field textarea.is-error {
  border-color: #DC2626;
  background: #FEF2F2;
}
.v-field textarea { resize: vertical; min-height: 140px; }

.v-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--v-text-muted);
}
.v-checkbox input { margin-top: 4px; }

.v-form-note {
  font-size: 0.85rem;
  color: var(--v-text-muted);
  padding: 16px 20px;
  background: var(--v-cream-light);
  border-left: 3px solid var(--v-gold);
  border-radius: var(--v-radius);
}

/* ---------- Simulator (Investisseurs) ---------- */
.v-sim__brand-title {
  font-family: var(--v-font-sans);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v-gold);
  margin: 0;
}
.v-sim input[readonly] {
  background: var(--v-cream);
  color: var(--v-navy);
  font-weight: 600;
  cursor: default;
}
.v-sim {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  overflow: hidden;
  box-shadow: var(--v-shadow-md);
}
.v-sim__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--v-cream-light);
  border-bottom: 1px solid var(--v-border);
}
.v-sim__step {
  padding: 18px 20px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v-text-muted);
  border-right: 1px solid var(--v-border);
  position: relative;
}
.v-sim__step:last-child { border-right: 0; }
.v-sim__step.is-active { background: var(--v-white); color: var(--v-navy); }
.v-sim__step.is-active::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--v-gold);
}
.v-sim__step span {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--v-border);
  color: var(--v-white);
  font-family: var(--v-font-sans);
  font-size: 0.75rem;
  line-height: 22px;
  margin-right: 8px;
}
.v-sim__step.is-active span { background: var(--v-gold); }
.v-sim__panel { padding: 40px 36px; display: none; }
.v-sim__panel.is-active { display: block; }
.v-sim__panel-header h3 { margin-bottom: 0.4rem; }
.v-sim__panel-header p { color: var(--v-text-muted); margin-bottom: 1.5rem; }

.v-sim__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 1rem;
}
.v-sim__result {
  background: var(--v-cream-light);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  padding: 28px;
}
.v-sim__result h4 {
  font-family: var(--v-font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v-gold);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--v-border);
}
.v-sim__result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--v-border-soft);
  font-size: 0.95rem;
}
.v-sim__result-row:last-child { border: 0; padding-bottom: 0; }
.v-sim__result-row span:first-child { color: var(--v-text-muted); }
.v-sim__result-row strong { color: var(--v-navy); font-family: var(--v-font-serif); font-size: 1.15rem; font-weight: 600; }

.v-sim__panel-actions { margin-top: 2rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .v-sim__panel { padding: 28px 24px; }
  .v-sim__results { grid-template-columns: 1fr; }
}

/* ---------- Coordinates block (Contact) ---------- */
.v-coords {
  background: var(--v-cream-light);
  border-radius: var(--v-radius-md);
  padding: 36px 32px;
}
.v-coords h3 { margin-bottom: 1.5rem; }
.v-coord {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--v-border-soft);
}
.v-coord:last-child { border-bottom: 0; padding-bottom: 0; }
.v-coord__icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--v-gold);
  color: var(--v-white);
  display: flex; align-items: center; justify-content: center;
}
.v-coord__icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.v-coord__content { font-size: 0.95rem; color: var(--v-text); line-height: 1.55; }
.v-coord__content small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v-text-muted);
  margin-bottom: 4px;
}

/* ---------- Note circle (Approche) ---------- */
.v-circle-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--v-cream-light);
  border-radius: var(--v-radius-md);
  padding: 32px 36px;
}
.v-section--navy .v-circle-cta {
  background: transparent;
  padding: 0;
}
.v-circle-cta__circle {
  flex: 0 0 64px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--v-gold);
  color: var(--v-white);
  display: flex; align-items: center; justify-content: center;
}
.v-circle-cta__circle svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.v-circle-cta h3 { margin-bottom: 0.4rem; }
.v-circle-cta p { color: var(--v-text-muted); margin: 0; }

/* ---------- Newsletter strip ---------- */
.v-newsletter {
  background: var(--v-navy);
  color: var(--v-white);
  text-align: center;
  padding: 64px 24px;
}
.v-newsletter h2 { margin-bottom: 0.6rem; color: var(--v-white); }
.v-newsletter p { color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; }
.v-newsletter input[type="email"] {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--v-white);
}
.v-newsletter input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

/* ---------- List with bullets (gold) ---------- */
.v-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--v-text);
  border-bottom: 1px solid var(--v-border-soft);
}
.v-list li:last-child { border-bottom: 0; }
.v-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 1px;
  background: var(--v-gold);
}
.v-list--check li::before {
  content: "✓";
  width: auto; height: auto;
  background: transparent;
  color: var(--v-gold);
  font-weight: 700;
  top: 8px;
  font-size: 1rem;
}

/* ---------- Hero CTA cards (Accueil entreprises/investisseurs) ---------- */
.v-feature-card {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--v-shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.v-feature-card:hover {
  box-shadow: var(--v-shadow-md);
  transform: translateY(-2px);
  border-color: rgba(18, 56, 64, 0.22);
}
.v-feature-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v-gold);
  margin-bottom: 1rem;
}
.v-feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--v-cream);
  border: 1px solid var(--v-gold);
  color: var(--v-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.v-feature-card__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.v-feature-card h3 { margin-bottom: 0.85rem; }
.v-feature-card p { color: var(--v-text-muted); margin-bottom: 1.5rem; flex: 1; }

/* ---------- Footer (condensé, motif 103ec 2026-05-13) ---------- */
.v-footer {
  background: var(--v-navy);
  color: rgba(255,255,255,0.85);
  padding: 28px 0;
}
.v-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.v-footer__brand-mini {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 320px;
  min-width: 0;
}
.v-footer__brand-mini .v-footer__brand-mark {
  display: block;
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.v-footer__brand-mini p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
  max-width: 360px;
}
.v-footer__legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.v-footer__links {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.v-footer__links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.v-footer__links a:hover { color: var(--v-white); }
.v-footer__social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.v-footer__social a:hover { background: var(--v-gold); border-color: var(--v-gold); color: var(--v-white); }
.v-footer__social svg { width: 14px; height: 14px; fill: currentColor; }

.v-footer__regulatory {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.v-footer__regulatory p {
  margin: 0 0 4px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}
.v-footer__regulatory p:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .v-footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .v-footer__legal { white-space: normal; }
  .v-footer__regulatory p { font-size: 0.7rem; }
}

/* ---------- Coming soon (motif 103ei 2026-05-14) ---------- */
.v-coming-soon {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 0;
}
.v-coming-soon__icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--v-cream);
  border: 1px solid var(--v-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--v-gold);
}
.v-coming-soon__icon svg { width: 32px; height: 32px; }
.v-coming-soon h2 { color: var(--v-navy); margin-bottom: 0.4rem; }
.v-coming-soon p { color: var(--v-text-muted); max-width: 460px; margin: 1rem auto 0; }

/* ---------- Article page ---------- */
.v-article-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--v-text);
}
.v-article-body h2 {
  font-family: var(--v-font-serif);
  font-size: 1.65rem;
  color: var(--v-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--v-border);
}
.v-article-body h3 {
  font-family: var(--v-font-serif);
  font-size: 1.25rem;
  color: var(--v-navy);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.v-article-body p { margin: 0 0 1.1rem; }
.v-article-body ul, .v-article-body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}
.v-article-body li { margin-bottom: 0.5rem; }
.v-article-body strong { color: var(--v-navy); font-weight: 600; }
.v-article-body a {
  color: var(--v-gold);
  text-decoration: underline;
  text-decoration-color: var(--v-border);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.v-article-body a:hover { text-decoration-color: var(--v-gold); }
.v-article-body blockquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--v-cream-light);
  border-left: 4px solid var(--v-gold);
  font-style: italic;
  color: var(--v-navy);
}
.v-article-body .v-article-callout {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--v-cream-light);
  border-left: 4px solid var(--v-gold);
  border-radius: 4px;
}
.v-article-body .v-article-callout h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v-gold);
  margin: 0 0 0.5rem;
}
.v-article-body .v-article-callout p:last-child { margin-bottom: 0; }
.v-article-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--v-text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--v-border);
}
.v-article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 2.25rem;
  background: var(--v-navy);
  color: var(--v-white);
  border-radius: var(--v-radius-md);
}
.v-article-cta h3 {
  color: var(--v-white);
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}
.v-article-cta p { color: rgba(255,255,255,0.85); margin: 0; }
.v-article-cta .v-btn { flex-shrink: 0; }
@media (max-width: 700px) {
  .v-article-cta { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
}

/* ---------- Legal pages ---------- */
.v-legal h2 {
  font-size: 1.35rem;
  color: var(--v-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--v-border);
}
.v-legal h2:first-of-type { margin-top: 0; }
.v-legal p, .v-legal ul { color: var(--v-text); }
.v-legal ul { padding-left: 1.5rem; }

/* ---------- Utilities ---------- */
.v-text-center { text-align: center; }
.v-mt-0 { margin-top: 0; }
.v-mb-0 { margin-bottom: 0; }
.v-mb-md { margin-bottom: 1.5rem; }
.v-mb-lg { margin-bottom: 2.5rem; }

/* ---------- Form feedback (contact submission) ---------- */
.v-form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.45;
}
.v-form-feedback.is-success {
  background: #e8f5ee;
  color: #1b6b3a;
  border: 1px solid #b9e0c8;
}
.v-form-feedback.is-error {
  background: #fdecec;
  color: #a31a1a;
  border: 1px solid #f3c5c5;
}
