/* ═══════════════════════════════════════════════════════════════
   patient.css — Styles specific to patient.html (orange theme)
   Requires shared.css to be loaded first.
   ═══════════════════════════════════════════════════════════════ */

/* ── Page accent color for glow effects ── */
:root {
  --page-accent: var(--o-principal);
  --page-accent-rgb: 252, 159, 66;
}

/* ── Background gradient override (orange-tinted) ── */
body::before {
  background:
    radial-gradient(ellipse 80% 55% at 8% 18%, rgba(252, 240, 227, .35) 0%, transparent 62%),
    radial-gradient(ellipse 65% 45% at 92% 62%, rgba(245, 172, 174, .22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 40% at 48% 95%, rgba(183, 201, 248, .2) 0%, transparent 52%),
    linear-gradient(172deg, #fdf6f1 0%, #f6f2f7 35%, #f2f6fd 68%, #f4f7fe 100%);
}

/* ── Skip link override (orange) ── */
.skip-link {
  background: var(--o-principal);
  left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  padding: .6rem 1.4rem;
}

/* ═══════════════════════════════════════════════
   NAV — Patient uses different layout with back button
   ═══════════════════════════════════════════════ */
nav {
  height: 72px;
  padding: 0 5%;
}
nav.scrolled {
  background: rgba(253, 246, 241, .7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(252, 159, 66, .08);
  box-shadow: 0 2px 20px rgba(252, 159, 66, .06);
}
/* Nav CTA buttons (patient uses both .nav-cta and .nav-cta-alt)
   padding/border-radius/font-weight/font-size/text-decoration inherited from shared.css */
.nav-cta, .nav-cta-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s, background .25s;
}
.nav-cta::before, .nav-cta-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transition: left .5s ease;
  pointer-events: none;
}
.nav-cta:hover::before, .nav-cta-alt:hover::before {
  left: 100%;
}

/* Patient nav-cta: orange instead of blue */
.nav-cta {
  background: var(--o-principal) !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(252, 159, 66, .28);
}
.nav-cta:hover {
  background: #fff !important;
  color: var(--o-principal) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252, 159, 66, .25);
}
.nav-cta-alt {
  background: #fff !important;
  color: var(--o-principal) !important;
  border: 1.5px solid rgba(252, 159, 66, .3) !important;
  box-shadow: 0 4px 18px rgba(252, 159, 66, .12);
}
.nav-cta-alt:hover {
  background: var(--o-principal) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252, 159, 66, .35);
}

/* ═══════════════════════════════════════════════
   EYEBROW & SECTION TITLE — Orange overrides
   ═══════════════════════════════════════════════ */
.eyebrow {
  background: linear-gradient(135deg, var(--o-principal), var(--o-clair));
}
.s-title {
  transition: color .3s;
}

/* ── Hero Eyebrow (patient-specific class) ── */
.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--o-principal), var(--o-clair));
  padding: .4rem .9rem;
  border-radius: 6px;
  margin-bottom: 1.4rem;
}


/* ═══════════════════════════════════════════════
   HERO — Patient overrides
   ═══════════════════════════════════════════════ */
.hero-btns {
  margin-bottom: 0;
}
.hero-visual img {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(24, 40, 74, .18);
}

/* ── btn-p override: orange instead of blue ── */
.btn-p {
  background: var(--o-principal);
  box-shadow: 0 8px 32px rgba(252, 159, 66, .3);
  animation: pulse-glow 3s ease-in-out infinite;
}
.btn-p:hover {
  background: var(--o-clair);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(253, 179, 93, .4);
}

/* ── btn-access (blue CTA button) ── */
.btn-access {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--o-principal), #e88a20);
  color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 8px 32px rgba(252, 159, 66, .3);
  position: relative;
  overflow: hidden;
}
.btn-access:hover {
  background: linear-gradient(135deg, #e88a20, var(--o-principal));
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(252, 159, 66, .4);
}
.btn-access::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-glow-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252, 159, 66, .2); }
  50% { box-shadow: 0 0 0 10px rgba(252, 159, 66, 0); }
}
.btn-access {
  animation: pulse-glow-orange 3s ease-in-out infinite 1.5s;
}

/* ═══════════════════════════════════════════════
   HOW STEPS
   ═══════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.step-card {
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(252, 159, 66, .1);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: background .35s, transform .35s, box-shadow .35s, border-color .35s;
  box-shadow: 0 4px 20px rgba(252, 159, 66, .06);
  overflow: hidden;
}
.step-card:hover {
  background: rgba(255, 255, 255, .92);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(252, 159, 66, .14);
  border-color: var(--o-l5);
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--o-principal), var(--o-clair));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 14px rgba(252, 159, 66, .25);
}
.step-icon {
  font-size: 2.4rem;
  margin-bottom: .8rem;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--b-noir);
  margin-bottom: .5rem;
}
.step-desc {
  font-size: .92rem;
  color: var(--texte-soft);
  line-height: 1.7;
}

/* Step card color shift on hover */
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.step-card:nth-child(1)::before { background: linear-gradient(145deg, rgba(252, 240, 227, .5), rgba(255, 255, 255, .1)); }
.step-card:nth-child(2)::before { background: linear-gradient(145deg, rgba(231, 238, 253, .5), rgba(255, 255, 255, .1)); }
.step-card:nth-child(3)::before { background: linear-gradient(145deg, rgba(254, 244, 245, .5), rgba(255, 255, 255, .1)); }
.step-card:hover::before { opacity: 1; }
.step-card:hover .step-num { animation: bounce-subtle .5s ease; }
.step-card:hover .step-icon { animation: wiggle .6s ease; }
.step-card:nth-child(1):hover { border-color: var(--o-principal); }
.step-card:nth-child(2):hover { border-color: var(--b-vif); }
.step-card:nth-child(3):hover { border-color: var(--r-principal); }

/* Step number color variants */
.step-card:nth-child(2) .step-num { background: linear-gradient(135deg, var(--b-principal), var(--b-vif)); }
.step-card:nth-child(3) .step-num { background: linear-gradient(135deg, var(--r-principal), var(--r-clair)); }

/* ═══════════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.feat-card {
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(252, 159, 66, .08);
  border-radius: 22px;
  padding: 2.2rem;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  transition: background .35s, transform .35s, box-shadow .35s, border-color .35s;
  box-shadow: 0 4px 20px rgba(252, 159, 66, .05);
  overflow: hidden;
  position: relative;
}
.feat-card:hover {
  background: rgba(255, 255, 255, .92);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(252, 159, 66, .14);
  border-color: var(--o-l5);
}
.feat-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.feat-ico.o { background: rgba(252, 240, 227, .85); }
.feat-ico.r { background: rgba(254, 244, 245, .9); }
.feat-ico.b { background: rgba(231, 238, 253, .75); }
.feat-ico img { width: 36px; height: 36px; object-fit: contain; }
.feat-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--b-noir);
  margin-bottom: .4rem;
}
.feat-desc {
  font-size: .93rem;
  color: var(--texte-soft);
  line-height: 1.7;
}

/* Feature cards: distinct tint on hover */
.feat-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s, transform .6s cubic-bezier(.23, 1, .32, 1);
  pointer-events: none;
  transform: scale(.5);
}
.feat-card:nth-child(1)::after { background: radial-gradient(circle, rgba(252, 240, 227, .6), transparent 70%); }
.feat-card:nth-child(2)::after { background: radial-gradient(circle, rgba(231, 238, 253, .6), transparent 70%); }
.feat-card:nth-child(3)::after { background: radial-gradient(circle, rgba(254, 244, 245, .6), transparent 70%); }
.feat-card:nth-child(4)::after { background: radial-gradient(circle, rgba(252, 240, 227, .6), transparent 70%); }
.feat-card:hover::after { opacity: 1; transform: scale(1.5); }
.feat-card:nth-child(2):hover { border-color: var(--b-l4); }
.feat-card:nth-child(3):hover { border-color: var(--r-l5); }
.feat-card:hover .feat-ico {
  transform: scale(1.08);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

/* ═══════════════════════════════════════════════
   PARENTS SECTION
   ═══════════════════════════════════════════════ */
.parents-card {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  border: 1px solid rgba(52, 86, 162, .1);
  padding: 48px 7%;
  box-shadow: 0 4px 40px rgba(52, 86, 162, .08);
  position: relative;
  overflow: hidden;
}
.parents-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(52, 86, 162, .05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 60%, rgba(252, 159, 66, .06) 0%, transparent 55%);
}
.parents-card > * { position: relative; z-index: 1; }
.parents-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 2rem;
}
.parent-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .8rem 1rem;
  border-radius: 14px;
  transition: background .3s, transform .25s;
  cursor: default;
}
.parent-item:hover {
  background: rgba(52, 86, 162, .04);
  transform: translateX(6px);
}
.parent-item:hover .parent-ico {
  transform: scale(1.1) rotate(-5deg);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.parent-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--b-l1);
  border: 1.5px solid var(--b-l2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.parent-text {
  font-size: .95rem;
  color: var(--texte);
  line-height: 1.7;
}
.parent-text strong { font-weight: 700; color: var(--b-noir); }
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--o-l1);
  color: var(--o-fonce);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-top: 1.2rem;
  border: 1.5px solid var(--o-l5);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.price-tag:hover {
  background: var(--o-principal);
  color: #fff;
  border-color: var(--o-principal);
  transition: all .3s;
}

/* ═══════════════════════════════════════════════
   DOWNLOAD SECTION
   ═══════════════════════════════════════════════ */
.dl-section { text-align: center; }
.dl-cta {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--b-noir);
  letter-spacing: -.5px;
  margin-bottom: .8rem;
}
.dl-sub {
  font-size: 1rem;
  color: var(--texte-soft);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.qr-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.qr-block {
  text-align: center;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.qr-block:hover { transform: translateY(-6px) scale(1.03); }
.qr-block:hover img { box-shadow: 0 8px 32px rgba(252, 159, 66, .2); }
.qr-block img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(24, 40, 74, .1);
  margin-bottom: .7rem;
  transition: box-shadow .3s;
}
.qr-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--texte-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.store-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.store-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--b-noir);
  color: #fff;
  padding: .8rem 1.8rem;
  border-radius: 14px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: all .25s;
}
.store-link:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(24, 40, 74, .22); }
.store-link:nth-child(1):hover { background: var(--b-principal); }
.store-link:nth-child(2):hover { background: #34a853; }

/* ═══════════════════════════════════════════════
   SIGNUP FORM
   ═══════════════════════════════════════════════ */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.signup-info { padding-top: 1rem; }
.signup-info p {
  font-size: .95rem;
  color: var(--texte-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Form card override: orange border/shadow */
.form-card {
  border-color: var(--o-l2);
  border-width: 1.5px;
  border-radius: 22px;
  padding: 2.8rem;
  box-shadow: 0 4px 28px rgba(252, 159, 66, .08);
  transition: border-color .4s, box-shadow .4s;
}
.form-card:focus-within {
  border-color: var(--o-principal);
  box-shadow: 0 4px 32px rgba(252, 159, 66, .15), 0 0 0 3px rgba(252, 159, 66, .08);
}

/* Form field overrides: orange borders */
.fg input, .fg select, .fg textarea {
  border-color: var(--o-l2);
  border-radius: 12px;
  padding: .78rem 1.1rem;
  font-size: .92rem;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--o-principal);
  box-shadow: 0 0 0 3px rgba(252, 159, 66, .1);
}
.fg input::placeholder, .fg textarea::placeholder {
  color: var(--o-l5);
}
.fg label {
  font-size: .78rem;
  margin-bottom: 6px;
}
.fg { margin-bottom: 1.2rem; }

/* Submit button override: orange */
.submit-btn {
  background: var(--o-principal);
  padding: 1rem;
  font-size: 1rem;
  box-shadow: 0 8px 28px rgba(252, 159, 66, .3);
}
.submit-btn:hover {
  background: var(--o-clair);
  box-shadow: 0 10px 36px rgba(252, 159, 66, .35);
}
.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(252, 159, 66, .2);
}
.submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  background-size: 200% 100%;
  animation: shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}
.submit-btn:hover::after { animation: none; }
.submit-btn:focus-visible {
  outline: 3px solid var(--o-fonce);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════
   STICKY CTA BAR — Orange theme
   ═══════════════════════════════════════════════ */
.sticky-cta-bar a {
  padding: 12px 8px;
  font-size: .8rem;
}
.sticky-cta-bar .sticky-access {
  background: rgba(255, 255, 255, .95);
  color: var(--o-principal);
  border: 1.5px solid rgba(252, 159, 66, .3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}
.sticky-cta-bar .sticky-download {
  background: linear-gradient(135deg, var(--o-principal), #e88a20);
  color: #fff;
  box-shadow: 0 6px 24px rgba(252, 159, 66, .45), 0 2px 8px rgba(0, 0, 0, .08);
  animation: stickyPulseOrange 3s ease-in-out infinite;
}
@keyframes stickyPulseOrange {
  0%, 100% { box-shadow: 0 6px 24px rgba(252, 159, 66, .45), 0 2px 8px rgba(0, 0, 0, .08); }
  50% { box-shadow: 0 8px 32px rgba(252, 159, 66, .6), 0 4px 16px rgba(252, 159, 66, .25); }
}

/* ═══════════════════════════════════════════════
   FOOTER — Simpler footer override
   ═══════════════════════════════════════════════ */
footer { padding: 2.5rem 5% 2rem; }
.foot-logo { margin-bottom: 1rem; }
.foot-logo img { height: 30px; }
.foot-copy { margin-bottom: .5rem; }
.foot-link {
  color: var(--b-l5);
  opacity: .5;
  font-size: .7rem;
  text-decoration: none;
  transition: color .2s, opacity .2s, transform .2s;
  display: inline-block;
}
.foot-link:hover {
  opacity: .9;
  color: var(--o-principal);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   FOCUS VISIBLE — Orange override
   ═══════════════════════════════════════════════ */
*:focus-visible {
  outline: 3px solid var(--o-principal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   HERO PHONE — Float animation
   ═══════════════════════════════════════════════ */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-visual img { animation: float-gentle 4s ease-in-out infinite; }

/* ═══════════════════════════════════════════════
   PATIENT-SPECIFIC KEYFRAMES
   ═══════════════════════════════════════════════ */
@keyframes slide-in-bottom {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}
@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Stagger override: slide-in-bottom animation */
.stagger.vis > *:nth-child(1) { animation: slide-in-bottom .5s ease forwards; }
.stagger.vis > *:nth-child(2) { animation: slide-in-bottom .5s ease forwards; animation-delay: .12s; }
.stagger.vis > *:nth-child(3) { animation: slide-in-bottom .5s ease forwards; animation-delay: .24s; }
.stagger.vis > *:nth-child(4) { animation: slide-in-bottom .5s ease forwards; animation-delay: .36s; }

/* CTA shimmer overrides for patient-specific buttons
   .btn-p and .nav-cta already have position:relative/overflow:hidden from shared.css */
.btn-access, .nav-cta-alt {
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════
   TABLET — max-width: 960px
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-visual { margin-top: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .signup-grid { grid-template-columns: 1fr; }
  .parents-card { padding: 36px 5%; }

  section { padding: 56px 6%; }
  section + section { padding-top: 40px; }
}

/* ═══════════════════════════════════════════════
   MOBILE — max-width: 600px
   ═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Section padding override (tighter — matches pro/reeduc) */
  section { padding: 20px 5% !important; }
  section + section { padding-top: 12px !important; }
  .s-title { font-size: 1.3rem !important; margin-bottom: .3rem !important; }
  .s-sub { font-size: .8rem; line-height: 1.5; margin-bottom: .3rem; }
  .eyebrow { font-size: .6rem; margin-bottom: .3rem !important; }

  /* Hero mobile overrides — fluid */
  .hero { padding: clamp(44px, 10vw, 56px) 5% clamp(14px, 4vw, 22px) !important; }
  .hero-eyebrow { font-size: clamp(.48rem, 1.8vw, .6rem); margin-bottom: clamp(.3rem, 1vw, .5rem); }
  h1 { font-size: clamp(1.4rem, 5.5vw, 1.9rem) !important; margin-bottom: clamp(.3rem, 1.5vw, .6rem) !important; }
  .hero-sub {
    font-size: clamp(.78rem, 2.8vw, .95rem) !important;
    line-height: 1.5;
    margin-bottom: clamp(.7rem, 2.5vw, 1.2rem) !important;
    max-width: 100% !important;
    border-left: none !important;
    padding-left: 0 !important;
  }
  .hero-btns {
    flex-direction: column !important;
    gap: clamp(.5rem, 2vw, .8rem);
    align-items: stretch;
  }
  .hero-btns .btn-access {
    background: linear-gradient(135deg, var(--o-principal), var(--o-clair)) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(252, 159, 66, .3);
  }

  /* Steps: compact horizontal rows */
  .steps-grid { grid-template-columns: 1fr !important; gap: .4rem !important; margin-top: 1rem !important; }
  .step-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    padding: .7rem .9rem !important;
    gap: .6rem !important;
  }
  .step-card .step-num { margin: 0 !important; width: 32px; height: 32px; font-size: .72rem; flex-shrink: 0; }
  .step-card .step-icon { display: none !important; }
  .step-card .step-title { font-size: .85rem !important; margin-bottom: 0 !important; }
  .step-card .step-desc { display: none !important; }
  .step-card.expanded { flex-wrap: wrap; padding: 1rem 1.1rem 1.1rem !important; }
  .step-card.expanded .step-desc {
    display: block !important;
    max-height: 150px;
    opacity: 1;
    margin-top: .5rem;
    padding-top: .3rem;
    width: 100%;
    font-size: .78rem;
    line-height: 1.5;
    color: var(--texte-soft);
    border-top: 1px solid rgba(0, 0, 0, .06);
    animation: fadeSlideIn .4s ease forwards;
  }

  /* Tap-to-expand for patient-specific components */
  .step-card, .feat-card, .parent-item {
    cursor: pointer;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1),
                box-shadow .4s, background .3s,
                padding .4s cubic-bezier(.34, 1.56, .64, 1) !important;
  }
  .step-card.expanded, .feat-card.expanded, .parent-item.expanded {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08), 0 0 0 2px rgba(59, 110, 165, .12) !important;
    z-index: 2;
    position: relative;
  }

  /* Features: compact 2x2 grid */
  .features-grid { grid-template-columns: 1fr 1fr !important; gap: .6rem !important; }
  .feat-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1rem .8rem !important;
    gap: .5rem;
  }
  .feat-card .feat-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  }
  .feat-card.expanded .feat-ico { transform: scale(1.15); }
  .feat-card .feat-title { font-size: .78rem !important; }
  .feat-desc { display: none !important; }
  .feat-card.expanded .feat-desc {
    display: block !important;
    font-size: .72rem;
    line-height: 1.5;
    color: var(--texte-soft);
    margin-top: .4rem;
    animation: fadeSlideIn .4s ease forwards;
  }
  .feat-card.expanded { padding: 1rem .8rem 1.1rem !important; }

  /* Parents: compact */
  .parents-card { padding: 20px 5% !important; border-radius: 16px !important; }
  .parents-list { gap: .5rem !important; margin-top: 1rem !important; }
  .parent-item {
    padding: .6rem .7rem !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, .5);
    align-items: center !important;
  }
  .parent-item.expanded {
    align-items: flex-start !important;
  }
  .parent-ico {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
  }
  .parent-item.expanded .parent-ico { transform: scale(1.15); }
  .parent-text { font-size: .8rem !important; line-height: 1.5 !important; }
  .parent-text .parent-detail { display: none; }
  .parent-item.expanded .parent-detail { display: inline; animation: fadeSlideIn .4s ease forwards; }

  /* Download: compact */
  .qr-row { gap: 1rem; }
  .qr-block img { width: 70px; height: 70px; border-radius: 10px; }
  .qr-label { font-size: .6rem; }
  .store-links { gap: .5rem; margin-top: 1rem; }
  .store-link { padding: .5rem .9rem; font-size: .75rem; border-radius: 10px; }
  .dl-cta { font-size: 1.2rem !important; margin-bottom: .3rem; }
  .dl-sub { font-size: .78rem; margin-bottom: 1rem !important; }

  /* Signup: compact */
  .signup-grid { grid-template-columns: 1fr; gap: 1rem; }
  .signup-info { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.2rem !important; border-radius: 14px; }
  .fg { margin-bottom: .8rem !important; }
  .fg label { font-size: .68rem !important; }
  .fg input, .fg select, .fg textarea { padding: .6rem .9rem !important; font-size: .84rem !important; }

  /* Footer compact override */
  footer { padding: 1.5rem 5% 1rem; }

  /* Touch-friendly: active states */
  .step-card:active { transform: scale(.97); transition: transform .15s; }
  .feat-card:active { transform: scale(.97); transition: transform .15s; }
}

/* ═══════════════════════════════════════════════
   TABLET — max-width: 768px (patient overrides)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Touch targets */
  .btn-p, .btn-access, .submit-btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── Hero visual (no v3 override) ── */
.hero-visual img {
  filter       : drop-shadow(0 32px 72px rgba(0,0,0,.6)) !important;
  border-radius: 28px !important;
}

/* ── Feat cards: subtle orange glow ── */
.feat-card {
  box-shadow : var(--v2-shine), var(--v2-shadow),
               0 0 40px rgba(255,140,58,.05) !important;
}
/* Hover: neutralise le lift+fond blanc hérité, remplace par un glow de bordure */
.feat-card:hover {
  background : rgba(255,255,255,.08) !important;
  transform  : none !important;
  border-color: rgba(252,159,66,.38) !important;
  box-shadow : var(--v2-shine),
               0 12px 40px rgba(0,0,0,.45),
               0 0 0 1px rgba(252,159,66,.18),
               0 0 32px rgba(252,159,66,.12) !important;
}
.feat-card:hover::after { opacity: 0 !important; }


/* ═══════════════════════════════════════════════════════════════════
   ██  v3 CHROMATIC WORLDS — Patient (amber / energetic / fun)
   ═══════════════════════════════════════════════════════════════════
   World: Deep amber-dark base + vivid orange-gold animated blobs.
   Glass panels become amber-tinted windows into this warm world.
   ─────────────────────────────────────────────────────────────────── */

/* ── The World — moUve Orange #FC9F42 / #FDB35D ── */
body { background: #100500 !important; }

/* ── U logo glow — brand signature background ── */
body::before { display: none !important; }
body::after {
  content            : '' !important;
  position           : fixed !important;
  inset              : auto !important;
  background         : url('img/U.svg') no-repeat center center !important;
  background-size    : contain !important;
  width              : 44vw !important;
  height             : 68vw !important;
  bottom             : -12% !important;
  right              : -8% !important;
  z-index            : -1 !important;
  pointer-events     : none !important;
  opacity            : .055 !important;
  filter             : brightness(0) invert(1)
                       drop-shadow(0 0 70px rgba(252,159,66,.9)) !important;
  animation          : uGlow 14s ease-in-out infinite reverse !important;
}

/* ── Hero ── */
.hero { background: transparent !important; position: relative; overflow: visible; }
.hero::before {
  content    : '';
  position   : absolute;
  width      : 80vw; height: 68vw;
  top        : -20%; left: 50%;
  transform  : translateX(-50%);
  background : radial-gradient(ellipse, rgba(252,159,66,.38) 0%, transparent 65%);
  filter     : blur(52px);
  pointer-events: none;
  z-index    : 0;
}
.hero-inner { position: relative; z-index: 1; }

.hero h1 { color: #fff !important; letter-spacing: -3px !important; }
.hero .acc-o {
  background              : linear-gradient(135deg, #FDB35D 0%, #FC9F42 100%) !important;
  -webkit-background-clip : text !important;
  -webkit-text-fill-color : transparent !important;
  background-clip         : text !important;
  filter                  : drop-shadow(0 0 28px rgba(252,159,66,.7));
}
.hero .acc-t {
  background              : linear-gradient(135deg, #FDD08A 0%, #FC9F42 100%) !important;
  -webkit-background-clip : text !important;
  -webkit-text-fill-color : transparent !important;
  background-clip         : text !important;
}
.hero .hero-eyebrow, .hero .why-eyebrow {
  background  : rgba(252,159,66,.18) !important;
  color       : rgba(253,179,93,.95) !important;
  border      : 1px solid rgba(252,159,66,.35) !important;
}
.hero .kpi-num {
  background              : linear-gradient(135deg, #FDB35D, #FC9F42) !important;
  -webkit-background-clip : text !important;
  -webkit-text-fill-color : transparent !important;
  background-clip         : text !important;
  filter                  : drop-shadow(0 0 18px rgba(252,159,66,.6)) !important;
}

/* ── CTA buttons — moUve orange #FC9F42 ── */
.btn-p, .btn-access {
  background : linear-gradient(135deg, #FC9F42, #A3641C) !important;
  box-shadow : 0 8px 32px rgba(252,159,66,.45),
               inset 0 1px 0 rgba(255,255,255,.28) !important;
  color      : #fff !important;
}
.btn-p:hover, .btn-access:hover {
  box-shadow : 0 16px 52px rgba(252,159,66,.65),
               inset 0 1px 0 rgba(255,255,255,.28) !important;
  transform  : translateY(-3px) !important;
}
.nav-cta {
  background : linear-gradient(135deg, #FC9F42, #A3641C) !important;
  box-shadow : 0 4px 20px rgba(252,159,66,.4),
               inset 0 1px 0 rgba(255,255,255,.22) !important;
}

/* ── Sticky bar ── */
.sticky-cta-bar .sticky-primary {
  background : linear-gradient(135deg, #FC9F42, #A3641C);
  color      : #fff;
  animation  : stickyPulseAmber 3s ease-in-out infinite;
}
@keyframes stickyPulseAmber {
  0%, 100% { box-shadow: 0 6px 28px rgba(252,159,66,.45); }
  50%       { box-shadow: 0 10px 40px rgba(252,159,66,.65); }
}
.sticky-cta-bar .sticky-access {
  background   : rgba(255,255,255,.12) !important;
  color        : rgba(255,255,255,.88) !important;
  border       : 1.5px solid rgba(255,255,255,.22) !important;
  box-shadow   : none !important;
}
.sticky-cta-bar .sticky-access:hover {
  background   : rgba(255,255,255,.2) !important;
  border-color : rgba(255,255,255,.38) !important;
}

/* ── Vision section 3-col grid ── */
.vision-manifeste {
  display              : grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap                  : 1rem !important;
}
@media (max-width: 780px) {
  .vision-manifeste { grid-template-columns: 1fr !important; }
}

/* ── Step + rank cards: moUve orange glow ── */
.step-card { border-left: 3px solid rgba(252,159,66,.5) !important; }
.step-card:hover {
  border-left-color: rgba(252,159,66,.9) !important;
  box-shadow: var(--gl-shine), 0 32px 80px rgba(0,0,0,.5),
              0 0 60px rgba(252,159,66,.18) !important;
}
.rank-card:hover {
  box-shadow: var(--gl-shine), 0 32px 80px rgba(0,0,0,.5),
              0 0 60px rgba(252,159,66,.16) !important;
}

/* ── Ghost btn ── */
.btn-g {
  border-color: rgba(252,159,66,.4) !important;
  color       : rgba(253,179,93,.9) !important;
}
.btn-g:hover {
  background  : rgba(252,159,66,.1) !important;
  border-color: rgba(252,159,66,.7) !important;
}

/* ── v3 Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero::before { display: none !important; }
  body::before, body::after { animation: none !important; }
}

/* ════════════════════════════════════════════════════
   § PATIENT INLINE-STYLE OVERRIDES — dark glass world
════════════════════════════════════════════════════ */

/* ── Parents tarif box ── */
#parents .parents-card > div[style*="background:linear-gradient(145deg,var(--o-l1)"] {
  background  : rgba(255,255,255,.055) !important;
  border-color: rgba(252,159,66,.4)    !important;
  box-shadow  : inset 0 1.5px 0 rgba(255,255,255,.06),
                0 8px 40px rgba(0,0,0,.35) !important;
}
/* Price "/ mois" subtitle */
#parents .tarif-price-anim span {
  -webkit-text-fill-color: rgba(228,236,255,.5) !important;
  background: none !important;
}
#parents [style*="color:var(--texte-soft)"] {
  color: rgba(228,236,255,.52) !important;
}
/* Tier cards inside tarif */
#parents [style*="background:#fff"],
#parents [style*="background:linear-gradient(135deg,var(--o-l1)"] {
  background  : rgba(255,255,255,.06) !important;
  border-color: rgba(252,159,66,.2)   !important;
}
#parents [style*="color:var(--texte)"] {
  color: rgba(228,236,255,.9) !important;
}
#parents [style*="color:var(--o-fonce)"] {
  color: rgba(253,179,93,.82) !important;
}
#parents [style*="color:var(--o-principal)"] {
  color: rgba(253,179,93,.9) !important;
}

/* ══════════════════════════════════════════════════════════════
   § SECTION REDESIGN — Dark World full treatment
   ══════════════════════════════════════════════════════════════ */

/* ── Global text on dark bg ── */
.s-title  { color: rgba(255,255,255,.95) !important; }
.s-sub    { color: rgba(255,255,255,.48) !important; }
.eyebrow  {
  background   : rgba(252,159,66,.14) !important;
  color        : rgba(253,179,93,.95) !important;
  border       : 1px solid rgba(252,159,66,.28) !important;
  border-radius: 50px !important;
  padding      : .38rem 1.1rem !important;
}

/* ── Nav scrolled — dark glass ── */
nav.scrolled {
  background   : rgba(12,8,2,.88) !important;
  border-bottom: 1px solid rgba(252,159,66,.12) !important;
  box-shadow   : 0 2px 24px rgba(0,0,0,.4) !important;
}
.nav-cta-alt {
  background  : rgba(255,255,255,.07) !important;
  color       : rgba(255,255,255,.8) !important;
  border      : 1.5px solid rgba(255,255,255,.14) !important;
  box-shadow  : none !important;
}
.nav-cta-alt:hover {
  background  : rgba(252,159,66,.14) !important;
  color       : rgba(253,179,93,.95) !important;
  border-color: rgba(252,159,66,.38) !important;
}

/* ── HOW section ── */
#how { position: relative; overflow: hidden; }
#how::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 70% 50% at 50% 80%,
              rgba(252,159,66,.07) 0%, transparent 65%);
  pointer-events: none;
}
.step-card {
  background  : rgba(255,255,255,.045) !important;
  border      : 1px solid rgba(255,255,255,.08) !important;
  box-shadow  : 0 8px 40px rgba(0,0,0,.3),
                inset 0 1.5px 0 rgba(255,255,255,.07) !important;
  transition  : background .3s, border-color .3s, box-shadow .3s !important;
}
.step-card:hover {
  background  : rgba(255,255,255,.07) !important;
  transform   : none !important;
  border-color: rgba(252,159,66,.35) !important;
  box-shadow  : 0 12px 48px rgba(0,0,0,.4),
                0 0 0 1px rgba(252,159,66,.15),
                inset 0 1.5px 0 rgba(255,255,255,.09),
                0 0 40px rgba(252,159,66,.1) !important;
}
.step-card:hover::before { opacity: 0 !important; }
.step-title { color: rgba(255,255,255,.92) !important; }
.step-desc  { color: rgba(255,255,255,.50) !important; }
/* Step numbers: keep orange gradient glow */
.step-num {
  box-shadow: 0 4px 20px rgba(252,159,66,.45) !important;
}

/* ── FEATURES section ── */
#features { position: relative; overflow: hidden; }
#features::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%,
              rgba(252,159,66,.06) 0%, transparent 65%);
  pointer-events: none;
}
.feat-card {
  background  : rgba(255,255,255,.045) !important;
  border      : 1px solid rgba(255,255,255,.08) !important;
  box-shadow  : 0 8px 40px rgba(0,0,0,.28),
                inset 0 1.5px 0 rgba(255,255,255,.06) !important;
}
.feat-ico.o {
  background  : rgba(252,159,66,.18) !important;
  border-radius: 14px !important;
  box-shadow  : 0 0 16px rgba(252,159,66,.2) !important;
}
.feat-ico.r {
  background  : rgba(236,104,107,.18) !important;
  border-radius: 14px !important;
  box-shadow  : 0 0 16px rgba(236,104,107,.18) !important;
}
.feat-ico.b {
  background  : rgba(77,128,240,.18) !important;
  border-radius: 14px !important;
  box-shadow  : 0 0 16px rgba(77,128,240,.18) !important;
}
.feat-title { color: rgba(255,255,255,.92) !important; }
.feat-desc  { color: rgba(255,255,255,.50) !important; }

/* ── PARENTS section ── */
.parents-card {
  background  : rgba(255,255,255,.04) !important;
  border      : 1px solid rgba(255,255,255,.09) !important;
  box-shadow  : 0 16px 64px rgba(0,0,0,.4),
                inset 0 1.5px 0 rgba(255,255,255,.06) !important;
}
.parents-card::before {
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(252,159,66,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 60%, rgba(236,104,107,.04) 0%, transparent 55%) !important;
}
.parent-item:hover {
  background : rgba(252,159,66,.07) !important;
  transform  : translateX(4px) !important;
}
.parent-ico {
  background  : rgba(252,159,66,.15) !important;
  border      : 1px solid rgba(252,159,66,.22) !important;
}
.parent-text         { color: rgba(255,255,255,.6) !important; }
.parent-text strong  { color: rgba(255,255,255,.92) !important; }

/* ── PHILOSOPHIE section ── */
#philosophie { position: relative; overflow: hidden; }
#philosophie::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 60% 55% at 80% 40%,
              rgba(252,159,66,.06) 0%, transparent 65%);
  pointer-events: none;
}
.philo-title { color: rgba(255,255,255,.9) !important; }
.philo-desc  { color: rgba(255,255,255,.50) !important; }

/* ── DOWNLOAD section ── */
#download { position: relative; overflow: hidden; }
#download::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%,
              rgba(252,159,66,.1) 0%, transparent 62%);
  pointer-events: none;
}
.dl-cta  { color: rgba(255,255,255,.96) !important; }
.dl-sub  { color: rgba(255,255,255,.50) !important; }
.qr-label { color: rgba(255,255,255,.4) !important; }
.qr-block img {
  box-shadow   : 0 8px 40px rgba(0,0,0,.5),
                 0 0 0 1px rgba(255,255,255,.1) !important;
}
.store-link {
  background  : rgba(255,255,255,.07) !important;
  color       : rgba(255,255,255,.8) !important;
  border      : 1px solid rgba(255,255,255,.12) !important;
}
.store-link:hover {
  background  : rgba(252,159,66,.16) !important;
  color       : rgba(253,179,93,.95) !important;
  border-color: rgba(252,159,66,.38) !important;
  box-shadow  : 0 10px 32px rgba(252,159,66,.2) !important;
  transform   : translateY(-3px) !important;
}
.store-link:nth-child(1):hover,
.store-link:nth-child(2):hover { background: rgba(252,159,66,.16) !important; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,.06) !important;
  background : transparent !important;
}
.foot-copy { color: rgba(255,255,255,.3) !important; }
.foot-link { color: rgba(253,179,93,.65) !important; }
.foot-link:hover { color: rgba(253,179,93,.95) !important; }

