/* Coach Denis — generated by extracting inline <style>. Edit here, not in HTML. */
  body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img, svg { display: block; max-width: 100%; height: auto; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  a { color: inherit; text-decoration: none; }
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 4px;
  }

  /* ---------- Layout ---------- */
  .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-5); }
  @media (min-width: 768px) { .container { padding: 0 var(--s-7); } }

  /* ---------- Nav (always visible) ---------- */
  :root { --nav-h: 68px; }
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: var(--s-4) 0;
    background: rgba(15,10,30,0.45);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav__inner { display: flex; align-items: center; justify-content: space-between; }
  .nav__logo {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: -0.04em;
    color: #fff;
  }
  .nav__logo-soft { font-weight: 800; }
  .nav__logo-edge { font-weight: 600; font-style: italic; color: var(--color-accent); }
  .nav__links { display: none; gap: var(--s-6); font-size: var(--fs-small); font-weight: 500; }
  .nav__links a:hover { opacity: 0.7; }
  @media (min-width: 1024px) { .nav__links { display: flex; } }
  .nav__right { display: flex; align-items: center; gap: var(--s-3); }
  /* Booking CTA — signature gold, reserved for the booking action */
  .nav__cta {
    padding: var(--s-2) var(--s-4);
    border-radius: var(--radius-full);
    background: var(--color-cta);
    color: var(--color-text-dark);
    border: 1px solid var(--color-cta);
    font-size: var(--fs-small);
    font-weight: 600;
    transition: background var(--dur-fast) var(--ease-out);
  }
  .nav__cta:hover { background: var(--color-cta-hover); }

  /* Language toggle (links to parallel EN/FR URL) */
  .lang-toggle {
    display: inline-flex;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 2px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
  }
  .lang-toggle__btn {
    padding: 5px 10px;
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  }
  .lang-toggle__btn:hover { color: #fff; text-decoration: none; }
  .lang-toggle__btn--active {
    background: rgba(255,255,255,0.18);
    color: #fff;
    cursor: default;
  }

  /* Burger menu (tablet + mobile only) */
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0 9px;
    transition: background var(--dur-fast) var(--ease-out);
  }
  .nav__burger:hover { background: rgba(255,255,255,0.16); }
  .nav__burger span {
    display: block;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
    transform-origin: center;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  @media (min-width: 1024px) { .nav__burger { display: none; } }

  /* Mobile menu drawer */
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(15,10,30,0.96);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: var(--s-4) 0 var(--s-5);
    z-index: 49;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med) var(--ease-out);
  }
  .nav__menu[aria-hidden="false"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .nav__menu-list a {
    display: block;
    padding: var(--s-4) var(--s-5);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  }
  .nav__menu-list a:hover { background: rgba(255,255,255,0.05); color: var(--color-accent); }
  .nav__menu-list a:last-child { border-bottom: none; }
  @media (min-width: 1024px) { .nav__menu { display: none; } }

  /* ---------- Hero — fills 1 viewport, but never crushes its content ----------
     On short/wide screens (16:9 laptops) a fixed height:100svh + overflow:hidden
     squeezed the central 1fr row, so the title/tagline overlapped the sub text.
     min-height + height:auto: it still fills the screen when there's room, and
     grows (page scrolls) when the content needs more space. */
  .hero {
    position: relative;
    height: auto;
    min-height: 100svh;
    background: var(--gradient-hero);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(120% 60% at 50% 0%, rgba(255,255,255,0.15), transparent 50%),
      radial-gradient(80% 40% at 100% 100%, rgba(0,0,0,0.18), transparent 50%);
    pointer-events: none;
  }
  .hero__inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: calc(var(--nav-h) + var(--s-4)) 0 var(--s-5);
    gap: var(--s-4);
    min-height: 0;
  }
  .hero__kicker {
    text-align: center;
    font-size: var(--fs-kicker);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding-top: 0;
  }
  .hero__center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s-4);
    min-height: 0;
  }
  /* Le "lockup" garde le titre et le prisme superposés et centrés ;
     le prisme s'ancre dessus, donc il reste collé au nom même quand
     l'accroche s'ajoute en dessous. */
  .hero__lockup {
    position: relative;
    width: 100%;
  }
  .hero__tagline {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(17px, 1.8vw, 24px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
  }
  .hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-h1);
    line-height: var(--lh-tight);
    letter-spacing: -0.04em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 8vw, 140px);
    flex-wrap: nowrap;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .hero__title .accent {
    font-style: italic;
    font-weight: 600;
    color: var(--color-accent);
  }
  /* Desktop: le prisme est centré entre les deux mots ; on pousse "Coach"
     un peu à gauche pour équilibrer l'espace prisme/Coach avec prisme/Denis. */
  @media (min-width: 1024px) {
    .hero__title span[aria-hidden="true"]:not(.accent) {
      transform: translateX(-3.5vw);
    }
  }
  .hero__object {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(180px, 26vw, 360px);
    aspect-ratio: 1;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(26,21,48,0.35));
    animation: floaty 6s ease-in-out infinite;
  }
  @keyframes floaty {
    0%,100% { transform: translate(-50%, -50%) rotate(-4deg); }
    50%     { transform: translate(-50%, calc(-50% - 12px)) rotate(2deg); }
  }
  .hero__bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-5);
  }
  .hero__sub {
    max-width: 800px;
    color: rgba(255,255,255,0.92);
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.5;
    padding-left: var(--s-5);
    padding-right: var(--s-5);
  }
  .hero__cta-row { display: flex; flex-direction: column; align-items: center; gap: var(--s-3); }
  .hero__microcopy {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.04em;
  }
  /* Tablet + Mobile: prism stacks below title (no longer absolute over the words) */
  @media (max-width: 1023px) {
    /* Let the hero flow: locking it to 100svh + overflow:hidden crushed the
       central 1fr row and made the title/tagline overlap the kicker/sub.
       Height now grows with the content; it still fills the screen when short. */
    .hero {
      height: auto;
      min-height: 100svh;
      overflow: visible;
    }
    .hero__inner {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: var(--s-6);
      padding: calc(var(--nav-h) + var(--s-6)) 0 var(--s-7);
    }
    .hero__center { flex-direction: column; gap: var(--s-5); }
    .hero__object {
      position: static;
      transform: none;
      margin: 0 auto;
      animation: none;
      width: clamp(140px, 28vw, 220px);
    }
  }
  @media (max-width: 720px) {
    .hero__title { gap: var(--s-4); flex-direction: column; }
  }
  /* Phones: stack the two CTAs full-width so the second one can't run off-screen */
  @media (max-width: 640px) {
    .hero__cta-buttons { flex-direction: column; width: 100%; }
    .hero__cta-buttons .btn { width: 100%; justify-content: center; }
    .hero__cta-or { margin: var(--s-1) 0; }
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-4) var(--s-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
    transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  }
  .btn--primary {
    background: var(--color-text-dark);
    color: var(--color-text);
    box-shadow: var(--shadow-2);
  }
  .btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
  .btn--ghost {
    background: rgba(255,255,255,0.92);
    color: var(--color-text-dark);
  }
  .btn--ghost:hover { background: #FFC247; transform: translateY(-2px); box-shadow: var(--shadow-3); }
  .btn__arrow {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-text-dark);
    display: grid;
    place-items: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    transition: transform var(--dur-fast) var(--ease-out);
  }
  .btn:hover .btn__arrow { transform: translateX(3px); }

  /* ---------- Sections (cream content base) ---------- */
  .section {
    padding: clamp(var(--s-9), 12vh, var(--s-12)) 0;
    background: var(--color-surface);
    color: var(--color-text-dark);
    position: relative;
  }
  .section--dark {
    background: var(--color-surface-dark);
    color: var(--color-text);
  }
  .section__head { max-width: 720px; margin: 0 auto var(--s-9); text-align: center; }
  .section__eyebrow {
    font-size: var(--fs-kicker);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-2);
    display: block;
    margin-bottom: var(--s-4);
  }
  .section__title {
    font-family: var(--font-display);
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
  }
  .section__title em {
    font-style: italic;
    font-weight: 600;
    color: var(--color-accent-2);
  }
  .section__sub {
    margin-top: var(--s-4);
    color: var(--color-text-muted-dark);
    font-size: clamp(15px, 1.2vw, 18px);
  }
  .section--dark .section__sub { color: var(--color-text-muted); }

  /* ---------- Proof bar (in hero) ---------- */
  .proof {
    position: absolute;
    right: var(--s-5);
    bottom: var(--s-6);
    z-index: 4;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-md);
    padding: var(--s-4) var(--s-5);
    max-width: 320px;
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.94);
    transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
  }
  .proof:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--color-accent-2); }
  .proof strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
  .proof small { opacity: 0.7; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
  @media (max-width: 1023px) { .proof { display: none; } }

  /* ---------- Method ---------- */
  #method {
    min-height: 100svh;
    display: grid;
    align-content: center;
    padding: var(--s-7) 0;
  }
  #method .section__head { margin-bottom: var(--s-6); }
  #method .method__num { font-size: 40px; }
  #method .method__head { margin-bottom: var(--s-3); }
  #method .method__what { font-size: 14px; line-height: 1.5; }
  #method .method__deliv { margin-top: var(--s-4); gap: var(--s-2); }
  #method .method__deliv-text { font-size: 15px; line-height: 1.4; }

  /* ---------- Why (how this is different) — fullscreen ---------- */
  #why {
    min-height: 100svh;
    display: grid;
    align-content: center;
  }

  /* ---------- Testimonials (Stories) — fullscreen ---------- */
  #testimonials {
    min-height: 100svh;
    display: grid;
    align-content: center;
  }
  .method__grid {
    display: grid;
    gap: var(--s-5);
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) { .method__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); } }
  @media (min-width: 1024px) { .method__grid { grid-template-columns: repeat(3, 1fr); } }
  .method__step {
    background: #fff;
    border: 1px solid rgba(26,21,48,0.08);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
  }
  .method__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--color-accent-2); }
  .method__num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--color-accent-2);
    line-height: 1;
    letter-spacing: -0.04em;
    opacity: 0.92;
  }
  .method__head {
    display: flex;
    align-items: baseline;
    gap: var(--s-3);
    margin-bottom: var(--s-3);
  }
  .method__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
  }
  .method__what {
    font-size: 15px;
    color: var(--color-text-muted-dark);
    line-height: 1.55;
  }
  .method__deliv {
    margin-top: var(--s-5);
    padding: var(--s-3) 0 var(--s-1) var(--s-4);
    border-left: 3px solid var(--color-accent-2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2);
  }
  .method__deliv-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-accent-2);
    line-height: 1;
  }
  .method__deliv-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-dark);
    font-weight: 500;
    margin: 0;
  }

  /* ---------- Differentiation pillars ---------- */
  .diff__grid {
    display: grid; gap: var(--s-5);
    grid-template-columns: 1fr;
  }
  @media (min-width: 768px) { .diff__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }
  .diff__item {
    border-left: 2px solid var(--color-accent);
    padding: var(--s-4) 0 var(--s-4) var(--s-5);
  }
  .diff__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--s-3);
  }
  .diff__desc { color: var(--color-text-muted); font-size: 16px; line-height: 1.6; }

  /* ---------- Method guarantee ---------- */
  .method__guarantee {
    max-width: 801px;
    margin: var(--s-7) auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    padding: var(--s-5) var(--s-6);
    border: 1px solid rgba(255,120,67,0.28);
    border-radius: var(--radius-lg);
    background: rgba(255,120,67,0.06);
  }
  .method__guarantee strong { color: var(--color-accent-2); font-weight: 700; }

  /* ---------- Trust: honesty + real case (dark) ---------- */
  .trust {
    display: grid;
    gap: var(--s-5);
    grid-template-columns: 1fr;
    margin-top: var(--s-7);
    padding-top: var(--s-6);
    border-top: 1px dashed rgba(255,255,255,0.18);
  }
  @media (min-width: 768px) { .trust { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
  .trust__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--s-3);
  }
  .trust__honesty p { color: var(--color-text-muted); font-size: 15px; line-height: 1.6; margin: 0; }
  .trust__case {
    border-left: 2px solid var(--color-accent);
    padding-left: var(--s-5);
  }
  .trust__case-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--s-2);
  }
  .trust__case p { color: var(--color-text-muted); font-size: 15px; line-height: 1.6; margin: 0; }

  /* ---------- Testimonials ---------- */
  .testi__grid { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
  @media (min-width: 768px) { .testi__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); } }
  .testi {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--s-7);
    box-shadow: var(--shadow-1);
    border: 1px solid rgba(26,21,48,0.06);
  }
  .testi__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.4;
    color: var(--color-text-dark);
    margin-bottom: var(--s-5);
  }
  .testi__author { display: flex; align-items: center; gap: var(--s-3); font-size: 14px; }
  .testi__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
  }
  .testi__name strong { display: block; }
  .testi__name span { opacity: 0.6; font-size: 12px; }

  /* ---------- FAQ ---------- */
  .faq { max-width: 760px; margin: 0 auto; }
  .faq__item {
    border-bottom: 1px solid rgba(26,21,48,0.12);
    padding: var(--s-5) 0;
  }
  .faq__q {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(17px, 1.6vw, 21px);
    color: var(--color-text-dark);
    cursor: pointer;
  }
  .faq__icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(26,21,48,0.3);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast) var(--ease-out);
    font-size: 14px;
  }
  .faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--color-accent); border-color: var(--color-accent); }
  .faq__a {
    margin-top: var(--s-3);
    font-size: 16px;
    color: var(--color-text-muted-dark);
    line-height: 1.65;
  }
  .faq__a a {
    color: var(--color-accent-2);
    font-weight: 600;
    border-bottom: 1px dashed var(--color-accent-2);
    padding-bottom: 1px;
    transition: opacity var(--dur-fast) var(--ease-out), border-style var(--dur-fast) var(--ease-out);
  }
  .faq__a a:hover { opacity: 0.75; border-bottom-style: solid; }
  details > summary { list-style: none; }
  details > summary::-webkit-details-marker { display: none; }

  /* ---------- Founding rate (fullscreen) ---------- */
  #founding {
    min-height: 100svh;
    display: flex;
    align-items: center;
  }
  #founding .container { width: 100%; }
  .founding { max-width: 760px; margin: 0 auto; }

  /* Counter */
  .founding__counter { text-align: center; margin-bottom: var(--s-6); }
  .founding__dots {
    display: flex;
    justify-content: center;
    gap: var(--s-3);
    margin-bottom: var(--s-4);
  }
  .founding__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    background:
      linear-gradient(var(--color-surface-dark), var(--color-surface-dark)) padding-box,
      var(--gradient-hero) border-box;
    animation: founding-pulse 2.8s var(--ease-out) infinite;
    transition: background var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  }
  .founding__dot.taken {
    background: var(--color-accent-2);
    border: 2px solid var(--color-accent-2);
    box-shadow: 0 0 24px rgba(255,120,67,0.35);
    animation: none;
  }
  @keyframes founding-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,120,67,0); }
    50%      { box-shadow: 0 0 14px 2px rgba(255,120,67,0.22); }
  }
  .founding__count {
    font-size: 14px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
    margin: 0;
  }
  .founding__count strong { color: #fff; font-weight: 700; }
  .founding__remaining { color: var(--color-accent); font-weight: 600; }

  /* Price block */
  .founding__price {
    text-align: center;
    margin-bottom: var(--s-7);
    padding-bottom: var(--s-6);
    border-bottom: 1px dashed rgba(255,255,255,0.18);
  }
  .founding__price-now {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
  }
  .founding__price-currency {
    font-size: clamp(36px, 4.5vw, 56px);
    vertical-align: top;
    margin-right: 4px;
    opacity: 0.7;
    display: inline-block;
    padding-top: 12px;
  }
  .founding__price-num { font-size: clamp(72px, 9vw, 116px); }
  .founding__price-after {
    margin: var(--s-3) 0 0;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
  }
  .founding__price-after strong { color: rgba(255,255,255,0.82); font-weight: 600; }

  /* Details (2 cols on desktop) */
  .founding__details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-6);
    margin-bottom: var(--s-6);
  }
  @media (min-width: 720px) {
    .founding__details { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
  }
  .founding__h3 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--s-3);
  }
  .founding__list { list-style: none; padding: 0; margin: 0; }
  .founding__list li {
    position: relative;
    padding-left: var(--s-4);
    margin-bottom: var(--s-3);
    color: rgba(255,255,255,0.82);
    font-size: 14.5px;
    line-height: 1.55;
  }
  .founding__list li:last-child { margin-bottom: 0; }
  .founding__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 1.5px;
    background: var(--color-accent-2);
  }
  .founding__list em { font-style: italic; color: var(--color-accent); }
  .founding__deal-text {
    color: rgba(255,255,255,0.78);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* CTA block */
  .founding__cta-block {
    text-align: center;
    margin-top: var(--s-6);
    padding-top: var(--s-5);
    border-top: 1px dashed rgba(255,255,255,0.18);
  }
  .founding__risk {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: var(--s-4);
    line-height: 1.5;
  }
  .founding__cta {
    display: inline-block;
    background: var(--color-accent-2);
    color: #fff;
    padding: var(--s-4) var(--s-6);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: transform var(--dur-fast) var(--ease-out);
  }
  .founding__cta:hover { transform: translateY(-2px); }

  /* Guarantees / reassurance strip */
  .founding__guarantees {
    list-style: none;
    margin: 0 0 var(--s-6);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
  @media (min-width: 720px) {
    .founding__guarantees { grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-6); }
  }
  .founding__guarantee {
    position: relative;
    padding-left: calc(var(--s-5) + var(--s-2));
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.82);
  }
  .founding__guarantee::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--color-accent);
    font-weight: 700;
  }

  /* Offers (2 cards) */
  .offers {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
    margin-bottom: var(--s-7);
  }
  @media (min-width: 720px) {
    .offers { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  }
  .offer {
    position: relative;
    background: var(--color-surface-dark);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
    padding: var(--s-6);
    box-shadow: var(--shadow-2);
    display: flex;
    flex-direction: column;
    transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
  }
  .offer--featured { border-color: var(--color-cta); }
  .offer__price, .offer__badge { transition: transform var(--dur-med) var(--ease-out); }
  @media (hover: hover) {
    .offer:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.30);
      box-shadow: 0 22px 48px rgba(0,0,0,0.38);
    }
    .offer--featured:hover {
      border-color: var(--color-cta);
      box-shadow: 0 22px 48px rgba(255,208,107,0.20);
    }
    .offer:hover .offer__price { transform: scale(1.04); transform-origin: left center; }
    .offer--featured:hover .offer__badge { transform: translateY(-2px) scale(1.05); }
  }
  .offer__badge {
    position: absolute;
    top: calc(var(--s-4) * -1);
    left: var(--s-5);
    background: var(--color-cta);
    color: var(--color-text-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: var(--s-1) var(--s-3);
    border-radius: var(--radius-full);
  }
  .offer__name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 var(--s-3);
    letter-spacing: -0.02em;
  }
  .offer__price {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
  }
  .offer__price-old {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
    margin-left: var(--s-2);
    letter-spacing: -0.02em;
  }
  .offer__price-tax {
    font-family: var(--font-body);
    font-size: 0.28em;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    margin-left: 0.3em;
    vertical-align: 0.4em;
  }
  .offer__meta {
    margin: var(--s-2) 0 var(--s-4);
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--color-accent);
    font-weight: 600;
  }
  .offer__desc {
    color: rgba(255,255,255,0.78);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* Cost-of-standing-still calculator */
  .costcalc {
    margin: 0 0 var(--s-7);
    padding: var(--s-6);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-lg);
    transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  }
  .costcalc[open] {
    background: rgba(255,255,255,0.055);
    border-color: rgba(255,255,255,0.16);
  }
  @media (hover: hover) {
    .costcalc:not([open]):hover {
      background: rgba(255,255,255,0.055);
      border-color: rgba(255,255,255,0.30);
    }
  }
  .costcalc[open] .costcalc__body { animation: costcalc-in var(--dur-med) var(--ease-out) both; }
  @keyframes costcalc-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .costcalc[open] .costcalc__body { animation: none; }
  }
  .costcalc__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    cursor: pointer;
  }
  .costcalc__summary-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .costcalc__eyebrow {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .costcalc__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  .costcalc__hint {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
  }
  .costcalc__icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast) var(--ease-out);
  }
  .costcalc[open] .costcalc__icon {
    transform: rotate(45deg);
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text-dark);
  }
  .costcalc__body { margin-top: var(--s-5); }
  .costcalc__intro {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 var(--s-5);
  }
  .costcalc__group { border: 0; padding: 0; margin: 0 0 var(--s-4); }
  .costcalc__legend {
    padding: 0;
    margin-bottom: var(--s-2);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .costcalc__pills { display: flex; flex-wrap: wrap; gap: var(--s-2); }
  .costcalc__pill { position: relative; }
  .costcalc__pill input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
  }
  .costcalc__pill span {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  }
  .costcalc__pill input:checked + span {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text-dark);
    font-weight: 600;
  }
  .costcalc__pill input:focus-visible + span {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }
  .costcalc__result {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin: var(--s-5) 0 var(--s-3);
  }
  .costcalc__result strong { color: var(--color-accent); }
  .costcalc__note {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
  }

  /* ---------- CTA Final ---------- */
  .cta-final {
    background: var(--gradient-hero);
    color: #fff;
    text-align: center;
    padding: clamp(var(--s-9), 14vh, var(--s-12)) 0;
    position: relative;
    overflow: hidden;
  }
  .cta-final::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(60% 80% at 50% 0%, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
  }
  .cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: var(--s-5);
    position: relative;
  }
  .cta-final__title em { font-style: italic; font-weight: 600; color: var(--color-accent); }
  .cta-final__sub { max-width: 540px; margin: 0 auto var(--s-7); opacity: 0.9; position: relative; }


  /* ---------- Footer ---------- */
  .footer {
    background: var(--color-surface-dark);
    color: var(--color-text-muted);
    padding: var(--s-7) 0;
    text-align: center;
    font-size: 13px;
  }
  .footer a { color: var(--color-text); }
  .footer__brand { font-family: var(--font-display); color: #fff; font-size: 18px; margin-bottom: var(--s-3); display: inline-block; letter-spacing: -0.04em; }
  .footer__brand-soft { font-weight: 800; }
  .footer__brand-edge { font-weight: 600; font-style: italic; color: var(--color-accent); }
  .footer__contact { margin-top: var(--s-4); font-size: 13px; color: rgba(255,255,255,0.5); }
  .footer__contact-link { color: rgba(255,255,255,0.85); border-bottom: 1px dashed rgba(255,255,255,0.3); padding-bottom: 1px; transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out); }
  .footer__contact-link:hover { color: var(--color-accent); border-color: var(--color-accent); }
  .footer__legal {
    margin-top: var(--s-5);
    padding-top: var(--s-4);
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
    line-height: 1.5;
  }
  .footer__legal p { margin: 0; }
  .footer__legal strong { color: rgba(255,255,255,0.65); font-weight: 600; }

  /* ---------- Contact form modal ---------- */
  .contact-dialog {
    width: min(520px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    margin: auto;
    padding: 0;
    border: none;
    border-radius: 20px;
    background: var(--color-surface-dark);
    color: var(--color-text);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
  }
  .contact-dialog::backdrop {
    background: rgba(15,10,30,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .contact-form { padding: var(--s-6); }
  .contact-form__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--s-3);
    gap: var(--s-4);
  }
  .contact-form__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
  }
  .contact-form__title em { font-style: italic; font-weight: 600; color: var(--color-accent); }
  .contact-form__close {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.7);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
  }
  .contact-form__close:hover { background: rgba(255,255,255,0.1); color: #fff; }
  .contact-form__intro {
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
    margin: 0 0 var(--s-5);
  }
  .contact-form__form { display: flex; flex-direction: column; gap: var(--s-4); }
  .contact-form__field { display: flex; flex-direction: column; gap: 6px; }
  .contact-form__label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-accent);
  }
  .contact-form__label span { color: var(--color-accent-2); }
  .contact-form__input,
  .contact-form__textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    padding: var(--s-3) var(--s-4);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
  }
  .contact-form__input:focus,
  .contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-accent-2);
    background: rgba(255,255,255,0.08);
  }
  .contact-form__textarea { resize: vertical; min-height: 110px; max-height: 280px; }
  .contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  .contact-form__submit {
    background: var(--color-accent-2);
    color: #fff;
    border: none;
    padding: var(--s-3) var(--s-5);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-top: var(--s-2);
    align-self: flex-start;
    transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  }
  .contact-form__submit:hover:not([disabled]) { transform: translateY(-1px); }
  .contact-form__submit[disabled] { opacity: 0.5; cursor: wait; }
  .contact-form__success { text-align: left; }
  .contact-form__success-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 var(--s-3);
    letter-spacing: -0.02em;
  }
  .contact-form__success-body {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    margin: 0 0 var(--s-5);
  }
  .contact-form__close-final {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    padding: var(--s-3) var(--s-5);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
  }
  .contact-form__close-final:hover { background: rgba(255,255,255,0.12); }
  .contact-form__error {
    margin-top: var(--s-4);
    padding: var(--s-3) var(--s-4);
    background: rgba(255,120,67,0.12);
    border: 1px solid rgba(255,120,67,0.4);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
  }

  @media (max-width: 540px) {
    .contact-dialog { width: 100vw; height: 100vh; max-height: none; border-radius: 0; }
    .contact-form { min-height: 100vh; }
  }

  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .hero__object { animation: none; }
  }

  /* ---------- Fit Check Modal ---------- */
  .fit-check-dialog {
    width: min(560px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    margin: auto;
    padding: 0;
    border: none;
    border-radius: 20px;
    background: var(--color-surface-dark);
    color: var(--color-text);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
  }
  .fit-check-dialog::backdrop {
    background: rgba(15,10,30,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .fit-check {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    padding: var(--s-6);
  }
  .fit-check__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--s-6);
  }
  .fit-check__progress { display: flex; gap: 6px; }
  .fit-check__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background-color var(--dur-fast) var(--ease-out), width var(--dur-fast) var(--ease-out);
  }
  .fit-check__dot.active { background: var(--color-accent); width: 24px; border-radius: 4px; }
  .fit-check__dot.done { background: rgba(255,208,107,0.55); }
  .fit-check__close {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.7);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    line-height: 1;
    padding: 0;
  }
  .fit-check__close:hover { background: rgba(255,255,255,0.1); color: #fff; }
  .fit-check__screen { display: flex; flex-direction: column; flex: 1; }
  .fit-check__screen[hidden] { display: none; }
  .fit-check__question {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 var(--s-5);
  }
  .fit-check__hint {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin: calc(var(--s-5) * -1 + 4px) 0 var(--s-4);
    letter-spacing: 0.04em;
  }
  .fit-check__options {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    flex: 1;
  }
  .fit-check__option {
    text-align: left;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    padding: var(--s-4) var(--s-5);
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.45;
    transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  }
  .fit-check__option:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.28);
  }
  .fit-check__option.selected {
    background: rgba(255,120,67,0.16);
    border-color: var(--color-accent-2);
  }
  .fit-check__scale {
    display: flex;
    gap: var(--s-3);
    margin-top: var(--s-4);
  }
  .fit-check__scale-button {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    padding: var(--s-4) 0;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    transition: background-color var(--dur-fast) var(--ease-out);
  }
  .fit-check__scale-button:hover { background: rgba(255,255,255,0.1); }
  .fit-check__scale-button.selected {
    background: var(--color-accent-2);
    color: #fff;
    border-color: var(--color-accent-2);
  }
  .fit-check__scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: var(--s-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .fit-check__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--s-5);
    gap: var(--s-3);
  }
  .fit-check__back {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    padding: var(--s-2) var(--s-3);
    transition: color var(--dur-fast) var(--ease-out);
  }
  .fit-check__back:hover { color: #fff; }
  .fit-check__back[disabled] { visibility: hidden; }
  .fit-check__next {
    background: var(--color-accent-2);
    color: #fff;
    border: none;
    padding: var(--s-3) var(--s-5);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  }
  .fit-check__next:hover:not([disabled]) { transform: translateY(-1px); }
  .fit-check__next[disabled] { opacity: 0.35; cursor: not-allowed; }

  /* Outcome screens */
  .fit-check__outcome { text-align: left; flex: 1; display: flex; flex-direction: column; }
  .fit-check__outcome-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--s-3);
    font-weight: 700;
  }
  .fit-check__outcome--maybe .fit-check__outcome-eyebrow { color: rgba(255,255,255,0.65); }
  .fit-check__outcome--not-fit .fit-check__outcome-eyebrow { color: rgba(255,255,255,0.55); }
  .fit-check__outcome-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 var(--s-4);
  }
  .fit-check__outcome-title em { font-style: italic; font-weight: 600; color: var(--color-accent); }
  .fit-check__outcome-body {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.84);
    margin: 0 0 var(--s-5);
  }
  /* Secondary outcome links (diagnostic, guide) — ghost so they don't mimic booking */
  .fit-check__outcome-cta {
    display: inline-block;
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255,255,255,0.4);
    padding: var(--s-4) var(--s-6);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
    align-self: flex-start;
  }
  .fit-check__outcome-cta:hover { transform: translateY(-2px); border-color: var(--color-text); }
  /* The single booking action — signature gold, AAA contrast on dark text */
  .fit-check__outcome-cta--book {
    background: var(--color-cta);
    color: var(--color-text-dark);
    border-color: var(--color-cta);
    box-shadow: var(--shadow-2);
  }
  .fit-check__outcome-cta--book:hover { background: var(--color-cta-hover); border-color: var(--color-cta-hover); }
  .fit-check__outcome-cta--book:focus-visible { outline: 2px solid var(--color-text-dark); outline-offset: 2px; }
  .fit-check__outcome-note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: var(--s-3);
  }

  @media (max-width: 540px) {
    .fit-check-dialog { width: 100vw; height: 100vh; max-height: none; border-radius: 0; }
    .fit-check { min-height: 100vh; }
    .fit-check__question { font-size: 20px; }
    .fit-check__outcome-title { font-size: 22px; }
  }

  /* Visually-hidden utility for SEO/a11y semantic text */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
