:root {
  --navy: #061f38;
  --navy-soft: #0b3155;
  --blue: #0578b8;
  --cyan: #18b8d8;
  --aqua: #dff8fb;
  --sky: #edf8fc;
  --white: #ffffff;
  --ink: #11283a;
  --muted: #627583;
  --line: #d8e7ee;
  --success: #0b7d62;
  --warning: #9a6410;
  --shadow: 0 24px 70px rgba(5, 37, 61, .16);
  --shadow-sm: 0 12px 34px rgba(5, 37, 61, .10);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7fbfd;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
.hidden { display: none !important; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.demo-bar {
  background: #f7e8bb;
  color: #65450b;
  padding: 8px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(216,231,238,.9);
  position: relative;
  z-index: 5;
}
.brand img { height: 42px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone { text-decoration: none; font-weight: 800; color: var(--navy); }
.button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(5,120,184,.22);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(5,120,184,.30); }
.button:disabled { cursor: not-allowed; opacity: .45; transform: none; box-shadow: none; }
.button-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: none;
}
.button-large { min-height: 56px; padding-inline: 32px; font-size: 17px; }
.button-full { width: 100%; }
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
  color: var(--cyan);
}
.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,22,39,.94) 0%, rgba(3,22,39,.76) 46%, rgba(3,22,39,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 80px 0;
  color: white;
}
.hero-copy { width: min(660px, 100%); }
.hero h1 { margin: 0; font-size: clamp(40px, 5.4vw, 68px); line-height: 1.02; letter-spacing: -.045em; max-width: 920px; }
.hero-offer-line {
  display: block;
  margin-top: 18px;
  max-width: 720px;
  font-size: .43em;
  line-height: 1.16;
  letter-spacing: -.025em;
  color: #7ce9f1;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 14px; margin-top: 32px; }
.button-contact {
  min-width: 210px;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.button-contact:hover { background: rgba(255,255,255,.16); box-shadow: none; }
.button-contact small { font-size: 12px; font-weight: 750; color: rgba(255,255,255,.78); }
.hero-details { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px; color: rgba(255,255,255,.88); font-size: 14px; font-weight: 700; }
.hero-details span { display: inline-flex; gap: 8px; align-items: center; }
.hero-details span::before { content: "✓"; color: #76ecf1; }
.promo-ribbon {
  position: absolute;
  z-index: 2;
  right: max(22px, calc((100vw - var(--max))/2));
  bottom: 30px;
  width: min(340px, calc(100% - 44px));
  background: rgba(255,255,255,.95);
  color: var(--navy);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.promo-ribbon small { display: block; color: var(--muted); margin-top: 5px; line-height: 1.4; }
.promo-ribbon strong { display: block; font-size: 20px; margin-top: 4px; }
.site-footer {
  padding: 24px max(24px, calc((100vw - var(--max))/2));
  background: white;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.site-footer a { color: var(--navy); font-weight: 800; }
.flow-page { min-height: calc(100vh - 82px); padding: 52px 0 80px; background: radial-gradient(circle at 90% 0%, #dff8fb 0, transparent 34%), #f7fbfd; }
.flow-top { text-align: center; max-width: 750px; margin: 0 auto 30px; }
.flow-top h1 { margin: 0; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.045em; line-height: 1.02; color: var(--navy); }
.flow-top p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.6; }
.progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 auto 26px; max-width: 760px; }
.progress-item { border: 1px solid var(--line); background: white; border-radius: 14px; padding: 13px 15px; display: flex; align-items: center; gap: 10px; color: var(--muted); box-shadow: var(--shadow-sm); }
.progress-number { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: #edf4f7; display: grid; place-items: center; font-weight: 900; }
.progress-item strong { font-size: 14px; }
.progress-item.active { border-color: #78dbe7; color: var(--navy); }
.progress-item.active .progress-number { background: var(--cyan); color: white; }
.progress-item.done .progress-number { background: var(--success); color: white; }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(24px, 4vw, 46px); }
.card-header { margin-bottom: 26px; }
.card-header h2 { margin: 0 0 8px; color: var(--navy); font-size: clamp(28px, 4vw, 40px); letter-spacing: -.035em; }
.card-header p { margin: 0; color: var(--muted); line-height: 1.6; }
.pool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.choice-card { display: block; position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-surface { height: 100%; border: 2px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; transition: border-color .18s, transform .18s, box-shadow .18s; }
.choice-card:hover .choice-surface { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.choice-card input:checked + .choice-surface { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(24,184,216,.13), var(--shadow-sm); }
.choice-image { height: 190px; background: linear-gradient(180deg, #ecfbff, #d9f4f7); display: grid; place-items: center; padding: 16px; }
.choice-image img { width: 100%; height: 100%; object-fit: contain; }
.choice-content { padding: 22px; display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; align-items: center; }
.choice-content strong { font-size: 22px; color: var(--navy); }
.choice-content .price { font-size: 20px; font-weight: 900; color: var(--blue); }
.choice-content small { grid-column: 1 / -1; color: var(--muted); }
.choice-content s { color: #8a99a3; margin-right: 6px; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.option-box { border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.option-box h3 { margin: 0 0 6px; color: var(--navy); font-size: 18px; }
.option-box p { margin: 0 0 16px; color: var(--muted); line-height: 1.45; font-size: 14px; }
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.segmented label { cursor: pointer; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: flex; min-height: 46px; align-items: center; justify-content: center; text-align: center; padding: 10px; border: 1px solid var(--line); border-radius: 12px; font-weight: 800; color: var(--navy); }
.segmented input:checked + span { border-color: var(--cyan); background: var(--aqua); color: #075b77; }
.actions { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 28px; }
.validation { min-height: 22px; color: #b34234; font-weight: 750; font-size: 14px; margin: 14px 0 0; }
.calendar-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 24px; }
.calendar-box, .time-box { border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.calendar-toolbar strong { font-size: 20px; color: var(--navy); text-transform: capitalize; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); background: white; border-radius: 50%; font-size: 24px; color: var(--navy); }
.weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.weekdays { margin-bottom: 7px; }
.weekdays span { text-align: center; font-size: 11px; font-weight: 900; color: var(--muted); text-transform: uppercase; }
.day { aspect-ratio: 1; border: 0; border-radius: 11px; background: #f0f7fa; color: var(--navy); font-weight: 850; }
.day:hover:not(:disabled) { background: var(--aqua); }
.day.selected { background: var(--blue); color: white; }
.day:disabled { background: transparent; color: #b8c5cc; cursor: default; }
.day.blank { visibility: hidden; }
.time-box h3 { color: var(--navy); margin: 6px 0 8px; font-size: 24px; }
.time-box > p { color: var(--muted); line-height: 1.5; }
.time-slots { display: grid; gap: 12px; margin-top: 20px; }
.time-slot { border: 1px solid var(--line); background: white; border-radius: 14px; padding: 15px; display: flex; align-items: center; gap: 14px; text-align: left; }
.time-slot:hover:not(:disabled), .time-slot.selected { border-color: var(--cyan); background: var(--aqua); }
.time-slot .hour { width: 54px; height: 54px; border-radius: 13px; background: var(--navy); color: white; display: grid; place-items: center; font-size: 19px; font-weight: 900; }
.time-slot strong, .time-slot small { display: block; }
.time-slot strong { color: var(--navy); font-size: 17px; }
.time-slot small { color: var(--muted); margin-top: 3px; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); gap: 24px; align-items: start; }
.form-block { border: 1px solid var(--line); border-radius: 18px; padding: 22px; margin-bottom: 18px; }
.form-block h3 { margin: 0 0 18px; color: var(--navy); }
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.input-grid label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; color: var(--navy); }
.input-grid label.full { grid-column: 1 / -1; }
input, textarea { width: 100%; border: 1px solid #cbdde5; border-radius: 12px; min-height: 48px; padding: 11px 13px; color: var(--ink); background: white; outline: none; }
input:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(24,184,216,.12); }
.card-payment-note { background: var(--sky); border: 1px solid #bee8ef; color: #325565; padding: 13px 15px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.summary { position: sticky; top: 20px; border-radius: 18px; background: var(--navy); color: white; padding: 25px; box-shadow: var(--shadow); }
.summary h3 { margin: 0 0 18px; font-size: 25px; }
.summary dl { margin: 0; }
.summary dl div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.summary dt { color: rgba(255,255,255,.65); }
.summary dd { margin: 0; text-align: right; font-weight: 800; }
.price-lines { padding: 14px 0; }
.price-lines div { display: flex; justify-content: space-between; padding: 5px 0; color: rgba(255,255,255,.76); }
.total-line { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid rgba(255,255,255,.25); padding: 16px 0 22px; }
.total-line strong { font-size: 30px; }
.promo-note { margin: 0 0 16px; padding: 11px 12px; border-radius: 10px; background: rgba(118,236,241,.13); color: #baf9fb; font-size: 13px; line-height: 1.45; }
.confirmation-card { text-align: center; max-width: 760px; margin-inline: auto; }
.checkmark { width: 82px; height: 82px; margin: 0 auto 20px; border-radius: 50%; background: #dff7ee; color: var(--success); display: grid; place-items: center; font-size: 42px; font-weight: 900; }
.confirmation-card h1 { margin: 0; color: var(--navy); font-size: clamp(34px, 5vw, 54px); }
.confirmation-card > p { color: var(--muted); font-size: 18px; line-height: 1.6; }
.confirmation-details { margin: 26px 0; text-align: left; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.confirmation-details div { display: flex; justify-content: space-between; gap: 18px; padding: 14px 17px; border-bottom: 1px solid var(--line); }
.confirmation-details div:last-child { border-bottom: 0; }
.confirmation-details span { color: var(--muted); }
.confirmation-details strong { text-align: right; color: var(--navy); }
@media (max-width: 860px) {
  .header-actions .phone { display: none; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(3,22,39,.78), rgba(3,22,39,.92)); }
  .promo-ribbon { position: relative; right: auto; bottom: auto; margin: -110px auto 30px; }
  .pool-grid, .option-grid, .calendar-layout, .checkout-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .progress-item strong { display: none; }
  .progress-item { justify-content: center; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--max)); }
  .site-header { height: 70px; padding-inline: 14px; }
  .brand img { height: 34px; }
  .header-actions .button { padding: 10px 14px; font-size: 13px; }
  .hero { min-height: calc(100vh - 70px); }
  .hero-content { width: calc(100% - 28px); padding: 62px 0 74px; }
  .hero h1 { font-size: 40px; line-height: 1.04; }
  .hero-offer-line { margin-top: 16px; font-size: .48em; line-height: 1.22; }
  .hero-actions .button { width: 100%; }
  .hero-details { gap: 10px 20px; }
  .flow-page { padding-top: 32px; }
  .progress { gap: 7px; }
  .progress-item { padding: 8px; }
  .card { padding: 20px 15px; border-radius: 18px; }
  .choice-image { height: 145px; }
  .choice-content { padding: 16px; }
  .choice-content strong { font-size: 18px; }
  .choice-content .price { font-size: 17px; }
  .segmented { grid-template-columns: 1fr; }
  .actions { flex-direction: column-reverse; }
  .actions .button { width: 100%; }
  .input-grid { grid-template-columns: 1fr; }
  .input-grid label.full { grid-column: auto; }
  .calendar-box, .time-box { padding: 15px; }
  .day { border-radius: 8px; }
  .site-footer { padding-inline: 16px; }
}

/* Landing page — V9 rebuild */
.landing-page {
  min-height: 100svh;
  background: var(--navy);
}

.hero-landing {
  min-height: calc(100svh - 82px);
  place-items: stretch;
}

.hero-landing .hero-bg img {
  object-position: 58% 50%;
}

.hero-landing .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(2, 18, 33, .93) 0%, rgba(2, 25, 43, .82) 44%, rgba(2, 26, 42, .38) 78%, rgba(2, 23, 39, .28) 100%),
    linear-gradient(180deg, rgba(3, 20, 35, .12) 0%, rgba(3, 20, 35, .20) 50%, rgba(3, 20, 35, .68) 100%);
}

.hero-landing .hero-content {
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vh, 120px) 0;
}

.hero-landing .hero-copy {
  width: min(820px, 72%);
}

.hero-landing h1 {
  max-width: 820px;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.055;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 3px 28px rgba(0, 11, 24, .36);
}

.hero-landing .hero-actions {
  margin-top: clamp(30px, 4.2vh, 48px);
  gap: 16px;
}

.hero-landing .button-large {
  min-height: 62px;
  padding-inline: 34px;
  font-size: 18px;
}

.hero-landing .button-primary {
  min-width: 270px;
}

.hero-landing .button-contact {
  min-width: 240px;
  background: rgba(5, 30, 49, .34);
  border-color: rgba(255, 255, 255, .72);
}

.hero-landing .button-contact small {
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero-landing .hero-bg img {
    object-position: 62% 50%;
  }

  .hero-landing .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(2, 20, 35, .43) 0%, rgba(2, 24, 41, .68) 34%, rgba(2, 23, 40, .91) 72%, rgba(2, 20, 35, .97) 100%),
      linear-gradient(90deg, rgba(2, 20, 35, .72), rgba(2, 20, 35, .18));
  }

  .hero-landing .hero-copy {
    width: min(680px, 100%);
  }
}

@media (max-width: 560px) {
  .hero-landing {
    min-height: calc(100svh - 70px);
  }

  .hero-landing .hero-bg img {
    object-position: 61% 50%;
  }

  .hero-landing .hero-content {
    align-items: flex-end;
    width: calc(100% - 32px);
    padding: 42px 0 48px;
  }

  .hero-landing h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.25vw, 43px);
    line-height: 1.09;
    letter-spacing: -.038em;
    text-wrap: pretty;
  }

  .hero-landing .hero-actions {
    margin-top: 28px;
    gap: 13px;
  }

  .hero-landing .button-large {
    min-height: 58px;
    padding-inline: 20px;
    font-size: 17px;
  }

  .hero-landing .button-contact {
    min-height: 68px;
  }
}

/* Homepage final — isolated rules; booking pages stay unchanged */
.landing-final {
  min-height: 100svh;
  background: #061f38;
}

.landing-final {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #061f38;
}

.landing-final .site-header {
  position: relative;
  z-index: 10;
}

.home-hero {
  position: relative;
  flex: 1 0 auto;
  min-height: clamp(700px, calc(100svh - 82px), 940px);
  overflow: hidden;
  background: #082b40;
  color: #fff;
}

.home-hero-media,
.home-hero-media img,
.home-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-media img {
  object-fit: cover;
  object-position: center 60%;
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 22, 36, .74) 0%, rgba(3, 27, 43, .54) 48%, rgba(4, 30, 45, .16) 100%),
    linear-gradient(180deg, rgba(2, 22, 36, .12) 0%, rgba(2, 22, 36, .16) 46%, rgba(2, 22, 36, .64) 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  min-height: inherit;
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vh, 82px) 0;
}

.home-copy {
  width: min(700px, 64%);
  margin-top: -2vh;
}

.home-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 4px 34px rgba(0, 12, 23, .50);
}

.home-offer {
  width: min(630px, 100%);
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  background: rgba(4, 31, 48, .55);
  box-shadow: 0 20px 46px rgba(0, 12, 23, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-offer-label {
  margin: 0 0 16px;
  color: #dff8fb;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.25;
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(0, 12, 23, .44);
}

.home-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-price-card {
  min-height: 94px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(0, 12, 23, .18);
}

.home-price-card span {
  display: block;
  margin-bottom: 4px;
  color: #386172;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .01em;
}

.home-price-card strong {
  display: block;
  color: #0578b8;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.045em;
}

.home-offer-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.38;
  font-weight: 700;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.home-primary,
.home-contact {
  min-height: 64px;
  border-radius: 999px;
}

.home-primary {
  min-width: 290px;
  padding-inline: 34px;
  font-size: 18px;
}

.home-contact {
  min-width: 250px;
  padding: 11px 30px;
  border: 1.5px solid rgba(255,255,255,.78);
  color: #fff;
  background: rgba(3, 25, 41, .36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  transition: background .18s ease, transform .18s ease;
}

.home-contact:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}

.home-contact strong {
  font-size: 18px;
  line-height: 1.2;
}

.home-contact span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 800;
}

.home-footer {
  flex-shrink: 0;
  min-height: 0;
  align-items: center;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  gap: 14px;
  background: #061f38;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.home-footer a {
  color: #ffffff;
}

@media (max-width: 860px) {
  .home-hero {
    min-height: 790px;
  }

  .home-hero-media img {
    object-position: center 50%;
  }

  .home-hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 24, 38, .43) 0%, rgba(3, 26, 42, .72) 38%, rgba(2, 22, 36, .94) 82%, rgba(2, 22, 36, .98) 100%),
      linear-gradient(90deg, rgba(2, 20, 34, .64), rgba(2, 20, 34, .18));
  }

  .home-hero-inner {
    align-items: flex-start;
    padding-top: 94px;
    padding-bottom: 58px;
  }

  .home-copy {
    width: min(680px, 100%);
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .landing-final .site-header {
    height: 70px;
    padding-inline: 14px;
  }

  .landing-final .brand img {
    height: 34px;
  }

  .landing-final .header-cta {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Mobile homepage: compact footer, image keeps the visual focus. */
  .home-hero {
    min-height: calc(100svh - 70px - 56px);
  }

  .home-hero-media img {
    object-position: center 70%;
  }

  .home-hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 22, 36, .38) 0%, rgba(2, 24, 39, .58) 48%, rgba(2, 22, 36, .82) 100%),
      linear-gradient(90deg, rgba(2, 20, 34, .50), rgba(2, 20, 34, .12));
  }

  .home-hero-inner {
    width: calc(100% - 36px);
    min-height: 0;
    align-items: flex-start;
    padding: 48px 0 46px;
  }

  .home-copy {
    width: 100%;
  }

  .home-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.05;
    letter-spacing: -.045em;
    text-wrap: balance;
  }

  .home-offer {
    margin-top: 20px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(4, 31, 48, .62);
  }

  .home-offer-label {
    margin-bottom: 13px;
    font-size: 16px;
  }

  .home-price-grid {
    gap: 10px;
  }

  .home-price-card {
    min-height: 82px;
    padding: 13px;
    border-radius: 16px;
  }

  .home-price-card span {
    font-size: 13px;
  }

  .home-price-card strong {
    font-size: clamp(31px, 9vw, 38px);
  }

  .home-offer-note {
    margin-top: 12px;
    font-size: 14px;
  }

  .home-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .home-primary,
  .home-contact {
    width: 100%;
    min-width: 0;
    min-height: 60px;
  }

  .home-primary {
    font-size: 17px;
  }

  .home-contact {
    min-height: 72px;
  }

  .home-footer {
    min-height: 0;
    padding: 9px 18px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    line-height: 1.2;
  }

  .home-footer span:nth-child(2) {
    display: none;
  }

  .home-footer a {
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .landing-final .header-cta {
    font-size: 12px;
    padding-inline: 11px;
  }

  .home-copy h1 {
    font-size: clamp(32px, 8.6vw, 38px);
  }

  .home-price-card strong {
    font-size: 32px;
  }
}


/* ===== V9 homepage correction: full home cleanup, not footer-only ===== */
.landing-final .site-header {
  height: 76px;
}

.landing-final .brand img {
  height: 42px;
}

.home-hero {
  min-height: 0;
  color: #fff;
}

.home-hero-media img {
  object-position: center 62%;
}

.home-hero-overlay {
  background:
    linear-gradient(180deg, rgba(3, 22, 34, .28) 0%, rgba(3, 22, 34, .58) 38%, rgba(3, 22, 34, .82) 100%),
    linear-gradient(90deg, rgba(3, 22, 34, .68) 0%, rgba(3, 22, 34, .38) 58%, rgba(3, 22, 34, .18) 100%);
}

.home-hero-inner {
  min-height: 0;
  align-items: flex-start;
  padding: 78px 0 56px;
}

.home-copy {
  width: min(720px, 100%);
  margin-top: 0;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 10px 16px;
  border: 1px solid rgba(124,235,243,.45);
  border-radius: 999px;
  background: rgba(4, 33, 49, .56);
  color: #94f3fb;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.01;
  letter-spacing: -.05em;
  text-shadow: 0 6px 34px rgba(0, 12, 23, .58);
}

.home-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-price-pill {
  min-width: 178px;
  padding: 16px 18px 17px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  color: #082b40;
  box-shadow: 0 18px 40px rgba(0, 14, 25, .18);
}

.home-price-pill span {
  display: block;
  margin-bottom: 2px;
  color: #315b68;
  font-weight: 850;
  font-size: 15px;
}

.home-price-pill strong {
  display: block;
  color: #0578b8;
  font-size: clamp(42px, 4.7vw, 58px);
  line-height: .95;
  letter-spacing: -.055em;
}

.home-prices,
.home-promo {
  display: none !important;
}

.home-availability {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.35;
  font-weight: 800;
  text-shadow: 0 4px 22px rgba(0, 12, 23, .54);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-primary,
.home-contact {
  min-height: 64px;
  border-radius: 999px;
}

.home-primary {
  min-width: 285px;
  font-size: 18px;
}

.home-contact {
  min-width: 250px;
  background: rgba(3, 25, 41, .54);
}

.home-footer {
  min-height: 0;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}

.home-footer span:nth-child(2) {
  opacity: .82;
}

@media (max-width: 560px) {
  .landing-final .site-header {
    height: 70px;
    padding-inline: 14px;
  }

  .landing-final .brand img {
    height: 34px;
  }

  .landing-final .header-cta {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero-media img {
    object-position: center 66%;
  }

  .home-hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 22, 36, .24) 0%, rgba(2, 22, 36, .52) 34%, rgba(2, 22, 36, .78) 100%),
      linear-gradient(90deg, rgba(2, 20, 34, .52), rgba(2, 20, 34, .16));
  }

  .home-hero-inner {
    width: calc(100% - 36px);
    padding: 42px 0 38px;
  }

  .home-kicker {
    margin-bottom: 14px;
    padding: 9px 13px;
    font-size: 13px;
  }

  .home-copy h1 {
    max-width: 100%;
    font-size: clamp(37px, 10.3vw, 48px);
    line-height: 1.02;
    letter-spacing: -.052em;
  }

  .home-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .home-price-pill {
    min-width: 0;
    border-radius: 18px;
    padding: 14px 14px 15px;
  }

  .home-price-pill span {
    font-size: 13px;
  }

  .home-price-pill strong {
    font-size: clamp(40px, 13vw, 52px);
  }

  .home-availability {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.32;
  }

  .home-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .home-primary,
  .home-contact {
    width: 100%;
    min-width: 0;
  }

  .home-primary {
    min-height: 60px;
    font-size: 17px;
  }

  .home-contact {
    min-height: 66px;
  }

  .home-contact strong {
    font-size: 18px;
  }

  .home-contact span {
    font-size: 13px;
  }

  .home-footer {
    padding: 12px 18px 14px;
    display: grid;
    gap: 4px;
    font-size: 12px;
    line-height: 1.28;
  }

  .home-footer span:nth-child(2) {
    display: none;
  }

  .home-footer a {
    font-size: 13px;
  }
}

/* V20: keep new PC logo visible on mobile */
.brand img {
  height: 54px;
  width: auto;
  max-width: 168px;
  display: block;
  object-fit: contain;
}
@media (max-width: 560px) {
  .brand img {
    height: 44px;
    max-width: 138px;
  }
}


/* V25 — split header logo + social icons */
.brand.brand-split {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand.brand-split .brand-mark {
  width: auto;
  height: 42px;
  display: block;
  flex: 0 0 auto;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: .94;
}
.brand-wordmark-top,
.brand-wordmark-bottom {
  display: block;
  font-weight: 950;
  letter-spacing: -.04em;
}
.brand-wordmark-top {
  color: #26c7ee;
  font-size: 20px;
}
.brand-wordmark-bottom {
  color: #061f38;
  font-size: 20px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061f38;
  background: #ffffff;
  border: 1.5px solid rgba(6,31,56,.16);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(6,31,56,.08);
}
.social-icon svg { width: 18px; height: 18px; display: block; }
@media (max-width: 680px) {
  .brand.brand-split { gap: 8px; }
  .brand.brand-split .brand-mark { height: 38px; }
  .brand-wordmark-top, .brand-wordmark-bottom { font-size: 18px; }
  .site-footer {
    justify-content: center;
    text-align: center;
  }
  .site-footer .footer-social {
    order: 3;
    width: 100%;
  }
}


/* V26 — logo fix for all pages */
.brand.brand-split {
  gap: 9px;
}
.brand.brand-split .brand-mark {
  height: 42px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}
@media (max-width: 680px) {
  .brand.brand-split { gap: 8px; }
  .brand.brand-split .brand-mark { height: 38px; }
}


/* V27 — split logo mark sizing */
.brand.brand-split .brand-mark {
  height: 40px;
  width: auto;
}

/* V38 — page choix: verrouillage mobile + footer identique à l'accueil */
.flow-choice-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.flow-choice-page .site-header,
.flow-choice-page .flow-page,
.flow-choice-page .site-footer,
.flow-choice-page .container,
.flow-choice-page .flow-top,
.flow-choice-page .progress,
.flow-choice-page .card,
.flow-choice-page .pool-grid,
.flow-choice-page .option-grid,
.flow-choice-page .actions {
  min-width: 0;
  max-width: 100%;
}

.flow-choice-page .flow-top h1,
.flow-choice-page .flow-top p,
.flow-choice-page .card-header h2,
.flow-choice-page .card-header p,
.flow-choice-page .option-box p {
  overflow-wrap: anywhere;
}

.flow-choice-page .flow-footer {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 7px;
  width: 100%;
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, #f7fdff 0%, #e0f7ff 100%);
  border-top: 4px solid #24c6eb;
  color: #061f38;
  text-align: center;
}

.flow-choice-page .flow-footer-copyright,
.flow-choice-page .flow-footer-phone,
.flow-choice-page .flow-footer-credit,
.flow-choice-page .flow-footer .footer-social {
  justify-self: center;
  width: 100%;
  text-align: center;
}

.flow-choice-page .flow-footer-phone {
  color: #061f38;
  font-size: 14px;
  font-weight: 900;
}

.flow-choice-page .flow-footer .footer-social {
  margin-top: 2px;
}

.flow-choice-page .flow-footer-credit {
  margin-top: 1px;
  color: #087fac;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: normal;
}

.flow-choice-page .flow-footer-credit strong {
  color: #079bc9;
  font-weight: 950;
}

.flow-choice-page .flow-footer .social-icon[aria-label="Facebook"] {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(24, 119, 242, .24);
}

.flow-choice-page .flow-footer .social-icon[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 110%, #ffd600 0 10%, #ff7a00 28%, #ff0169 52%, #d300c5 72%, #7638fa 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(211, 0, 197, .20);
}

@media (max-width: 560px) {
  .flow-choice-page .container {
    width: calc(100% - 24px);
  }

  .flow-choice-page .site-header {
    width: 100%;
    overflow: hidden;
  }

  .flow-choice-page .brand.brand-split {
    min-width: 0;
    max-width: 100%;
  }

  .flow-choice-page .brand-wordmark {
    min-width: 0;
  }
}


/* V39 — verrouillage horizontal reel sur mobile (page choix seulement) */
html:has(body.flow-choice-page),
body.flow-choice-page {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
}

@supports (overflow: clip) {
  html:has(body.flow-choice-page),
  body.flow-choice-page {
    overflow-x: clip !important;
  }
}

body.flow-choice-page {
  position: relative;
  touch-action: pan-y;
}

body.flow-choice-page > .site-header,
body.flow-choice-page > .flow-page,
body.flow-choice-page > .site-footer {
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  overflow-x: hidden;
}

body.flow-choice-page .flow-page .container {
  min-width: 0;
  max-width: calc(100vw - 24px);
}

body.flow-choice-page .flow-page *,
body.flow-choice-page .site-footer * {
  min-width: 0;
}

body.flow-choice-page img,
body.flow-choice-page svg {
  max-width: 100%;
}

@media (max-width: 560px) {
  body.flow-choice-page .flow-page .container {
    width: auto;
    margin-left: 12px;
    margin-right: 12px;
  }

  body.flow-choice-page .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* V41 — page choix : retirer le titre du haut et garder les deux piscines côte à côte sur mobile */
@media (max-width: 860px) {
  body.flow-choice-page .pool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 560px) {
  body.flow-choice-page .pool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  body.flow-choice-page .choice-surface {
    border-radius: 15px;
  }

  body.flow-choice-page .choice-image {
    height: 112px;
    padding: 8px;
  }

  body.flow-choice-page .choice-content {
    display: block;
    padding: 12px 10px 13px;
    text-align: center;
  }

  body.flow-choice-page .choice-content strong,
  body.flow-choice-page .choice-content .price,
  body.flow-choice-page .choice-content small {
    display: block;
  }

  body.flow-choice-page .choice-content strong {
    min-height: 38px;
    font-size: 15px;
    line-height: 1.2;
  }

  body.flow-choice-page .choice-content .price {
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.15;
  }

  body.flow-choice-page .choice-content small {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.3;
  }
}



/* V42 — cartes de piscine finies, contours cyan visibles et sélection évidente */
body.flow-choice-page .card {
  border: 1.5px solid rgba(39, 200, 238, .38);
}

body.flow-choice-page .progress-item {
  border-color: rgba(39, 200, 238, .34);
}

body.flow-choice-page .progress-item.active {
  border: 2px solid #27c8ee;
  box-shadow: 0 10px 28px rgba(39, 200, 238, .13);
}

body.flow-choice-page .choice-card {
  height: 100%;
}

body.flow-choice-page .choice-surface {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid rgba(39, 200, 238, .78);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(5, 73, 106, .08);
  overflow: hidden;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

body.flow-choice-page .choice-card:hover .choice-surface {
  border-color: #27c8ee;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(5, 73, 106, .13);
}

body.flow-choice-page .choice-card input:focus-visible + .choice-surface {
  outline: 3px solid rgba(39, 200, 238, .28);
  outline-offset: 3px;
}

body.flow-choice-page .choice-card input:checked + .choice-surface {
  border: 3px solid #27c8ee;
  background: #f3fcff;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(39, 200, 238, .17),
    0 16px 36px rgba(5, 73, 106, .18);
}

body.flow-choice-page .choice-selected-indicator {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: #27c8ee;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  opacity: 0;
  transform: scale(.68);
  box-shadow: 0 6px 16px rgba(6, 31, 56, .22);
  transition: opacity .16s ease, transform .16s ease;
}

body.flow-choice-page .choice-card input:checked + .choice-surface .choice-selected-indicator {
  opacity: 1;
  transform: scale(1);
}

body.flow-choice-page .choice-image {
  flex: 0 0 auto;
  border-bottom: 1.5px solid rgba(39, 200, 238, .34);
}

body.flow-choice-page .choice-content {
  flex: 1 1 auto;
}

body.flow-choice-page .choice-content small {
  color: #536b79;
}

body.flow-choice-page .option-box {
  border: 1.5px solid rgba(39, 200, 238, .55);
  box-shadow: 0 8px 24px rgba(5, 73, 106, .05);
}

body.flow-choice-page .segmented span {
  border: 1.5px solid rgba(39, 200, 238, .62);
  background: #ffffff;
}

body.flow-choice-page .segmented input:checked + span {
  border-color: #27c8ee;
  background: linear-gradient(135deg, #0e91c8, #27c8ee);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(14, 145, 200, .22);
}

@media (max-width: 560px) {
  body.flow-choice-page .card {
    padding: 20px 14px 24px;
  }

  body.flow-choice-page .pool-grid {
    gap: 12px;
  }

  body.flow-choice-page .choice-surface {
    border-radius: 17px;
  }

  body.flow-choice-page .choice-card input:checked + .choice-surface {
    border-width: 3px;
  }

  body.flow-choice-page .choice-image {
    height: 126px;
    margin: 8px 8px 0;
    padding: 7px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  body.flow-choice-page .choice-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px 14px;
    text-align: center;
  }

  body.flow-choice-page .choice-content strong {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.2;
  }

  body.flow-choice-page .choice-content .price {
    margin-top: 8px;
    font-size: 23px;
    line-height: 1;
  }

  body.flow-choice-page .choice-content small {
    min-height: 58px;
    margin-top: 9px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 10.5px;
    line-height: 1.35;
  }

  body.flow-choice-page .choice-selected-indicator {
    top: 13px;
    right: 13px;
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
}


/* V42.1 — notes de prix compactes et sans débordement mobile */
body.flow-choice-page .choice-price-note {
  display: grid !important;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2px;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin-top: 9px;
  text-align: center;
  overflow-wrap: anywhere;
}

body.flow-choice-page .choice-price-note > span {
  display: block;
  width: 100%;
}

body.flow-choice-page .choice-price-note s {
  margin-right: 0;
}

@media (max-width: 560px) {
  body.flow-choice-page .choice-content small.choice-price-note {
    min-height: 0;
    font-size: 10.5px;
    line-height: 1.25;
  }
}


/* V44 — icônes des étapes et libellés demandés */
body.flow-choice-page .progress-item {
  justify-content: center;
}

body.flow-choice-page .progress-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  color: #0e91c8;
}

body.flow-choice-page .progress-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-choice-page .progress-item.active .progress-icon {
  color: #0e91c8;
}

@media (max-width: 860px) {
  body.flow-choice-page .progress-item {
    gap: 9px;
  }

  body.flow-choice-page .progress-number {
    transform: translateX(-2px);
  }
}

/* V45 — page choix : espacements réduits, étapes plus compactes, cartes plus premium */
body.flow-choice-page .flow-page {
  padding-top: 18px;
  padding-bottom: 64px;
}

body.flow-choice-page .progress {
  max-width: 690px;
  gap: 10px;
  margin-bottom: 18px;
}

body.flow-choice-page .progress-item {
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 18px;
}

body.flow-choice-page .progress-number {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  font-size: 18px;
}

body.flow-choice-page .progress-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

body.flow-choice-page .progress-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

body.flow-choice-page .card {
  padding-top: 24px;
  padding-bottom: 28px;
}

body.flow-choice-page .card-header {
  margin-bottom: 18px;
}

body.flow-choice-page .card-header h2 {
  margin-bottom: 0;
}

body.flow-choice-page .pool-grid {
  gap: 14px;
}

body.flow-choice-page .choice-surface {
  border-width: 2.5px;
  border-radius: 24px;
}

body.flow-choice-page .choice-card input:checked + .choice-surface {
  border-width: 3px;
  background: #f5fdff;
}

body.flow-choice-page .choice-image {
  height: 182px;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #def7fb 0%, #c9eef5 100%);
  border: 0;
  border-bottom: 1.5px solid rgba(39, 200, 238, .28);
  border-radius: 21px 21px 0 0;
  overflow: hidden;
}

body.flow-choice-page .choice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.flow-choice-page .choice-content {
  padding: 16px 14px 18px;
}

body.flow-choice-page .choice-content strong {
  font-size: 18px;
  line-height: 1.15;
}

body.flow-choice-page .choice-content .price {
  margin-top: 10px;
  font-size: 31px;
  line-height: 1;
}

body.flow-choice-page .choice-price-note {
  margin-top: 10px;
}

body.flow-choice-page .choice-content small.choice-price-note {
  font-size: 12px;
  line-height: 1.3;
}

body.flow-choice-page .choice-selected-indicator {
  top: 12px;
  right: 12px;
}

body.flow-choice-page .option-grid {
  gap: 16px;
}

body.flow-choice-page .option-box {
  padding: 20px 18px;
}

@media (max-width: 860px) {
  body.flow-choice-page .progress-item {
    gap: 8px;
  }

  body.flow-choice-page .progress-number {
    transform: translateX(-1px);
  }
}

@media (max-width: 560px) {
  body.flow-choice-page .flow-page {
    padding-top: 14px;
    padding-bottom: 42px;
  }

  body.flow-choice-page .progress {
    gap: 8px;
    margin-bottom: 14px;
  }

  body.flow-choice-page .progress-item {
    min-height: 58px;
    padding: 8px 8px;
    border-radius: 16px;
  }

  body.flow-choice-page .progress-number {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 18px;
  }

  body.flow-choice-page .progress-icon,
  body.flow-choice-page .progress-icon svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  body.flow-choice-page .card {
    padding: 16px 12px 22px;
  }

  body.flow-choice-page .card-header {
    margin-bottom: 14px;
  }

  body.flow-choice-page .card-header h2 {
    font-size: clamp(24px, 7.4vw, 34px);
    line-height: 1.08;
  }

  body.flow-choice-page .pool-grid {
    gap: 10px;
  }

  body.flow-choice-page .choice-surface {
    border-radius: 18px;
  }

  body.flow-choice-page .choice-image {
    height: 138px;
    border-radius: 16px 16px 0 0;
  }

  body.flow-choice-page .choice-content {
    padding: 12px 10px 14px;
  }

  body.flow-choice-page .choice-content strong {
    min-height: 0;
    font-size: 14px;
  }

  body.flow-choice-page .choice-content .price {
    margin-top: 8px;
    font-size: 21px;
  }

  body.flow-choice-page .choice-content small.choice-price-note {
    min-height: 0;
    margin-top: 8px;
    font-size: 10.5px;
    line-height: 1.25;
  }

  body.flow-choice-page .choice-selected-indicator {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

/* V47 — centrage des trois titres principaux de la page Choix */
body.flow-choice-page .card-header h2,
body.flow-choice-page .option-box h3 {
  width: 100%;
  text-align: center;
}

/* V50 — séparer visuellement les 3 bulles d'étapes */
body.flow-choice-page .progress {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 18px;
}

body.flow-choice-page .progress-item {
  flex: 0 1 124px;
  min-height: 52px;
  padding: 7px 10px;
  gap: 6px;
  border-radius: 14px;
  border: 2px solid #dce9ef;
  background: #ffffff;
}

body.flow-choice-page .progress-item.active {
  border-color: #41c6e7;
  box-shadow: 0 10px 22px rgba(39, 200, 238, 0.14);
}

body.flow-choice-page .progress-number {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  font-size: 15px;
}

body.flow-choice-page .progress-icon,
body.flow-choice-page .progress-icon svg {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
}

@media (max-width: 560px) {
  body.flow-choice-page .progress {
    gap: 12px;
    justify-content: center;
  }

  body.flow-choice-page .progress-item {
    flex: 0 1 96px;
    min-width: 0;
    min-height: 46px;
    padding: 5px 6px;
    gap: 4px;
    border-radius: 13px;
  }

  body.flow-choice-page .progress-number {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    font-size: 14px;
  }

  body.flow-choice-page .progress-icon,
  body.flow-choice-page .progress-icon svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}


/* v51 - split the three booking questions into separate cards */
body.flow-choice-page .choice-form {
  display: grid;
  gap: 18px;
}
body.flow-choice-page .choice-form > .card {
  margin: 0;
}
body.flow-choice-page .question-card {
  padding: clamp(24px, 4vw, 40px);
}
body.flow-choice-page .question-card .card-header {
  margin-bottom: 18px;
  text-align: center;
}
body.flow-choice-page .question-card .card-header h2 {
  margin: 0;
}
body.flow-choice-page .question-card .question-copy {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}
body.flow-choice-page .choice-actions-card {
  padding: 20px 18px;
}
body.flow-choice-page .choice-actions-card .validation {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  body.flow-choice-page .choice-form {
    gap: 16px;
  }
  body.flow-choice-page .question-card {
    padding: 20px 15px;
  }
}


/* v52 — maquette compacte, plus colorée et moins blanche */
body.flow-choice-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(39, 200, 238, .22), transparent 30%),
    radial-gradient(circle at 88% 38%, rgba(5, 120, 184, .12), transparent 34%),
    linear-gradient(180deg, #dff7fb 0%, #cfeef5 48%, #e5f8fb 100%);
}

body.flow-choice-page .flow-page {
  background:
    radial-gradient(circle at 92% 0%, rgba(39, 200, 238, .18), transparent 28%),
    linear-gradient(180deg, rgba(221, 248, 252, .82), rgba(204, 237, 246, .88));
  padding-bottom: 38px;
}

body.flow-choice-page .choice-form {
  gap: 14px;
}

body.flow-choice-page .question-card {
  padding: 20px;
  border: 1.5px solid rgba(39, 200, 238, .62);
  background: linear-gradient(145deg, rgba(249, 254, 255, .94), rgba(230, 248, 252, .96));
  box-shadow: 0 15px 38px rgba(6, 58, 87, .10);
}

body.flow-choice-page .question-card-pool {
  background: linear-gradient(145deg, #f4fdff 0%, #e4f7fb 100%);
}

body.flow-choice-page .question-card-treatment {
  background: linear-gradient(145deg, #edfaff 0%, #dff5fa 100%);
}

body.flow-choice-page .question-card-cover {
  background: linear-gradient(145deg, #f2fbfd 0%, #e2f5f9 100%);
}

body.flow-choice-page .question-card .card-header {
  margin-bottom: 12px;
}

body.flow-choice-page .question-card .card-header h2 {
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.06;
}

body.flow-choice-page .question-card .question-copy {
  max-width: 700px;
  margin: 0 auto 14px;
  font-size: 15px;
  line-height: 1.4;
}

body.flow-choice-page .question-card-pool .pool-grid {
  gap: 12px;
}

body.flow-choice-page .question-card-pool .choice-surface {
  background: linear-gradient(180deg, #f8feff 0%, #eaf8fb 100%);
}

body.flow-choice-page .question-card-pool .choice-content {
  padding-top: 12px;
  padding-bottom: 14px;
}

body.flow-choice-page .question-card-pool .choice-content .price {
  margin-top: 7px;
}

body.flow-choice-page .question-card-pool .choice-price-note {
  margin-top: 7px;
}

body.flow-choice-page .segmented {
  gap: 10px;
}

body.flow-choice-page .segmented-treatment {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.flow-choice-page .segmented-cover {
  grid-template-columns: 1fr;
}

body.flow-choice-page .segmented span {
  position: relative;
  min-height: 52px;
  gap: 10px;
  border: 1.5px solid rgba(39, 200, 238, .72);
  background: rgba(255, 255, 255, .70);
  box-shadow: 0 5px 16px rgba(5, 73, 106, .05);
}

body.flow-choice-page .segmented span svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #0d94c6;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-choice-page .segmented span b {
  font: inherit;
}

body.flow-choice-page .segmented span i {
  position: absolute;
  right: 11px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #139dcc;
  font-style: normal;
  font-weight: 950;
  opacity: 0;
  transform: scale(.75);
  transition: opacity .15s ease, transform .15s ease;
}

body.flow-choice-page .segmented input:checked + span {
  border-color: #078cd0;
  background: linear-gradient(135deg, #0b8dc4, #25c4e6);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(5, 120, 184, .20);
}

body.flow-choice-page .segmented input:checked + span svg {
  stroke: #ffffff;
}

body.flow-choice-page .segmented input:checked + span i {
  opacity: 1;
  transform: scale(1);
}

body.flow-choice-page .choice-actions-panel {
  padding: 2px 0 0;
}

body.flow-choice-page .choice-actions-panel .validation {
  min-height: 0;
  margin: 0 8px 10px;
  padding: 0;
}

body.flow-choice-page .choice-actions-panel .actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

body.flow-choice-page .choice-actions-panel .button {
  width: 100%;
  min-height: 58px;
}

body.flow-choice-page .choice-actions-panel .button-large {
  order: 1;
}

body.flow-choice-page .choice-actions-panel .button-secondary {
  order: 2;
  border: 1.5px solid rgba(39, 200, 238, .55);
  background: rgba(244, 253, 255, .84);
}

body.flow-choice-page .choice-actions-panel .button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-choice-page .flow-footer {
  background: linear-gradient(180deg, #d9f3f9 0%, #c7eaf3 100%);
}

@media (max-width: 560px) {
  body.flow-choice-page .choice-form {
    gap: 12px;
  }

  body.flow-choice-page .question-card {
    padding: 17px 13px;
  }

  body.flow-choice-page .question-card .card-header {
    margin-bottom: 10px;
  }

  body.flow-choice-page .question-card .card-header h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

  body.flow-choice-page .question-card .question-copy {
    margin-bottom: 12px;
    font-size: 13.5px;
    line-height: 1.38;
  }

  body.flow-choice-page .question-card-pool .choice-image {
    height: 126px;
  }

  body.flow-choice-page .question-card-pool .choice-content {
    padding: 10px 7px 12px;
  }

  body.flow-choice-page .question-card-pool .choice-content strong {
    font-size: 13.5px;
  }

  body.flow-choice-page .question-card-pool .choice-content .price {
    font-size: 20px;
  }

  body.flow-choice-page .segmented span {
    min-height: 49px;
    padding: 8px 9px;
  }

  body.flow-choice-page .segmented span svg {
    width: 21px;
    height: 21px;
  }

  body.flow-choice-page .segmented span i {
    right: 8px;
    width: 24px;
    height: 24px;
  }
}


/* v53 — palette plus neutre, accents bleus seulement */
body.flow-choice-page {
  background: #f3f6f8;
}

body.flow-choice-page .flow-page {
  background:
    radial-gradient(circle at 90% 0%, rgba(39, 200, 238, .08), transparent 30%),
    linear-gradient(180deg, #f7f9fa 0%, #eef3f5 100%);
}

body.flow-choice-page .question-card,
body.flow-choice-page .question-card-pool,
body.flow-choice-page .question-card-treatment,
body.flow-choice-page .question-card-cover {
  background: #ffffff;
  border-color: rgba(39, 200, 238, .42);
  box-shadow: 0 12px 30px rgba(6, 40, 60, .08);
}

body.flow-choice-page .question-card-pool .choice-surface {
  background: #ffffff;
}

body.flow-choice-page .choice-card input:checked + .choice-surface {
  background: #f3fbfd;
}

body.flow-choice-page .segmented span {
  background: #ffffff;
  border-color: rgba(39, 200, 238, .52);
  box-shadow: 0 4px 12px rgba(6, 40, 60, .04);
}

body.flow-choice-page .choice-actions-panel .button-secondary {
  background: #ffffff;
  border-color: rgba(39, 200, 238, .42);
}

body.flow-choice-page .flow-footer {
  background: #f8fbfc;
  border-top-color: #27c8ee;
}

body.flow-choice-page .progress-item {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(6, 40, 60, .06);
}


/* v55 — page choix : contours accentués, lecture plus nette, palette plus neutre */
body.flow-choice-page {
  background: #eef2f4;
}

body.flow-choice-page .flow-page {
  background:
    radial-gradient(circle at 90% 0%, rgba(39, 200, 238, .05), transparent 28%),
    linear-gradient(180deg, #f5f7f8 0%, #edf1f3 100%);
}

body.flow-choice-page .progress {
  margin-bottom: 22px;
}

body.flow-choice-page .progress-item {
  border: 2px solid #cfdde3;
  box-shadow: 0 8px 18px rgba(6, 31, 56, .04);
  color: #62717d;
}

body.flow-choice-page .progress-item.active {
  border-color: #2cc2e6;
  box-shadow: 0 10px 24px rgba(39, 200, 238, .16);
}

body.flow-choice-page .progress-number {
  background: #edf4f7;
  color: #566672;
}

body.flow-choice-page .progress-item.active .progress-number {
  background: #2cc2e6;
  color: #ffffff;
}

body.flow-choice-page .question-card,
body.flow-choice-page .question-card-pool,
body.flow-choice-page .question-card-treatment,
body.flow-choice-page .question-card-cover {
  background: #fbfcfd;
  border: 2px solid #cfe1e8;
  box-shadow: 0 14px 34px rgba(6, 31, 56, .06);
}

body.flow-choice-page .question-card .card-header h2 {
  color: #061f38;
  letter-spacing: -.02em;
}

body.flow-choice-page .question-card .question-copy {
  max-width: 560px;
  color: #5f707c;
  font-size: 16px;
  line-height: 1.5;
}

body.flow-choice-page .question-card-pool .pool-grid {
  gap: 16px;
}

body.flow-choice-page .choice-surface {
  border: 2.5px solid #82d9eb;
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(6, 31, 56, .05);
}

body.flow-choice-page .choice-card:hover .choice-surface {
  border-color: #31c6e8;
}

body.flow-choice-page .choice-card input:checked + .choice-surface {
  border: 3px solid #27c8ee;
  background: #f8fcfe;
  box-shadow:
    0 0 0 4px rgba(39, 200, 238, .12),
    0 16px 34px rgba(6, 31, 56, .10);
}

body.flow-choice-page .choice-image {
  background: #edf4f7;
  border-bottom: 2px solid #d5e7ed;
}

body.flow-choice-page .choice-content strong {
  color: #061f38;
  font-size: 18px;
  font-weight: 900;
}

body.flow-choice-page .choice-content .price {
  color: #078bc8;
  font-size: 33px;
  font-weight: 900;
}

body.flow-choice-page .choice-content small.choice-price-note {
  color: #61737f;
  font-size: 12.5px;
}

body.flow-choice-page .segmented {
  gap: 12px;
}

body.flow-choice-page .segmented span {
  min-height: 58px;
  border: 2px solid #cfe1e8;
  background: #ffffff;
  box-shadow: none;
}

body.flow-choice-page .segmented span b {
  font-weight: 850;
  font-size: 18px;
}

body.flow-choice-page .segmented span svg {
  stroke: #169dcb;
}

body.flow-choice-page .segmented input:checked + span {
  border-color: #26c6ea;
  background: linear-gradient(135deg, #0f92cb, #28c8ea);
  box-shadow: 0 12px 26px rgba(5, 120, 184, .18);
}

body.flow-choice-page .choice-actions-panel .validation {
  color: #b34735;
  font-weight: 700;
}

body.flow-choice-page .choice-actions-panel .button {
  min-height: 60px;
  font-size: 18px;
}

body.flow-choice-page .choice-actions-panel .button-large {
  box-shadow: 0 12px 28px rgba(5, 120, 184, .20);
}

body.flow-choice-page .choice-actions-panel .button-secondary {
  border: 2px solid #cfe1e8;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(6, 31, 56, .03);
}

body.flow-choice-page .flow-footer {
  background: #f7fafb;
  border-top: 4px solid #29c7ea;
}

@media (max-width: 560px) {
  body.flow-choice-page .flow-page {
    padding-bottom: 34px;
  }

  body.flow-choice-page .progress {
    margin-bottom: 18px;
  }

  body.flow-choice-page .question-card {
    padding: 18px 14px 20px;
  }

  body.flow-choice-page .question-card .card-header h2 {
    font-size: clamp(25px, 7vw, 33px);
  }

  body.flow-choice-page .question-card .question-copy {
    font-size: 14px;
    line-height: 1.45;
  }

  body.flow-choice-page .choice-surface {
    border-radius: 20px;
  }

  body.flow-choice-page .choice-image {
    height: 132px;
    border-radius: 18px 18px 0 0;
  }

  body.flow-choice-page .choice-content strong {
    font-size: 15px;
  }

  body.flow-choice-page .choice-content .price {
    font-size: 22px;
  }

  body.flow-choice-page .choice-content small.choice-price-note {
    font-size: 10.8px;
  }

  body.flow-choice-page .segmented span {
    min-height: 54px;
  }

  body.flow-choice-page .segmented span b {
    font-size: 16.5px;
  }

  body.flow-choice-page .choice-actions-panel .button {
    min-height: 58px;
    font-size: 17px;
  }
}


/* v56 — hiérarchie visuelle renforcée, fond chaud et bordures marine */
body.flow-choice-page {
  background: #f4f2ed;
}

body.flow-choice-page .flow-page {
  background:
    radial-gradient(circle at 88% 2%, rgba(39, 200, 238, .06), transparent 26%),
    linear-gradient(180deg, #f8f7f3 0%, #f1f0ec 100%);
}

body.flow-choice-page .progress-item {
  border: 2px solid #38556a;
  background: #ffffff;
  color: #405666;
  box-shadow: 0 8px 18px rgba(6, 31, 56, .07);
}

body.flow-choice-page .progress-item.active {
  border-color: #20bfe4;
  box-shadow: 0 0 0 2px rgba(32, 191, 228, .14), 0 10px 24px rgba(6, 31, 56, .09);
}

body.flow-choice-page .question-card,
body.flow-choice-page .question-card-pool,
body.flow-choice-page .question-card-treatment,
body.flow-choice-page .question-card-cover {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid #18394f;
  box-shadow: 0 14px 32px rgba(6, 31, 56, .09);
}

body.flow-choice-page .question-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #0c7fb4, #2ac7e8);
}

body.flow-choice-page .question-card .card-header {
  margin: 2px auto 18px;
  text-align: center;
}

body.flow-choice-page .question-card .card-header h2 {
  display: inline-block;
  max-width: 100%;
  margin: 0;
  padding: 9px 18px 10px;
  border: 2px solid #061f38;
  border-radius: 13px;
  background: #0b2d46;
  color: #ffffff;
  box-shadow: 0 5px 0 rgba(6, 31, 56, .15);
  letter-spacing: -.025em;
  line-height: 1.08;
}

body.flow-choice-page .question-card .question-copy {
  color: #435a69;
  font-weight: 550;
}

body.flow-choice-page .choice-surface {
  border: 2px solid #18394f;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(6, 31, 56, .07);
}

body.flow-choice-page .choice-card:hover .choice-surface {
  border-color: #0c7fb4;
}

body.flow-choice-page .choice-card input:checked + .choice-surface {
  border: 3px solid #20bfe4;
  background: #f8fdff;
  box-shadow:
    0 0 0 4px rgba(32, 191, 228, .15),
    0 15px 30px rgba(6, 31, 56, .12);
}

body.flow-choice-page .choice-image {
  border-bottom: 2px solid #18394f;
}

body.flow-choice-page .choice-content strong {
  color: #061f38;
  font-weight: 950;
}

body.flow-choice-page .choice-content .price {
  color: #067eae;
  text-shadow: 0 1px 0 #ffffff;
}

body.flow-choice-page .choice-price-note {
  color: #465d6c !important;
  font-weight: 550;
}

body.flow-choice-page .segmented span {
  border: 2px solid #18394f;
  background: #ffffff;
  color: #061f38;
  box-shadow: 0 6px 14px rgba(6, 31, 56, .05);
}

body.flow-choice-page .segmented span b {
  color: inherit;
  font-weight: 900;
}

body.flow-choice-page .segmented input:checked + span {
  border-color: #20bfe4;
  background: linear-gradient(135deg, #087dac, #22bfdf);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 120, 184, .24);
}

body.flow-choice-page .choice-actions-panel .button-secondary {
  border: 2px solid #18394f;
  color: #061f38;
}

body.flow-choice-page .flow-footer {
  background: #ffffff;
  border-top: 4px solid #18394f;
}

@media (max-width: 560px) {
  body.flow-choice-page .question-card {
    padding: 20px 14px 22px;
  }

  body.flow-choice-page .question-card::before {
    height: 5px;
  }

  body.flow-choice-page .question-card .card-header {
    margin-bottom: 16px;
  }

  body.flow-choice-page .question-card .card-header h2 {
    padding: 8px 12px 9px;
    border-radius: 11px;
    font-size: clamp(23px, 6.8vw, 31px);
    box-shadow: 0 4px 0 rgba(6, 31, 56, .15);
  }

  body.flow-choice-page .question-card .question-copy {
    font-size: 14px;
  }

  body.flow-choice-page .choice-surface {
    border-radius: 18px;
  }

  body.flow-choice-page .choice-image {
    border-radius: 16px 16px 0 0;
  }

  body.flow-choice-page .segmented span {
    min-height: 56px;
  }
}

/* v58 — 200/100 choix page: premium, consumer-first, dark panels */
body.flow-choice-page {
  --pc-navy: #06233d;
  --pc-navy-2: #08345a;
  --pc-cyan: #18bde6;
  --pc-blue: #0786cf;
  --pc-soft: #f7fbfd;
  --pc-line: rgba(6, 31, 56, .18);
  background:
    radial-gradient(circle at 12% 10%, rgba(24, 189, 230, .10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 48%, #ffffff 100%);
}

body.flow-choice-page .site-header {
  min-height: 94px;
  height: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(6, 31, 56, .10);
  box-shadow: 0 10px 30px rgba(6, 31, 56, .04);
}

body.flow-choice-page .brand.brand-split .brand-mark {
  height: 58px;
  width: 58px;
  object-fit: contain;
}

body.flow-choice-page .brand-wordmark-top,
body.flow-choice-page .brand-wordmark-bottom {
  font-size: 25px;
  line-height: .95;
  letter-spacing: -.04em;
}

body.flow-choice-page .phone {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1.5px solid rgba(6, 31, 56, .16);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--pc-navy);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.02em;
  box-shadow: 0 14px 32px rgba(6, 31, 56, .07);
}

body.flow-choice-page .phone-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 17px;
  color: var(--pc-navy);
}

body.flow-choice-page .flow-page {
  padding: 32px 0 34px;
  background:
    radial-gradient(circle at 16% 6%, rgba(24, 189, 230, .12), transparent 26%),
    linear-gradient(180deg, #f9fcfd 0%, #f3f8fb 52%, #ffffff 100%);
}

body.flow-choice-page .flow-page .container {
  width: min(1030px, calc(100% - 48px));
  max-width: min(1030px, calc(100vw - 48px));
}

body.flow-choice-page .progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(22px, 5vw, 58px);
  width: min(890px, 100%);
  margin: 0 auto 30px;
  isolation: isolate;
}

body.flow-choice-page .progress::before,
body.flow-choice-page .progress::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(22px, 4vw, 42px);
  border-top: 4px dotted rgba(6, 31, 56, .22);
  transform: translateY(-50%);
  z-index: -1;
}

body.flow-choice-page .progress::before { left: calc(33.333% - clamp(11px, 2vw, 21px)); }
body.flow-choice-page .progress::after { left: calc(66.666% - clamp(11px, 2vw, 21px)); }

body.flow-choice-page .progress-item {
  min-height: 70px;
  padding: 10px 18px;
  justify-content: center;
  gap: 12px;
  border: 1.5px solid rgba(6, 31, 56, .16);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--pc-navy);
  box-shadow: 0 12px 28px rgba(6, 31, 56, .06);
}

body.flow-choice-page .progress-item.active {
  border-color: transparent;
  background: linear-gradient(135deg, #0784d8 0%, #14bce5 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(8, 132, 216, .24);
}

body.flow-choice-page .progress-number {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: #edf2f5;
  color: #566a78;
  font-size: 20px;
  font-weight: 950;
}

body.flow-choice-page .progress-item.active .progress-number {
  background: #ffffff;
  color: #0784d8;
}

body.flow-choice-page .progress-icon,
body.flow-choice-page .progress-icon svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

body.flow-choice-page .progress-item strong {
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}

body.flow-choice-page .choice-form {
  display: grid;
  gap: 28px;
}

body.flow-choice-page .question-card,
body.flow-choice-page .question-card-pool,
body.flow-choice-page .question-card-treatment,
body.flow-choice-page .question-card-cover {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1.5px solid rgba(24, 189, 230, .72);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 189, 230, .20), transparent 30%),
    linear-gradient(135deg, #031c34 0%, #062b4d 48%, #041d35 100%);
  box-shadow: 0 18px 42px rgba(6, 31, 56, .18);
}

body.flow-choice-page .question-card::before,
body.flow-choice-page .question-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body.flow-choice-page .question-card::before {
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0793df, #2ad4ef);
}

body.flow-choice-page .question-card::after {
  top: 7px;
  right: 8px;
  width: 42px;
  height: 42px;
  border-top: 4px solid #18bde6;
  border-right: 4px solid #18bde6;
  border-radius: 0 15px 0 0;
  opacity: .95;
}

body.flow-choice-page .question-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto 24px;
  width: min(780px, 100%);
}

body.flow-choice-page .question-card-pool .question-head {
  width: min(820px, 100%);
}

body.flow-choice-page .question-icon {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(24, 189, 230, .85);
  border-radius: 50%;
  color: #18c9ef;
  background: rgba(0, 18, 34, .18);
  box-shadow: inset 0 0 0 1px rgba(24, 189, 230, .16);
}

body.flow-choice-page .question-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-choice-page .question-title-wrap {
  min-width: 0;
  color: #ffffff;
}

body.flow-choice-page .question-card .card-header {
  display: block;
  margin: 0 0 5px;
  text-align: left;
}

body.flow-choice-page .question-card .card-header h2 {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  font-size: clamp(29px, 4.4vw, 41px);
  line-height: 1.05;
  letter-spacing: -.045em;
  text-align: left;
  text-wrap: balance;
}

body.flow-choice-page .question-card .question-copy {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.36;
  font-weight: 520;
  text-align: left;
}

body.flow-choice-page .question-card-pool .pool-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
}

body.flow-choice-page .choice-surface {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, .90);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.flow-choice-page .choice-card:hover .choice-surface {
  transform: translateY(-3px);
  border-color: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .20);
}

body.flow-choice-page .choice-card input:focus-visible + .choice-surface {
  outline: 3px solid rgba(24, 189, 230, .55);
  outline-offset: 4px;
}

body.flow-choice-page .choice-card input:checked + .choice-surface {
  transform: translateY(-2px);
  border: 3px solid #1fc8eb;
  background: #ffffff;
  box-shadow:
    0 0 0 5px rgba(31, 200, 235, .17),
    0 18px 36px rgba(0, 0, 0, .25);
}

body.flow-choice-page .choice-selected-indicator {
  top: 12px;
  right: 12px;
  width: 58px;
  height: 58px;
  border: 4px solid #ffffff;
  background: linear-gradient(135deg, #0793df, #2ad4ef);
  color: #ffffff;
  font-size: 36px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(6, 31, 56, .25);
}

body.flow-choice-page .choice-image {
  height: 218px;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1.5px solid rgba(6, 31, 56, .18);
  border-radius: 0;
  background: #eaf6fa;
  overflow: hidden;
}

body.flow-choice-page .choice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.flow-choice-page .choice-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 16px 24px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
}

body.flow-choice-page .choice-content strong {
  min-height: 0;
  color: var(--pc-navy);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.03em;
}

body.flow-choice-page .choice-content .price {
  margin-top: 12px;
  color: #078bd0;
  font-size: 35px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.035em;
  text-shadow: none;
}

body.flow-choice-page .choice-price-note,
body.flow-choice-page .choice-content small.choice-price-note {
  min-height: 0;
  margin-top: 10px;
  display: grid !important;
  gap: 3px;
  color: #5d6e79 !important;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 760;
}

body.flow-choice-page .choice-price-note s {
  color: #788a95;
  text-decoration-thickness: 2px;
}

body.flow-choice-page .segmented,
body.flow-choice-page .segmented-treatment,
body.flow-choice-page .segmented-cover {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 38px);
}

body.flow-choice-page .segmented label {
  display: block;
}

body.flow-choice-page .segmented span {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 16px 72px 16px 28px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #ffffff;
  color: var(--pc-navy);
  box-shadow: 0 9px 20px rgba(0, 0, 0, .12);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

body.flow-choice-page .segmented span:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
}

body.flow-choice-page .segmented span svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  fill: none;
  stroke: #129bd6;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-choice-page .segmented span b {
  color: inherit;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -.02em;
}

body.flow-choice-page .segmented span i {
  position: absolute;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #078bd0, #25c6e8);
  color: #ffffff;
  font-size: 27px;
  font-style: normal;
  font-weight: 950;
  opacity: 0;
  transform: scale(.75);
  transition: opacity .16s ease, transform .16s ease;
}

body.flow-choice-page .segmented input:checked + span {
  transform: translateY(-2px);
  border-color: #1fc8eb;
  background: #ffffff;
  color: var(--pc-navy);
  box-shadow:
    0 0 0 5px rgba(31, 200, 235, .14),
    0 16px 32px rgba(0, 0, 0, .16);
}

body.flow-choice-page .segmented input:checked + span svg {
  stroke: #129bd6;
}

body.flow-choice-page .segmented input:checked + span i {
  opacity: 1;
  transform: scale(1);
}

body.flow-choice-page .choice-actions-panel {
  margin-top: -2px;
  padding: 0;
}

body.flow-choice-page .choice-actions-panel .validation {
  min-height: 0;
  margin: 0 0 10px;
  color: #b34234;
  font-weight: 850;
  text-align: center;
}

body.flow-choice-page .choice-actions-panel .actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  align-items: stretch;
}

body.flow-choice-page .choice-actions-panel .button {
  width: 100%;
  min-height: 76px;
  border-radius: 14px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -.025em;
}

body.flow-choice-page .choice-actions-panel .button small,
body.flow-choice-page .choice-actions-panel .button::after {
  display: block;
}

body.flow-choice-page .choice-actions-panel .button-large {
  order: 1;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(135deg, #0793df 0%, #12bde8 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 132, 216, .24);
}

body.flow-choice-page .choice-actions-panel .button-large::after {
  content: "Sélectionnez votre date de fermeture";
  font-size: 14px;
  font-weight: 650;
  opacity: .92;
  letter-spacing: 0;
}

body.flow-choice-page .choice-actions-panel .button-secondary {
  order: 2;
  flex-direction: column;
  gap: 5px;
  border: 1.5px solid rgba(6, 31, 56, .55);
  background: #ffffff;
  color: var(--pc-navy);
  box-shadow: 0 10px 24px rgba(6, 31, 56, .06);
}

body.flow-choice-page .choice-actions-panel .button-secondary::after {
  content: "Revenir à la page d’accueil";
  font-size: 14px;
  font-weight: 650;
  color: rgba(6, 31, 56, .72);
  letter-spacing: 0;
}

body.flow-choice-page .choice-actions-panel .button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-choice-page .flow-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 24px max(28px, calc((100vw - 1030px) / 2));
  border-top: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(24,189,230,.22), transparent 32%),
    linear-gradient(135deg, #031c34 0%, #062b4d 52%, #03192e 100%);
  color: #ffffff;
}

body.flow-choice-page .footer-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}

body.flow-choice-page .footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

body.flow-choice-page .footer-brand span {
  display: grid;
  gap: 0;
}

body.flow-choice-page .footer-brand strong:first-child {
  color: #18c9ef;
}

body.flow-choice-page .footer-brand strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.04em;
}

body.flow-choice-page .footer-social-wrap {
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 650;
}

body.flow-choice-page .flow-footer .footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

body.flow-choice-page .flow-footer .social-icon {
  width: 42px;
  height: 42px;
  border: 0;
  color: #ffffff;
}

body.flow-choice-page .flow-footer .social-icon svg {
  width: 22px;
  height: 22px;
}

body.flow-choice-page .flow-footer-credit {
  justify-self: end;
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,.86);
  text-align: right;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 650;
}

body.flow-choice-page .flow-footer-credit strong {
  color: #39d2ef;
  font-size: 18px;
  font-weight: 950;
}

@media (min-width: 861px) {
  body.flow-choice-page .question-card-pool {
    padding-inline: 32px;
  }
}

@media (max-width: 860px) {
  body.flow-choice-page .site-header {
    min-height: 82px;
  }

  body.flow-choice-page .flow-page .container {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
  }

  body.flow-choice-page .progress {
    gap: 12px;
    margin-bottom: 24px;
  }

  body.flow-choice-page .progress::before,
  body.flow-choice-page .progress::after {
    display: none;
  }

  body.flow-choice-page .progress-item {
    min-height: 58px;
    padding: 8px 10px;
    gap: 7px;
  }

  body.flow-choice-page .progress-number {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 17px;
  }

  body.flow-choice-page .progress-icon,
  body.flow-choice-page .progress-icon svg {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  body.flow-choice-page .progress-item strong {
    font-size: 12px;
  }

  body.flow-choice-page .choice-form {
    gap: 26px;
  }

  body.flow-choice-page .question-card,
  body.flow-choice-page .question-card-pool,
  body.flow-choice-page .question-card-treatment,
  body.flow-choice-page .question-card-cover {
    padding: 21px 15px 22px;
    border-radius: 18px;
  }

  body.flow-choice-page .question-head {
    width: 100%;
    gap: 14px;
    margin-bottom: 18px;
  }

  body.flow-choice-page .question-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  body.flow-choice-page .question-icon svg {
    width: 27px;
    height: 27px;
  }

  body.flow-choice-page .question-card .card-header h2 {
    font-size: clamp(24px, 6.1vw, 30px);
  }

  body.flow-choice-page .question-card .question-copy {
    font-size: 14px;
    line-height: 1.32;
  }

  body.flow-choice-page .question-card-pool .pool-grid {
    gap: 14px;
  }

  body.flow-choice-page .choice-image {
    height: 148px;
  }

  body.flow-choice-page .choice-selected-indicator {
    width: 47px;
    height: 47px;
    font-size: 29px;
    border-width: 3px;
  }

  body.flow-choice-page .choice-content {
    padding: 16px 10px 18px;
  }

  body.flow-choice-page .choice-content strong {
    font-size: 18px;
  }

  body.flow-choice-page .choice-content .price {
    font-size: 29px;
  }

  body.flow-choice-page .choice-content small.choice-price-note {
    font-size: 12.5px;
  }

  body.flow-choice-page .segmented,
  body.flow-choice-page .segmented-treatment,
  body.flow-choice-page .segmented-cover {
    gap: 14px;
  }

  body.flow-choice-page .segmented span {
    min-height: 68px;
    padding: 12px 54px 12px 18px;
    gap: 12px;
  }

  body.flow-choice-page .segmented span svg {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  body.flow-choice-page .segmented span b {
    font-size: 18px;
  }

  body.flow-choice-page .segmented span i {
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 23px;
  }

  body.flow-choice-page .choice-actions-panel .actions {
    gap: 14px;
  }

  body.flow-choice-page .choice-actions-panel .button {
    min-height: 68px;
    padding: 12px 10px;
    font-size: 18px;
    border-radius: 13px;
  }

  body.flow-choice-page .choice-actions-panel .button-large::after,
  body.flow-choice-page .choice-actions-panel .button-secondary::after {
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  body.flow-choice-page .site-header {
    min-height: 74px;
    padding: 12px 16px;
    gap: 8px;
  }

  body.flow-choice-page .brand.brand-split {
    gap: 8px;
  }

  body.flow-choice-page .brand.brand-split .brand-mark {
    height: 50px;
    width: 50px;
  }

  body.flow-choice-page .brand-wordmark-top,
  body.flow-choice-page .brand-wordmark-bottom {
    font-size: 21px;
  }

  body.flow-choice-page .phone {
    min-height: 44px;
    padding: 0 11px;
    gap: 7px;
    font-size: 18px;
  }

  body.flow-choice-page .phone-icon {
    width: 17px;
    height: 17px;
    font-size: 13px;
  }

  body.flow-choice-page .flow-page {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  body.flow-choice-page .flow-page .container {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }

  body.flow-choice-page .progress {
    gap: 8px;
    margin-bottom: 20px;
  }

  body.flow-choice-page .progress-item {
    min-height: 50px;
    padding: 6px 7px;
    gap: 4px;
    border-radius: 999px;
  }

  body.flow-choice-page .progress-number {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 15px;
  }

  body.flow-choice-page .progress-icon,
  body.flow-choice-page .progress-icon svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  body.flow-choice-page .progress-item strong {
    max-width: 45px;
    font-size: 9.8px;
    line-height: 1.05;
    white-space: normal;
  }

  body.flow-choice-page .choice-form {
    gap: 26px;
  }

  body.flow-choice-page .question-card,
  body.flow-choice-page .question-card-pool,
  body.flow-choice-page .question-card-treatment,
  body.flow-choice-page .question-card-cover {
    padding: 17px 12px 19px;
    border-radius: 16px;
  }

  body.flow-choice-page .question-card::before {
    height: 4px;
  }

  body.flow-choice-page .question-card::after {
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border-top-width: 3px;
    border-right-width: 3px;
    border-radius: 0 12px 0 0;
  }

  body.flow-choice-page .question-head {
    gap: 10px;
    margin-bottom: 16px;
    align-items: flex-start;
  }

  body.flow-choice-page .question-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    margin-top: 1px;
  }

  body.flow-choice-page .question-icon svg {
    width: 24px;
    height: 24px;
  }

  body.flow-choice-page .question-card .card-header h2 {
    font-size: clamp(22px, 6.4vw, 27px);
    line-height: 1.06;
  }

  body.flow-choice-page .question-card .question-copy {
    font-size: 12.8px;
    line-height: 1.28;
  }

  body.flow-choice-page .question-card-pool .pool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.flow-choice-page .choice-surface {
    border-radius: 14px;
    border-width: 1.5px;
  }

  body.flow-choice-page .choice-card input:checked + .choice-surface {
    border-width: 2.5px;
    box-shadow:
      0 0 0 4px rgba(31, 200, 235, .16),
      0 14px 28px rgba(0,0,0,.22);
  }

  body.flow-choice-page .choice-image {
    height: clamp(102px, 29vw, 130px);
  }

  body.flow-choice-page .choice-selected-indicator {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  body.flow-choice-page .choice-content {
    padding: 11px 7px 13px;
  }

  body.flow-choice-page .choice-content strong {
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.12;
  }

  body.flow-choice-page .choice-content .price {
    margin-top: 8px;
    font-size: clamp(22px, 6.3vw, 27px);
  }

  body.flow-choice-page .choice-content small.choice-price-note {
    margin-top: 7px;
    font-size: clamp(9.4px, 2.8vw, 11.2px);
    line-height: 1.25;
  }

  body.flow-choice-page .segmented,
  body.flow-choice-page .segmented-treatment,
  body.flow-choice-page .segmented-cover {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.flow-choice-page .segmented span {
    min-height: 58px;
    padding: 10px 40px 10px 12px;
    gap: 9px;
    border-radius: 13px;
  }

  body.flow-choice-page .segmented span svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  body.flow-choice-page .segmented span b {
    font-size: clamp(14px, 4vw, 17px);
  }

  body.flow-choice-page .segmented span i {
    right: 9px;
    width: 29px;
    height: 29px;
    font-size: 19px;
  }

  body.flow-choice-page .choice-actions-panel .actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.flow-choice-page .choice-actions-panel .button {
    min-height: 62px;
    padding: 10px 8px;
    font-size: clamp(15px, 4.3vw, 18px);
  }

  body.flow-choice-page .choice-actions-panel .button svg {
    width: 21px;
    height: 21px;
  }

  body.flow-choice-page .choice-actions-panel .button-large::after,
  body.flow-choice-page .choice-actions-panel .button-secondary::after {
    font-size: 10.5px;
    line-height: 1.1;
  }

  body.flow-choice-page .flow-footer {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    padding: 18px 16px;
  }

  body.flow-choice-page .footer-brand img {
    width: 42px;
    height: 42px;
  }

  body.flow-choice-page .footer-brand {
    gap: 8px;
  }

  body.flow-choice-page .footer-brand strong {
    font-size: 15px;
  }

  body.flow-choice-page .footer-social-wrap {
    font-size: 10.5px;
    gap: 5px;
  }

  body.flow-choice-page .flow-footer .footer-social {
    gap: 7px;
  }

  body.flow-choice-page .flow-footer .social-icon {
    width: 31px;
    height: 31px;
  }

  body.flow-choice-page .flow-footer .social-icon svg {
    width: 17px;
    height: 17px;
  }

  body.flow-choice-page .flow-footer-credit {
    font-size: 10.5px;
    gap: 2px;
  }

  body.flow-choice-page .flow-footer-credit strong {
    font-size: 12.5px;
  }
}

@media (max-width: 380px) {
  body.flow-choice-page .phone {
    font-size: 16px;
    padding-inline: 9px;
  }

  body.flow-choice-page .brand-wordmark-top,
  body.flow-choice-page .brand-wordmark-bottom {
    font-size: 18px;
  }

  body.flow-choice-page .brand.brand-split .brand-mark {
    height: 44px;
    width: 44px;
  }

  body.flow-choice-page .progress-item strong {
    display: none;
  }

  body.flow-choice-page .progress-item {
    min-height: 48px;
  }

  body.flow-choice-page .question-card .card-header h2 {
    font-size: 21px;
  }

  body.flow-choice-page .segmented span {
    padding-left: 9px;
    padding-right: 34px;
  }

  body.flow-choice-page .segmented span svg {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  body.flow-choice-page .segmented span i {
    right: 7px;
    width: 25px;
    height: 25px;
    font-size: 17px;
  }
}

/* v58.1 — small mobile polish */
@media (max-width: 860px) {
  body.flow-choice-page .progress-item strong {
    display: block;
  }
}
@media (max-width: 560px) {
  body.flow-choice-page .segmented input:not(:checked) + span {
    padding-right: 12px;
  }
  body.flow-choice-page .segmented-cover span b {
    font-size: clamp(13px, 3.7vw, 16px);
  }
  body.flow-choice-page .flow-footer-credit {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  body.flow-choice-page .flow-footer-credit strong {
    overflow-wrap: anywhere;
  }
}
@media (max-width: 380px) {
  body.flow-choice-page .progress-item strong {
    display: none;
  }
}

/* v58.2 — icon contrast */
body.flow-choice-page .phone-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.flow-choice-page .progress-item.active .progress-icon {
  color: #ffffff;
}
@media (max-width: 560px) {
  body.flow-choice-page .phone-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* v59 — correction header mobile: téléphone plus discret */
@media (max-width: 640px) {
  body.flow-choice-page .site-header {
    min-height: 72px;
    padding: 10px 14px;
    gap: 10px;
  }

  body.flow-choice-page .brand.brand-split {
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
  }

  body.flow-choice-page .brand.brand-split .brand-mark {
    width: 48px;
    height: 48px;
  }

  body.flow-choice-page .brand-wordmark-top,
  body.flow-choice-page .brand-wordmark-bottom {
    font-size: 20px;
    line-height: .94;
  }

  body.flow-choice-page .header-actions {
    flex: 0 0 auto;
    min-width: 0;
  }

  body.flow-choice-page .phone {
    min-height: 38px;
    padding: 0 12px;
    gap: 6px;
    font-size: 15.5px;
    line-height: 1;
    letter-spacing: -.01em;
    border-width: 1.25px;
    box-shadow: 0 8px 20px rgba(6, 31, 56, .055);
    white-space: nowrap;
  }

  body.flow-choice-page .phone-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
  }

  body.flow-choice-page .phone-icon svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.2;
  }
}

@media (max-width: 380px) {
  body.flow-choice-page .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  body.flow-choice-page .brand.brand-split .brand-mark {
    width: 44px;
    height: 44px;
  }

  body.flow-choice-page .brand-wordmark-top,
  body.flow-choice-page .brand-wordmark-bottom {
    font-size: 18px;
  }

  body.flow-choice-page .phone {
    min-height: 36px;
    padding: 0 10px;
    font-size: 14.5px;
  }

  body.flow-choice-page .phone-icon,
  body.flow-choice-page .phone-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* v60 — stepper minimaliste premium sur la page de sélection */
body.flow-choice-page .flow-page {
  padding-top: 24px;
}

body.flow-choice-page .progress {
  --step-node: 58px;
  --step-line: rgba(40, 91, 117, .24);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  width: min(620px, 100%);
  min-height: 84px;
  margin: 0 auto 24px;
  isolation: isolate;
}

body.flow-choice-page .progress::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(var(--step-node) / 2 - 1px);
  left: calc(16.666% + var(--step-node) / 2);
  right: calc(16.666% + var(--step-node) / 2);
  width: auto;
  border: 0;
  height: 2px;
  transform: none;
  background: linear-gradient(90deg, rgba(18, 175, 222, .72), var(--step-line) 42%, var(--step-line));
}

body.flow-choice-page .progress::after {
  display: none;
}

body.flow-choice-page .progress-item,
body.flow-choice-page .progress-item.active {
  position: relative;
  display: grid;
  grid-template-columns: var(--step-node);
  grid-template-rows: var(--step-node) auto;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #536b79;
  box-shadow: none;
}

body.flow-choice-page .progress-icon {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--step-node);
  height: var(--step-node);
  min-width: var(--step-node);
  border: 1.5px solid rgba(43, 94, 119, .27);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: #4d7183;
  box-shadow: 0 9px 24px rgba(6, 31, 56, .075), inset 0 0 0 5px rgba(238, 246, 249, .72);
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.flow-choice-page .progress-icon svg {
  width: 25px;
  height: 25px;
  flex: none;
  stroke-width: 1.9;
}

body.flow-choice-page .progress-item.active .progress-icon {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, #087fd2 0%, #21c8e9 100%);
  box-shadow: 0 12px 26px rgba(8, 132, 216, .24), inset 0 0 0 1px rgba(255, 255, 255, .24);
  transform: translateY(-1px);
}

body.flow-choice-page .progress-number,
body.flow-choice-page .progress-item.active .progress-number {
  position: absolute;
  z-index: 3;
  top: -4px;
  left: calc(50% - var(--step-node) / 2 - 2px);
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  min-width: 23px;
  flex: none;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #0a2741;
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(6, 31, 56, .17);
  transform: none;
}

body.flow-choice-page .progress-item.active .progress-number {
  background: #ffffff;
  color: #0784d8;
  box-shadow: 0 4px 12px rgba(4, 84, 139, .22);
}

body.flow-choice-page .progress-item strong {
  grid-column: 1;
  grid-row: 2;
  display: block;
  margin: 0;
  color: #617581;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

body.flow-choice-page .progress-item.active strong {
  color: #063452;
  font-weight: 950;
}

@media (max-width: 640px) {
  body.flow-choice-page .flow-page {
    padding-top: 18px;
  }

  body.flow-choice-page .flow-page .container {
    width: min(100% - 28px, 1030px);
    max-width: min(100vw - 28px, 1030px);
  }

  body.flow-choice-page .progress {
    --step-node: 50px;
    width: min(390px, 100%);
    min-height: 72px;
    margin-bottom: 17px;
  }

  body.flow-choice-page .progress-icon,
  body.flow-choice-page .progress-icon svg {
    flex-basis: auto;
  }

  body.flow-choice-page .progress-icon svg {
    width: 22px;
    height: 22px;
  }

  body.flow-choice-page .progress-number,
  body.flow-choice-page .progress-item.active .progress-number {
    top: -3px;
    left: calc(50% - var(--step-node) / 2 - 1px);
    width: 21px;
    height: 21px;
    min-width: 21px;
    font-size: 10px;
  }

  body.flow-choice-page .progress-item,
  body.flow-choice-page .progress-item.active {
    grid-template-columns: var(--step-node);
    grid-template-rows: var(--step-node) auto;
    gap: 7px;
    min-height: 0;
  }

  body.flow-choice-page .progress-item strong {
    display: block;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  body.flow-choice-page .progress {
    --step-node: 46px;
    min-height: 67px;
    margin-bottom: 14px;
  }

  body.flow-choice-page .progress-icon svg {
    width: 20px;
    height: 20px;
  }

  body.flow-choice-page .progress-item strong {
    display: block;
    font-size: 10.5px;
  }
}


/* V61 targeted polish — stepper borders + promoted section titles */
body.flow-choice-page .progress-icon {
  border: 2px solid #101820 !important;
  box-shadow: 0 8px 18px rgba(6, 31, 56, .10) !important;
}

body.flow-choice-page .progress-item.active .progress-icon {
  border-color: #101820 !important;
  box-shadow: 0 10px 22px rgba(6, 31, 56, .14) !important;
}

body.flow-choice-page .progress-number,
body.flow-choice-page .progress-item.active .progress-number {
  border-color: #101820 !important;
}

body.flow-choice-page .question-icon {
  background: #ffffff !important;
}

body.flow-choice-page .question-card .question-title-wrap {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}

body.flow-choice-page .question-card .card-header {
  margin: 0;
}

body.flow-choice-page .question-card .card-header h2 {
  margin: 0 !important;
  max-width: 100%;
  font-size: clamp(24px, 3.25vw, 36px) !important;
  line-height: 1.14 !important;
  letter-spacing: -.03em;
  text-wrap: balance;
}

body.flow-choice-page .question-card .question-copy {
  display: none !important;
}

@media (max-width: 640px) {
  body.flow-choice-page .question-card .card-header h2 {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 420px) {
  body.flow-choice-page .question-card .card-header h2 {
    font-size: 17px !important;
  }
}


/* V62 targeted polish — dark outline on phone pill */
body.flow-choice-page .phone {
  border: 2px solid #101820 !important;
  box-shadow: 0 10px 24px rgba(6, 31, 56, .08) !important;
}

@media (max-width: 640px) {
  body.flow-choice-page .phone {
    border-width: 2px !important;
  }
}

@media (max-width: 380px) {
  body.flow-choice-page .phone {
    border-width: 2px !important;
  }
}


/* V62 final polish — stronger phone pill outline + mobile spacing/title tune */
body.flow-choice-page .phone {
  background: #ffffff !important;
  border: 2px solid #101820 !important;
  box-shadow: 0 10px 24px rgba(6, 31, 56, .08) !important;
}

body.flow-choice-page .flow-page {
  padding-top: 24px !important;
}

body.flow-choice-page .progress {
  margin-bottom: 20px !important;
}

body.flow-choice-page .question-card .card-header h2 {
  text-wrap: pretty;
}

@media (max-width: 640px) {
  body.flow-choice-page .flow-page {
    padding-top: 16px !important;
  }

  body.flow-choice-page .progress {
    margin-bottom: 14px !important;
  }

  body.flow-choice-page .question-card .card-header h2 {
    font-size: 17px !important;
    line-height: 1.18 !important;
  }
}

@media (max-width: 380px) {
  body.flow-choice-page .question-card .card-header h2 {
    font-size: 16px !important;
  }
}


/* V63 targeted tweak — top accent line on main cards changed to dark navy */
body.flow-choice-page .question-card::before,
body.flow-choice-page .question-card-pool::before,
body.flow-choice-page .question-card-treatment::before,
body.flow-choice-page .question-card-cover::before {
  background: #041d35 !important;
}


/* V64 fix — remove the separate top strip so it fully blends into the card background */
body.flow-choice-page .question-card::before,
body.flow-choice-page .question-card-pool::before,
body.flow-choice-page .question-card-treatment::before,
body.flow-choice-page .question-card-cover::before {
  height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}


/* V65 targeted tweak — question icons toned down to support title hierarchy */
body.flow-choice-page .question-icon {
  border: 2px solid #101820 !important;
  color: #041d35 !important;
  background: #ffffff !important;
  box-shadow: 0 8px 18px rgba(6, 31, 56, .08) !important;
}

body.flow-choice-page .question-icon svg {
  stroke: currentColor !important;
}


/* V66 final visual direction — complete choice-page polish */
body.flow-choice-page {
  --final-navy: #061f38;
  --final-outline: #0b2235;
  --final-cyan: #19b8d8;
  --final-page: #eff7f9;
  --final-muted: #60717c;
  background: linear-gradient(180deg, #f9fcfd 0%, var(--final-page) 50%, #f7fafb 100%) !important;
}

body.flow-choice-page .site-header {
  background: #ffffff !important;
  border-bottom: 2px solid var(--final-outline) !important;
  box-shadow: 0 8px 24px rgba(6, 31, 56, .06) !important;
}

body.flow-choice-page .phone {
  border: 2px solid var(--final-outline) !important;
  color: var(--final-navy) !important;
  box-shadow: 0 8px 20px rgba(6, 31, 56, .06) !important;
}

body.flow-choice-page .flow-page {
  padding-top: 20px !important;
  background: linear-gradient(180deg, #f7fbfc 0%, #edf5f7 58%, #f8fbfc 100%) !important;
}

body.flow-choice-page .progress {
  --step-node: 54px;
  margin-bottom: 12px !important;
}

body.flow-choice-page .progress::before,
body.flow-choice-page .progress::after {
  border-top: 2px solid rgba(11, 34, 53, .18) !important;
}

body.flow-choice-page .progress-icon {
  border: 2px solid var(--final-outline) !important;
  background: #ffffff !important;
  color: #58717f !important;
  box-shadow: 0 6px 14px rgba(6, 31, 56, .06) !important;
}

body.flow-choice-page .progress-item.active .progress-icon {
  border-color: var(--final-outline) !important;
  background: linear-gradient(145deg, #0a91d4 0%, #21c7e6 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(8, 132, 216, .16) !important;
}

body.flow-choice-page .progress-number,
body.flow-choice-page .progress-item.active .progress-number {
  border: 2px solid var(--final-outline) !important;
}

body.flow-choice-page .progress-item strong {
  color: var(--final-muted) !important;
}

body.flow-choice-page .progress-item.active strong {
  color: var(--final-navy) !important;
}

body.flow-choice-page .promo-availability {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1.5px solid rgba(11, 34, 53, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--final-navy);
  box-shadow: 0 7px 18px rgba(6, 31, 56, .05);
  font-size: 14px;
  line-height: 1.2;
}

body.flow-choice-page .promo-availability svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--final-cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-choice-page .promo-availability strong {
  font-weight: 900;
}

body.flow-choice-page .choice-form {
  gap: 26px !important;
}

body.flow-choice-page .question-card,
body.flow-choice-page .question-card-pool,
body.flow-choice-page .question-card-treatment,
body.flow-choice-page .question-card-cover {
  border: 1.5px solid rgba(25, 184, 216, .72) !important;
  background: linear-gradient(180deg, #082f52 0%, #061f38 100%) !important;
  box-shadow: 0 16px 36px rgba(6, 31, 56, .15) !important;
}

body.flow-choice-page .question-card::before {
  display: none !important;
}

body.flow-choice-page .question-card::after {
  border-color: var(--final-cyan) !important;
  opacity: .88 !important;
}

body.flow-choice-page .question-head,
body.flow-choice-page .question-card-pool .question-head {
  width: 100% !important;
  max-width: 860px;
  gap: 16px !important;
  margin-bottom: 22px !important;
}

body.flow-choice-page .question-icon {
  width: 54px !important;
  height: 54px !important;
  flex: 0 0 54px !important;
  border: 2px solid var(--final-outline) !important;
  background: #f9fbfc !important;
  color: var(--final-navy) !important;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .08) !important;
}

body.flow-choice-page .question-icon svg {
  width: 27px !important;
  height: 27px !important;
  stroke-width: 1.9 !important;
}

body.flow-choice-page .question-card .card-header h2 {
  max-width: 760px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(27px, 3.7vw, 37px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  letter-spacing: -.035em !important;
  text-transform: none !important;
  text-wrap: balance;
}

body.flow-choice-page .choice-card input:checked + .choice-surface {
  border: 3px solid var(--final-cyan) !important;
  box-shadow: 0 0 0 3px rgba(25, 184, 216, .11), 0 14px 28px rgba(0, 0, 0, .18) !important;
}

body.flow-choice-page .choice-selected-indicator {
  width: 52px !important;
  height: 52px !important;
  border-width: 3px !important;
  background: var(--final-cyan) !important;
  font-size: 32px !important;
  box-shadow: 0 8px 18px rgba(6, 31, 56, .18) !important;
}

body.flow-choice-page .choice-content strong {
  color: var(--final-navy) !important;
  text-transform: none !important;
}

body.flow-choice-page .choice-content .price {
  color: #078fca !important;
}

body.flow-choice-page .choice-price-note,
body.flow-choice-page .choice-content small.choice-price-note {
  color: var(--final-muted) !important;
  font-weight: 700 !important;
}

body.flow-choice-page .segmented span {
  border-color: rgba(11, 34, 53, .06) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .10) !important;
}

body.flow-choice-page .segmented input:checked + span {
  border-color: var(--final-cyan) !important;
  box-shadow: 0 0 0 3px rgba(25, 184, 216, .10), 0 12px 24px rgba(0, 0, 0, .13) !important;
}

body.flow-choice-page .segmented span i {
  background: var(--final-cyan) !important;
}

body.flow-choice-page .choice-actions-panel .actions {
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  max-width: 720px;
  margin: 0 auto !important;
}

body.flow-choice-page .choice-actions-panel .button {
  min-height: 64px !important;
  border-radius: 14px !important;
  font-size: 20px !important;
}

body.flow-choice-page .choice-actions-panel .button-large {
  order: 1 !important;
  flex-direction: row !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #078fd2 0%, #1bbddd 100%) !important;
  box-shadow: 0 14px 28px rgba(8, 132, 216, .20) !important;
}

body.flow-choice-page .choice-actions-panel .button-secondary {
  order: 2 !important;
  min-height: 54px !important;
  flex-direction: row !important;
  gap: 9px !important;
  border: 1.5px solid var(--final-outline) !important;
  color: var(--final-navy) !important;
  background: #ffffff !important;
  box-shadow: 0 7px 16px rgba(6, 31, 56, .05) !important;
  font-size: 17px !important;
}

body.flow-choice-page .choice-actions-panel .button-large::after,
body.flow-choice-page .choice-actions-panel .button-secondary::after {
  display: none !important;
  content: none !important;
}

body.flow-choice-page .flow-footer {
  border-top: 0 !important;
  background: linear-gradient(180deg, #082f52 0%, #041b31 100%) !important;
}

body.flow-choice-page .flow-footer-credit strong {
  white-space: nowrap;
}

@media (max-width: 640px) {
  body.flow-choice-page .flow-page {
    padding-top: 16px !important;
  }

  body.flow-choice-page .progress {
    --step-node: 50px;
    margin-bottom: 10px !important;
  }

  body.flow-choice-page .promo-availability {
    margin-bottom: 16px;
    padding: 8px 12px;
    font-size: 12.5px;
  }

  body.flow-choice-page .question-card,
  body.flow-choice-page .question-card-pool,
  body.flow-choice-page .question-card-treatment,
  body.flow-choice-page .question-card-cover {
    padding: 17px 12px 19px !important;
  }

  body.flow-choice-page .question-head,
  body.flow-choice-page .question-card-pool .question-head {
    gap: 11px !important;
    margin-bottom: 17px !important;
    align-items: center !important;
  }

  body.flow-choice-page .question-icon {
    width: 46px !important;
    height: 46px !important;
    flex-basis: 46px !important;
  }

  body.flow-choice-page .question-icon svg {
    width: 23px !important;
    height: 23px !important;
  }

  body.flow-choice-page .question-card .card-header h2 {
    max-width: none !important;
    font-size: clamp(17px, 4.75vw, 20px) !important;
    line-height: 1.14 !important;
    letter-spacing: -.025em !important;
  }

  body.flow-choice-page .choice-selected-indicator {
    width: 40px !important;
    height: 40px !important;
    font-size: 25px !important;
  }

  body.flow-choice-page .choice-actions-panel .button {
    min-height: 60px !important;
    font-size: 18px !important;
  }

  body.flow-choice-page .choice-actions-panel .button-secondary {
    min-height: 50px !important;
    font-size: 16px !important;
  }

  body.flow-choice-page .flow-footer {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 16px !important;
    padding: 24px 18px 26px !important;
    text-align: center !important;
  }

  body.flow-choice-page .footer-brand,
  body.flow-choice-page .footer-social-wrap,
  body.flow-choice-page .flow-footer-credit {
    justify-self: center !important;
  }

  body.flow-choice-page .footer-brand {
    order: 1;
  }

  body.flow-choice-page .footer-social-wrap {
    order: 2;
  }

  body.flow-choice-page .flow-footer-credit {
    order: 3;
    display: flex !important;
    align-items: baseline;
    justify-content: center;
    gap: 5px !important;
    text-align: center !important;
    white-space: nowrap;
  }

  body.flow-choice-page .flow-footer-credit strong {
    font-size: 14px !important;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  body.flow-choice-page .question-card .card-header h2 {
    font-size: 16px !important;
  }

  body.flow-choice-page .flow-footer-credit {
    white-space: normal;
    flex-wrap: wrap;
  }
}


/* V67 targeted cleanup — remove promo chip, darken main card outline, tone down active step icon */
body.flow-choice-page .promo-availability {
  display: none !important;
}

body.flow-choice-page .question-card,
body.flow-choice-page .question-card-pool,
body.flow-choice-page .question-card-treatment,
body.flow-choice-page .question-card-cover {
  border: 1.5px solid var(--final-outline) !important;
}

body.flow-choice-page .progress-item.active .progress-icon {
  border-color: var(--final-outline) !important;
  background: #ffffff !important;
  color: var(--final-navy) !important;
  box-shadow: 0 6px 14px rgba(6, 31, 56, .08) !important;
}

body.flow-choice-page .progress-item.active .progress-icon svg {
  stroke: currentColor !important;
}

body.flow-choice-page .progress-item.active strong {
  color: var(--final-navy) !important;
}


/* V68 — compact three-step progress indicator */
.compact-progress {
  width: min(680px, 100%);
  margin: 0 auto 22px;
  padding: 14px 16px 13px;
  border: 1.5px solid #0b2235;
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 7px 18px rgba(6, 31, 56, .06);
}

.compact-progress-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  color: #061f38;
}

.compact-progress-label span {
  font-size: 13px;
  font-weight: 800;
  color: #60717c;
  white-space: nowrap;
}

.compact-progress-label strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  text-align: right;
}

.compact-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce7eb;
}

.compact-progress-track > span {
  display: block;
  width: var(--progress, 33.333%);
  height: 100%;
  border-radius: inherit;
  background: #0b2235;
}

body.flow-choice-page .compact-progress {
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .compact-progress {
    margin-bottom: 16px;
    padding: 11px 13px 12px;
    border-radius: 13px;
  }

  .compact-progress-label {
    gap: 10px;
    margin-bottom: 8px;
  }

  .compact-progress-label span {
    font-size: 11.5px;
  }

  .compact-progress-label strong {
    font-size: 13.5px;
  }

  .compact-progress-track {
    height: 6px;
  }

  body.flow-choice-page .compact-progress {
    margin-bottom: 14px;
  }
}


/* V69 fixed — selection polish applied directly on the official V68 base */
body.flow-choice-page .choice-card input:checked + .choice-surface {
  border: 2px solid var(--final-cyan) !important;
  box-shadow: 0 0 0 1px rgba(25, 184, 216, .14), 0 10px 20px rgba(0, 0, 0, .14) !important;
}

body.flow-choice-page .choice-selected-indicator {
  width: 54px !important;
  height: 54px !important;
  border-width: 4px !important;
  background: var(--final-cyan) !important;
  font-size: 33px !important;
  box-shadow: 0 6px 14px rgba(6, 31, 56, .14) !important;
}

body.flow-choice-page .segmented input:checked + span {
  border-color: var(--final-cyan) !important;
  box-shadow: 0 0 0 1px rgba(25, 184, 216, .14), 0 10px 18px rgba(0, 0, 0, .11) !important;
}

@media (max-width: 640px) {
  body.flow-choice-page .choice-selected-indicator {
    width: 42px !important;
    height: 42px !important;
    font-size: 26px !important;
    border-width: 3px !important;
  }
}


/* V70 action buttons refresh — more aligned with the site theme */
body.flow-choice-page .choice-actions-panel {
  margin-top: 22px !important;
}

body.flow-choice-page .choice-actions-panel .actions {
  gap: 14px !important;
  max-width: 720px;
}

body.flow-choice-page .choice-actions-panel .button {
  min-height: 66px !important;
  border-radius: 20px !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  transition: none !important;
}

body.flow-choice-page .choice-actions-panel .button svg {
  width: 22px !important;
  height: 22px !important;
  stroke-width: 2.3 !important;
}

body.flow-choice-page .choice-actions-panel .button-large {
  order: 1 !important;
  min-height: 70px !important;
  gap: 12px !important;
  color: #ffffff !important;
  border: 2px solid rgba(25, 184, 216, .85) !important;
  background: linear-gradient(180deg, #0a3d67 0%, #072b49 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 14px 28px rgba(4, 29, 53, .20) !important;
}

body.flow-choice-page .choice-actions-panel .button-large svg {
  stroke: #ffffff !important;
}

body.flow-choice-page .choice-actions-panel .button-secondary {
  order: 2 !important;
  min-height: 58px !important;
  gap: 10px !important;
  border: 2px solid var(--final-outline) !important;
  color: var(--final-navy) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%) !important;
  box-shadow: 0 8px 18px rgba(6, 31, 56, .06) !important;
  font-size: 18px !important;
}

body.flow-choice-page .choice-actions-panel .button-secondary svg,
body.flow-choice-page .choice-actions-panel .button-secondary span {
  color: var(--final-navy) !important;
}

@media (max-width: 640px) {
  body.flow-choice-page .choice-actions-panel .button {
    min-height: 62px !important;
    font-size: 18px !important;
    border-radius: 18px !important;
  }

  body.flow-choice-page .choice-actions-panel .button-large {
    min-height: 66px !important;
  }

  body.flow-choice-page .choice-actions-panel .button-secondary {
    min-height: 56px !important;
    font-size: 17px !important;
  }
}


/* V73 — compact unified footer on mobile */
@media (max-width: 640px) {
  body.flow-choice-page .flow-footer {
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "brand social"
      "credit credit";
    align-items: center !important;
    justify-items: stretch !important;
    gap: 12px 16px !important;
    padding: 16px 18px 14px !important;
    text-align: left !important;
  }

  body.flow-choice-page .footer-brand {
    grid-area: brand;
    order: initial !important;
    justify-self: start !important;
    gap: 9px !important;
  }

  body.flow-choice-page .footer-brand img {
    width: 46px !important;
    height: 46px !important;
  }

  body.flow-choice-page .footer-brand strong {
    font-size: 17px !important;
    line-height: .96 !important;
  }

  body.flow-choice-page .footer-social-wrap {
    grid-area: social;
    order: initial !important;
    justify-self: end !important;
    display: block !important;
  }

  body.flow-choice-page .footer-social-wrap > span {
    display: none !important;
  }

  body.flow-choice-page .flow-footer .footer-social {
    gap: 8px !important;
  }

  body.flow-choice-page .flow-footer .social-icon {
    width: 36px !important;
    height: 36px !important;
  }

  body.flow-choice-page .flow-footer .social-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  body.flow-choice-page .flow-footer-credit {
    grid-area: credit;
    order: initial !important;
    justify-self: center !important;
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center !important;
    white-space: nowrap !important;
    font-size: 11.5px !important;
  }

  body.flow-choice-page .flow-footer-credit strong {
    font-size: 13px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  body.flow-choice-page .flow-footer {
    padding-inline: 14px !important;
    gap: 10px 12px !important;
  }

  body.flow-choice-page .footer-brand img {
    width: 42px !important;
    height: 42px !important;
  }

  body.flow-choice-page .footer-brand strong {
    font-size: 15px !important;
  }

  body.flow-choice-page .flow-footer-credit {
    white-space: normal !important;
    flex-wrap: wrap !important;
  }
}


/* V74 — simplified calendar flow and corrected compact footer */
body.flow-calendar-page {
  background: linear-gradient(180deg, #eef8fb 0%, #f8fbfc 52%, #edf4f7 100%);
}

body.flow-calendar-page .flow-page {
  padding: 46px 0 0;
}

body.flow-calendar-page .calendar-intro {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

body.flow-calendar-page .calendar-intro h1 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

body.flow-calendar-page .calendar-intro > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.5;
}

body.flow-calendar-page .compact-progress {
  margin-bottom: 24px;
}

body.flow-calendar-page #calendarForm.card {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(11, 34, 53, .14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(6, 31, 56, .10);
}

body.flow-calendar-page .calendar-layout {
  gap: 20px;
}

body.flow-calendar-page .calendar-box,
body.flow-calendar-page .time-box {
  padding: 22px;
  border: 1.5px solid rgba(11, 34, 53, .14);
  border-radius: 20px;
  background: #ffffff;
}

body.flow-calendar-page .booking-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

body.flow-calendar-page .booking-step-title span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-size: 14px;
}

body.flow-calendar-page .calendar-toolbar {
  margin-bottom: 18px;
}

body.flow-calendar-page .calendar-toolbar strong {
  font-size: clamp(20px, 2.6vw, 27px);
}

body.flow-calendar-page .day {
  border: 1px solid transparent;
  background: #eef6f9;
}

body.flow-calendar-page .day:hover:not(:disabled) {
  border-color: rgba(24, 184, 216, .55);
  background: #e0f6fa;
}

body.flow-calendar-page .day.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 7px 16px rgba(6, 31, 56, .18);
}

body.flow-calendar-page .time-box h3 {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.15;
}

body.flow-calendar-page .time-help {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

body.flow-calendar-page .time-slots {
  margin-top: 18px;
  gap: 12px;
}

body.flow-calendar-page .time-slot {
  min-height: 92px;
  padding: 14px;
  border: 1.5px solid rgba(11, 34, 53, .14);
  border-radius: 17px;
  box-shadow: none;
}

body.flow-calendar-page .time-slot:hover:not(:disabled),
body.flow-calendar-page .time-slot.selected {
  border-color: var(--cyan);
  background: #f1fbfd;
  box-shadow: 0 0 0 2px rgba(24, 184, 216, .10);
}

body.flow-calendar-page .time-slot .hour {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 16px;
  background: var(--navy);
  font-size: 22px;
}

body.flow-calendar-page .time-slot strong {
  font-size: 19px;
}

body.flow-calendar-page .time-slot small {
  font-size: 14px;
}

body.flow-calendar-page .validation {
  margin-top: 12px;
  text-align: center;
}

body.flow-calendar-page .calendar-actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
  margin: 20px 0 0;
}

body.flow-calendar-page .calendar-actions .button {
  min-height: 58px;
  border-radius: 17px;
  font-size: 17px;
  font-weight: 850;
}

body.flow-calendar-page .calendar-actions .button-large {
  order: 2;
  border: 2px solid rgba(24, 184, 216, .80);
  background: linear-gradient(180deg, #0a3d67 0%, #072b49 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(6, 31, 56, .16);
}

body.flow-calendar-page .calendar-actions .button-secondary {
  order: 1;
  border: 2px solid var(--navy);
  background: #ffffff;
  color: var(--navy);
  box-shadow: none;
}

body.flow-calendar-page .flow-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(22px, 5vw, 60px);
  border-top: 0;
  background: linear-gradient(180deg, #082f52 0%, #041b31 100%);
  color: #ffffff;
}

body.flow-calendar-page .footer-brand,
body.flow-calendar-page .flow-footer-credit {
  color: #ffffff;
}

body.flow-calendar-page .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

body.flow-calendar-page .footer-brand img {
  width: 48px;
  height: 48px;
}

body.flow-calendar-page .footer-brand span {
  display: grid;
}

body.flow-calendar-page .footer-brand strong {
  font-size: 17px;
  line-height: .95;
}

body.flow-calendar-page .footer-social-wrap {
  display: grid;
  justify-items: center;
  gap: 7px;
}

body.flow-calendar-page .footer-social-wrap > span {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.76);
}

body.flow-calendar-page .flow-footer .footer-social {
  gap: 8px;
}

body.flow-calendar-page .flow-footer .social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #ffffff;
}

body.flow-calendar-page .flow-footer-credit {
  justify-self: end;
  display: grid;
  gap: 2px;
  text-align: right;
  text-decoration: none;
  font-size: 11px;
  color: rgba(255,255,255,.72);
}

body.flow-calendar-page .flow-footer-credit strong {
  color: #27c4e4;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 860px) {
  body.flow-calendar-page .calendar-layout {
    grid-template-columns: 1fr;
  }

  body.flow-calendar-page .calendar-actions {
    grid-template-columns: 1fr;
  }

  body.flow-calendar-page .calendar-actions .button-large {
    order: 1;
  }

  body.flow-calendar-page .calendar-actions .button-secondary {
    order: 2;
  }
}

@media (max-width: 640px) {
  body.flow-calendar-page .flow-page {
    padding-top: 28px;
  }

  body.flow-calendar-page .flow-page .container {
    width: min(100% - 24px, var(--max));
  }

  body.flow-calendar-page .calendar-intro {
    margin-bottom: 20px;
  }

  body.flow-calendar-page .calendar-intro h1 {
    font-size: 37px;
    line-height: 1.04;
  }

  body.flow-calendar-page .calendar-intro > p:last-child {
    font-size: 17px;
  }

  body.flow-calendar-page .compact-progress {
    margin-bottom: 18px;
  }

  body.flow-calendar-page #calendarForm.card {
    padding: 14px;
    border-radius: 21px;
  }

  body.flow-calendar-page .calendar-box,
  body.flow-calendar-page .time-box {
    padding: 16px;
    border-radius: 18px;
  }

  body.flow-calendar-page .booking-step-title {
    margin-bottom: 16px;
    font-size: 17px;
  }

  body.flow-calendar-page .time-slot {
    min-height: 82px;
  }

  body.flow-calendar-page .time-slot .hour {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  body.flow-calendar-page .calendar-actions .button {
    min-height: 58px;
    border-radius: 17px;
    font-size: 17px;
  }

  body.flow-calendar-page .flow-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand social"
      "credit credit";
    gap: 10px 14px;
    padding: 14px 16px 12px;
  }

  body.flow-calendar-page .footer-brand {
    grid-area: brand;
  }

  body.flow-calendar-page .footer-brand img {
    width: 42px;
    height: 42px;
  }

  body.flow-calendar-page .footer-brand strong {
    font-size: 15px;
  }

  body.flow-calendar-page .footer-social-wrap {
    grid-area: social;
  }

  body.flow-calendar-page .footer-social-wrap > span {
    display: none;
  }

  body.flow-calendar-page .flow-footer-credit {
    grid-area: credit;
    justify-self: stretch;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    padding-top: 9px;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  body.flow-calendar-page .calendar-intro h1 {
    font-size: 34px;
  }

  body.flow-calendar-page .flow-footer-credit {
    white-space: normal;
    flex-wrap: wrap;
  }
}

/* V75 — visual side-by-side time cards (calendar page only) */
body.flow-calendar-page .time-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

body.flow-calendar-page .time-slot {
  position: relative;
  min-width: 0;
  min-height: 178px;
  padding: 18px 12px 16px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  text-align: center;
  border: 1.5px solid rgba(11, 34, 53, .17);
  border-radius: 19px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9fb 100%);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(6, 31, 56, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

body.flow-calendar-page .time-slot-afternoon {
  background: linear-gradient(180deg, #ffffff 0%, #eef7fb 100%);
}

body.flow-calendar-page .time-slot::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: rgba(24, 184, 216, .28);
}

body.flow-calendar-page .time-slot:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(24, 184, 216, .72);
  background: linear-gradient(180deg, #ffffff 0%, #eaf9fc 100%);
  box-shadow: 0 12px 24px rgba(6, 31, 56, .10);
}

body.flow-calendar-page .time-slot.selected {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: linear-gradient(180deg, #ffffff 0%, #e5f8fc 100%);
  box-shadow: 0 0 0 3px rgba(24, 184, 216, .12), 0 12px 24px rgba(6, 31, 56, .10);
}

body.flow-calendar-page .time-slot.selected::before {
  background: var(--cyan);
}

body.flow-calendar-page .time-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5f7fb;
  color: #087b96;
}

body.flow-calendar-page .time-slot-afternoon .time-icon {
  background: #e8f1f8;
  color: #0a4d78;
}

body.flow-calendar-page .time-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-calendar-page .time-copy {
  display: grid;
  justify-items: center;
  gap: 2px;
}

body.flow-calendar-page .time-slot .hour {
  width: auto;
  height: auto;
  flex: initial;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.035em;
}

body.flow-calendar-page .time-slot strong {
  color: #486575;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

body.flow-calendar-page .time-check {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  opacity: 0;
  transform: scale(.72);
  transition: opacity .18s ease, transform .18s ease;
}

body.flow-calendar-page .time-slot.selected .time-check {
  opacity: 1;
  transform: scale(1);
}

body.flow-calendar-page .slot-status {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.flow-calendar-page .time-slot:disabled {
  cursor: not-allowed;
  opacity: .52;
  box-shadow: none;
}

@media (max-width: 640px) {
  body.flow-calendar-page .time-slots {
    gap: 9px;
  }

  body.flow-calendar-page .time-slot {
    min-height: 154px;
    padding: 16px 8px 14px;
    border-radius: 16px;
  }

  body.flow-calendar-page .time-icon {
    width: 44px;
    height: 44px;
  }

  body.flow-calendar-page .time-icon svg {
    width: 24px;
    height: 24px;
  }

  body.flow-calendar-page .time-slot .hour {
    font-size: clamp(27px, 9vw, 34px);
  }

  body.flow-calendar-page .time-slot strong {
    font-size: 13px;
  }

  body.flow-calendar-page .time-check {
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  body.flow-calendar-page .time-slot {
    min-height: 145px;
  }

  body.flow-calendar-page .time-slot .hour {
    font-size: 27px;
  }

  body.flow-calendar-page .time-slot strong {
    font-size: 12px;
  }
}


/* V76 — calendar page: remove redundant intro and accelerate the booking flow */
body.flow-calendar-page .flow-page {
  padding-top: 24px;
}

body.flow-calendar-page .calendar-progress {
  width: min(760px, 100%);
  margin-bottom: 16px;
  padding: 12px 15px 11px;
  border-color: rgba(11, 34, 53, .34);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(6, 31, 56, .05);
}

body.flow-calendar-page .calendar-progress .compact-progress-label {
  margin-bottom: 8px;
}

body.flow-calendar-page .calendar-progress .compact-progress-label span {
  color: #587080;
  font-size: 12px;
  letter-spacing: .02em;
}

body.flow-calendar-page .calendar-progress .compact-progress-label strong {
  color: var(--navy);
  font-size: 14px;
}

body.flow-calendar-page .calendar-progress .compact-progress-track {
  height: 5px;
}

body.flow-calendar-page #calendarForm.card {
  margin-top: 0;
}

body.flow-calendar-page .booking-step-title {
  margin-bottom: 16px;
  font-size: 20px;
  letter-spacing: -.02em;
}

@media (max-width: 640px) {
  body.flow-calendar-page .flow-page {
    padding-top: 16px;
  }

  body.flow-calendar-page .calendar-progress {
    margin-bottom: 12px;
    padding: 10px 12px 9px;
    border-radius: 12px;
  }

  body.flow-calendar-page .calendar-progress .compact-progress-label {
    margin-bottom: 7px;
  }

  body.flow-calendar-page #calendarForm.card {
    padding-top: 12px;
  }

  body.flow-calendar-page .booking-step-title {
    margin-bottom: 14px;
    font-size: 18px;
  }
}

/* V76 desktop balance: keep the quick time selector compact instead of stretching it */
body.flow-calendar-page .calendar-layout {
  align-items: start;
}

body.flow-calendar-page .time-box h3 {
  font-size: clamp(20px, 2vw, 24px);
}

body.flow-calendar-page .time-box h3 {
  font-size: clamp(20px, 1.5vw, 22px);
  white-space: nowrap;
}

@media (max-width: 370px) {
  body.flow-calendar-page .time-box h3 {
    white-space: normal;
  }
}

/* V81 — approved calendar design: desktop concept adapted faithfully to mobile */
body.flow-calendar-page {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 96% 4%, rgba(66, 209, 231, .20) 0, rgba(66, 209, 231, 0) 31%),
    linear-gradient(180deg, #edf8fc 0%, #f7fbfd 48%, #edf5f8 100%);
}

body.flow-calendar-page .flow-page {
  min-height: calc(100svh - 82px);
  padding: 34px 0 0;
  background: transparent;
}

body.flow-calendar-page .calendar-hero {
  width: min(760px, 68%);
  margin: 0 0 24px;
}

body.flow-calendar-page .calendar-hero .eyebrow {
  margin-bottom: 7px;
  color: #0578b8;
  font-size: 12px;
  letter-spacing: .15em;
}

body.flow-calendar-page .calendar-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(39px, 4.4vw, 61px);
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}

body.flow-calendar-page .calendar-hero > p:last-child {
  margin: 12px 0 0;
  color: #607585;
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.4;
}

body.flow-calendar-page .calendar-progress {
  width: min(330px, 30%);
  margin: -82px 0 22px auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.flow-calendar-page .calendar-progress .compact-progress-label {
  margin-bottom: 9px;
}

body.flow-calendar-page .calendar-progress .compact-progress-label span,
body.flow-calendar-page .calendar-progress .compact-progress-label strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

body.flow-calendar-page .calendar-progress .compact-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9e5ea;
}

body.flow-calendar-page .calendar-progress .compact-progress-track > span {
  border-radius: inherit;
  background: linear-gradient(90deg, #087dbb 0%, #20c4dd 100%);
}

body.flow-calendar-page #calendarForm.card {
  margin: 0 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 31, 56, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 52px rgba(6, 31, 56, .12);
}

body.flow-calendar-page .calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(330px, .92fr);
  gap: 0;
  align-items: stretch;
}

body.flow-calendar-page .calendar-box {
  padding: 28px 32px 26px;
  border: 0;
  border-right: 1px solid #d6e3e9;
  border-radius: 0;
  background: #ffffff;
}

body.flow-calendar-page .calendar-side {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(180deg, #f8fcfd 0%, #f1f8fb 100%);
}

body.flow-calendar-page .time-box {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.flow-calendar-page .booking-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 950;
  letter-spacing: -.025em;
}

body.flow-calendar-page .booking-step-title span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #0a3152 0%, #041c32 100%);
  color: #fff;
  box-shadow: 0 8px 16px rgba(6, 31, 56, .16);
  font-size: 15px;
  font-weight: 950;
}

body.flow-calendar-page .calendar-toolbar {
  margin-bottom: 15px;
}

body.flow-calendar-page .calendar-toolbar strong {
  color: var(--navy);
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 950;
  letter-spacing: -.025em;
}

body.flow-calendar-page .icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid #c6dbe5;
  border-radius: 13px;
  background: #fff;
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(6, 31, 56, .04);
}

body.flow-calendar-page .icon-button:hover:not(:disabled) {
  border-color: #26bdd9;
  background: #effbfe;
}

body.flow-calendar-page .weekdays,
body.flow-calendar-page .calendar-grid {
  gap: 8px;
}

body.flow-calendar-page .weekdays {
  margin-bottom: 8px;
}

body.flow-calendar-page .weekdays span {
  color: #657a88;
  font-size: 11px;
  font-weight: 950;
}

body.flow-calendar-page .day {
  position: relative;
  width: 100%;
  height: 48px;
  aspect-ratio: auto;
  border: 1.5px solid #c5dce7;
  border-radius: 13px;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
}

body.flow-calendar-page .day:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #27bdd9;
  background: #effbfe;
}

body.flow-calendar-page .day.selected {
  border-color: #06345a;
  background: linear-gradient(145deg, #0b456f 0%, #031f38 100%);
  color: #fff;
  box-shadow: 0 9px 17px rgba(6, 31, 56, .20);
}

body.flow-calendar-page .day.selected::after {
  content: "✓";
  position: absolute;
  top: 3px;
  right: 5px;
  color: #53d7e8;
  font-size: 9px;
  font-weight: 950;
}

body.flow-calendar-page .day:disabled {
  border-color: transparent;
  background: #eef2f4;
  color: #a9b7bf;
  opacity: 1;
}

body.flow-calendar-page .day.outside-month {
  border-color: transparent;
  background: #f2f5f6;
  color: #b2bec5;
}

body.flow-calendar-page .day.blank {
  visibility: visible;
}

body.flow-calendar-page .calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 17px;
  color: #607684;
  font-size: 12px;
  font-weight: 800;
}

body.flow-calendar-page .calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body.flow-calendar-page .calendar-legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

body.flow-calendar-page .legend-selected { background: #06345a; }
body.flow-calendar-page .legend-available { border: 2px solid #5fcde1; background: #fff; }
body.flow-calendar-page .legend-full { background: #d5e0e5; }

body.flow-calendar-page .time-box h3 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-transform: capitalize;
}

body.flow-calendar-page .time-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

body.flow-calendar-page .time-slot {
  position: relative;
  min-width: 0;
  min-height: 108px;
  padding: 18px 15px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  text-align: left;
  border: 2px solid #bfd2dc;
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  box-shadow: none;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

body.flow-calendar-page .time-slot::before {
  display: none;
}

body.flow-calendar-page .time-slot:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #25bdd9;
  background: #f3fcfe;
}

body.flow-calendar-page .time-slot.selected {
  transform: none;
  border-color: #10b9dc;
  background: linear-gradient(135deg, #f6feff 0%, #e7f8fb 100%);
  box-shadow: 0 0 0 3px rgba(16, 185, 220, .12);
}

body.flow-calendar-page .time-icon {
  display: none;
}

body.flow-calendar-page .time-copy {
  display: grid;
  justify-items: start;
  gap: 4px;
}

body.flow-calendar-page .time-slot .hour {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.045em;
}

body.flow-calendar-page .time-slot strong {
  color: #617485;
  font-size: 14px;
  font-weight: 850;
}

body.flow-calendar-page .time-check {
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #062b4a;
  color: #fff;
  font-size: 15px;
}

body.flow-calendar-page .time-slot:disabled {
  opacity: .55;
}

body.flow-calendar-page .appointment-summary {
  padding: 18px;
  border: 1.5px solid #bfd3dd;
  border-radius: 16px;
  background: rgba(255, 255, 255, .90);
}

body.flow-calendar-page .appointment-summary h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 950;
}

body.flow-calendar-page .appointment-summary dl {
  margin: 0;
}

body.flow-calendar-page .appointment-summary dl div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #d9e5ea;
}

body.flow-calendar-page .appointment-summary dl div:last-child {
  border-bottom: 0;
}

body.flow-calendar-page .appointment-summary dt {
  color: #627686;
  font-size: 14px;
}

body.flow-calendar-page .appointment-summary dd {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

body.flow-calendar-page .calendar-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-top: 1px solid #d5e3e9;
  background: #fff;
}

body.flow-calendar-page .calendar-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #607584;
  font-size: 13px;
  line-height: 1.4;
}

body.flow-calendar-page .calendar-note > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e3f7fc;
  color: #0780b9;
  font-size: 17px;
  font-weight: 950;
}

body.flow-calendar-page .validation {
  grid-column: 1 / -1;
  min-height: 0;
  margin: -5px 0 0;
  text-align: right;
}

body.flow-calendar-page .validation:empty {
  display: none;
}

body.flow-calendar-page .calendar-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  margin: 0;
}

body.flow-calendar-page .calendar-actions .button {
  min-height: 51px;
  padding: 12px 23px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

body.flow-calendar-page .calendar-actions .button-secondary {
  order: 1;
  border: 2px solid var(--navy);
  background: #fff;
  color: var(--navy);
}

body.flow-calendar-page .calendar-actions .button-large {
  order: 2;
  border: 2px solid #15b7d5;
  background: linear-gradient(180deg, #0a436e 0%, #062a49 100%);
  color: #fff;
  box-shadow: 0 9px 18px rgba(6, 31, 56, .14);
}

@media (max-width: 860px) {
  body.flow-calendar-page .flow-page {
    min-height: calc(100svh - 70px);
    padding-top: 23px;
  }

  body.flow-calendar-page .flow-page .container {
    width: min(100% - 28px, 720px);
  }

  body.flow-calendar-page .calendar-hero {
    width: 100%;
    margin-bottom: 20px;
  }

  body.flow-calendar-page .calendar-progress {
    width: 100%;
    margin: 0 0 16px;
  }

  body.flow-calendar-page #calendarForm.card {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.flow-calendar-page .calendar-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.flow-calendar-page .calendar-box,
  body.flow-calendar-page .time-box,
  body.flow-calendar-page .appointment-summary {
    border: 1px solid rgba(6, 31, 56, .13);
    border-radius: 19px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 25px rgba(6, 31, 56, .08);
  }

  body.flow-calendar-page .calendar-box {
    padding: 20px;
  }

  body.flow-calendar-page .calendar-side {
    display: grid;
    gap: 12px;
    padding: 0;
    background: transparent;
  }

  body.flow-calendar-page .time-box {
    padding: 20px;
  }

  body.flow-calendar-page .appointment-summary {
    padding: 18px 20px;
  }

  body.flow-calendar-page .calendar-bottom {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  body.flow-calendar-page .calendar-note {
    padding: 12px 15px;
    border: 1px solid #c9e6ef;
    border-radius: 17px;
    background: rgba(235, 249, 253, .95);
    box-shadow: 0 7px 18px rgba(6, 31, 56, .04);
  }

  body.flow-calendar-page .validation {
    margin: 0;
    text-align: center;
  }

  body.flow-calendar-page .calendar-actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  body.flow-calendar-page .calendar-actions .button {
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
    font-size: 17px;
  }

  body.flow-calendar-page .calendar-actions .button-secondary {
    order: 1;
  }

  body.flow-calendar-page .calendar-actions .button-large {
    order: 2;
  }
}

@media (max-width: 640px) {
  body.flow-calendar-page .site-header {
    height: 70px;
    padding-inline: 16px;
  }

  body.flow-calendar-page .brand.brand-split {
    gap: 8px;
  }

  body.flow-calendar-page .brand.brand-split .brand-mark {
    height: 43px;
  }

  body.flow-calendar-page .brand-wordmark-top,
  body.flow-calendar-page .brand-wordmark-bottom {
    font-size: 19px;
  }

  body.flow-calendar-page .header-actions .phone {
    min-height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1.5px solid #c8dce6;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 5px 14px rgba(6, 31, 56, .04);
  }

  body.flow-calendar-page .flow-page .container {
    width: min(100% - 20px, 560px);
  }

  body.flow-calendar-page .calendar-hero .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  body.flow-calendar-page .calendar-hero h1 {
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1.03;
  }

  body.flow-calendar-page .calendar-hero > p:last-child {
    margin-top: 9px;
    font-size: 15px;
  }

  body.flow-calendar-page .calendar-progress .compact-progress-label span,
  body.flow-calendar-page .calendar-progress .compact-progress-label strong {
    font-size: 13px;
  }

  body.flow-calendar-page .calendar-box,
  body.flow-calendar-page .time-box {
    padding: 17px;
  }

  body.flow-calendar-page .booking-step-title {
    margin-bottom: 16px;
    font-size: 18px;
  }

  body.flow-calendar-page .booking-step-title span {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 10px;
  }

  body.flow-calendar-page .calendar-toolbar {
    margin-bottom: 12px;
  }

  body.flow-calendar-page .calendar-toolbar strong {
    font-size: clamp(19px, 6vw, 24px);
  }

  body.flow-calendar-page .icon-button {
    width: 39px;
    height: 39px;
    border-radius: 11px;
    font-size: 24px;
  }

  body.flow-calendar-page .weekdays,
  body.flow-calendar-page .calendar-grid {
    gap: 5px;
  }

  body.flow-calendar-page .weekdays span {
    font-size: 9px;
  }

  body.flow-calendar-page .day {
    height: clamp(36px, 10vw, 44px);
    border-radius: 10px;
    font-size: 13px;
  }

  body.flow-calendar-page .calendar-legend {
    gap: 8px 13px;
    margin-top: 14px;
    font-size: 10px;
  }

  body.flow-calendar-page .time-box h3 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  body.flow-calendar-page .time-slots {
    gap: 8px;
  }

  body.flow-calendar-page .time-slot {
    min-height: 99px;
    padding: 15px 12px 13px;
    border-radius: 14px;
  }

  body.flow-calendar-page .time-slot .hour {
    font-size: clamp(30px, 10vw, 39px);
  }

  body.flow-calendar-page .time-slot strong {
    font-size: 13px;
  }

  body.flow-calendar-page .time-check {
    top: 9px;
    right: 9px;
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  body.flow-calendar-page .appointment-summary h3 {
    font-size: 16px;
  }

  body.flow-calendar-page .appointment-summary dl div {
    padding: 8px 0;
  }

  body.flow-calendar-page .appointment-summary dt,
  body.flow-calendar-page .appointment-summary dd {
    font-size: 13px;
  }

  body.flow-calendar-page .calendar-note {
    font-size: 13px;
  }

  body.flow-calendar-page .flow-footer {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.25fr);
    grid-template-areas: "brand social credit";
    gap: 8px;
    padding: 13px 12px;
  }

  body.flow-calendar-page .footer-brand {
    grid-area: brand;
    gap: 7px;
  }

  body.flow-calendar-page .footer-brand img {
    width: 38px;
    height: 38px;
  }

  body.flow-calendar-page .footer-brand strong {
    font-size: 12px;
  }

  body.flow-calendar-page .footer-social-wrap {
    grid-area: social;
    gap: 4px;
  }

  body.flow-calendar-page .footer-social-wrap > span {
    display: block;
    font-size: 9px;
  }

  body.flow-calendar-page .flow-footer .footer-social {
    gap: 5px;
  }

  body.flow-calendar-page .flow-footer .social-icon {
    width: 29px;
    height: 29px;
  }

  body.flow-calendar-page .flow-footer .social-icon svg {
    width: 14px;
    height: 14px;
  }

  body.flow-calendar-page .flow-footer-credit {
    grid-area: credit;
    justify-self: end;
    display: grid;
    gap: 2px;
    padding: 0;
    border: 0;
    text-align: right;
    white-space: normal;
  }

  body.flow-calendar-page .flow-footer-credit span {
    font-size: 8px;
  }

  body.flow-calendar-page .flow-footer-credit strong {
    font-size: 9px;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  body.flow-calendar-page .site-header {
    padding-inline: 11px;
  }

  body.flow-calendar-page .brand.brand-split .brand-mark {
    height: 39px;
  }

  body.flow-calendar-page .brand-wordmark-top,
  body.flow-calendar-page .brand-wordmark-bottom {
    font-size: 17px;
  }

  body.flow-calendar-page .header-actions .phone {
    min-height: 39px;
    padding-inline: 12px;
    font-size: 13px;
  }

  body.flow-calendar-page .calendar-box,
  body.flow-calendar-page .time-box {
    padding: 14px;
  }

  body.flow-calendar-page .day {
    height: 34px;
    font-size: 12px;
  }

  body.flow-calendar-page .calendar-legend {
    font-size: 9px;
  }

  body.flow-calendar-page .time-slot {
    min-height: 94px;
  }

  body.flow-calendar-page .appointment-summary {
    padding: 16px;
  }

  body.flow-calendar-page .appointment-summary dt,
  body.flow-calendar-page .appointment-summary dd {
    font-size: 12px;
  }

  body.flow-calendar-page .flow-footer {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  body.flow-calendar-page .footer-brand span {
    display: none;
  }
}

/* V81.1 — final spacing and exact mobile title/footer tune */
@media (min-width: 861px) {
  body.flow-calendar-page .calendar-progress {
    margin-bottom: 42px;
  }
}

body.flow-calendar-page .time-box h3 {
  text-transform: none;
}

@media (max-width: 640px) {
  body.flow-calendar-page .calendar-hero h1 {
    font-size: clamp(32px, 9vw, 38px);
  }
}

@media (max-width: 390px) {
  body.flow-calendar-page .calendar-hero h1 {
    font-size: 34px;
  }

  body.flow-calendar-page .flow-footer {
    grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 1.35fr);
  }

  body.flow-calendar-page .footer-brand span {
    display: grid;
  }

  body.flow-calendar-page .footer-brand strong {
    font-size: 10px;
  }

  body.flow-calendar-page .footer-brand img {
    width: 34px;
    height: 34px;
  }

  body.flow-calendar-page .flow-footer-credit strong {
    font-size: 8px;
  }
}

/* V82 — page choix: boutons d'action côte à côte sur mobile */
@media (max-width: 640px) {
  body.flow-choice-page .choice-actions-panel .actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    flex-direction: initial !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: none !important;
  }

  body.flow-choice-page .choice-actions-panel .button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 60px !important;
    padding: 12px 8px !important;
    border-radius: 18px !important;
    font-size: clamp(13px, 3.6vw, 16px) !important;
    line-height: 1.12 !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  body.flow-choice-page .choice-actions-panel .button-large {
    order: 1 !important;
    min-height: 60px !important;
  }

  body.flow-choice-page .choice-actions-panel .button-secondary {
    order: 2 !important;
    min-height: 60px !important;
  }

  body.flow-choice-page .choice-actions-panel .button svg {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
  }
}


/* V83 — ordre logique mobile: retour/modifier à gauche, action principale à droite */
@media (max-width: 640px) {
  body.flow-choice-page .choice-actions-panel .actions,
  body.flow-calendar-page .calendar-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: none !important;
  }

  body.flow-choice-page .choice-actions-panel .button,
  body.flow-calendar-page .calendar-actions .button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 60px !important;
    padding: 12px 8px !important;
    border-radius: 18px !important;
    font-size: clamp(13px, 3.6vw, 16px) !important;
    line-height: 1.12 !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  body.flow-choice-page .choice-actions-panel .button-secondary,
  body.flow-calendar-page .calendar-actions .button-secondary {
    order: 1 !important;
  }

  body.flow-choice-page .choice-actions-panel .button-large,
  body.flow-calendar-page .calendar-actions .button-large {
    order: 2 !important;
  }

  body.flow-choice-page .choice-actions-panel .button svg,
  body.flow-calendar-page .calendar-actions .button svg {
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
  }
}

/* V84 — calendar top rebuilt: compact navy intro, no pale-blue hero */
body.flow-calendar-page {
  background: #f4f7f9;
}

body.flow-calendar-page .flow-page {
  padding-top: 22px;
  background:
    linear-gradient(180deg, #f4f7f9 0%, #edf3f6 100%);
}

body.flow-calendar-page .calendar-intro-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
  align-items: center;
  gap: 34px;
  margin: 0 0 18px;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(31, 198, 222, .48);
  border-radius: 22px;
  background:
    radial-gradient(circle at 96% 0%, rgba(38, 204, 226, .22) 0, rgba(38, 204, 226, 0) 35%),
    linear-gradient(145deg, #0a416a 0%, #052844 54%, #031d34 100%);
  box-shadow: 0 14px 30px rgba(6, 31, 56, .16);
}

body.flow-calendar-page .calendar-intro-panel::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 70px;
  height: 40px;
  border-top: 4px solid #25c2dd;
  border-right: 4px solid #25c2dd;
  border-radius: 0 16px 0 0;
  opacity: .9;
  pointer-events: none;
}

body.flow-calendar-page .calendar-hero {
  width: auto;
  margin: 0;
}

body.flow-calendar-page .calendar-hero .eyebrow {
  margin: 0 0 6px;
  color: #41d3e8;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
}

body.flow-calendar-page .calendar-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.02;
  letter-spacing: -.042em;
  text-wrap: balance;
}

body.flow-calendar-page .calendar-progress {
  width: 100%;
  margin: 0;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

body.flow-calendar-page .calendar-progress .compact-progress-label {
  margin-bottom: 9px;
}

body.flow-calendar-page .calendar-progress .compact-progress-label span,
body.flow-calendar-page .calendar-progress .compact-progress-label strong {
  color: #fff;
  font-size: 12px;
}

body.flow-calendar-page .calendar-progress .compact-progress-label span {
  color: #c8f6fb;
}

body.flow-calendar-page .calendar-progress .compact-progress-track {
  height: 7px;
  background: rgba(255,255,255,.18);
}

body.flow-calendar-page .calendar-progress .compact-progress-track > span {
  background: linear-gradient(90deg, #18b4d5 0%, #55e0ec 100%);
  box-shadow: 0 0 16px rgba(58, 218, 236, .28);
}

@media (max-width: 860px) {
  body.flow-calendar-page .flow-page {
    padding-top: 14px;
  }

  body.flow-calendar-page .calendar-intro-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
    padding: 19px 20px 17px;
    border-radius: 19px;
  }

  body.flow-calendar-page .calendar-progress {
    padding: 11px 13px;
    border-radius: 13px;
  }
}

@media (max-width: 640px) {
  body.flow-calendar-page .flow-page .container {
    width: min(100% - 20px, 560px);
  }

  body.flow-calendar-page .calendar-intro-panel {
    gap: 12px;
    padding: 17px 16px 15px;
  }

  body.flow-calendar-page .calendar-intro-panel::after {
    top: 9px;
    right: 10px;
    width: 50px;
    height: 29px;
    border-width: 3px;
    border-radius: 0 12px 0 0;
  }

  body.flow-calendar-page .calendar-hero .eyebrow {
    margin-bottom: 5px;
    font-size: 9px;
  }

  body.flow-calendar-page .calendar-hero h1 {
    max-width: 88%;
    font-size: clamp(25px, 7.7vw, 34px);
    line-height: 1.05;
  }

  body.flow-calendar-page .calendar-progress .compact-progress-label span,
  body.flow-calendar-page .calendar-progress .compact-progress-label strong {
    font-size: 11px;
  }
}


/* V85 — calendrier harmonisé avec le panneau de réservation + espace avant le footer */
body.flow-calendar-page .flow-page {
  padding-bottom: 32px;
}

body.flow-calendar-page .calendar-box {
  position: relative;
  overflow: hidden;
  border-color: rgba(39, 195, 221, .48);
  background:
    radial-gradient(circle at 96% 0%, rgba(38, 204, 226, .20) 0, rgba(38, 204, 226, 0) 34%),
    linear-gradient(145deg, #0a416a 0%, #052844 55%, #031d34 100%);
  box-shadow: 0 16px 34px rgba(6, 31, 56, .17);
}

body.flow-calendar-page .calendar-box::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 14px;
  width: 58px;
  height: 32px;
  border-top: 4px solid #25c2dd;
  border-right: 4px solid #25c2dd;
  border-radius: 0 14px 0 0;
  opacity: .92;
  pointer-events: none;
}

body.flow-calendar-page .calendar-box .booking-step-title,
body.flow-calendar-page .calendar-box .calendar-toolbar strong {
  color: #ffffff;
}

body.flow-calendar-page .calendar-box .booking-step-title span {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

body.flow-calendar-page .calendar-box .icon-button {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

body.flow-calendar-page .calendar-box .icon-button:hover:not(:disabled) {
  border-color: #38d0e5;
  background: rgba(56, 208, 229, .16);
}

body.flow-calendar-page .calendar-box .weekdays span {
  color: #9feaf4;
}

body.flow-calendar-page .calendar-box .day {
  border-color: rgba(184, 219, 231, .82);
  background: rgba(255,255,255,.96);
  color: #06233d;
  box-shadow: 0 4px 10px rgba(0, 15, 29, .10);
}

body.flow-calendar-page .calendar-box .day:hover:not(:disabled) {
  border-color: #37d0e5;
  background: #effcff;
  box-shadow: 0 6px 14px rgba(0, 15, 29, .14);
}

body.flow-calendar-page .calendar-box .day.selected {
  border-color: #39d5e8;
  background: linear-gradient(145deg, #22c3dd 0%, #0686bd 100%);
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(73, 221, 238, .20), 0 9px 17px rgba(0, 15, 29, .24);
}

body.flow-calendar-page .calendar-box .day.selected::after {
  color: #ffffff;
}

body.flow-calendar-page .calendar-box .day:disabled,
body.flow-calendar-page .calendar-box .day.outside-month {
  border-color: rgba(255,255,255,.05);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.34);
  box-shadow: none;
}

body.flow-calendar-page .calendar-box .calendar-legend {
  color: rgba(255,255,255,.78);
}

body.flow-calendar-page .calendar-box .legend-selected {
  background: #20c2dc;
}

body.flow-calendar-page .calendar-box .legend-available {
  border-color: #8ee6f1;
  background: #ffffff;
}

body.flow-calendar-page .calendar-box .legend-full {
  background: rgba(255,255,255,.26);
}

@media (max-width: 860px) {
  body.flow-calendar-page .flow-page {
    padding-bottom: 26px;
  }
}

@media (max-width: 640px) {
  body.flow-calendar-page .flow-page {
    padding-bottom: 24px;
  }

  body.flow-calendar-page .calendar-box {
    border: 1px solid rgba(39, 195, 221, .55);
    box-shadow: 0 13px 28px rgba(6, 31, 56, .16);
  }

  body.flow-calendar-page .calendar-box::after {
    top: 10px;
    right: 11px;
    width: 45px;
    height: 26px;
    border-width: 3px;
    border-radius: 0 11px 0 0;
  }

  body.flow-calendar-page .calendar-box .day {
    border-color: rgba(193, 224, 234, .88);
    box-shadow: none;
  }
}


/* V86 — extend the approved navy/cyan calendar theme to the full booking page */
body.flow-calendar-page .time-box,
body.flow-calendar-page .appointment-summary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 195, 221, .48);
  background:
    radial-gradient(circle at 96% 0%, rgba(38, 204, 226, .18) 0, rgba(38, 204, 226, 0) 34%),
    linear-gradient(145deg, #0a416a 0%, #052844 55%, #031d34 100%);
  box-shadow: 0 16px 34px rgba(6, 31, 56, .15);
}

body.flow-calendar-page .time-box::after,
body.flow-calendar-page .appointment-summary::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 52px;
  height: 29px;
  border-top: 4px solid #25c2dd;
  border-right: 4px solid #25c2dd;
  border-radius: 0 13px 0 0;
  opacity: .9;
  pointer-events: none;
}

body.flow-calendar-page .time-box .booking-step-title,
body.flow-calendar-page .time-box h3,
body.flow-calendar-page .appointment-summary h3 {
  color: #fff;
}

body.flow-calendar-page .time-box .booking-step-title span {
  border: 1px solid rgba(255,255,255,.27);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

body.flow-calendar-page .time-slot,
body.flow-calendar-page .time-slot-afternoon {
  border-color: rgba(190, 220, 231, .90);
  background: rgba(255,255,255,.96);
  box-shadow: 0 5px 13px rgba(0, 15, 29, .12);
}

body.flow-calendar-page .time-slot:hover:not(:disabled) {
  border-color: #36cce3;
  background: #f2fdff;
  box-shadow: 0 8px 18px rgba(0, 15, 29, .17);
}

body.flow-calendar-page .time-slot.selected {
  border-color: #35d0e5;
  background: linear-gradient(145deg, #ffffff 0%, #e7fafd 100%);
  box-shadow: 0 0 0 3px rgba(53, 208, 229, .18), 0 9px 19px rgba(0, 15, 29, .18);
}

body.flow-calendar-page .time-slot:disabled {
  opacity: .72;
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.11);
  box-shadow: none;
}

body.flow-calendar-page .time-slot:disabled .hour,
body.flow-calendar-page .time-slot:disabled strong {
  color: rgba(255,255,255,.55);
}

body.flow-calendar-page .appointment-summary h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 13px;
}

body.flow-calendar-page .appointment-summary dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

body.flow-calendar-page .appointment-summary dl div {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.075);
}

body.flow-calendar-page .appointment-summary dl div:last-child {
  border-bottom: 1px solid rgba(255,255,255,.13);
}

body.flow-calendar-page .appointment-summary dt {
  color: #a9eaf3;
}

body.flow-calendar-page .appointment-summary dd {
  color: #fff;
}

body.flow-calendar-page .calendar-note {
  border-color: rgba(39, 195, 221, .46);
  background:
    radial-gradient(circle at 100% 0%, rgba(38, 204, 226, .14), transparent 38%),
    linear-gradient(145deg, #0a416a 0%, #052844 60%, #031d34 100%);
  color: #d9f5f8;
  box-shadow: 0 10px 24px rgba(6, 31, 56, .13);
}

body.flow-calendar-page .calendar-note > span {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(36, 197, 222, .18);
  color: #62e1ef;
}

body.flow-calendar-page .calendar-actions .button-secondary {
  border-color: #08365a;
  background: #fff;
  color: #06233d;
}

body.flow-calendar-page .calendar-actions .button-large {
  border-color: #26c5df;
  background: linear-gradient(145deg, #0a416a 0%, #052844 58%, #031d34 100%);
  box-shadow: 0 10px 22px rgba(6, 31, 56, .17);
}

@media (min-width: 861px) {
  body.flow-calendar-page .calendar-side {
    background: linear-gradient(180deg, #eaf4f7 0%, #e4eff3 100%);
  }

  body.flow-calendar-page .time-box {
    padding: 22px;
    border-radius: 18px;
  }

  body.flow-calendar-page .appointment-summary {
    padding: 18px;
  }
}

@media (max-width: 860px) {
  body.flow-calendar-page .time-box,
  body.flow-calendar-page .appointment-summary {
    border-color: rgba(39, 195, 221, .52);
    background:
      radial-gradient(circle at 96% 0%, rgba(38, 204, 226, .18) 0, rgba(38, 204, 226, 0) 34%),
      linear-gradient(145deg, #0a416a 0%, #052844 55%, #031d34 100%);
    box-shadow: 0 13px 28px rgba(6, 31, 56, .15);
  }

  body.flow-calendar-page .calendar-bottom {
    padding-bottom: 8px;
  }
}

@media (max-width: 640px) {
  body.flow-calendar-page .time-box::after,
  body.flow-calendar-page .appointment-summary::after {
    top: 10px;
    right: 11px;
    width: 43px;
    height: 25px;
    border-width: 3px;
    border-radius: 0 10px 0 0;
  }

  body.flow-calendar-page .time-box h3 {
    color: #d9f5f8;
  }

  body.flow-calendar-page .appointment-summary dl div {
    min-height: 40px;
    padding: 9px 10px;
  }

  body.flow-calendar-page .calendar-note {
    padding: 13px 14px;
  }
}

/* V87 — apply the approved V86 navy/cyan visual theme to the pool-selection page */
body.flow-choice-page {
  background: #f4f7f9 !important;
}

body.flow-choice-page .flow-page {
  background: linear-gradient(180deg, #f4f7f9 0%, #edf3f6 100%) !important;
}

body.flow-choice-page .compact-progress {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 195, 221, .52) !important;
  background:
    radial-gradient(circle at 96% 0%, rgba(38, 204, 226, .18) 0, rgba(38, 204, 226, 0) 35%),
    linear-gradient(145deg, #0a416a 0%, #052844 56%, #031d34 100%) !important;
  box-shadow: 0 14px 30px rgba(6, 31, 56, .16) !important;
}

body.flow-choice-page .compact-progress::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 12px;
  width: 45px;
  height: 25px;
  border-top: 3px solid #25c2dd;
  border-right: 3px solid #25c2dd;
  border-radius: 0 11px 0 0;
  opacity: .9;
  pointer-events: none;
}

body.flow-choice-page .compact-progress-label {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}

body.flow-choice-page .compact-progress-label span {
  color: #a9eaf3 !important;
}

body.flow-choice-page .compact-progress-label strong {
  color: #ffffff !important;
}

body.flow-choice-page .compact-progress-track {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .20) !important;
}

body.flow-choice-page .compact-progress-track > span {
  background: linear-gradient(90deg, #18b9d7 0%, #56e0ec 100%) !important;
  box-shadow: 0 0 14px rgba(55, 211, 230, .28);
}

body.flow-choice-page .question-card,
body.flow-choice-page .question-card-pool,
body.flow-choice-page .question-card-treatment,
body.flow-choice-page .question-card-cover {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 195, 221, .52) !important;
  background:
    radial-gradient(circle at 96% 0%, rgba(38, 204, 226, .18) 0, rgba(38, 204, 226, 0) 34%),
    linear-gradient(145deg, #0a416a 0%, #052844 55%, #031d34 100%) !important;
  box-shadow: 0 16px 34px rgba(6, 31, 56, .16) !important;
}

body.flow-choice-page .question-card::after {
  border-color: #25c2dd !important;
  opacity: .92 !important;
}

body.flow-choice-page .question-icon {
  border: 1px solid rgba(255, 255, 255, .28) !important;
  background: rgba(255, 255, 255, .12) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 7px 16px rgba(0, 15, 29, .15) !important;
}

body.flow-choice-page .question-icon svg {
  stroke: #ffffff !important;
}

body.flow-choice-page .question-card .card-header h2 {
  color: #ffffff !important;
}

body.flow-choice-page .choice-surface,
body.flow-choice-page .segmented span {
  border-color: rgba(193, 224, 234, .92) !important;
  background: rgba(255, 255, 255, .97) !important;
  box-shadow: 0 7px 17px rgba(0, 15, 29, .13) !important;
}

body.flow-choice-page .choice-card input:checked + .choice-surface,
body.flow-choice-page .segmented input:checked + span {
  border-color: #35d0e5 !important;
  background: linear-gradient(145deg, #ffffff 0%, #e9fbfd 100%) !important;
  box-shadow: 0 0 0 3px rgba(53, 208, 229, .17), 0 10px 22px rgba(0, 15, 29, .17) !important;
}

body.flow-choice-page .choice-selected-indicator,
body.flow-choice-page .segmented span i {
  background: linear-gradient(145deg, #22c3dd 0%, #078cc2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 7px 16px rgba(0, 49, 80, .22) !important;
}

body.flow-choice-page .choice-content .price {
  color: #078fc8 !important;
}

body.flow-choice-page .choice-actions-panel .button-secondary {
  border-color: #08365a !important;
  background: #ffffff !important;
  color: #06233d !important;
}

body.flow-choice-page .choice-actions-panel .button-large {
  border-color: #26c5df !important;
  background: linear-gradient(145deg, #0a416a 0%, #052844 58%, #031d34 100%) !important;
  box-shadow: 0 10px 22px rgba(6, 31, 56, .18) !important;
}

@media (max-width: 640px) {
  body.flow-choice-page .compact-progress {
    padding: 14px 15px 15px !important;
    border-radius: 18px !important;
  }

  body.flow-choice-page .question-card,
  body.flow-choice-page .question-card-pool,
  body.flow-choice-page .question-card-treatment,
  body.flow-choice-page .question-card-cover {
    border-radius: 22px !important;
    box-shadow: 0 13px 28px rgba(6, 31, 56, .16) !important;
  }

  body.flow-choice-page .question-icon {
    width: 48px !important;
    height: 48px !important;
    flex-basis: 48px !important;
  }

  body.flow-choice-page .choice-actions-panel {
    margin-bottom: 22px !important;
  }
}

/* V88 — page prix/paiement harmonisée avec le thème marine/cyan approuvé */
body.flow-payment-page {
  background: #eef4f7;
}

body.flow-payment-page .flow-page {
  min-height: auto;
  padding: 30px 0 38px;
  background: linear-gradient(180deg, #f4f8fa 0%, #eaf1f4 100%);
}

body.flow-payment-page .payment-intro-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(39, 195, 221, .52);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 0%, rgba(38, 204, 226, .20) 0, rgba(38, 204, 226, 0) 35%),
    linear-gradient(145deg, #0a416a 0%, #052844 55%, #031d34 100%);
  box-shadow: 0 16px 34px rgba(6, 31, 56, .16);
}

body.flow-payment-page .payment-intro-panel::after,
body.flow-payment-page .payment-card::after,
body.flow-payment-page .payment-summary::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 14px;
  width: 56px;
  height: 31px;
  border-top: 4px solid #25c2dd;
  border-right: 4px solid #25c2dd;
  border-radius: 0 14px 0 0;
  opacity: .92;
  pointer-events: none;
}

body.flow-payment-page .payment-hero,
body.flow-payment-page .payment-progress {
  position: relative;
  z-index: 1;
}

body.flow-payment-page .payment-hero .eyebrow {
  margin: 0 0 8px;
  color: #54dceb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.flow-payment-page .payment-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

body.flow-payment-page .payment-progress {
  width: 100%;
  margin: 0;
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

body.flow-payment-page .payment-progress .compact-progress-label,
body.flow-payment-page .payment-progress .compact-progress-label strong {
  color: #ffffff;
}

body.flow-payment-page .payment-progress .compact-progress-label span {
  color: #a9eaf3;
}

body.flow-payment-page .payment-progress .compact-progress-track {
  background: rgba(255,255,255,.20);
}

body.flow-payment-page .payment-progress .compact-progress-track > span {
  background: linear-gradient(90deg, #18b9d7 0%, #56e0ec 100%);
  box-shadow: 0 0 14px rgba(55, 211, 230, .28);
}

body.flow-payment-page .payment-checkout {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: 18px;
}

body.flow-payment-page .payment-card,
body.flow-payment-page .payment-summary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 195, 221, .50);
  background:
    radial-gradient(circle at 96% 0%, rgba(38, 204, 226, .17) 0, rgba(38, 204, 226, 0) 35%),
    linear-gradient(145deg, #0a416a 0%, #052844 56%, #031d34 100%);
  box-shadow: 0 15px 32px rgba(6, 31, 56, .15);
}

body.flow-payment-page .payment-card {
  padding: 24px;
  border-radius: 22px;
}

body.flow-payment-page .payment-section-heading,
body.flow-payment-page .payment-summary-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

body.flow-payment-page .payment-step {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 7px 16px rgba(0,15,29,.15);
}


body.flow-payment-page .payment-section-heading > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.flow-payment-page .payment-section-heading h2,
body.flow-payment-page .payment-summary-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.12;
}

body.flow-payment-page .payment-section-heading p {
  margin: 4px 0 0;
  color: #a9eaf3;
  font-size: 13px;
  line-height: 1.35;
}

body.flow-payment-page .payment-methods-strip {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

body.flow-payment-page .payment-methods-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

body.flow-payment-page .payment-methods-head strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

body.flow-payment-page .payment-methods-head span {
  color: #b8eef5;
  font-size: 12px;
  line-height: 1.35;
}

body.flow-payment-page .payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.flow-payment-page .pay-badge {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid rgba(190,220,231,.92);
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  color: #06233d;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: 0 5px 13px rgba(0, 15, 29, .10);
}

body.flow-payment-page .pay-logo {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

body.flow-payment-page .pay-visa .pay-logo {
  background: #1a4fbf;
  color: #ffffff;
}

body.flow-payment-page .pay-visa span:last-child {
  color: #1a4fbf;
}

body.flow-payment-page .pay-mastercard {
  gap: 9px;
}

body.flow-payment-page .pay-mastercard-mark {
  position: relative;
  width: 28px;
  height: 18px;
  flex: 0 0 28px;
}

body.flow-payment-page .pay-mastercard-mark span {
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
}

body.flow-payment-page .pay-mastercard-mark span:first-child {
  left: 0;
  background: #eb001b;
}

body.flow-payment-page .pay-mastercard-mark span:last-child {
  right: 0;
  background: #f79e1b;
  mix-blend-mode: multiply;
}

body.flow-payment-page .pay-paypal .pay-logo {
  background: #003087;
  color: #ffffff;
}

body.flow-payment-page .pay-paypal span:last-child {
  color: #003087;
}

body.flow-payment-page .pay-apple .pay-logo {
  background: #111111;
  color: #ffffff;
}

body.flow-payment-page .pay-google .pay-logo {
  background: linear-gradient(135deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
  color: #ffffff;
}

body.flow-payment-page .pay-interac {
  background: linear-gradient(135deg, #f7c833 0%, #ffdb59 100%);
  border-color: #e3bf46;
  color: #1f1f1f;
}

body.flow-payment-page .payment-methods-caption {
  margin: 10px 2px 0;
  color: #b8eef5;
  font-size: 11px;
  line-height: 1.45;
}

body.flow-payment-page .payment-card .input-grid {
  position: relative;
  z-index: 1;
}

body.flow-payment-page .payment-card .input-grid label {
  color: #dff8fb;
  font-size: 13px;
}

body.flow-payment-page .payment-card input,
body.flow-payment-page .payment-card textarea {
  border: 2px solid rgba(190, 220, 231, .92);
  background: rgba(255,255,255,.98);
  color: #061f38;
  box-shadow: 0 5px 13px rgba(0, 15, 29, .10);
}

body.flow-payment-page .payment-card input:focus,
body.flow-payment-page .payment-card textarea:focus {
  border-color: #35d0e5;
  box-shadow: 0 0 0 3px rgba(53, 208, 229, .18), 0 7px 15px rgba(0, 15, 29, .14);
}

body.flow-payment-page .payment-card textarea {
  min-height: 100px;
  resize: vertical;
}

body.flow-payment-page .card-payment-note {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #d9f5f8;
}

body.flow-payment-page .card-payment-note strong {
  color: #62e1ef;
}

body.flow-payment-page .payment-back-button {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  margin: 13px auto 0;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(109, 225, 239, .62);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #dffbff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

body.flow-payment-page .payment-back-button:hover {
  border-color: #69e4f2;
  background: rgba(42, 202, 224, .16);
  transform: translateY(-1px);
}

body.flow-payment-page .payment-back-button:focus-visible {
  outline: 3px solid rgba(83, 220, 236, .28);
  outline-offset: 3px;
}

body.flow-payment-page .payment-summary {
  position: relative;
  top: auto;
  margin-top: 0;
  padding: 24px;
  border-radius: 22px;
}

body.flow-payment-page .payment-summary-heading {
  padding-right: 44px;
}


body.flow-payment-page .payment-summary-heading .eyebrow {
  margin: 0 0 3px;
  color: #54dceb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.flow-payment-page .payment-summary dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

body.flow-payment-page .payment-summary dl div {
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.075);
}

body.flow-payment-page .payment-summary dt {
  color: #a9eaf3;
}

body.flow-payment-page .payment-summary dd {
  color: #ffffff;
}

body.flow-payment-page .payment-summary .price-lines {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 13px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.075);
}

body.flow-payment-page .payment-summary .price-lines div {
  color: #d9f5f8;
}

body.flow-payment-page .payment-summary .total-line {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 15px 14px;
  border: 1px solid rgba(56, 214, 232, .45);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(34,195,221,.22), rgba(5,56,91,.45));
}

body.flow-payment-page .payment-summary .total-line span {
  color: #d9f5f8;
  font-weight: 800;
}

body.flow-payment-page .payment-summary .total-line strong {
  color: #ffffff;
  font-size: 31px;
}

body.flow-payment-page .payment-summary .promo-note {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(36,197,222,.13);
  color: #c9f7fa;
}

body.flow-payment-page .payment-summary .button-large {
  position: relative;
  z-index: 1;
  min-height: 58px;
  border-color: #54dceb;
  background: linear-gradient(135deg, #22c3dd 0%, #078cc2 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 16, 31, .22);
}

body.flow-payment-page .payment-footer {
  min-height: 116px;
  padding: 20px max(24px, calc((100vw - var(--max))/2));
  border-top: 0;
  background: linear-gradient(145deg, #07395f 0%, #052a49 52%, #031d34 100%);
  color: #ffffff;
}

body.flow-payment-page .payment-footer .footer-brand,
body.flow-payment-page .payment-footer .footer-social-wrap,
body.flow-payment-page .payment-footer .flow-footer-credit {
  display: flex;
  align-items: center;
}

body.flow-payment-page .payment-footer .footer-brand {
  gap: 10px;
  color: #ffffff;
}

body.flow-payment-page .payment-footer .footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

body.flow-payment-page .payment-footer .footer-brand span {
  display: grid;
  line-height: .95;
}

body.flow-payment-page .payment-footer .footer-brand strong {
  color: #ffffff;
  font-size: 17px;
}

body.flow-payment-page .payment-footer .footer-social-wrap {
  flex-direction: column;
  gap: 7px;
  color: #d9f5f8;
  font-weight: 800;
}

body.flow-payment-page .payment-footer .footer-social {
  display: flex;
  gap: 9px;
}

body.flow-payment-page .payment-footer .social-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #ffffff;
}

body.flow-payment-page .payment-footer .social-icon svg {
  width: 22px;
  height: 22px;
}

body.flow-payment-page .payment-footer .flow-footer-credit {
  flex-direction: column;
  align-items: flex-end;
  color: #d9f5f8;
  font-weight: 700;
}

body.flow-payment-page .payment-footer .flow-footer-credit strong {
  color: #2fc7e1;
}

@media (max-width: 860px) {
  body.flow-payment-page .payment-intro-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.flow-payment-page .payment-summary {
    position: relative;
    top: auto;
    order: initial;
  }
}

@media (max-width: 640px) {
  body.flow-payment-page .flow-page {
    padding: 20px 0 28px;
  }

  body.flow-payment-page .flow-page .container {
    width: min(100% - 20px, 560px);
  }

  body.flow-payment-page .payment-intro-panel {
    gap: 14px;
    margin-bottom: 16px;
    padding: 18px 17px 16px;
    border-radius: 22px;
  }

  body.flow-payment-page .payment-intro-panel::after,
  body.flow-payment-page .payment-card::after,
  body.flow-payment-page .payment-summary::after {
    top: 10px;
    right: 11px;
    width: 44px;
    height: 25px;
    border-width: 3px;
    border-radius: 0 11px 0 0;
  }

  body.flow-payment-page .payment-hero .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }

  body.flow-payment-page .payment-hero h1 {
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(20px, 5.8vw, 24px);
    letter-spacing: -.04em;
  }

  body.flow-payment-page .payment-progress {
    padding: 11px 13px;
    border-radius: 13px;
  }

  body.flow-payment-page .payment-checkout {
    gap: 14px;
  }

  body.flow-payment-page .payment-card,
  body.flow-payment-page .payment-summary {
    padding: 18px 16px;
    border-radius: 22px;
    box-shadow: 0 13px 28px rgba(6, 31, 56, .15);
  }

  body.flow-payment-page .payment-section-heading,
  body.flow-payment-page .payment-summary-heading {
    gap: 12px;
    margin-bottom: 17px;
  }

  body.flow-payment-page .payment-step {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
    font-size: 20px;
  }

  body.flow-payment-page .payment-section-heading h2,
  body.flow-payment-page .payment-summary-heading h2 {
    font-size: 22px;
  }

  body.flow-payment-page .payment-section-heading p {
    font-size: 12px;
  }

  body.flow-payment-page .payment-methods-strip {
    margin-bottom: 16px;
    padding: 13px 12px 11px;
    border-radius: 15px;
  }

  body.flow-payment-page .payment-methods-head {
    margin-bottom: 10px;
  }

  body.flow-payment-page .payment-methods-head strong {
    font-size: 13px;
  }

  body.flow-payment-page .payment-methods-head span {
    font-size: 11px;
  }

  body.flow-payment-page .payment-methods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  body.flow-payment-page .pay-badge {
    min-height: 48px;
    padding: 9px 10px;
    border-radius: 13px;
    font-size: 13px;
  }

  body.flow-payment-page .pay-logo {
    width: 22px;
    height: 22px;
    font-size: 15px;
  }

  body.flow-payment-page .pay-mastercard-mark {
    width: 24px;
    height: 16px;
    flex-basis: 24px;
  }

  body.flow-payment-page .pay-mastercard-mark span {
    width: 16px;
    height: 16px;
  }

  body.flow-payment-page .payment-methods-caption {
    font-size: 10px;
  }

  body.flow-payment-page .payment-card .input-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  body.flow-payment-page .payment-card .input-grid label.full {
    grid-column: auto;
  }

  body.flow-payment-page .payment-card input,
  body.flow-payment-page .payment-card textarea {
    min-height: 54px;
    border-radius: 13px;
  }

  body.flow-payment-page .payment-summary dl div {
    min-height: 42px;
    padding: 9px 10px;
  }

  body.flow-payment-page .payment-summary .total-line strong {
    font-size: 28px;
  }

  body.flow-payment-page .payment-back-button {
    width: 100%;
    min-height: 46px;
    margin-top: 12px;
    font-size: 13px;
  }

  body.flow-payment-page .payment-footer {
    min-height: 112px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 16px;
  }

  body.flow-payment-page .payment-footer .footer-brand img {
    width: 52px;
    height: 52px;
  }

  body.flow-payment-page .payment-footer .footer-brand strong {
    font-size: 15px;
  }

  body.flow-payment-page .payment-footer .footer-social-wrap > span {
    display: none;
  }

  body.flow-payment-page .payment-footer .social-icon {
    width: 42px;
    height: 42px;
  }

  body.flow-payment-page .payment-footer .flow-footer-credit {
    grid-column: 1 / -1;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.16);
    font-size: 12px;
  }
}

/* V89 — page choix : bannière d’introduction harmonisée avec la page Date et heure */
body.flow-choice-page .choice-intro-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 22px;
  padding: clamp(28px, 4.4vw, 46px) clamp(24px, 4.2vw, 44px) clamp(24px, 3.7vw, 38px);
  border: 1px solid rgba(39, 195, 221, .56);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 2%, rgba(38, 204, 226, .20) 0, rgba(38, 204, 226, 0) 34%),
    linear-gradient(145deg, #0a416a 0%, #052844 56%, #031d34 100%);
  box-shadow: 0 17px 36px rgba(6, 31, 56, .17);
}

body.flow-choice-page .choice-intro-panel::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 76px;
  height: 43px;
  border-top: 4px solid #25c2dd;
  border-right: 4px solid #25c2dd;
  border-radius: 0 17px 0 0;
  opacity: .94;
  pointer-events: none;
}

body.flow-choice-page .choice-hero,
body.flow-choice-page .choice-progress {
  position: relative;
  z-index: 1;
}

body.flow-choice-page .choice-hero {
  width: min(760px, 88%);
}

body.flow-choice-page .choice-hero .eyebrow {
  margin: 0 0 10px;
  color: #59dce9;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.flow-choice-page .choice-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.042em;
  text-wrap: balance;
}

body.flow-choice-page .choice-intro-panel .choice-progress {
  width: 100%;
  margin: clamp(25px, 3.2vw, 34px) 0 0;
  padding: 17px 19px 16px !important;
  border: 1px solid rgba(255, 255, 255, .20) !important;
  border-radius: 17px !important;
  background: rgba(255, 255, 255, .075) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 9px 22px rgba(0, 14, 28, .11) !important;
}

body.flow-choice-page .choice-intro-panel .choice-progress::after {
  display: none !important;
  content: none !important;
}

body.flow-choice-page .choice-intro-panel .compact-progress-label {
  margin-bottom: 11px;
}

body.flow-choice-page .choice-intro-panel .compact-progress-label span,
body.flow-choice-page .choice-intro-panel .compact-progress-label strong {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 900;
}

body.flow-choice-page .choice-intro-panel .compact-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, .22) !important;
}

body.flow-choice-page .choice-intro-panel .compact-progress-track > span {
  background: linear-gradient(90deg, #19b9d7 0%, #55e0ec 100%) !important;
  box-shadow: 0 0 15px rgba(55, 211, 230, .30);
}

@media (max-width: 640px) {
  body.flow-choice-page .flow-page {
    padding-top: 14px !important;
  }

  body.flow-choice-page .choice-intro-panel {
    margin-bottom: 15px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    box-shadow: 0 14px 29px rgba(6, 31, 56, .17);
  }

  body.flow-choice-page .choice-intro-panel::after {
    top: 12px;
    right: 13px;
    width: 49px;
    height: 29px;
    border-width: 3px;
    border-radius: 0 12px 0 0;
  }

  body.flow-choice-page .choice-hero {
    width: 92%;
  }

  body.flow-choice-page .choice-hero .eyebrow {
    margin-bottom: 6px;
    font-size: 9.5px;
    letter-spacing: .15em;
  }

  body.flow-choice-page .choice-hero h1 {
    max-width: 310px;
    font-size: clamp(27px, 8.2vw, 32px);
    line-height: 1.04;
    letter-spacing: -.035em;
    text-wrap: pretty;
  }

  body.flow-choice-page .choice-intro-panel .choice-progress {
    margin-top: 15px;
    padding: 11px 13px 10px !important;
    border-radius: 14px !important;
  }

  body.flow-choice-page .choice-intro-panel .compact-progress-label {
    gap: 10px;
    margin-bottom: 7px;
  }

  body.flow-choice-page .choice-intro-panel .compact-progress-label span,
  body.flow-choice-page .choice-intro-panel .compact-progress-label strong {
    font-size: 11.5px;
  }

  body.flow-choice-page .choice-intro-panel .compact-progress-track {
    height: 6px;
  }
}

@media (max-width: 370px) {
  body.flow-choice-page .choice-hero h1 {
    font-size: 27px;
  }

  body.flow-choice-page .choice-intro-panel .compact-progress-label span,
  body.flow-choice-page .choice-intro-panel .compact-progress-label strong {
    font-size: 11.5px;
  }
}


/* V91 — page choix : en-tête mobile plus compact pour réduire la hauteur inutile */

/* V92 — page choix : titre principal sur une ligne et titres de questions plus nets */
body.flow-choice-page .choice-hero h1,
body.flow-choice-page .question-card .card-header h2 {
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.flow-choice-page .question-card .card-header h2 {
  color: #ffffff !important;
  font-weight: 950 !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .18), 0 0 1px rgba(255, 255, 255, .18);
}

@media (max-width: 640px) {
  body.flow-choice-page .choice-hero {
    width: 100%;
  }

  body.flow-choice-page .choice-hero h1 {
    max-width: none;
    font-size: clamp(18px, 5.7vw, 23px);
    line-height: 1.08;
    letter-spacing: -.03em;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  body.flow-choice-page .question-card .card-header h2 {
    font-size: 18px !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 370px) {
  body.flow-choice-page .choice-hero h1 {
    font-size: 17px;
  }

  body.flow-choice-page .question-card .card-header h2 {
    font-size: 17px !important;
  }
}

/* V93 — harmonisation du séparateur sous le header de la page de choix */
body.flow-choice-page .site-header {
  border-bottom: 1px solid rgba(216, 231, 238, .9) !important;
  box-shadow: none !important;
}


/* V101 — boutons de retour harmonisés avec le thème marine/cyan */
body.flow-choice-page .choice-actions-panel .themed-back-button,
body.flow-calendar-page .calendar-actions .themed-back-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1.5px solid rgba(69, 211, 231, .64) !important;
  background:
    radial-gradient(circle at 15% 0%, rgba(61, 214, 232, .18), transparent 42%),
    linear-gradient(145deg, #0c4a72 0%, #073657 52%, #04243e 100%) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 10px 22px rgba(6, 31, 56, .16) !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.14);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

body.flow-choice-page .choice-actions-panel .themed-back-button::before,
body.flow-calendar-page .calendar-actions .themed-back-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 42%, rgba(84, 220, 235, .12) 58%, transparent 74%);
  transform: translateX(-100%);
  transition: transform .35s ease;
}

body.flow-choice-page .choice-actions-panel .themed-back-button:hover,
body.flow-calendar-page .calendar-actions .themed-back-button:hover {
  transform: translateY(-2px);
  border-color: #54dceb !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 14px 26px rgba(6, 31, 56, .22) !important;
}

body.flow-choice-page .choice-actions-panel .themed-back-button:hover::before,
body.flow-calendar-page .calendar-actions .themed-back-button:hover::before {
  transform: translateX(100%);
}

body.flow-choice-page .choice-actions-panel .themed-back-button:focus-visible,
body.flow-calendar-page .calendar-actions .themed-back-button:focus-visible {
  outline: 3px solid rgba(84, 220, 235, .34);
  outline-offset: 3px;
}

body.flow-choice-page .choice-actions-panel .themed-back-icon,
body.flow-calendar-page .calendar-actions .themed-back-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(98, 225, 239, .58);
  border-radius: 999px;
  background: rgba(36, 197, 222, .16);
  color: #73e7f2;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

body.flow-choice-page .choice-actions-panel .themed-back-label,
body.flow-calendar-page .calendar-actions .themed-back-label {
  color: #ffffff;
  font-weight: 850;
  letter-spacing: -.015em;
}

@media (max-width: 640px) {
  body.flow-choice-page .choice-actions-panel .themed-back-button,
  body.flow-calendar-page .calendar-actions .themed-back-button {
    min-height: 60px !important;
    padding: 10px 10px !important;
    border-radius: 18px !important;
    gap: 8px !important;
  }

  body.flow-choice-page .choice-actions-panel .themed-back-icon,
  body.flow-calendar-page .calendar-actions .themed-back-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    font-size: 16px;
  }

  body.flow-choice-page .choice-actions-panel .themed-back-label,
  body.flow-calendar-page .calendar-actions .themed-back-label {
    font-size: clamp(12px, 3.35vw, 15px);
    white-space: nowrap;
  }
}


/* V102 — force le même rendu du bouton de retour sur choix et calendrier */
body.flow-choice-page .choice-actions-panel .themed-back-button .themed-back-label,
body.flow-calendar-page .calendar-actions .themed-back-button .themed-back-label {
  color: #ffffff !important;
}

body.flow-choice-page .choice-actions-panel .themed-back-button .themed-back-icon,
body.flow-calendar-page .calendar-actions .themed-back-button .themed-back-icon {
  color: #73e7f2 !important;
}

/* V106 — finition globale du parcours de réservation */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.social-icon-disabled {
  cursor: default;
  opacity: .72;
}

/* Choix — contenu du service, toile et zone desservie */
body.flow-choice-page .service-included-panel,
body.flow-choice-page .service-area-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 195, 221, .46);
  border-radius: 24px;
  box-shadow: 0 15px 32px rgba(6, 31, 56, .13);
}

body.flow-choice-page .service-included-panel {
  padding: 22px 24px;
  background:
    radial-gradient(circle at 94% 0%, rgba(38, 204, 226, .16), transparent 34%),
    linear-gradient(145deg, #0a416a 0%, #052844 58%, #031d34 100%);
  color: #fff;
}

body.flow-choice-page .service-included-heading,
body.flow-choice-page .service-area-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

body.flow-choice-page .service-included-heading .eyebrow,
body.flow-choice-page .service-area-heading .eyebrow {
  margin: 0 0 4px;
  color: #5fe2ef;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body.flow-choice-page .service-included-heading h2,
body.flow-choice-page .service-area-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.1;
  letter-spacing: -.025em;
}

body.flow-choice-page .service-included-icon,
body.flow-choice-page .service-area-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
}

body.flow-choice-page .service-included-icon {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.11);
  color: #5fe2ef;
  font-size: 25px;
  font-weight: 1000;
}

body.flow-choice-page .service-area-icon {
  border: 1px solid #a9dfe9;
  background: #e7f7fa;
  color: #075781;
}

body.flow-choice-page .service-area-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.flow-choice-page .service-included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.flow-choice-page .service-included-list li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 38px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  background: rgba(255,255,255,.075);
  color: #e9fbfd;
  font-size: 13px;
  line-height: 1.35;
}

body.flow-choice-page .service-included-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #29c4de;
  color: #042440;
  font-size: 11px;
  font-weight: 1000;
}

body.flow-choice-page .service-scope-note {
  margin: 14px 0 0;
  color: #b9edf3;
  font-size: 12px;
  line-height: 1.5;
}

body.flow-choice-page .cover-client-note {
  margin: -2px 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(93, 225, 238, .30);
  border-radius: 13px;
  background: rgba(34, 195, 221, .11);
  color: #dff9fb;
  font-size: 13px;
  line-height: 1.45;
}

body.flow-choice-page .cover-client-note strong {
  color: #63e2ef;
}

body.flow-choice-page .segmented-cover label:last-child span {
  line-height: 1.25;
  text-align: center;
}

body.flow-choice-page .service-area-card {
  padding: 22px 24px;
  background: #fff;
  color: #06233d;
}

body.flow-choice-page .service-area-card > p {
  margin: -4px 0 16px 62px;
  color: #557080;
  font-size: 13px;
  line-height: 1.5;
}

body.flow-choice-page .service-area-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: end;
}

body.flow-choice-page .service-area-form-row label {
  grid-column: 1 / -1;
  color: #163c57;
  font-size: 12px;
  font-weight: 900;
}

body.flow-choice-page .service-area-form-row input {
  min-height: 54px;
  width: 100%;
  border: 2px solid #b9d6df;
  border-radius: 14px;
  padding: 0 16px;
  color: #052844;
  background: #f9fcfd;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.flow-choice-page .service-area-form-row input:focus {
  outline: none;
  border-color: #22bfd9;
  box-shadow: 0 0 0 4px rgba(34, 191, 217, .14);
}

body.flow-choice-page .service-area-button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid #24c4dc;
  border-radius: 14px;
  background: linear-gradient(135deg, #06395f, #07547a);
  color: #fff;
  box-shadow: 0 8px 17px rgba(6, 31, 56, .15);
}

body.flow-choice-page .service-area-status {
  min-height: 21px;
  margin: 10px 0 0 !important;
  padding-left: 0;
  color: #557080;
  font-size: 12px;
  font-weight: 800;
}

body.flow-choice-page .service-area-status.is-success { color: #087a65; }
body.flow-choice-page .service-area-status.is-error { color: #b93838; }

body.flow-choice-page .flow-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.flow-choice-page .flow-trust-strip span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #c8dde4;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  color: #24485e;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(6,31,56,.06);
}

body.flow-choice-page .flow-trust-strip i {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff7fa;
  color: #0785a3;
  font-style: normal;
  font-weight: 1000;
}

/* Calendrier — plages d’arrivée */
body.flow-calendar-page .arrival-window-note {
  margin: 8px 0 15px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.45;
}

body.flow-calendar-page .time-copy {
  display: grid;
  gap: 3px;
}

body.flow-calendar-page .time-copy strong {
  order: 0;
}

body.flow-calendar-page .time-copy .hour {
  order: 1;
  font-size: 14px;
  font-weight: 900;
}

/* Paiement — total visible, sécurité et politiques */
body.flow-payment-page .payment-total-preview {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(77, 222, 237, .42);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(35, 199, 222, .19), rgba(255,255,255,.08));
  color: #dff9fb;
}

body.flow-payment-page .payment-total-preview span {
  font-size: 13px;
  font-weight: 850;
}

body.flow-payment-page .payment-total-preview strong {
  color: #fff;
  font-size: 25px;
  letter-spacing: -.025em;
}

body.flow-payment-page .secure-payment-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: rgba(255,255,255,.075);
  color: #cceff4;
  font-size: 11px;
  line-height: 1.45;
}

body.flow-payment-page .booking-policy-summary {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}

body.flow-payment-page .booking-policy-summary h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 15px;
}

body.flow-payment-page .booking-policy-summary ul {
  display: grid;
  gap: 7px;
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
}

body.flow-payment-page .booking-policy-summary li {
  position: relative;
  padding-left: 20px;
  color: #d5f2f5;
  font-size: 11px;
  line-height: 1.4;
}

body.flow-payment-page .booking-policy-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #52ddea;
  font-weight: 1000;
}

body.flow-payment-page .policy-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #effcfd;
  font-size: 11px;
  line-height: 1.45;
}

body.flow-payment-page .policy-consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: #24c5df;
  box-shadow: none;
}

body.flow-payment-page .policy-consent a {
  color: #64e2ef;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Confirmation — page finalisée */
body.flow-confirmation-page {
  background: #edf3f6;
}

body.flow-confirmation-page .flow-page {
  min-height: calc(100vh - 180px);
  padding: 30px 0 40px;
  background: linear-gradient(180deg, #f5f9fa 0%, #eaf1f4 100%);
}

body.flow-confirmation-page .confirmation-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 26px 28px;
  border: 1px solid rgba(39,195,221,.55);
  border-radius: 25px;
  background:
    radial-gradient(circle at 96% 0%, rgba(38,204,226,.20), transparent 35%),
    linear-gradient(145deg, #0a416a 0%, #052844 56%, #031d34 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(6,31,56,.16);
}

body.flow-confirmation-page .confirmation-check {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border: 2px solid #52deeb;
  border-radius: 20px;
  background: rgba(57, 211, 230, .13);
  color: #63e2ef;
  font-size: 34px;
  font-weight: 1000;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

body.flow-confirmation-page .confirmation-hero .eyebrow,
body.flow-confirmation-page .confirmation-summary-card .eyebrow,
body.flow-confirmation-page .preparation-card .eyebrow {
  margin: 0 0 5px;
  color: #5fe2ef;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body.flow-confirmation-page .confirmation-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

body.flow-confirmation-page .confirmation-hero p:last-child {
  margin: 8px 0 0;
  color: #cceff4;
  font-size: 14px;
  line-height: 1.5;
}

body.flow-confirmation-page .confirmation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 20px;
}

body.flow-confirmation-page .confirmation-summary-card,
body.flow-confirmation-page .preparation-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 15px 32px rgba(6,31,56,.13);
}

body.flow-confirmation-page .confirmation-summary-card {
  border: 1px solid rgba(39,195,221,.50);
  background:
    radial-gradient(circle at 96% 0%, rgba(38,204,226,.17), transparent 35%),
    linear-gradient(145deg, #0a416a 0%, #052844 56%, #031d34 100%);
  color: #fff;
}

body.flow-confirmation-page .preparation-card {
  border: 1px solid #c9dce3;
  background: #fff;
  color: #06233d;
}

body.flow-confirmation-page .confirmation-card-heading,
body.flow-confirmation-page .preparation-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

body.flow-confirmation-page .confirmation-card-heading h2,
body.flow-confirmation-page .preparation-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

body.flow-confirmation-page .confirmation-card-heading h2 { color: #fff; }

body.flow-confirmation-page .confirmation-status {
  padding: 7px 11px;
  border: 1px solid rgba(85,226,239,.42);
  border-radius: 999px;
  background: rgba(46,202,223,.13);
  color: #6ee8f3;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

body.flow-confirmation-page .confirmation-details {
  display: grid;
  gap: 8px;
  margin: 0;
}

body.flow-confirmation-page .confirmation-details div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 45px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.075);
}

body.flow-confirmation-page .confirmation-details dt {
  color: #a9eaf3;
  font-size: 12px;
}

body.flow-confirmation-page .confirmation-details dd {
  margin: 0;
  color: #fff;
  text-align: right;
  font-size: 13px;
  font-weight: 850;
}

body.flow-confirmation-page .confirmation-details .confirmation-total {
  margin-top: 4px;
  border-color: rgba(57,211,230,.42);
  background: linear-gradient(145deg, rgba(34,195,221,.22), rgba(5,56,91,.45));
}

body.flow-confirmation-page .confirmation-details .confirmation-total dd {
  font-size: 25px;
}

body.flow-confirmation-page .preparation-heading {
  justify-content: flex-start;
}

body.flow-confirmation-page .preparation-heading > span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #e1f7fa;
  color: #0785a3;
  font-size: 22px;
  font-weight: 1000;
}

body.flow-confirmation-page .preparation-card .eyebrow { color: #0882a0; }

body.flow-confirmation-page .preparation-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.flow-confirmation-page .preparation-list li {
  position: relative;
  padding: 11px 12px 11px 38px;
  border: 1px solid #d7e5ea;
  border-radius: 12px;
  background: #f7fafb;
  color: #345668;
  font-size: 12px;
  line-height: 1.4;
}

body.flow-confirmation-page .preparation-list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff7fa;
  color: #0785a3;
  font-size: 11px;
  font-weight: 1000;
}

body.flow-confirmation-page .weather-note {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #bce6ed;
  border-radius: 12px;
  background: #ebf8fa;
  color: #355b6c;
  font-size: 11px;
  line-height: 1.45;
}

body.flow-confirmation-page .confirmation-actions-panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

body.flow-confirmation-page .confirmation-actions-panel .button {
  min-height: 56px;
  border-radius: 15px;
}

body.flow-confirmation-page .confirmation-primary-action {
  border-color: #55e1ee;
  background: linear-gradient(135deg, #22c3dd 0%, #078cc2 100%);
  color: #fff;
}

body.flow-confirmation-page .confirmation-secondary-action,
body.flow-confirmation-page .confirmation-home-action {
  border: 1px solid #2bc6de;
  background: linear-gradient(145deg, #07395f, #052a49);
  color: #fff;
}

body.flow-confirmation-page .confirmation-support {
  margin: 18px 0 0;
  color: #5d7482;
  text-align: center;
  font-size: 13px;
}

body.flow-confirmation-page .confirmation-support a {
  color: #066f94;
  font-weight: 900;
}

body.flow-confirmation-page .confirmation-footer,
body.legal-page .confirmation-footer {
  min-height: 110px;
  padding: 20px max(24px, calc((100vw - var(--max))/2));
  border-top: 0;
  background: linear-gradient(145deg, #07395f 0%, #052a49 52%, #031d34 100%);
  color: #fff;
}

.footer-policy-links {
  display: flex;
  gap: 16px;
}

.footer-policy-links a {
  color: #d8f5f8;
  font-size: 13px;
  font-weight: 800;
}

/* Pages légales */
body.legal-page {
  background: #edf3f6;
}

body.legal-page .flow-page {
  padding: 30px 0 40px;
  background: linear-gradient(180deg, #f5f9fa 0%, #eaf1f4 100%);
}

body.legal-page .legal-container {
  max-width: 920px;
}

body.legal-page .legal-hero {
  padding: 26px 28px;
  border: 1px solid rgba(39,195,221,.55);
  border-radius: 24px;
  background: linear-gradient(145deg, #0a416a 0%, #052844 56%, #031d34 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(6,31,56,.15);
}

body.legal-page .legal-hero .eyebrow {
  margin: 0 0 6px;
  color: #5fe2ef;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body.legal-page .legal-hero h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
}

body.legal-page .legal-hero p:last-child {
  margin: 10px 0 0;
  color: #cceff4;
  line-height: 1.5;
}

body.legal-page .legal-card {
  margin-top: 18px;
  padding: 26px 28px;
  border: 1px solid #cadde4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(6,31,56,.10);
}

body.legal-page .legal-card h2 {
  margin: 24px 0 7px;
  color: #062844;
  font-size: 20px;
}

body.legal-page .legal-card h2:first-child { margin-top: 0; }

body.legal-page .legal-card p {
  margin: 0;
  color: #4c6878;
  line-height: 1.65;
}

body.legal-page .legal-contact {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid #bce6ed;
  border-radius: 13px;
  background: #ebf8fa;
  color: #16435c;
}

body.legal-page .legal-contact a {
  color: #067394;
  font-weight: 900;
}

body.legal-page .legal-back-button {
  min-height: 54px;
  margin-top: 16px;
  border: 1px solid #2bc6de;
  background: linear-gradient(145deg, #07395f, #052a49);
  color: #fff;
}

/* Clavier et mouvement */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #5ce2ef;
  outline-offset: 3px;
}

@media (max-width: 860px) {
  body.flow-confirmation-page .confirmation-grid {
    grid-template-columns: 1fr;
  }

  body.flow-confirmation-page .confirmation-actions-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.flow-choice-page .service-included-panel,
  body.flow-choice-page .service-area-card {
    padding: 17px 15px;
    border-radius: 21px;
  }

  body.flow-choice-page .service-included-heading,
  body.flow-choice-page .service-area-heading {
    gap: 11px;
    margin-bottom: 13px;
  }

  body.flow-choice-page .service-included-icon,
  body.flow-choice-page .service-area-icon {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
    border-radius: 13px;
  }

  body.flow-choice-page .service-included-heading h2,
  body.flow-choice-page .service-area-heading h2 {
    font-size: 21px;
  }

  body.flow-choice-page .service-included-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.flow-choice-page .service-area-card > p {
    margin: 0 0 14px;
  }

  body.flow-choice-page .service-area-form-row {
    grid-template-columns: 1fr;
  }

  body.flow-choice-page .service-area-form-row label {
    grid-column: auto;
  }

  body.flow-choice-page .flow-trust-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.flow-choice-page .flow-trust-strip span {
    min-height: 44px;
    justify-content: flex-start;
    text-align: left;
  }

  body.flow-calendar-page .calendar-hero h1 {
    font-size: clamp(24px, 7vw, 31px);
  }

  body.flow-payment-page .payment-total-preview strong {
    font-size: 22px;
  }

  body.flow-confirmation-page .flow-page,
  body.legal-page .flow-page {
    padding: 20px 0 28px;
  }

  body.flow-confirmation-page .confirmation-hero {
    align-items: flex-start;
    gap: 13px;
    padding: 19px 16px;
    border-radius: 22px;
  }

  body.flow-confirmation-page .confirmation-check {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px;
    font-size: 26px;
  }

  body.flow-confirmation-page .confirmation-hero h1 {
    font-size: clamp(26px, 7.4vw, 34px);
  }

  body.flow-confirmation-page .confirmation-hero p:last-child {
    font-size: 12px;
  }

  body.flow-confirmation-page .confirmation-summary-card,
  body.flow-confirmation-page .preparation-card {
    padding: 17px 15px;
    border-radius: 20px;
  }

  body.flow-confirmation-page .confirmation-details div {
    align-items: flex-start;
  }

  body.flow-confirmation-page .confirmation-details dd {
    max-width: 62%;
  }

  body.flow-confirmation-page .confirmation-actions-panel {
    gap: 9px;
  }

  body.flow-confirmation-page .confirmation-footer,
  body.legal-page .confirmation-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 18px;
  }

  body.flow-confirmation-page .confirmation-footer .flow-footer-credit,
  body.legal-page .confirmation-footer .flow-footer-credit {
    grid-column: 1 / -1;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .footer-policy-links {
    flex-direction: column;
    gap: 5px;
    text-align: right;
  }

  body.legal-page .legal-hero,
  body.legal-page .legal-card {
    padding: 20px 17px;
    border-radius: 21px;
  }

  body.legal-page .legal-contact {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  body.flow-confirmation-page .site-header,
  body.flow-confirmation-page .confirmation-actions-panel,
  body.flow-confirmation-page .confirmation-support,
  body.flow-confirmation-page .site-footer {
    display: none !important;
  }

  body.flow-confirmation-page,
  body.flow-confirmation-page .flow-page {
    background: #fff !important;
  }

  body.flow-confirmation-page .confirmation-hero,
  body.flow-confirmation-page .confirmation-summary-card,
  body.flow-confirmation-page .preparation-card {
    box-shadow: none !important;
    break-inside: avoid;
  }
}

/* V106 — footer confirmation/légal harmonisé */
body.flow-confirmation-page .confirmation-footer .footer-brand,
body.legal-page .confirmation-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

body.flow-confirmation-page .confirmation-footer .footer-brand img,
body.legal-page .confirmation-footer .footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

body.flow-confirmation-page .confirmation-footer .footer-brand span,
body.legal-page .confirmation-footer .footer-brand span {
  display: grid;
  line-height: .95;
}

body.flow-confirmation-page .confirmation-footer .footer-brand strong,
body.legal-page .confirmation-footer .footer-brand strong {
  color: #fff;
  font-size: 17px;
}

body.flow-confirmation-page .confirmation-footer .flow-footer-credit,
body.legal-page .confirmation-footer .flow-footer-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #d9f5f8;
  font-weight: 700;
}

body.flow-confirmation-page .confirmation-footer .flow-footer-credit strong,
body.legal-page .confirmation-footer .flow-footer-credit strong {
  color: #2fc7e1;
}

@media (max-width: 640px) {
  body.flow-confirmation-page .confirmation-footer .footer-brand img,
  body.legal-page .confirmation-footer .footer-brand img {
    width: 52px;
    height: 52px;
  }

  body.flow-confirmation-page .confirmation-footer .footer-brand strong,
  body.legal-page .confirmation-footer .footer-brand strong {
    font-size: 15px;
  }
}


/* V107 — allègement de l’étape 1 + meilleure respiration à l’étape paiement */
body.flow-choice-page .choice-form {
  gap: 18px;
}

body.flow-payment-page .booking-policy-summary {
  margin-bottom: 0;
}

body.flow-payment-page .policy-consent {
  gap: 11px;
  padding-top: 14px;
}

body.flow-payment-page .policy-consent-copy {
  display: block;
  color: #effcfd;
}

body.flow-payment-page .policy-consent-separator {
  color: #effcfd;
}

body.flow-payment-page .payment-summary-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

body.flow-payment-page .payment-summary-actions .button-large {
  margin: 0;
}

body.flow-payment-page .payment-summary-actions .payment-back-button {
  margin: 0;
}

@media (max-width: 640px) {
  body.flow-payment-page .policy-consent {
    gap: 12px;
    font-size: 12px;
    line-height: 1.55;
  }

  body.flow-payment-page .payment-summary-actions {
    gap: 14px;
    margin-top: 20px;
  }
}


/* V108 — service inclus intégré au paiement + icônes sociales visibles */
.social-icon-disabled.social-icon-facebook {
  background: #1877f2 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.social-icon-disabled.social-icon-instagram {
  background: radial-gradient(circle at 30% 110%, #ffd600 0 10%, #ff7a00 30%, #ff0169 55%, #d300c5 78%, #7638fa 100%) !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.social-icon-disabled svg {
  display: block !important;
  color: #ffffff !important;
  fill: currentColor !important;
}

body.flow-payment-page .payment-included-summary {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(78, 222, 237, .30);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(38, 197, 222, .12), rgba(255,255,255,.055));
}

body.flow-payment-page .payment-included-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}

body.flow-payment-page .payment-included-heading > span {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #2bc6df;
  color: #04233d;
  font-size: 18px;
  font-weight: 1000;
}

body.flow-payment-page .payment-included-heading .eyebrow {
  margin: 0 0 2px;
  color: #63e1ee;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.flow-payment-page .payment-included-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.15;
}

body.flow-payment-page .payment-included-summary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.flow-payment-page .payment-included-summary li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 10px 9px 31px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  background: rgba(255,255,255,.055);
  color: #e8fbfd;
  font-size: 11px;
  line-height: 1.35;
}

body.flow-payment-page .payment-included-summary li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  color: #55deeb;
  font-weight: 1000;
}

body.flow-payment-page .payment-included-summary > p {
  margin: 10px 1px 0;
  color: #bceef3;
  font-size: 10px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  body.flow-payment-page .payment-included-summary {
    padding: 14px 13px;
  }

  body.flow-payment-page .payment-included-summary ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  body.flow-payment-page .payment-included-summary li {
    min-height: 38px;
    font-size: 11px;
  }
}


/* V114 — disponibilités centrales et accès administrateur */
.day.is-partial:not(.selected) {
  background: #fff5de;
  color: #7c570f;
  box-shadow: inset 0 0 0 1px rgba(190, 135, 25, .22);
}
.day.is-full,
.day.is-full:disabled {
  background: #f6e7e5;
  color: #9b5e57;
  box-shadow: inset 0 0 0 1px rgba(169, 79, 67, .16);
  opacity: 1;
}
.time-slot.is-booked,
.time-slot.is-booked:disabled {
  border-color: #e4c4bf;
  background: #fbf1ef;
  color: #8f5c55;
  opacity: 1;
}
.time-slot.is-booked .time-icon,
.time-slot.is-booked .hour {
  background: #b88982 !important;
  color: #fff !important;
}
.time-slot.is-booked strong,
.time-slot.is-booked small,
.time-slot.is-booked .slot-status {
  color: #8f5c55 !important;
}
.footer-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #5e7482 !important;
  font-size: 10px !important;
  font-weight: 750 !important;
  line-height: 1.2;
  text-decoration: none;
  opacity: .82;
  white-space: nowrap;
}
.footer-admin-link:hover {
  color: #0578b8 !important;
  opacity: 1;
}
.flow-choice-page .footer-admin-link,
.confirmation-footer .footer-admin-link,
.payment-footer .footer-admin-link,
.calendar-footer .footer-admin-link,
.home-unified-footer .footer-admin-link {
  justify-self: center;
}
@media (max-width: 680px) {
  .footer-admin-link {
    width: 100%;
    margin-top: 3px;
  }
}

/* V115 — modes réel/test, Stripe Checkout et gestion client */
.site-mode-banner{position:relative;z-index:9999;display:flex;justify-content:center;align-items:center;gap:12px;padding:10px 18px;background:#fff0bd;color:#5d3c00;border-bottom:2px solid #e2ad29;font:800 14px/1.35 Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;text-align:center}
.site-mode-banner strong{display:inline-flex;padding:4px 8px;border-radius:999px;background:#7a4d00;color:#fff;font-size:12px;letter-spacing:.08em}.site-mode-banner span{font-weight:750}
.site-test-mode .site-header{border-bottom-color:#e2ad29}.form-message{min-height:20px;margin:12px 0 0;color:#a03d32;font-weight:800}.form-message.success{color:#08745b}
.payment-provider-panel{display:flex;gap:15px;align-items:flex-start;margin:18px 0;padding:18px;border:1px solid rgba(58,196,224,.45);border-radius:18px;background:rgba(255,255,255,.08)}
.payment-provider-icon{display:grid;place-items:center;flex:0 0 46px;height:46px;border-radius:14px;background:#fff;color:#073955;font-size:22px}.payment-provider-panel h3{margin:0 0 6px;color:#fff;font-size:20px}.payment-provider-panel p{margin:0;color:#d8edf4;line-height:1.55}
.stripe-test-instructions{display:grid;gap:7px;margin:16px 0;padding:16px 18px;border:2px solid #e4ad22;border-radius:16px;background:#fff3c9;color:#4e3400}.stripe-test-instructions strong{font-size:17px}.stripe-test-instructions span{font:900 20px/1.2 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;letter-spacing:.04em}.stripe-test-instructions small{line-height:1.45}
.payment-alert{margin:14px 0;padding:13px 15px;border-radius:14px;background:#fff4dd;color:#74500b;font-weight:750;line-height:1.45}
body.flow-payment-page .payment-card .form-message{color:#ffd3cf}.confirmation-environment{display:inline-flex;margin-top:8px;padding:5px 9px;border-radius:999px;font-size:11px;font-weight:950;letter-spacing:.08em}.confirmation-environment.live{background:#e1f5ed;color:#0a6d56}.confirmation-environment.test{background:#fff0c7;color:#7b5000;border:1px solid #e1ad2c}
body.flow-confirmation-page .confirmation-status.is-pending{background:#fff0c7;color:#7b5000}.confirmation-load-message{margin-top:10px;font-weight:800;color:#0a7b9e}.confirmation-load-message.is-error{color:#a03d32}
.manage-reservation-container{max-width:920px}.manage-intro-panel,.manage-card{margin:0 0 24px;padding:clamp(22px,4vw,38px);border:1px solid rgba(7,93,127,.18);border-radius:28px;background:#fff;box-shadow:0 18px 52px rgba(3,43,70,.1)}.manage-intro-panel h1{margin:0;color:#062943;font-size:clamp(34px,6vw,56px);line-height:1.02}.manage-intro-panel>p:last-child{max-width:760px;color:#607481;line-height:1.6}.manage-lookup-form{display:grid;grid-template-columns:1fr 1fr auto;gap:14px;align-items:end}.manage-lookup-form label{display:grid;gap:8px;color:#082b45;font-weight:850}.manage-lookup-form input{min-height:54px;padding:12px 14px;border:1px solid #b9d4df;border-radius:14px;font:inherit}.manage-result-heading{display:flex;justify-content:space-between;align-items:flex-start;gap:18px}.manage-result-heading h2{margin:0;color:#062943;font-size:30px}.manage-result .confirmation-details{margin-top:20px}.manage-cancel-note{margin:20px 0;padding:16px;border-radius:16px;background:#f3f9fb;color:#365566}.manage-cancel-note p{margin:6px 0 0;line-height:1.55}.button-danger{border:0;background:linear-gradient(135deg,#a93f34,#d65c4e);color:#fff}.button-danger:disabled{opacity:.55;cursor:not-allowed}
@media(max-width:760px){.site-mode-banner{align-items:flex-start;flex-direction:column;gap:5px;padding:9px 14px;text-align:left}.manage-lookup-form{grid-template-columns:1fr}.manage-lookup-form .button{width:100%}.manage-result-heading{align-items:flex-start;flex-direction:column}}
