/* ✦ Claire IA — Identité V3 (vitrine uniquement). Chargé APRÈS claire.css, sur index.html seulement.
   Ne pas réutiliser sur les pages app/dashboard/login/reglages/carte. */

:root {
  --v3-creme: #f5f0e8;
  --v3-charbon: #1a1a1a;
  --v3-or: #c9a84c;
  --v3-or-clair: #ddc079;
  --v3-blanc: #ffffff;
  --v3-gris: #6f6a62;
  --v3-gris-clair: #b9b2a6;
  --v3-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --v3-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --v3-max: 1080px;
}

/* Base vitrine */
body.v3 {
  font-family: var(--v3-body);
  background: var(--v3-creme);
  color: var(--v3-charbon);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Logo image (carré crème fourni — se fond sur les fonds crème) */
.v3-logo-lien { display: inline-flex; align-items: center; text-decoration: none; }
.v3-logo-img { display: block; height: auto; }
.v3-logo-img-entete { height: 54px; width: auto; }
.v3-logo-img-hero { width: clamp(280px, 42vw, 420px); margin: 0 auto; opacity: 0; animation: v3-fade-in 0.8s ease forwards; }
.v3-logo-hero-lien { display: inline-block; cursor: pointer; transition: transform 0.18s ease; }
.v3-logo-hero-lien:hover { transform: scale(1.03); }
.v3-logo-img-footer { width: 120px; margin: 0 auto; }

/* Ondulation vocale — l'onde PART DU DOT central (la source), puis les 3 demi-cercles
   se propagent en cascade de l'intérieur (petit) vers l'extérieur (grand), comme un son émis.
   Les arcs du PNG sont effacés (logo-claire-noarcs.png) et redessinés en SVG pour être animés. */
.v3-logo-onde { position: relative; display: inline-block; line-height: 0; }
.v3-logo-arcs { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.v3-logo-arcs .v3-dot, .v3-logo-arcs .v3-arc {
  transform-box: view-box; transform-origin: 331px 321px;
}
.v3-arc {
  fill: none; stroke: #262625; stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  animation: v3-ripple 2.4s ease-out infinite;
}
/* Épaisseurs dégressives : 1er trait épais, 2e plus fin, 3e encore plus fin.
   Décalage d'un tiers de cycle → une onde se propage en permanence (zéro temps mort). */
.v3-arc-1 { stroke-width: 2.4px; animation-delay: 0s; }     /* petit (intérieur), le plus épais */
.v3-arc-2 { stroke-width: 1.7px; animation-delay: 0.8s; }   /* moyen, plus fin */
.v3-arc-3 { stroke-width: 1.1px; animation-delay: 1.6s; }   /* grand (extérieur), le plus fin */
.v3-dot { display: none; } /* le rond central reste fixe (c'est celui du PNG, immobile) */
.v3-logo-onde-entete .v3-arc-1 { stroke-width: 1.5px; }
.v3-logo-onde-entete .v3-arc-2 { stroke-width: 1.1px; }
.v3-logo-onde-entete .v3-arc-3 { stroke-width: 0.8px; }

/* Mode « à l'écoute » : le JS pilote dot + arcs selon le volume de la voix (on coupe l'auto) */
.v3-ecoute .v3-arc, .v3-ecoute .v3-dot { animation: none !important; }

/* Bouton micro — fait réagir le logo à la voix du visiteur */
.v3-mic-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.v3-mic {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0; padding: 9px 18px;
  font: inherit; font-size: 0.9rem; font-weight: 600; color: var(--v3-charbon);
  background: transparent; border: 1.5px solid rgba(26, 26, 26, 0.25); border-radius: 999px;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.v3-mic:hover { border-color: var(--v3-or); color: var(--v3-or); }
.v3-mic.on { border-color: var(--v3-or); background: var(--v3-or); color: var(--v3-charbon); }
.v3-mic.on { animation: v3-mic-glow 1.6s ease-in-out infinite; }
@keyframes v3-mic-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); } 50% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); } }

@keyframes v3-dot-pulse {
  0%        { opacity: 0; transform: scale(1); }
  7%        { opacity: 0.85; transform: scale(1.22); }
  20%, 100% { opacity: 0; transform: scale(1); }
}
@keyframes v3-ripple {
  0%   { opacity: 0; transform: scale(0.78); }
  12%  { opacity: 1; }
  100% { opacity: 0; transform: scale(1.18); }
}

@media (prefers-reduced-motion: reduce) {
  .v3-arc { animation: none !important; opacity: 1 !important; transform: none !important; }
  .v3-dot { animation: none !important; opacity: 0 !important; }
}
body.v3 .contenu { max-width: var(--v3-max); margin: 0 auto; padding: 0 24px; }

/* Logo CLAIRE (micro/étoile + mot espacé) */
.v3-logo, .v3-logo-grand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.v3-logo-star { color: var(--v3-or); font-size: 0.9em; line-height: 1; }
.v3-logo-mot {
  font-family: var(--v3-display);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--v3-charbon);
}
.v3-logo .v3-logo-mot { font-size: 1.35rem; }

/* En-tête V3 (surcharge .entete de claire.css) */
.v3-entete {
  position: relative;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.v3-entete .contenu { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.v3-nav { display: flex; align-items: center; }
.v3-nav a {
  color: var(--v3-charbon); font-weight: 500; font-size: 0.95rem;
  margin-left: 26px; text-decoration: none; transition: color 0.15s ease;
}
.v3-nav a:hover { color: var(--v3-or); }
.v3-entete-actions { display: flex; align-items: center; gap: 12px; }

/* Menu hamburger (visible uniquement en mobile, voir media query) */
.v3-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; padding: 8px; background: none; border: none; cursor: pointer; }
.v3-burger span { display: block; width: 100%; height: 2px; background: var(--v3-charbon); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.v3-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v3-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.v3-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.v3 .langue-select {
  background: transparent; border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 6px; padding: 3px 5px; font: inherit; font-size: 0.72rem;
  color: var(--v3-gris); cursor: pointer;
}
body.v3 .langue-select:hover { color: var(--v3-charbon); border-color: rgba(26, 26, 26, 0.3); }

/* Boutons V3 */
body.v3 .btn { border-radius: 999px; font-weight: 600; font-family: var(--v3-body); white-space: nowrap; transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease; }
.v3-btn-sombre { background: var(--v3-charbon); border: 2px solid var(--v3-charbon); color: var(--v3-blanc); }
.v3-btn-sombre:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26, 26, 26, 0.22); color: var(--v3-blanc); }
.v3-btn-or { background: var(--v3-or); border: 2px solid var(--v3-or); color: var(--v3-charbon); }
.v3-btn-or:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4); }
.v3-lien-fleche { display: inline-block; color: var(--v3-charbon); font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: color 0.15s ease; }
.v3-lien-fleche:hover { color: var(--v3-or); }
.v3-lien-clair { color: var(--v3-blanc); }
.v3-lien-clair:hover { color: var(--v3-or-clair); }

/* Titres de section */
.v3-h2 {
  font-family: var(--v3-display); font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.12; letter-spacing: -0.01em;
  text-align: center; color: var(--v3-charbon); margin: 0 auto 18px; max-width: 18ch;
}
.v3-h2-clair { color: var(--v3-blanc); }
.v3-intro { text-align: center; color: var(--v3-gris); max-width: 640px; margin: 0 auto 48px; font-size: 1.08rem; }
.v3-mention { text-align: center; font-style: italic; color: var(--v3-gris); max-width: 700px; margin: 44px auto 0; font-size: 1.05rem; }
.v3-mention-clair { color: var(--v3-gris-clair); }

/* Fonds de sections */
.v3-creme { background: var(--v3-creme); padding: 92px 0; }
.v3-blanc { background: var(--v3-blanc); padding: 92px 0; }
.v3-sombre { background: var(--v3-charbon); color: var(--v3-blanc); padding: 92px 0; }

/* SECTION 1 — HERO */
.v3-hero { background: var(--v3-creme); text-align: center; padding: 104px 0 88px; }
.v3-logo-grand { justify-content: center; gap: 16px; opacity: 0; animation: v3-fade-in 0.8s ease forwards; }
.v3-logo-grand .v3-logo-mot { font-size: clamp(2.4rem, 7vw, 4rem); letter-spacing: 0.3em; }
.v3-logo-grand .v3-logo-star { font-size: clamp(1.6rem, 5vw, 2.6rem); }
.v3-baseline { font-family: var(--v3-display); font-style: italic; font-size: 1.25rem; color: var(--v3-or); margin: 14px 0 0; }
.v3-hero-titre {
  font-family: var(--v3-display); font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1.05; letter-spacing: -0.015em;
  color: var(--v3-charbon); margin: 36px auto 0; max-width: 16ch;
}
.v3-hero-sous { font-size: 1.2rem; color: var(--v3-gris); max-width: 620px; margin: 24px auto 0; }
.v3-hero-cta { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 38px; }

/* SECTION 2 — BULLES DE DÉMONSTRATION */
.v3-bulles { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin: 0 auto; }
.v3-bulle {
  background: #232323; border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px; padding: 22px 24px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.v3-bulle.v3-vu { opacity: 1; transform: none; }
.v3-bulle p { margin: 0; }
.v3-bulle-q { color: var(--v3-or-clair); font-weight: 600; }
.v3-bulle-a { color: var(--v3-blanc); margin-top: 8px !important; }
.v3-bulle-a b { color: var(--v3-or); }
.v3-bulle-ecran { color: var(--v3-gris-clair); font-size: 0.92rem; font-style: italic; margin-top: 10px !important; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.v3-ic { font-style: normal; }

/* SECTION 3 — CARTES SAVOIR-FAIRE */
.v3-grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.v3-carte {
  background: var(--v3-blanc); border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 16px; padding: 30px; box-shadow: 0 8px 30px rgba(26, 26, 26, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.v3-carte:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1); }
.v3-emoji { font-size: 1.9rem; }
.v3-carte h3 { font-family: var(--v3-display); font-weight: 700; font-size: 1.4rem; margin: 12px 0 8px; color: var(--v3-charbon); }
.v3-carte p { color: var(--v3-gris); font-size: 0.97rem; }
.v3-locale-chips { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(26, 26, 26, 0.08); font-size: 0.88rem; color: var(--v3-or); font-weight: 600; letter-spacing: 0.01em; }
.v3-locale-chips[hidden] { display: none; }

/* SECTION 4 — DEUX MODES */
.v3-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 920px; margin: 0 auto; }
.v3-mode { background: var(--v3-creme); border: 1px solid rgba(26, 26, 26, 0.08); border-radius: 18px; padding: 34px; }
.v3-mode-titre { font-family: var(--v3-display); font-weight: 700; font-size: 1.5rem; margin: 0 0 18px; color: var(--v3-charbon); }
.v3-liste { list-style: none; margin: 0; padding: 0; }
.v3-liste li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--v3-gris); }
.v3-liste li::before { content: "✦"; position: absolute; left: 0; color: var(--v3-or); font-size: 0.85em; top: 2px; }

/* SECTION 5 — CONNECTEURS */
.v3-connecteurs { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; max-width: 920px; margin: 0 auto; }
.v3-conn {
  display: flex; align-items: center; gap: 12px;
  background: var(--v3-blanc); border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px; padding: 16px 18px; font-size: 0.95rem; color: var(--v3-charbon);
  opacity: 0.45; transition: opacity 0.45s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.v3-conn.v3-on { opacity: 1; }
.v3-conn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(26, 26, 26, 0.08); }
.v3-conn-ic { font-size: 1.4rem; }

/* SECTION 6 — ONBOARDING TIMELINE */
.v3-timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 720px; }
.v3-etape { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.v3-etape:last-child { border-bottom: none; }
.v3-etape-num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 999px;
  border: 2px solid var(--v3-or); color: var(--v3-or);
  font-family: var(--v3-display); font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.v3-etape h3 { font-family: var(--v3-display); font-weight: 600; font-size: 1.4rem; margin: 4px 0 6px; color: var(--v3-blanc); }
.v3-etape p { margin: 0; color: var(--v3-gris-clair); }

/* SECTION 7 — GUARDIAN */
.v3-moments { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin: 0 auto; }
.v3-moment { display: flex; gap: 16px; align-items: flex-start; background: var(--v3-creme); border-radius: 14px; padding: 22px 24px; }
.v3-pastille { flex: 0 0 auto; width: 14px; height: 14px; border-radius: 999px; margin-top: 6px; }
.v3-vert { background: #2f9e44; }
.v3-jaune { background: #e6a817; }
.v3-rouge { background: #d6453d; }
.v3-moment b { display: block; font-family: var(--v3-display); font-size: 1.25rem; color: var(--v3-charbon); margin-bottom: 4px; }
.v3-moment p { margin: 0; color: var(--v3-gris); font-style: italic; }
.v3-phrase-finale { text-align: center; font-family: var(--v3-display); font-weight: 600; font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: var(--v3-or); margin: 48px auto 0; }

/* SECTION 8 — TARIFS */
.v3-tarifs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 820px; margin: 0 auto; }
.v3-tarif { background: var(--v3-blanc); border: 1px solid rgba(26, 26, 26, 0.1); border-radius: 16px; padding: 32px 24px; text-align: center; }
.v3-phare { border: 2px solid var(--v3-or); position: relative; box-shadow: 0 14px 36px rgba(201, 168, 76, 0.18); }
.v3-phare::before { content: "★"; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 32px; height: 32px; line-height: 30px; background: var(--v3-or); color: var(--v3-blanc); border-radius: 999px; font-size: 0.9rem; }
.v3-tarif-nom { font-family: var(--v3-display); font-weight: 700; font-size: 1.5rem; color: var(--v3-charbon); }
.v3-tarif-prix { font-size: 2.4rem; font-weight: 700; color: var(--v3-charbon); margin: 10px 0; font-family: var(--v3-display); }
.v3-tarif-prix small { font-size: 0.9rem; font-weight: 400; color: var(--v3-gris); font-family: var(--v3-body); }
.v3-tarif-cible { color: var(--v3-gris); font-size: 0.95rem; }
.v3-essai { text-align: center; margin: 40px auto 0; font-weight: 500; color: var(--v3-charbon); }

/* SECTION 9 — FAQ */
.v3-faq-contenu { max-width: 760px; }
.v3-faq { margin-top: 12px; }
.v3-faq-item { border-bottom: 1px solid rgba(26, 26, 26, 0.1); padding: 4px 0; }
.v3-faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 4px; font-weight: 600; font-size: 1.08rem;
  color: var(--v3-charbon); display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.v3-faq-item summary::-webkit-details-marker { display: none; }
.v3-faq-item summary::after { content: "+"; color: var(--v3-or); font-size: 1.5rem; font-weight: 400; transition: transform 0.2s ease; }
.v3-faq-item[open] summary::after { transform: rotate(45deg); }
.v3-faq-item p { margin: 0 4px 20px; color: var(--v3-gris); }

/* SECTION 10 — CTA FINAL */
.v3-cta-final { text-align: center; }
.v3-cta-titre { font-family: var(--v3-display); font-weight: 600; font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.1; color: var(--v3-blanc); max-width: 18ch; margin: 0 auto 18px; }
.v3-cta-sous { font-family: var(--v3-display); font-style: italic; font-size: 1.3rem; color: var(--v3-or); margin: 0 0 36px; }
.v3-cta-final .v3-btn-or { animation: v3-pulse 2.6s ease-in-out infinite; }
.v3-cta-final .v3-lien-fleche { display: block; margin-top: 22px; }

/* FOOTER */
.v3-metiers-seo { background: var(--v3-blanc); padding: 30px 0; text-align: center; border-top: 1px solid rgba(26, 26, 26, 0.06); }
.v3-metiers-seo .contenu { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; justify-content: center; }
.v3-metiers-seo-titre { color: var(--v3-charbon); font-weight: 600; font-size: 0.95rem; }
.v3-metiers-seo a { color: var(--v3-gris); text-decoration: none; font-size: 0.92rem; padding: 4px 2px; }
.v3-metiers-seo a:hover { color: var(--v3-or); }
.v3-footer { background: var(--v3-creme); padding: 56px 0; text-align: center; border-top: 1px solid rgba(26, 26, 26, 0.08); }
.v3-footer .v3-logo { justify-content: center; }
.v3-footer-tag { font-family: var(--v3-display); font-style: italic; color: var(--v3-or); margin: 10px 0 0; }
.v3-footer-liens { margin: 16px 0 0; color: var(--v3-gris); font-size: 0.9rem; }
.v3-footer-liens a { color: var(--v3-gris); text-decoration: none; }
.v3-footer-liens a:hover { color: var(--v3-or); }
.v3-footer-copy { color: var(--v3-gris-clair); font-size: 0.85rem; margin: 14px 0 0; }

/* Animations */
@keyframes v3-fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes v3-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.45); } 50% { box-shadow: 0 0 0 14px rgba(201, 168, 76, 0); } }

@media (prefers-reduced-motion: reduce) {
  .v3-logo-grand, .v3-bulle, .v3-conn, .v3-cta-final .v3-btn-or { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Responsive */
@media (max-width: 980px) {
  .v3-burger { display: flex; }
  /* La nav devient un panneau déroulant sous l'en-tête, ouvert par le hamburger. */
  .v3-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(245, 240, 232, 0.98); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 14px 30px rgba(26, 26, 26, 0.1);
    padding: 6px 24px 14px;
  }
  .v3-nav.v3-open { display: flex; }
  .v3-nav a { margin-left: 0; padding: 13px 2px; border-bottom: 1px solid rgba(26, 26, 26, 0.07); font-size: 1.02rem; }
  .v3-nav a:last-child { border-bottom: none; }
}
@media (max-width: 860px) {
  .v3-modes { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .v3-entete .contenu { height: 64px; }
  .v3-logo-img-entete { height: 46px; }
  .v3-entete-actions .v3-btn-sombre { display: none; } /* le hero porte déjà le CTA */
  .v3-creme, .v3-blanc, .v3-sombre { padding: 64px 0; }
  .v3-hero { padding: 72px 0 56px; }
  .v3-hero-cta { gap: 16px; }
}

/* ════════════ THÈME CHARBON DORÉ — override sombre de toute la vitrine ════════════ */
body.v3 { background: #14110b; color: #e8dcc8; }

.v3-creme { background: #15110b; }
.v3-blanc { background: #100d08; }
.v3-sombre { background: #0d0b07; }
.v3-hero { background: #14110b; }

/* Titre principal du hero (H1) — clair sur le hero sombre, pour le SEO + la hiérarchie. */
.v3-h1 {
  font-family: var(--v3-display); font-weight: 600;
  font-size: clamp(2.2rem, 6.5vw, 4rem); line-height: 1.04; letter-spacing: -0.015em;
  color: #f4ecdd; margin: 28px auto 0; max-width: 16ch;
  text-wrap: balance; /* équilibre les lignes (évite « Claire » orphelin) — ignoré par vieux navigateurs */
}
.v3-h2 { color: #f4ecdd; text-wrap: balance; }
.v3-intro, .v3-mention { color: #cfc2a4; }

/* Bandeau de réassurance sous le hero (sans CB · essai · résiliation) */
.v3-hero-reassure {
  text-align: center; margin: 18px auto 0; color: #cfc2a4;
  font-size: 0.92rem; letter-spacing: 0.02em; font-weight: 500;
}

.v3-entete { background: rgba(20, 17, 11, 0.6); border-bottom: 1px solid rgba(230, 189, 120, 0.1); }
.v3-nav a { color: #e8dcc8; }
.v3-burger span { background: #e8dcc8; }
body.v3 .langue-select { background: #1a160e; border-color: rgba(230, 189, 120, 0.3); color: #f4ecdd; }
body.v3 .langue-select option { background: #1a160e; color: #f4ecdd; }
body.v3 .langue-select:hover { color: #fff; border-color: rgba(230, 189, 120, 0.5); }

.v3-carte, .v3-mode, .v3-conn, .v3-tarif, .v3-moment {
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(251, 243, 228, 0.95));
  border: 1px solid rgba(214, 158, 70, 0.34);
  box-shadow: 0 24px 54px -22px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.v3-carte:hover { box-shadow: 0 30px 64px -24px rgba(0, 0, 0, 0.7); }
.v3-conn:hover { box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.6); }
.v3-tarif.v3-phare { border: 2px solid var(--v3-or); }

.v3-faq-item { border-bottom: 1px solid rgba(230, 189, 120, 0.14); }
.v3-faq-item summary { color: #f4ecdd; }
.v3-faq-item p { color: #cfc2a4; }
.v3-essai { color: #e8dcc8; }

.v3-bulle { background: #20190f; border: 1px solid rgba(230, 189, 120, 0.14); }

.v3-logo-img-hero { filter: invert(1) hue-rotate(180deg); }
.v3-arc { stroke: var(--v3-or); }

.v3-footer { background: #100d08; border-top: 1px solid rgba(230, 189, 120, 0.1); }
.v3-footer-liens, .v3-footer-liens a { color: #cfc2a4; }
.v3-footer-liens a:hover { color: var(--v3-or); }
.v3-footer-copy { color: #8c7d6a; }
.v3-logo-img-footer { filter: invert(1) hue-rotate(180deg); opacity: 0.9; }

/* Icônes line dorées (Tabler) en remplacement des emojis */
.v3-emoji .ti { font-size: 30px; color: var(--v3-or); line-height: 1; }
.v3-conn-ic { font-size: 0; }
.v3-conn-ic .ti { font-size: 22px; color: var(--v3-or); line-height: 1; }
.v3-ic .ti { font-size: 17px; color: var(--v3-or); vertical-align: -2px; }
/* Logo Claire (onde sonore) inline — remplace les micros */
.v3-ic .v3-mark { width: 19px; height: 19px; color: var(--v3-or); vertical-align: -4px; display: inline-block; }

/* ✦ CTA nav — bouton doré dans la barre de navigation */
.v3-nav-cta {
  display: inline-block;
  margin-left: 14px !important;
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6bd78, #c8862a);
  color: #1a1206 !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  border: none;
}
.v3-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(200, 134, 42, 0.45); color: #1a1206 !important; }

/* ✦ CTAs hero — deux boutons sous le H1 */
.v3-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.v3-btn-primary {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6bd78, #c8862a);
  color: #1a1206;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 14px 36px -10px rgba(200, 134, 42, 0.6);
  animation: v3-pulse 2.6s ease-in-out infinite;
}
.v3-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(200, 134, 42, 0.8); }
.v3-btn-ghost {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(230, 189, 120, 0.5);
  color: #e8dcc8;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.v3-btn-ghost:hover { border-color: #e6bd78; color: #e6bd78; }

@media (max-width: 980px) {
  .v3-nav { background: rgba(18, 15, 10, 0.97); border-bottom: 1px solid rgba(230, 189, 120, 0.12); }
  .v3-nav a { border-bottom: 1px solid rgba(230, 189, 120, 0.1); }
  .v3-nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .v3-hero-ctas { flex-direction: column; align-items: stretch; padding: 0 24px; }
  .v3-btn-primary, .v3-btn-ghost { text-align: center; }
}

/* Badge facturation électronique */
.v3-efacture-badge {
  display: flex; align-items: center; gap: 14px;
  margin: 36px auto 0; padding: 14px 20px;
  max-width: 680px;
  background: rgba(0, 49, 137, 0.08);
  border: 1.5px solid rgba(0, 49, 137, 0.22);
  border-radius: 10px;
}
.v3-efacture-logo { flex-shrink: 0; }
.v3-efacture-texte { flex: 1; font-size: 0.85rem; line-height: 1.4; color: #fff; }
.v3-efacture-texte strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }
.v3-efacture-texte span { opacity: 0.7; }
.v3-efacture-check .ti { font-size: 26px; color: #3ddc84; flex-shrink: 0; }
