/* Oknose v2 — overrides modernes (base Mobirise conservée) */

/* Dosis auto-hébergée (latin + latin-ext, poids 400–700) */
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dosis-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dosis-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ok-green: #5bbc62;
  --ok-dark: #231f20;
  --ok-gray: #eeeeee;
  --ok-white: #ffffff;
  --ok-max-prose: 42rem;
  --ok-nav-height: 4.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Dosis", system-ui, sans-serif;
  color: var(--ok-dark);
  padding-top: var(--ok-nav-height);
}

.color01 { color: var(--ok-green); }
.color02 { color: var(--ok-dark); }

/* Mots en vert (accents éditoriaux) */
.ok-accent {
  color: var(--ok-green);
  font-weight: 500;
}

/* Boutons noirs — hover visible */
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  background-color: var(--ok-green) !important;
  border-color: var(--ok-green) !important;
  color: var(--ok-white) !important;
}

/* ——— Navigation ——— */
.ok-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(35, 31, 32, 0.08);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.ok-nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(35, 31, 32, 0.1);
}

.ok-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--ok-nav-height);
  padding: 0 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ok-nav__logo {
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.ok-nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.ok-nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ok-dark);
  margin: 6px 0;
  transition: transform 0.3s ease;
}

.ok-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ok-nav__link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ok-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.ok-nav__link:hover,
.ok-nav__link.is-active {
  color: var(--ok-green);
}

.ok-nav__cta {
  margin-left: 0.75rem;
}

@media (max-width: 991px) {
  .ok-nav__toggle { display: block; }

  .ok-nav__menu {
    position: fixed;
    top: var(--ok-nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ok-white);
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .ok-nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .ok-nav__cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }
}

/* ——— Hero ——— */
.ok-hero {
  position: relative;
  min-height: calc(100vh - var(--ok-nav-height));
  min-height: calc(100dvh - var(--ok-nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ok-white);
  overflow: hidden;
}

.ok-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.ok-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.ok-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 24, 20, 0.55) 0%,
    rgba(20, 24, 20, 0.45) 50%,
    rgba(20, 24, 20, 0.6) 100%
  );
}

.ok-hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  max-width: 640px;
}

.ok-hero__box {
  display: inline-block;
  outline: 4px solid var(--ok-green);
  outline-offset: -12px;
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.ok-hero__title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--ok-white);
}

.ok-hero__brand {
  display: block;
  line-height: 1.1;
}

.ok-hero__tagline {
  display: block;
  margin-top: 0.65rem;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.95;
}

.ok-hero__subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.ok-hero--page {
  min-height: 42vh;
  min-height: 42dvh;
}

.ok-hero--page .ok-hero__box {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem 2rem;
}

/* ——— Sections ——— */
.ok-section {
  padding: 4.5rem 0;
}

.ok-section--alt {
  background: var(--ok-gray);
}

.ok-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--ok-dark);
}

.ok-section__title span:first-letter,
.ok-lead-cap::first-letter {
  color: var(--ok-green);
}

.ok-title-cap::first-letter {
  color: var(--ok-green);
}

.ok-prose {
  max-width: var(--ok-max-prose);
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  line-height: 1.75;
}

.ok-prose p {
  margin-bottom: 1.25rem;
}

.ok-prose a {
  color: var(--ok-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ok-prose a:hover {
  color: var(--ok-dark);
}

.ok-prose--wide {
  max-width: 52rem;
}

/* ——— Split image + text ——— */
.ok-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ok-split__image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(35, 31, 32, 0.12);
}

.ok-split__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .ok-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ok-split--reverse .ok-split__image {
    order: -1;
  }
}

/* ——— Cards ——— */
.ok-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ok-card {
  background: var(--ok-white);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(35, 31, 32, 0.08);
  border-top: 4px solid var(--ok-green);
  height: 100%;
}

.ok-section--alt .ok-card {
  box-shadow: 0 4px 16px rgba(35, 31, 32, 0.06);
}

.ok-card__icon {
  height: 43px;
  margin-bottom: 1rem;
  color: var(--ok-green);
}

.ok-card__icon.ok-card__icon--wide {
  width: 56px;
}

.ok-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ok-card__text {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

/* ——— Pricing ——— */
.ok-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.ok-price-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--ok-white);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(35, 31, 32, 0.1);
}

.ok-section--alt .ok-price-card {
  background: var(--ok-white);
}

.ok-price-card__label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ok-green);
  margin-bottom: 0.5rem;
}

.ok-price-card__amount {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--ok-dark);
  margin: 0.5rem 0;
}

.ok-price-card__detail {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* ——— CTA row ——— */
.ok-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ——— Contact block ——— */
.ok-contact {
  text-align: center;
  padding: 2.5rem;
  background: var(--ok-gray);
  border-radius: 4px;
  margin-top: 2rem;
}

.ok-contact a {
  color: var(--ok-green);
  font-weight: 600;
  text-decoration: none;
}

.ok-contact a:hover {
  text-decoration: underline;
}

/* ——— Footer ——— */
.ok-footer {
  background: var(--ok-white);
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(35, 31, 32, 0.08);
}

.ok-footer__social {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.ok-footer__social a {
  color: var(--ok-dark);
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.ok-footer__social a:hover {
  color: var(--ok-green);
}

.ok-footer__contact {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.ok-footer__contact a {
  color: var(--ok-dark);
  font-weight: 600;
}

.ok-footer__contact a:hover {
  color: var(--ok-green);
}

.ok-footer__text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0.25rem 0;
}

.ok-footer__text a {
  color: var(--ok-dark);
}

.ok-footer__text a:hover {
  color: var(--ok-green);
}

/* ——— Full-width image band ——— */
.ok-image-band {
  margin: 3rem 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(35, 31, 32, 0.15);
}

.ok-image-band img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bandeau citation domino */
.ok-domino-banner {
  position: relative;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  margin: 0;
  background: #111;
}

.ok-domino-banner__image {
  width: 100%;
  height: min(70vh, 760px);
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.95);
}

@media screen and (max-width: 768px) {

  .ok-domino-banner__image {
    height: 100%;
  }
}

.ok-domino-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.15) 100%);
}

.ok-domino-banner__quote {
  max-width: 60rem;
  margin: 0;
  color: var(--ok-white);
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  line-height: 1.45;
  text-align: center;
  font-style: italic;
  border-color: var(--ok-white);
  font-weight: 500;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

/* ——— Animations (GSAP sets initial state) ——— */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal-stagger > * {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ——— Legal pages ——— */
.ok-legal h1 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

.ok-legal h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--ok-dark);
}

.ok-legal p,
.ok-legal li {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ——— Utilities ——— */
.ok-text-center { text-align: center; }
.ok-mb-0 { margin-bottom: 0; }
.ok-mt-lg { margin-top: 3rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Liste « Pourquoi et pour quoi » ——— */
.ok-pourquoi-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: 44rem;
}

.ok-pourquoi-list__item {
  padding: 0.65rem 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.ok-pourquoi-list__ask {
  color: var(--ok-green);
  font-weight: 500;
}

.ok-pourquoi-list__ask a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ok-pourquoi-list__answer {
  color: var(--ok-dark);
  font-weight: 400;
}

.ok-pourquoi-list__item--lead {
  padding-top: 0;
}

.ok-pourquoi-list__item--lead .ok-pourquoi-list__answer {
  color: var(--ok-green);
  font-size: 1.2rem;
  font-weight: 600;
}

.ok-pourquoi-list__item--highlight {
  text-align: center;
  margin: 0.75rem 0;
}

.ok-pourquoi-list__item--highlight .ok-pourquoi-list__answer {
  display: inline-block;
  color: var(--ok-green);
  font-size: 1.12rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  background: rgba(91, 188, 98, 0.1);
  border-radius: 6px;
}

.ok-pourquoi-list__item--closing {
  padding-bottom: 0;
}

.ok-pourquoi-list__item--closing .ok-pourquoi-list__answer {
  color: var(--ok-green);
  font-size: 1.12rem;
  font-weight: 600;
}

/* ——— Grille visuelle type Elementor ——— */
.ok-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.ok-icon-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .ok-icon-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ok-icon-grid--3 {
    grid-template-columns: 1fr;
  }
}

.ok-icon-grid--3 .ok-icon-box {
  height: 100%;
}

.ok-icon-grid--3 .ok-icon-box__title {
  font-size: 1.05rem;
  line-height: 1.35;
}

.ok-icon-grid--3 .ok-icon-box__text {
  font-size: 0.95rem;
}

.ok-icon-grid--3.ok-icon-grid--2last {
  grid-template-columns: repeat(2, 1fr);
  max-width: 52rem;
  margin-inline: auto;
}

.ok-icon-grid--solo {
  grid-template-columns: 1fr;
  max-width: 34rem;
  margin-inline: auto;
}

.ok-icon-grid--solo .ok-icon-box {
  text-align: center;
}

.ok-icon-grid--solo .ok-icon-box__icon {
  margin-inline: auto;
}

@media (max-width: 576px) {
  .ok-icon-grid--3.ok-icon-grid--2last {
    grid-template-columns: 1fr;
  }
}

.ok-icon-grid--compact {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.ok-icon-grid--compact .ok-icon-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  align-items: start;
  text-align: left;
  padding: 1.25rem;
}

.ok-icon-grid--compact .ok-icon-box__icon {
  margin: 0;
}

/* Liste « Pour quoi venir » — un point par ligne */
.ok-reason-list {
  max-width: 46rem;
  margin: 2rem auto 0;
}

.ok-reason-list p {
  margin: 0 0 1.15rem;
  padding: 0.85rem 0 0.85rem 1.25rem;
  border-left: 3px solid var(--ok-green);
  line-height: 1.65;
  font-size: 1.05rem;
  color: #333;
}

.ok-reason-list p:last-child {
  margin-bottom: 0;
}

.ok-reason-list__lead {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--ok-dark) !important;
  border-left-width: 4px !important;
}

.ok-reason-list--closing {
  margin-top: 1.5rem;
  text-align: center;
}

.ok-reason-list--closing p {
  border-left: none;
  padding-left: 0;
  font-weight: 500;
}

.ok-icon-box {
  background: var(--ok-white);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(35, 31, 32, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.ok-section--alt .ok-icon-box {
  background: var(--ok-white);
}

.ok-icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(91, 188, 98, 0.15);
}

.ok-icon-box__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 188, 98, 0.12);
  border-radius: 50%;
  color: var(--ok-green);
}

.ok-icon-box__icon svg {
  width: 28px;
  height: 28px;
}

.ok-icon-box__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.ok-icon-box__text {
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  color: #444;
}

/* Bandeau citation */
.ok-quote-band {
  background: linear-gradient(135deg, var(--ok-green) 0%, #4aa853 100%);
  color: var(--ok-white);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 2rem 0;
}

.ok-quote-band p {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  max-width: 40rem;
  margin-inline: auto;
}

/* Bento services */
.ok-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 991px) {
  .ok-bento { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ok-bento { grid-template-columns: 1fr; }
}

.ok-bento__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--ok-white);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ok-dark);
  box-shadow: 0 6px 24px rgba(35, 31, 32, 0.08);
  transition: all 0.25s ease;
  min-height: 140px;
}

.ok-bento__item:hover {
  background: var(--ok-green);
  color: var(--ok-white);
  transform: translateY(-3px);
}

.ok-bento__item svg {
  width: auto;
  height: 36px;
  max-width: 52px;
  margin-bottom: 0.75rem;
  color: var(--ok-green);
  flex-shrink: 0;
}

.ok-bento__item svg.ok-bento__icon--wide {
  max-width: 56px;
}

.ok-bento__item:hover svg {
  color: var(--ok-white);
}

.ok-bento__label {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Étapes numérotées */
.ok-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: okstep;
}

.ok-step {
  text-align: center;
  position: relative;
}

.ok-step::before {
  counter-increment: okstep;
  content: counter(okstep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--ok-green);
  color: var(--ok-white);
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 50%;
}

.ok-step__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ok-step__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Pills formations */
.ok-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.ok-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: rgba(91, 188, 98, 0.12);
  color: var(--ok-dark);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid rgba(91, 188, 98, 0.25);
}

/* Cartes RDV Calendly */
.ok-rdv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.ok-rdv-card {
  background: var(--ok-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(35, 31, 32, 0.1);
  border-top: 5px solid var(--ok-green);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.ok-section--alt .ok-rdv-card {
  background: var(--ok-white);
}

.ok-rdv-card__head {
  padding: 1.75rem 1.5rem 1rem;
  text-align: center;
}

.ok-rdv-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  color: var(--ok-green);
}

.ok-rdv-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.ok-rdv-card__meta {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.ok-rdv-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0 1.5rem 1.75rem;
}

.ok-rdv-card__actions .btn {
  text-align: center;
}

.ok-rdv-card__keywords {
  list-style: none;
  margin: 0 1.5rem 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.ok-rdv-card__keywords li {
  margin: 0;
  line-height: 1.35;
}

.ok-rdv-card__keywords li:last-child {
  margin-bottom: 0;
}

.ok-rdv-card__keywords a {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: rgba(91, 188, 98, 0.12);
  color: var(--ok-dark);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(91, 188, 98, 0.25);
  transition: all 0.2s ease;
}

.ok-rdv-card__keywords a:hover {
  color: var(--ok-white);
  background: var(--ok-green);
  border-color: var(--ok-green);
}

.ok-rdv-book-btn {
  min-width: min(100%, 420px);
  padding: 0.95rem 1.8rem !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

.ok-rdv-btn-meta {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 0.15rem;
}

/* Bandeau stats */
.ok-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (max-width: 600px) {
  .ok-stats { grid-template-columns: 1fr; }
}

.ok-stat {
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.ok-stat__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ok-green);
  display: block;
}

.ok-stat__label {
  font-size: 0.9rem;
  color: #555;
}

/* Section intro courte */
.ok-lead-short {
  font-size: 1.2rem;
  line-height: 1.65;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  color: #444;
}

/* Domino highlight */
.ok-highlight-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0 0 0;
  background: var(--ok-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(35, 31, 32, 0.08);
  border-left: 5px solid var(--ok-green);
}

.ok-highlight-box__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  color: var(--ok-green);
}

.ok-highlight-box p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  line-height: 1.65;
}

p.ok-highlight-box__quote {
  margin: 0;
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ok-dark);
  font-weight: 500;
}

.ok-highlight-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .ok-highlight-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Timeline */
.ok-timeline {
  border-left: 3px solid var(--ok-green);
  margin-left: 1rem;
  padding-left: 2rem;
}

.ok-timeline__item {
  margin-bottom: 2rem;
  position: relative;
}

.ok-timeline__item::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--ok-green);
  border-radius: 50%;
  border: 3px solid var(--ok-white);
  box-shadow: 0 0 0 2px var(--ok-green);
}

.ok-timeline__title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.ok-timeline__text {
  margin: 0;
  line-height: 1.6;
  color: #555;
}
