/* Ecran de devis conversationnel — porte du design_handoff_chatbot_devis (22/09).
   S'appuie sur les tokens/composants de nocturne-styles.css (charge avant ce
   fichier) : .btn/.btn-primary/.btn-secondary/.btn-ghost/.btn-block, .tag,
   .field, .input, .card-kicker. Ne pas coder de hex qu'un token porte deja. */

@keyframes ct-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes ct-pulse { 0%, 100% { opacity: .3; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes ct-dash { to { stroke-dashoffset: -240; } }
@keyframes ct-blink { 0%, 80%, 100% { opacity: .22; } 40% { opacity: 1; } }
@keyframes ct-drift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 14px); } }

@media (prefers-reduced-motion: reduce) {
  .ct-halo, .ct-rise, .ct-dot, .ct-dash, .ct-pulse-dot { animation: none !important; }
}

body.ct-body { margin: 0; background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); }

/* — 23/09 (urgent, remonte par JT : "sur mon smartphone je ne peux pas
   scroller") : .ct-root etait bloque en `height:100vh; overflow:hidden`, cense
   se scroller via les paneaux internes (.ct-welcome/.ct-messages en
   overflow-y:auto). Sur mobile le vh dynamique (barre d'adresse) + le scroll
   tactile imbrique dans un flex a min-height:0 piege le geste : rien ne bouge,
   page entiere y compris le footer et l'article SEO devenus inaccessibles.
   ⇒ min-height (le bloc peut grandir) et overflow normal : la page redevient
   un scroll de document classique, robuste partout. Le "app shell fige" est
   abandonne au profit de la fiabilite mobile — ne pas le remettre sans
   re-tester au doigt sur un vrai telephone, pas seulement au redimensionnement
   navigateur desktop. */
.ct-root {
  min-height: 100vh; display: flex; flex-direction: column; position: relative;
  background: radial-gradient(120% 80% at 18% -10%, #1d1f33 0%, #161826 55%, transparent 100%);
}
#ct-app {
  flex: 1; min-height: 0; display: flex; flex-direction: column;
  position: relative; z-index: 2;
}
.ct-halo {
  position: absolute; top: -220px; left: -120px; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(145,132,217,.22) 0%, rgba(145,132,217,0) 68%);
  filter: blur(12px); pointer-events: none; animation: ct-drift 18s ease-in-out infinite;
}
.ct-rise { animation: ct-rise .5s ease both; }

/* — header / footer — */
.ct-header {
  position: relative; z-index: 2; flex: none; display: flex; align-items: center; gap: 16px;
  padding: 18px 28px; max-width: 1180px; width: 100%; margin: 0 auto; box-sizing: border-box;
}
.ct-brand { display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none; color: inherit; }
.ct-brand-orb {
  width: 26px; height: 26px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 18px rgba(145,132,217,.35);
}
.ct-brand-orb span { width: 9px; height: 9px; border-radius: 50%; background: var(--color-accent); display: block; }
.ct-brand-name { font-family: var(--font-heading); font-weight: 500; font-size: 15px; letter-spacing: .22em; text-transform: uppercase; }
.ct-nav { display: flex; gap: 16px; align-items: center; margin-right: 22px; }
.ct-nav a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; color: color-mix(in srgb, var(--color-text) 78%, transparent); text-decoration: none; }
.ct-nav a:hover { color: var(--color-accent-300); background: color-mix(in srgb, var(--color-accent) 12%, transparent); }
.ct-nav-ico { width: 19px; height: 19px; }

/* — selecteur de langue : drapeau + menu deroulant (demande JT 23/09) — */
.ct-lang-select { position: relative; }
.ct-lang-current {
  display: flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 999px;
  border: 1px solid var(--color-divider); background: transparent; cursor: pointer; font: inherit;
}
.ct-lang-current:hover { border-color: var(--color-accent-700); }
.ct-flag { display: inline-flex; align-items: center; line-height: 1; }
.ct-flag svg { border-radius: 2px; display: block; }
.ct-lang-caret { font-size: 9px; color: color-mix(in srgb, var(--color-text) 55%, transparent); }
.ct-lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 20; list-style: none; margin: 0; padding: 6px;
  min-width: 150px; background: var(--color-surface); border: 1px solid var(--color-divider);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
}
.ct-lang-menu li {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius-sm);
  font-size: 13.5px; cursor: pointer; color: var(--color-text);
}
.ct-lang-menu li:hover, .ct-lang-menu li.active { background: color-mix(in srgb, var(--color-accent) 16%, transparent); color: var(--color-accent-200); }
.ct-langs { display: flex; gap: 6px; align-items: center; }
.ct-lang-btn { font-size: 12px; padding: 5px 10px; border: 1px solid transparent; background: transparent; opacity: .6; }
.ct-lang-btn.active { border-color: var(--color-accent); color: var(--color-accent); opacity: 1; }
.ct-footer {
  position: relative; z-index: 2; flex: none; padding: 32px 28px 22px; max-width: 1180px; width: 100%;
  margin: 0 auto; box-sizing: border-box; font-size: 11.5px;
  color: color-mix(in srgb, var(--color-text) 42%, transparent);
  border-top: 1px solid var(--color-divider);
}
.ct-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 26px; }
.ct-footer-col { display: flex; flex-direction: column; gap: 7px; }
.ct-footer-col a { color: color-mix(in srgb, var(--color-text) 60%, transparent); text-decoration: none; font-size: 12.5px; }
.ct-footer-col a:hover { color: var(--color-accent-300); }
.ct-footer-title { font-size: 10.5px; text-transform: uppercase; letter-spacing: .07em; color: color-mix(in srgb, var(--color-text) 85%, transparent); font-weight: 600; margin-bottom: 2px; }
.ct-footer-nl-text { font-size: 11.5px; line-height: 1.5; margin: 0 0 8px; }
.ct-footer-nl-form { display: flex; gap: 6px; }
.ct-footer-nl-input { flex: 1; min-width: 0; padding: 8px 10px; border: 1px solid var(--color-divider); border-radius: var(--radius-md); background: var(--color-surface); color: var(--color-text); font-size: 12.5px; }
.ct-footer-nl-btn { padding: 8px 14px; font-size: 12.5px; white-space: nowrap; }
.ct-footer-nl-msg { margin-top: 8px; font-size: 12px; color: var(--color-accent-300); }
.ct-footer-bottom { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 700px) { .ct-footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .ct-footer-nl-form { flex-direction: column; } .ct-footer-nl-btn { width: 100%; } }

/* — welcome — */
.ct-welcome {
  position: relative; z-index: 2; flex: 1; min-height: 0; overflow-y: auto;
  width: 100%; box-sizing: border-box;
}
.ct-welcome-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 48px; align-items: center;
  max-width: 1180px; width: 100%; margin: 0 auto; padding: 40px 28px 32px; box-sizing: border-box;
}
.ct-hero-col { max-width: 560px; }
/* JT 23/09 : la chip "Transports chevaux" en violet translucide, pas juste
   un contour — remplissage, pas de bordure additionnelle. */
.ct-kicker.tag-outline {
  margin: 0 0 18px; border-color: transparent;
  background: color-mix(in srgb, var(--color-accent) 20%, transparent);
  color: var(--color-accent-200);
}
.ct-title { display: block; font-family: var(--font-heading); font-weight: 500; letter-spacing: -.015em; font-size: clamp(34px, 5vw, 50px); line-height: 1.06; margin: 0 0 16px; }
.ct-title-accent { color: var(--color-accent-300); }
.ct-hero-sub { font-size: 12px; max-width: 480px; color: color-mix(in srgb, var(--color-text) 72%, transparent); text-wrap: pretty; margin: 0; }
.ct-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 26px 0 22px; }
.ct-cta-btn { font-size: 15px; padding: 13px 22px; }
.ct-cta-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: color-mix(in srgb, var(--color-text) 55%, transparent); }
.ct-pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); animation: ct-pulse 2.4s ease-in-out infinite; }
.ct-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; padding-top: 22px; border-top: 1px solid var(--color-divider); }
.ct-trust-big { font-family: var(--font-heading); font-size: 20px; color: var(--color-accent-300); }
.ct-trust-small { font-size: 12px; color: color-mix(in srgb, var(--color-text) 58%, transparent); }

.ct-home-section { max-width: 1180px; width: 100%; margin: 0 auto; padding: 8px 28px 40px; box-sizing: border-box; }
.ct-home-section-title { font-size: 22px; margin: 6px 0 20px; }
.ct-steps-list-home { max-width: 760px; }
.ct-about-section { max-width: 760px; }
.ct-about-body { font-size: 14.5px; line-height: 1.65; color: color-mix(in srgb, var(--color-text) 75%, transparent); text-wrap: pretty; margin: 0; }

.ct-testi-section { max-width: 1180px; width: 100%; margin: 0 auto; padding: 8px 28px 48px; box-sizing: border-box; }
.ct-testi-title { font-size: 20px; margin: 0 0 18px; }
.ct-testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.ct-testi-card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-md); padding: 16px; }
.ct-testi-card-quote { font-size: 13px; line-height: 1.5; color: color-mix(in srgb, var(--color-text) 88%, transparent); }
.ct-testi-card-by { font-size: 11.5px; margin-top: 10px; color: var(--color-accent-300); }

.ct-demo-col { justify-self: center; width: 100%; max-width: 420px; }
.ct-demo-card { border-radius: var(--radius-lg); background: linear-gradient(180deg, #232532 0%, #1c1e2c 100%); box-shadow: var(--shadow-md); overflow: hidden; }
.ct-demo-card-clickable { cursor: pointer; border: 1px solid transparent; transition: border-color .15s ease, transform .15s ease; }
.ct-demo-card-clickable:hover, .ct-demo-card-clickable:focus-visible { border-color: var(--color-accent-700); transform: translateY(-2px); }
.ct-demo-card-clickable:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.ct-demo-head { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--color-divider); }
.ct-avatar-orb { border-radius: 50%; background: radial-gradient(circle at 32% 28%, #cfc8ff, #796cbf 58%, #2b2741); box-shadow: 0 0 16px rgba(145,132,217,.45); flex: none; }
.ct-demo-head .ct-avatar-orb { width: 30px; height: 30px; }
.ct-demo-name { font-size: 13px; font-family: var(--font-heading); }
.ct-demo-online { font-size: 11px; color: var(--color-accent-300); }

/* — mini-carte "pays desservis" sous le widget demo (demande JT 23/09, la
   vraie carte Europe, pas un simple listing de drapeaux) — */
.ct-pays-teaser { display: block; margin-top: 12px; padding: 14px 14px 16px; border-radius: var(--radius-lg);
  background: var(--color-surface); border: 1px solid var(--color-divider); }
.ct-pays-teaser-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.ct-pays-teaser-title { font-size: 13px; font-weight: 600; color: var(--color-text); }
.ct-pays-teaser-link { font-size: 12px; color: var(--color-accent-300); white-space: nowrap; text-decoration: none; }
.ct-pays-teaser-link:hover { text-decoration: underline; }
.ct-pays-teaser-avg { margin-top: 10px; font-size: 11.5px; line-height: 1.5; color: color-mix(in srgb, var(--color-text) 70%, transparent); }
.ct-pays-teaser-avg b { color: var(--color-accent-300); font-size: 13px; }
.eu-map-wrap-mini { margin: 0; }
.eu-map-wrap-mini .eu-label { display: none; }
.ct-demo-body { padding: 18px 16px; display: flex; flex-direction: column; gap: 12px; }
.ct-demo-dots { display: flex; gap: 5px; align-items: center; padding-left: 2px; }
.ct-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); animation: ct-blink 1.3s infinite; }
.ct-dot:nth-child(2) { animation-delay: .18s; }
.ct-dot:nth-child(3) { animation-delay: .36s; }

/* — chat — */
.ct-chat-main {
  position: relative; z-index: 2; flex: 1; min-height: 0; width: 100%; max-width: 820px;
  margin: 0 auto; padding: 0 20px 24px; display: flex; flex-direction: column; box-sizing: border-box;
}
.ct-progress-row { display: flex; align-items: center; gap: 12px; padding: 6px 2px 14px; flex: none; }
.ct-progress-track { flex: 1; height: 3px; border-radius: 2px; background: var(--color-neutral-900); overflow: hidden; }
.ct-progress-fill { height: 100%; background: linear-gradient(90deg, #5d5294, #b5abfc); transition: width .4s ease; }
.ct-progress-label { font-size: 11px; letter-spacing: .08em; color: color-mix(in srgb, var(--color-text) 50%, transparent); white-space: nowrap; }

.ct-messages { flex: 1; min-height: 0; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; padding: 8px 2px 18px; }
.ct-msg-row { display: flex; gap: 10px; align-items: flex-end; }
.ct-msg-row.bot { justify-content: flex-start; }
.ct-msg-row.user { justify-content: flex-end; }
.ct-avatar-sm { width: 28px; height: 28px; }
.ct-bubble { padding: 12px 15px; font-size: 14.5px; line-height: 1.5; max-width: 78%; text-wrap: pretty; border-radius: 14px 14px 14px 4px; }
.ct-bubble.bot { background: var(--color-surface); color: var(--color-text); border: 1px solid transparent; }
.ct-bubble.user { background: var(--color-accent-900); color: var(--color-accent-100); border: 1px solid var(--color-accent-700); border-radius: 14px 14px 4px 14px; }
.ct-typing-bubble { display: flex; gap: 5px; padding: 12px 14px; border-radius: 14px 14px 14px 4px; background: var(--color-surface); }

.ct-composer { position: sticky; bottom: 0; padding: 14px 0 18px; background: linear-gradient(180deg, rgba(22,24,38,0) 0%, #161826 26%); flex: none; }
.ct-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.ct-chip { padding: 10px 16px; font-size: 13.5px; border-radius: 999px; cursor: pointer; border: 1px solid var(--color-divider); color: var(--color-text); background: transparent; font: inherit; }
.ct-chip.selected { border-color: var(--color-accent); color: var(--color-accent-200); background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.ct-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.ct-card-opt {
  display: flex; flex-direction: column; gap: 5px; align-items: flex-start; text-align: left; padding: 14px;
  border-radius: var(--radius-md); cursor: pointer; color: var(--color-text); font: inherit;
  background: var(--color-surface); border: 1px solid var(--color-divider);
}
.ct-card-mark { font-size: 19px; line-height: 1; }
.ct-card-label { font-family: var(--font-heading); font-size: 14px; }
.ct-card-hint { font-size: 11.5px; color: color-mix(in srgb, var(--color-text) 55%, transparent); }

.ct-box { display: flex; flex-direction: column; gap: 10px; padding: 14px; border-radius: var(--radius-md); background: var(--color-surface); box-shadow: var(--shadow-sm); }
.ct-route-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.ct-dates-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.ct-counter-row { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: var(--radius-md); background: var(--color-surface); box-shadow: var(--shadow-sm); }
.ct-counter-btn { width: 44px; height: 44px; font-size: 20px; flex: none; }
.ct-counter-mid { min-width: 64px; text-align: center; }
.ct-counter-value { font-family: var(--font-heading); font-size: 26px; line-height: 1; }
.ct-counter-label { font-size: 11px; color: color-mix(in srgb, var(--color-text) 55%, transparent); }
.ct-counter-next { margin-left: auto; min-height: 44px; padding-inline: 20px; }

.ct-text-row { display: flex; gap: 9px; align-items: flex-end; }
.ct-text-row .input { min-height: 46px; }
.ct-text-row .btn { min-height: 46px; }
.ct-text-row .ct-text-send { padding-inline: 18px; }

/* — summary — */
.ct-summary-main {
  position: relative; z-index: 2; flex: 1; min-height: 0; overflow-y: auto; width: 100%; max-width: 1120px;
  margin: 0 auto; padding: 10px 24px 70px; box-sizing: border-box;
}
.ct-summary-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.ct-summary-title { margin: 0; font-size: clamp(26px, 3.6vw, 36px); }
.ct-summary-sub { max-width: 620px; color: color-mix(in srgb, var(--color-text) 68%, transparent); text-wrap: pretty; }
.ct-summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr)); gap: 22px; margin-top: 22px; align-items: start; }
.ct-col { display: flex; flex-direction: column; gap: 22px; }

.ct-route-card { border-radius: var(--radius-lg); background: linear-gradient(180deg, #232532, #1b1d2b); box-shadow: var(--shadow-sm); overflow: hidden; }
.ct-route-map { position: relative; height: 210px; background: radial-gradient(90% 120% at 50% 120%, #2a2d48 0%, #1a1c2b 70%); }
.ct-route-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ct-route-label { position: absolute; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: color-mix(in srgb, var(--color-text) 60%, transparent); }
.ct-route-value { position: absolute; font-family: var(--font-heading); font-size: 19px; }
.ct-route-from-l { left: 22px; bottom: 22px; }
.ct-route-from-v { left: 22px; bottom: 40px; }
.ct-route-to-l { right: 22px; top: 30px; text-align: right; }
.ct-route-to-v { right: 22px; top: 48px; text-align: right; }
.ct-facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px; background: var(--color-divider); }
.ct-fact { background: #1b1d2b; padding: 14px 16px; }
.ct-fact-k { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-accent-300); }
.ct-fact-v { font-size: 14.5px; margin-top: 3px; }

.ct-steps-title { margin: 0 0 14px; }
.ct-steps-list { display: flex; flex-direction: column; gap: 2px; }
.ct-step-row { display: grid; grid-template-columns: 22px 1fr auto; gap: 14px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--color-divider); }
.ct-step-dotwrap { display: flex; flex-direction: column; align-items: center; gap: 4px; padding-top: 4px; }
.ct-step-dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--color-accent); }
.ct-step-title { font-family: var(--font-heading); font-size: 14.5px; }
.ct-step-body { font-size: 12.5px; color: color-mix(in srgb, var(--color-text) 58%, transparent); text-wrap: pretty; }
.ct-step-when { font-size: 12px; color: var(--color-accent-300); white-space: nowrap; }

.ct-capture-card { padding: 20px; border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: var(--shadow-md); }
.ct-capture-title { margin: 8px 0 8px; font-size: 22px; }
.ct-capture-sub { font-size: 13.5px; color: color-mix(in srgb, var(--color-text) 68%, transparent); text-wrap: pretty; }
.ct-email-field { margin-top: 6px; }
.ct-email-field .input { min-height: 44px; }
.ct-email-error { font-size: 12px; color: var(--color-accent-300); margin-top: 6px; }
.ct-capture-cta { min-height: 46px; margin-top: 12px; font-size: 14px; }
.ct-privacy { display: flex; gap: 8px; align-items: flex-start; margin-top: 12px; font-size: 11.5px; color: color-mix(in srgb, var(--color-text) 50%, transparent); }
.ct-privacy-check { color: var(--color-accent); }

.ct-reassure-list { display: flex; flex-direction: column; gap: 12px; }
.ct-reassure-row { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.ct-reassure-mark { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--color-accent-700); display: grid; place-items: center; font-size: 14px; color: var(--color-accent-300); }
.ct-reassure-title { font-family: var(--font-heading); font-size: 14px; }
.ct-reassure-body { font-size: 12.5px; color: color-mix(in srgb, var(--color-text) 58%, transparent); text-wrap: pretty; }

.ct-testimonial { padding: 16px 18px; border-radius: var(--radius-md); background: linear-gradient(135deg, #262a60 0%, #1f2245 100%); box-shadow: var(--shadow-sm); }
.ct-testimonial-quote { font-size: 13.5px; line-height: 1.5; text-wrap: pretty; }
.ct-testimonial-by { font-size: 11.5px; margin-top: 8px; color: var(--color-accent-200); }
.ct-edit-link { align-self: flex-start; }

/* — done — */
.ct-done-main { position: relative; z-index: 2; flex: 1; min-height: 0; overflow-y: auto; display: grid; place-items: center; padding: 40px 24px 80px; }
.ct-done-box { max-width: 520px; text-align: center; }
.ct-done-check {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; border: 1px solid var(--color-accent);
  display: grid; place-items: center; font-size: 24px; color: var(--color-accent); box-shadow: 0 0 40px rgba(145,132,217,.35);
}
.ct-done-title { margin: 0 0 10px; }
.ct-done-sub { color: color-mix(in srgb, var(--color-text) 70%, transparent); text-wrap: pretty; }
.ct-done-email { margin-top: 6px; font-size: 13px; color: var(--color-accent-300); }
.ct-done-actions { display: flex; gap: 10px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* — article SEO home (23/09, contenu fourni par JT) — sibling de .ct-root,
   flux normal de page (pas dans #ct-app : le JS du wizard n'y touche pas). */
.ct-seo-article { max-width: 860px; margin: 0 auto; padding: 56px 28px 80px; box-sizing: border-box; }
.ct-seo-article h2 { font-size: 26px; margin: 48px 0 16px; }
.ct-seo-article h3 { font-size: 19px; margin: 28px 0 10px; }
.ct-seo-article p { font-size: 14.5px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 82%, transparent); }
.ct-seo-article ul, .ct-seo-article ol { margin: 0 0 16px; padding-left: 22px; font-size: 14.5px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 82%, transparent); }
.ct-seo-article li { margin-bottom: 6px; }
.ct-seo-article strong { color: var(--color-text); }
.ct-seo-article a { color: var(--color-accent-300); }
.ct-seo-essentiel { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.ct-seo-essentiel li { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-md); padding: 12px 16px; }
.ct-seo-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 13.5px; }
.ct-seo-table th, .ct-seo-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--color-divider); }
.ct-seo-table th { color: var(--color-accent-300); font-weight: 500; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; }
.ct-seo-quote { border-left: 3px solid var(--color-accent); background: var(--color-surface); border-radius: var(--radius-md); padding: 14px 18px; margin: 0 0 14px; font-size: 13.5px; line-height: 1.6; }
.ct-seo-quote cite { display: block; margin-top: 8px; font-style: normal; font-size: 12px; color: var(--color-accent-300); }
.ct-seo-faq-item { border-bottom: 1px solid var(--color-divider); padding: 16px 0; }
.ct-seo-faq-item h3 { margin: 0 0 8px; font-size: 15.5px; }
.ct-seo-sources { font-size: 12.5px; }
.ct-seo-cta { margin: 20px 0 8px; }

/* — sections mises en avant (23/09) : dernier article + assurance — */
.ct-highlight-section.ct-seo-article { padding-top: 32px !important; padding-bottom: 32px !important; }
.ct-article-highlight {
  display: flex; gap: 22px; align-items: stretch; text-decoration: none; color: inherit;
  background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color .15s ease;
}
.ct-article-highlight:hover { border-color: var(--color-accent-700); }
.ct-article-highlight-img { width: 260px; min-width: 260px; object-fit: cover; }
.ct-article-highlight-body { padding: 22px 24px 22px 0; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.ct-article-highlight-meta { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--color-accent-300); }
.ct-article-highlight-title { font-family: var(--font-heading); font-size: 20px; margin: 2px 0 4px; }
.ct-article-highlight-extrait { font-size: 13.5px; line-height: 1.55; color: color-mix(in srgb, var(--color-text) 78%, transparent); margin: 0; }
.ct-article-highlight-link { font-size: 13px; color: var(--color-accent-300); margin-top: 6px; }
@media (max-width: 640px) {
  .ct-article-highlight { flex-direction: column; }
  .ct-article-highlight-img { width: 100%; min-width: 0; height: 180px; }
  .ct-article-highlight-body { padding: 18px 20px; }
}

.ct-insurance-section { background: linear-gradient(160deg, #232532 0%, #1c1e2c 100%); border-radius: var(--radius-lg); padding: 36px 32px !important; margin-left: auto; margin-right: auto; box-shadow: var(--shadow-md); }
.ct-insurance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 20px 0 18px; }
.ct-insurance-item-title { font-family: var(--font-heading); font-size: 15px; color: var(--color-accent-300); margin-bottom: 6px; }
.ct-insurance-item p { font-size: 13px; margin: 0; }
.ct-insurance-note { font-size: 12px; color: color-mix(in srgb, var(--color-text) 55%, transparent); }

.ct-hidden { display: none !important; }

/* Honeypot : hors ecran, jamais atteint au clavier, invisible pour un humain */
.ct-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }

/* — mobile (22-23/09) —
   JT 22/09 : "la version formulaire doit etre visible dans la top barre.
   drapeau FR + Formulaire + blog." JT 23/09 : "on ne voit pas le nom
   cavalotrans. reserrer les pictos." ⇒ le nom reste TOUJOURS visible
   (plus de masquage sous 420px) ; c'est la nav/langs qu'on resserre pour
   lui laisser la place, jusqu'a 360px (petit Android) sans debordement.
   🪤 Un ancien bloc `@media(max-width:700px){.ct-header{padding:14px 18px}}`
   ecrasait silencieusement ce resserrement (meme specificite, plus loin
   dans le fichier = gagnant en cascade) — fusionne ici, ne plus le
   redupliquer ailleurs. */
@media (max-width: 760px) {
  .ct-header, .ct-footer { padding: 10px 12px; gap: 6px; }
  .ct-brand { margin-right: auto; gap: 6px; }
  .ct-brand-name { font-size: 11.5px; letter-spacing: .06em; }
  .ct-nav { gap: 4px; margin-right: 4px; }
  .ct-nav a { width: 28px; height: 28px; font-size: 12px; white-space: nowrap; }
  .ct-nav-ico { width: 16px; height: 16px; }
  .ct-nav-secondary { display: none; }
  .ct-langs { gap: 4px; }
  .ct-lang-current { padding: 3px 6px; gap: 4px; }
}

/* Route (Depart/Arrivee) : empiler sous 560px — demande explicite JT du
   22/09. Dans ce wizard, Date et Nombre de chevaux sont deux ECRANS
   separes (kind: 'dates' / 'counter'), pas une paire dans une grille :
   rien a figer cote a cote ici, cette regle ne concerne que ce pas. */
@media (max-width: 560px) {
  .ct-route-fields { grid-template-columns: 1fr; }
}

/* — carte reseau Europe (portee depuis style.css/pays_index.html le 23/09, pour
   la mini-carte de la home — meme composant, garder les deux copies alignees) — */
@keyframes euDash { to { stroke-dashoffset: -300; } }
@keyframes euPulse { 0%, 100% { opacity: .35; transform: scale(.9); } 50% { opacity: .9; transform: scale(1.25); } }
@keyframes euFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .eu-link, .eu-hub-ring, .eu-node { animation: none !important; }
}
.eu-map-wrap { position: relative; margin: 24px 0 8px; background: linear-gradient(160deg,#1a1c2b 0%,#14151f 100%); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); overflow: hidden; }
.eu-map { display: block; width: 100%; height: auto; }
.eu-grid-line { stroke: color-mix(in srgb, var(--color-text) 6%, transparent); stroke-width: 1; pointer-events: none; }
.eu-map circle[fill^="url(#euGlow"] { pointer-events: none; }
.eu-link {
  fill: none; stroke: var(--color-accent); stroke-width: 1.1; opacity: .55;
  stroke-dasharray: 4 5; animation: euDash 14s linear infinite, euFadeIn .6s ease both;
}
.eu-node { animation: euFadeIn .5s ease both; cursor: pointer; pointer-events: bounding-box; }
.eu-node-link { outline: none; }
.eu-node-link:focus-visible .eu-dot { stroke: #fff; stroke-width: 2; }
.eu-dot { fill: var(--color-accent-400); transition: r .15s ease, fill .15s ease; }
.eu-node-link:hover .eu-dot, .eu-node-link:focus-visible .eu-dot { fill: var(--color-accent-200); }
.eu-hub-ring { fill: none; stroke: var(--color-accent-300); stroke-width: 1.5; transform-origin: center; transform-box: fill-box; animation: euPulse 2.6s ease-in-out infinite; }
.eu-label {
  font-size: 9.5px; fill: color-mix(in srgb, var(--color-text) 62%, transparent); text-anchor: middle;
  pointer-events: none; font-family: "Inter", sans-serif;
}
.eu-node-hub .eu-label { fill: var(--color-accent-200); font-weight: 600; }
.eu-node-link:hover .eu-label, .eu-node-link:focus-visible .eu-label { fill: var(--color-text); }
.eu-tooltip {
  position: absolute; top: 0; left: 0; pointer-events: none; background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-sm); padding: 5px 10px;
  font-size: 12px; white-space: nowrap; opacity: 0; transition: opacity .12s ease; box-shadow: var(--shadow-sm);
  z-index: 3;
}
.eu-tooltip.visible { opacity: 1; }
@media (max-width: 560px) { .eu-label { font-size: 8px; } }
