/* ==========================================================================
   RelaCare — Design system
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0a0f24;
  --navy-2: #10173a;
  --navy-3: #182252;
  --ink: #0b0f24;
  --ink-600: #333a56;
  --ink-400: #626a8a;
  --paper: #f7f8fc;
  --paper-alt: #eef1fb;
  --paper-blue: #e8edfc;
  --white: #ffffff;
  --accent: #3a53ff;
  --accent-50: #eef1ff;
  --accent-100: #dde3ff;
  --accent-400: #6b7dff;
  --accent-500: #3a53ff;
  --accent-600: #2a3fdb;
  --violet: #7c6cf0;
  --violet-50: #f2effe;
  --turquoise: #22c7b5;
  --turquoise-50: #e8fbf8;
  --amber: #d98c3d;
  --amber-2: #f2a65a;
  --amber-50: rgba(217, 140, 61, 0.14);
  --border: rgba(10, 15, 36, 0.1);
  --border-soft: rgba(10, 15, 36, 0.06);
  --border-navy: rgba(255, 255, 255, 0.12);
  --shadow-card: 0 2px 20px -6px rgba(10, 15, 36, 0.08);
  --shadow-soft: 0 8px 30px -10px rgba(10, 15, 36, 0.12);
  --shadow-lift: 0 24px 48px -18px rgba(58, 83, 255, 0.35);
  --shadow-navy: 0 24px 60px -20px rgba(3, 6, 20, 0.55);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-full: 999px;
  --content-width: 1280px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  padding-bottom: 64px;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background-color: var(--accent);
  color: var(--white);
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .section {
    padding: 7rem 0;
  }
}

.section--tint {
  background: var(--paper-alt);
}

.section--gradient {
  background: linear-gradient(135deg, #eef1ff 0%, #f5f1ff 55%, #eef8fc 100%);
}

.section--navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-3) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.section--navy .h2,
.section--navy .h1,
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy .text-muted,
.section--navy p {
  color: rgba(255, 255, 255, 0.62);
}

.section--navy .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #b9c2ff;
}

.section--tight {
  padding: 5rem 0;
}

.section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* ---------- Typography ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-50);
  color: var(--accent-600);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}

@media (min-width: 640px) {
  .h1 {
    font-size: 3.5rem;
  }
}

.h1--xl {
  font-size: 2.75rem;
}

@media (min-width: 640px) {
  .h1--xl {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .h1--xl {
    font-size: 4.5rem;
  }
}

.h1 em,
.h1--xl em {
  font-style: normal;
  background: linear-gradient(100deg, #8fa0ff 0%, #b9a8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}

@media (min-width: 640px) {
  .h2 {
    font-size: 2.5rem;
  }
}

.h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.lede {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-400);
}

@media (min-width: 640px) {
  .lede {
    font-size: 1.2rem;
  }
}

.text-muted {
  color: var(--ink-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

.small-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-400);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--accent-500);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.btn--primary:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
  box-shadow: 0 28px 50px -16px rgba(58, 83, 255, 0.45);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-3);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
}

.btn--secondary:hover {
  border-color: rgba(10, 15, 36, 0.3);
  background: var(--paper-alt);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover {
  color: var(--accent-600);
  gap: 0.75rem;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 252, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(247, 248, 252, 0.92);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.logo__mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--accent-500), var(--violet));
  flex-shrink: 0;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1100px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-400);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.header__cta {
  display: none;
}

@media (min-width: 1100px) {
  .header__cta {
    display: block;
  }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: transparent;
}

@media (min-width: 1100px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bar {
  position: relative;
  width: 16px;
  height: 12px;
}

.nav-toggle__bar span {
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.nav-toggle__bar span:first-child {
  top: 0;
}

.nav-toggle__bar span:last-child {
  bottom: 0;
}

.header.is-open .nav-toggle__bar span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.header.is-open .nav-toggle__bar span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.header.is-open .mobile-nav {
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.5rem;
}

.mobile-nav__list a {
  display: block;
  padding: 0.75rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-600);
}

.mobile-nav__list a:hover {
  background: var(--paper-alt);
}

.mobile-nav__cta {
  margin-top: 0.5rem;
  display: block;
  text-align: center;
  border-radius: var(--radius-full);
  background: var(--accent-500);
  color: var(--white);
  padding: 0.85rem;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- Mobile sticky CTA ---------- */

.mobile-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 45;
  border-top: 1px solid var(--border);
  background: rgba(247, 248, 252, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
}

@media (min-width: 1024px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta a {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-full);
  background: var(--accent-500);
  color: var(--white);
  padding: 0.85rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lift);
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--border-navy);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 4.5rem 0 2.5rem;
}

.footer .logo {
  color: var(--white);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
  }
}

.footer__brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 20rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (min-width: 480px) {
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__cols h4 {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.footer__cols ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__cols a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer__cols a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-navy);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 100% at 15% 0%, #182252 0%, var(--navy-2) 45%, var(--navy) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero__glow--1 {
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: rgba(122, 108, 240, 0.25);
}

.hero__glow--2 {
  bottom: -220px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: rgba(34, 199, 181, 0.14);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
}

@media (min-width: 640px) {
  .hero__grid {
    padding: 7rem 0 5.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 8rem 0 6rem;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c3cbff;
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin-top: 1.5rem;
  color: var(--white);
}

.hero__sub {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Dashboard mock (hero visual) ---------- */

.dashboard {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-navy);
}

@media (min-width: 640px) {
  .dashboard {
    padding: 2rem;
  }
}

.dashboard__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard__dots {
  display: flex;
  gap: 0.4rem;
}

.dashboard__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.dashboard__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.dashboard__grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.stat-tile {
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 1.2rem;
}

.stat-tile__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.stat-tile__value {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.stat-tile--accent {
  background: linear-gradient(135deg, rgba(58, 83, 255, 0.35), rgba(124, 108, 240, 0.25));
  border-color: rgba(139, 148, 255, 0.35);
}

.dashboard__caption {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  border-bottom: 1px solid var(--border);
  background: var(--paper-alt);
  padding: 5.5rem 0;
}

@media (min-width: 640px) {
  .page-hero {
    padding: 7.5rem 0;
  }
}

.page-hero__inner {
  max-width: 44rem;
}

.page-hero .lede {
  margin-top: 1.25rem;
  max-width: 38rem;
}

.page-hero .h1 {
  margin-top: 1.25rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-400);
}

.back-link:hover {
  color: var(--ink);
}

/* ---------- Cards / Grids ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}
.grid--3 {
  grid-template-columns: 1fr;
}
.grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

a.card:hover,
.card--hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(58, 83, 255, 0.25);
}

.card--navy {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-navy);
  color: rgba(255, 255, 255, 0.85);
}

.card--navy h3 {
  color: var(--white);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  background: var(--accent-50);
  color: var(--accent-600);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.card__icon--violet {
  background: var(--violet-50);
  color: var(--violet);
}

.card__icon--turquoise {
  background: var(--turquoise-50);
  color: #159384;
}

a.card:hover .card__icon {
  transform: scale(1.08) rotate(-4deg);
}

.card h3 {
  margin-top: 1.25rem;
}

.card p {
  margin-top: 0.5rem;
}

.card__link {
  margin-top: 1.1rem;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-600);
}

.number-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.number-card__n {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-500);
}

.number-card h3 {
  margin-top: 0.75rem;
}

.number-card p {
  margin-top: 0.5rem;
}

/* ---------- Split panels (dual CTA) ---------- */

.split {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: repeat(2, 1fr);
  }
  .split--devis {
    grid-template-columns: 1.4fr 1fr;
  }
  .split--contact {
    grid-template-columns: 1.3fr 1fr;
  }
  .split--wide {
    grid-template-columns: 2fr 1fr;
  }
}

.panel {
  border-radius: var(--radius-lg);
  padding: 2.75rem;
}

@media (min-width: 640px) {
  .panel {
    padding: 3.25rem;
  }
}

.panel--dark {
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  color: var(--white);
  border: 1px solid var(--border-navy);
}

.panel--dark .lede,
.panel--dark p {
  color: rgba(255, 255, 255, 0.6);
}

.panel--light {
  background: var(--white);
  border: 1px solid var(--border);
}

.panel h2 {
  margin-top: 1.25rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: inherit;
}

@media (min-width: 640px) {
  .panel h2 {
    font-size: 1.85rem;
  }
}

.panel p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.panel .btn {
  margin-top: 1.75rem;
}

/* ---------- Check / cross lists ---------- */

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.check-list .icon {
  margin-top: 0.2rem;
  color: var(--accent-500);
}

.cross-list .icon {
  color: var(--ink-400);
}

/* ---------- Before / after ---------- */

.compare {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .compare {
    grid-template-columns: repeat(2, 1fr);
  }
}

.compare__col {
  border-radius: var(--radius);
  padding: 2.25rem;
}

@media (min-width: 640px) {
  .compare__col {
    padding: 2.75rem;
  }
}

.compare__col--before {
  background: var(--paper-alt);
  border: 1px solid var(--border);
}

.compare__col--after {
  background: linear-gradient(160deg, #eef1ff, #f4f0ff);
  border: 1px solid rgba(58, 83, 255, 0.2);
}

.compare__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.compare__col--before .compare__label {
  color: var(--ink-400);
}

.compare__col--after .compare__label {
  color: var(--accent-600);
}

.compare__col ul {
  margin-top: 1.5rem;
}

/* ---------- Flow diagram (solution section) ---------- */

.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow__node {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: var(--radius-full);
  padding: 0.85rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
}

.flow__node--hub {
  background: linear-gradient(135deg, var(--accent-500), var(--violet));
  border: none;
  color: var(--white);
  font-size: 1rem;
  padding: 1.1rem 2.2rem;
  box-shadow: var(--shadow-lift);
}

.flow__line {
  width: 1px;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.2);
}

.flow__channels {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 40rem;
}

.flow__channel {
  border-radius: var(--radius-full);
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  transition: all 0.25s ease;
}

.flow__channel:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mini flow used inside light sections */

.mini-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mini-flow__node {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 0.9rem;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-600);
}

.mini-flow__node--muted {
  background: var(--paper);
  color: var(--ink-400);
  font-weight: 600;
  font-size: 0.78rem;
}

.mini-flow__node--hub {
  background: linear-gradient(135deg, var(--accent-500), var(--violet));
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-soft);
}

.mini-flow__line {
  width: 1px;
  height: 1.1rem;
  background: var(--border);
}

/* ---------- Tag pills ---------- */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-600);
}

/* ---------- Timeline (comment ça marche, dark) ---------- */

.timeline {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.timeline__step {
  position: relative;
  padding-top: 1.75rem;
}

.timeline__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-400), rgba(255, 255, 255, 0.08));
}

.timeline__n {
  font-size: 0.85rem;
  font-weight: 800;
  color: #b9c2ff;
}

.timeline__step h3 {
  margin-top: 0.75rem;
  color: var(--white);
  font-size: 1.15rem;
}

.timeline__step p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Stat badges (chiffres) ---------- */

.badge-stat {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
}

.badge-stat__value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.badge-stat__note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-400);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: radial-gradient(120% 140% at 20% 0%, #1b2560 0%, var(--navy) 60%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band__box {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-navy);
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .cta-band__box {
    padding: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-band__box {
    flex-direction: row;
    align-items: center;
  }
}

.cta-band__box h2 {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 32rem;
}

.cta-band__box p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-band__note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .cta-band__actions {
    flex-direction: row;
  }
}

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.field .req {
  color: var(--accent-500);
}

.field input,
.field textarea,
.field select {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent-500);
  box-shadow: 0 0 0 4px var(--accent-50);
}

.field-block {
  margin-top: 2.5rem;
}

.field-block > p {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.chip-group {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-600);
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: rgba(10, 15, 36, 0.3);
}

.chip.is-active {
  border-color: var(--accent-500);
  background: var(--accent-500);
  color: var(--white);
}

.consent {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-400);
}

.consent input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent-500);
  flex-shrink: 0;
}

.form-submit {
  margin-top: 2.5rem;
}

.success-box {
  border-radius: var(--radius);
  border: 1px solid rgba(58, 83, 255, 0.2);
  background: linear-gradient(160deg, #eef1ff, #f4f0ff);
  padding: 3rem;
  text-align: center;
}

.success-box__icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--accent-500);
  color: var(--white);
}

.success-box h2 {
  margin-top: 1.5rem;
}

.success-box p {
  margin-top: 0.75rem;
  color: var(--ink-400);
}

.hidden {
  display: none !important;
}

/* ---------- Booking widget ---------- */

.booking {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .booking {
    padding: 2rem;
  }
}

.booking__days {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.booking__day {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: var(--paper-alt);
  padding: 0.7rem 0.35rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-600);
  text-transform: capitalize;
}

.booking__day.is-active {
  border-color: var(--accent-500);
  background: var(--accent-500);
  color: var(--white);
}

.booking__slots {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking p.small-label {
  margin-top: 1.5rem;
}

.booking p.small-label:first-of-type {
  margin-top: 0;
}

/* ---------- FAQ accordion ---------- */

.faq-list {
  max-width: 46rem;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0 1.75rem;
}

@media (min-width: 640px) {
  .faq-item {
    padding: 0 2rem;
  }
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__plus {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--ink-400);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__plus {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-400);
}

/* ---------- Chat widget ---------- */

.chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: calc(var(--header-h) - 2.5rem);
  z-index: 55;
}

@media (max-width: 1023px) {
  .chat-widget {
    bottom: calc(76px + 1rem);
  }
}

@media (min-width: 1024px) {
  .chat-widget {
    bottom: 1.5rem;
  }
}

.chat-widget__button {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-500), var(--violet));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow-lift);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-widget__button:hover {
  transform: scale(1.06);
}

.chat-widget__button .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.chat-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.9rem);
  width: min(20rem, calc(100vw - 2.5rem));
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-navy);
  overflow: hidden;
}

.chat-widget__header {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: var(--white);
  padding: 1.1rem 1.25rem;
}

.chat-widget__header strong {
  font-size: 0.9rem;
}

.chat-widget__header span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.chat-widget__body {
  padding: 1.1rem;
  max-height: 16rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chat-bubble {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 0.9rem;
  font-size: 0.82rem;
  line-height: 1.5;
}

.chat-bubble--bot {
  background: var(--paper-alt);
  color: var(--ink-600);
  border-bottom-left-radius: 0.2rem;
  align-self: flex-start;
}

.chat-bubble--user {
  background: var(--accent-500);
  color: var(--white);
  border-bottom-right-radius: 0.2rem;
  align-self: flex-end;
}

.chat-widget__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem;
  border-top: 1px solid var(--border);
}

.chat-widget__form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
}

.chat-widget__form input:focus {
  border-color: var(--accent-500);
}

.chat-widget__form button {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--accent-500);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-widget__form button .icon {
  width: 1rem;
  height: 1rem;
}

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.price-card--highlight {
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-navy);
}

@media (min-width: 900px) {
  .price-card--highlight {
    transform: scale(1.045);
    z-index: 1;
  }
  .price-card--highlight:hover {
    transform: scale(1.045) translateY(-4px);
  }
}

.price-card--highlight .text-muted,
.price-card--highlight p {
  color: rgba(255, 255, 255, 0.62);
}

.price-card--highlight h3 {
  color: var(--white);
}

.price-card__badge {
  position: absolute;
  top: -0.85rem;
  left: 2.25rem;
  background: linear-gradient(135deg, var(--accent-500), var(--violet));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lift);
}

.plan-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.plan-dot--essentiel {
  background: var(--turquoise);
}
.plan-dot--pro {
  background: linear-gradient(135deg, var(--accent-500), var(--violet));
}
.plan-dot--premium {
  background: var(--violet);
}

.price-card__name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
}

.price-card--highlight .price-card__name {
  color: rgba(255, 255, 255, 0.6);
}

.price-card__tagline {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.6;
  min-height: 2.8rem;
}

.price-card__price {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-card__price strong {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-card__price span {
  font-size: 0.9rem;
  color: var(--ink-400);
  font-weight: 600;
}

.price-card--highlight .price-card__price span {
  color: rgba(255, 255, 255, 0.5);
}

.price-card__features {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.price-card__features .icon {
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  color: var(--accent-500);
  flex-shrink: 0;
}

.price-card--highlight .price-card__features .icon {
  color: #a9b6ff;
}

.price-card__overage {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--ink-400);
}

.price-card--highlight .price-card__overage {
  color: rgba(255, 255, 255, 0.45);
}

.price-card .btn {
  margin-top: 1.75rem;
}

/* ---------- Comparison table ---------- */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.compare-table thead th {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
  background: var(--paper-alt);
}

.compare-table td:first-child,
.compare-table th:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  position: sticky;
  left: 0;
  background: var(--white);
  z-index: 1;
}

.compare-table thead th:first-child {
  background: var(--paper-alt);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .yes {
  color: var(--accent-500);
  font-weight: 700;
}

.compare-table .no {
  color: var(--ink-400);
  opacity: 0.5;
}

.compare-table .col-highlight {
  background: var(--accent-50);
}

/* ---------- Rattrapage ---------- */

.rattrapage {
  border-radius: var(--radius-lg);
  background: radial-gradient(140% 160% at 0% 0%, #241a10 0%, var(--navy) 55%);
  border: 1px solid rgba(217, 140, 61, 0.25);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .rattrapage {
    padding: 3.5rem;
  }
}

.rattrapage__glow {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(217, 140, 61, 0.22);
  filter: blur(90px);
  pointer-events: none;
}

.rattrapage__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-50);
  color: var(--amber-2);
  border: 1px solid rgba(217, 140, 61, 0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rattrapage h2 {
  position: relative;
  margin-top: 1.25rem;
  color: var(--white);
  font-size: 2rem;
}

.rattrapage__lead {
  position: relative;
  margin-top: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber-2);
}

.rattrapage__text {
  position: relative;
  margin-top: 0.9rem;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.rattrapage__included {
  position: relative;
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem 1.5rem;
}

@media (min-width: 640px) {
  .rattrapage__included {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rattrapage__included li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
}

.rattrapage__included .icon {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  color: var(--amber-2);
  flex-shrink: 0;
}

.rattrapage__plans {
  position: relative;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .rattrapage__plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rattrapage__plan {
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
}

.rattrapage__plan .small-label {
  color: rgba(255, 255, 255, 0.45);
}

.rattrapage__plan__price {
  margin-top: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.rattrapage__plan__price span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 0.2rem;
}

.rattrapage__note {
  position: relative;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.rattrapage__cta {
  position: relative;
  margin-top: 2rem;
}

.btn--amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: var(--navy);
}

.btn--amber:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* ---------- Subscription flow ---------- */

.funnel-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.funnel-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-400);
}

.funnel-step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--paper-alt);
  font-size: 0.72rem;
}

.funnel-step.is-active {
  color: var(--ink);
}

.funnel-step.is-active .funnel-step__n {
  background: var(--accent-500);
  color: var(--white);
}

.funnel-arrow {
  color: var(--ink-400);
  opacity: 0.4;
}

.plan-summary {
  border-radius: var(--radius);
  background: var(--paper-alt);
  border: 1px solid var(--border);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.plan-summary__name {
  font-size: 1.1rem;
  font-weight: 800;
}

.plan-summary__price {
  font-size: 0.9rem;
  color: var(--ink-400);
}

.payment-placeholder {
  border-radius: var(--radius);
  border: 1.5px dashed var(--border);
  background: var(--paper);
  padding: 2.25rem;
  text-align: center;
}

.payment-placeholder .icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--ink-400);
}

.payment-placeholder h3 {
  margin-top: 1rem;
  font-size: 1rem;
}

.payment-placeholder p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-400);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.payment-placeholder__badges {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-placeholder__badges span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-400);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.8rem;
}

/* ---------- Embedded checkout ---------- */

.checkout-mount {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 30rem;
}

.checkout-error {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  background: #fdeceb;
  border: 1px solid #f3c6c2;
  color: #b3261e;
  font-size: 0.85rem;
}

.checkout-loading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-400);
}

.checkout-loading__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-500);
  animation: checkoutPulse 1s ease-in-out infinite;
}

@keyframes checkoutPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ---------- Utilities ---------- */

.mt-0 {
  margin-top: 0 !important;
}
.max-w-content {
  max-width: 46rem;
}
.text-center {
  text-align: center;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.mb-lg {
  margin-bottom: 3.5rem;
}

.sidebar-sticky {
  align-self: start;
}

@media (min-width: 1024px) {
  .sidebar-sticky {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

/* ---------- Animations / scroll reveal ---------- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeUp {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
