:root {
  color-scheme: dark;
  --bg: #06101d;
  --bg-deep: #020711;
  --card: rgba(10, 20, 35, .84);
  --card-strong: rgba(13, 24, 42, .94);
  --gold: #ffc12f;
  --orange: #ff6427;
  --text: #fff8ed;
  --muted: #c4cad9;
  --line: rgba(255, 255, 255, .16);
  --line-gold: rgba(255, 193, 47, .62);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .46);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font);
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 193, 47, .78);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #120b03;
  font-weight: 900;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(2, 7, 17, .84);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .20);
}

.site-header.is-scrolled {
  background: rgba(2, 7, 17, .96);
}

.nav {
  width: min(1200px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  text-decoration: none;
}

.brand__logo {
  width: auto;
  height: 54px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .42));
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 16px;
  background: rgba(255, 193, 47, .10);
  color: var(--gold);
  font-weight: 950;
  box-shadow: 0 0 30px rgba(255, 193, 47, .26);
}

.brand__name {
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.brand__name span {
  color: var(--gold);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__menu a {
  color: #f5f5fb;
  font-size: .96rem;
  font-weight: 860;
  text-decoration: none;
  text-transform: uppercase;
}

.nav__menu a:hover {
  color: var(--gold);
}

.nav__toggle {
  display: none;
}

.nav__cta,
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 950;
  text-decoration: none;
  line-height: 1.1;
}

.nav__cta {
  padding: 14px 22px;
  border: 2px solid var(--gold);
  background: rgba(255, 193, 47, .10);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(255, 193, 47, .20);
}

.button {
  padding: 18px 28px;
  border: 2px solid transparent;
  font-size: 1.18rem;
  transition: transform .12s ease, box-shadow .16s ease, background .16s ease;
}

.button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(180deg, #ffd255, #ffae25);
  color: #140d04;
  box-shadow: 0 0 0 1px rgba(255, 193, 47, .34), 0 20px 52px rgba(255, 140, 32, .36);
}

.button--secondary {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(2, 7, 17, .58);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.hero {
  min-height: 92svh;
  padding: 96px 0 44px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 84px auto 0 0;
  width: min(48vw, 700px);
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 7, 17, .74), rgba(2, 7, 17, .34) 62%, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, .70) 0%, rgba(2, 7, 17, .34) 32%, rgba(2, 7, 17, .04) 58%, rgba(2, 7, 17, .02) 100%),
    linear-gradient(180deg, rgba(2, 7, 17, .00) 0%, rgba(2, 7, 17, .04) 64%, rgba(2, 7, 17, .74) 100%);
  pointer-events: none;
}

.hero__content {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 0;
}

.hero h1 {
  width: min(720px, 100%);
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 4.7vw, 5rem);
  font-weight: 950;
  line-height: 1.03;
  text-shadow: 0 12px 36px rgba(0, 0, 0, .70);
}

.hero h1::first-line {
  color: var(--text);
}

.hero__text {
  width: min(650px, 100%);
  margin: 20px 0 0;
  color: #f8f1df;
  font-size: clamp(1.08rem, 1.45vw, 1.36rem);
  font-weight: 720;
  line-height: 1.45;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .70);
}

.hero__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__badges {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .74);
}

.hero__badges span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f0c36a;
  box-shadow: 0 0 18px rgba(240, 195, 106, .55);
}

.how,
.feature-grid,
.pricing,
.faq,
.footer {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.how {
  margin-top: -60px;
  position: relative;
  z-index: 4;
  padding: 22px 24px 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  background: rgba(7, 16, 29, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.how h2,
.pricing h2,
.faq h2 {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 170px;
  padding: 10px;
  text-align: center;
}

.steps article + article::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 47px;
  width: 18px;
  height: 18px;
  border-right: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
  transform: rotate(45deg);
  opacity: .80;
}

.step__icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 18px;
  color: var(--gold);
  font-weight: 950;
  box-shadow: 0 0 24px rgba(255, 193, 47, .25);
}

.steps h3 {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.35;
}

.feature-grid {
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.price-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    var(--card);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 280px;
  padding: 28px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
}

.feature-card--gold {
  border-color: rgba(255, 193, 47, .70);
}

.feature-card--orange {
  border-color: rgba(255, 100, 39, .70);
}

.feature-card--gift {
  border-color: rgba(255, 193, 47, .58);
}

.feature-card__icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 24px;
  color: var(--gold);
  font-size: .95rem;
  font-weight: 950;
  box-shadow: 0 0 30px rgba(255, 193, 47, .24);
}

.feature-card--orange .feature-card__icon {
  color: var(--orange);
  box-shadow: 0 0 30px rgba(255, 100, 39, .24);
}

.feature-card h2 {
  margin: 0;
  color: var(--gold);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.feature-card--orange h2 {
  color: var(--orange);
}

.feature-card ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.feature-card li {
  color: var(--text);
  line-height: 1.35;
}

.feature-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 193, 47, .70);
}

.feature-card--orange li::before {
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 100, 39, .70);
}

.feature-card__tag {
  width: max-content;
  max-width: 100%;
  margin: 20px 0 0;
  padding: 8px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-card--orange .feature-card__tag {
  color: var(--orange);
}

.pricing {
  padding-top: 44px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.price-card--featured {
  border-color: rgba(255, 100, 39, .80);
  box-shadow: 0 0 42px rgba(255, 100, 39, .22), var(--shadow);
}

.price-card__badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 100, 39, .18);
  color: var(--orange);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card__icon {
  position: absolute;
  right: 28px;
  top: 30px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 193, 47, .35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 950;
  box-shadow: inset 0 0 26px rgba(255, 193, 47, .10);
}

.price-card h3 {
  margin: 0 90px 14px 0;
  color: var(--text);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  color: var(--gold);
  font-size: 4.2rem;
  font-weight: 950;
  line-height: 1;
}

.price-card--featured strong {
  color: var(--orange);
}

.price-card p,
.price-card small {
  display: block;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.price-card__button {
  width: 100%;
  margin-top: auto;
  font-size: 1rem;
}

.pricing-note {
  width: min(780px, calc(100% - 40px));
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 760;
}

.pricing-note.is-error {
  color: #ffb3a4;
}

.support-block {
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-block--compact {
  width: 100%;
  margin-top: 28px;
}

.support-block > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
}

.support-block h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.support-block p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
}

.support-block a,
.legal-card a,
.legal-footer a {
  color: var(--gold);
}

.payment-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 25% 10%, rgba(255, 193, 47, .18), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(255, 100, 39, .14), transparent 32%),
    var(--bg-deep);
}

.payment-result {
  width: min(760px, 100%);
}

.payment-result__card {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-strong);
  box-shadow: var(--shadow);
}

.payment-result__card h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.payment-result__card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.payment-result__ref {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  word-break: break-word;
}

.start-flow {
  width: min(820px, 100%);
}

.start-form {
  display: grid;
  gap: 16px;
}

.start-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.start-form label span small {
  color: var(--muted);
  font-weight: 700;
}

.start-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.start-form input::placeholder {
  color: rgba(255, 248, 237, .48);
}

.start-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 193, 47, .24);
  border-radius: 18px;
  background: rgba(255, 193, 47, .08);
}

.start-offer span {
  color: var(--muted);
  font-weight: 850;
}

.start-offer strong {
  color: var(--gold);
  text-align: right;
}

.owner-links {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.owner-link-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.owner-link-card strong {
  color: var(--gold);
}

.owner-link-card a {
  color: var(--text);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.access-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.access-status span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: var(--text);
  font-weight: 900;
}

.owner-note {
  margin-top: -8px;
  color: var(--muted);
}

.legal-page {
  place-items: start center;
}

.legal-shell {
  width: min(980px, 100%);
}

.legal-card article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.legal-card ul {
  color: var(--muted);
  line-height: 1.7;
}

.legal-warning {
  padding: 12px 14px;
  border: 1px solid rgba(255, 191, 66, .35);
  border-radius: 16px;
  background: rgba(255, 191, 66, .09);
  color: var(--text) !important;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.legal-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.legal-mail {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.faq {
  padding-top: 44px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq details {
  padding: 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 950;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.footer {
  padding: 46px 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer__links,
.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--gold);
}

.legal-footer {
  margin-top: 22px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.legal-footer p {
  margin: 0;
}

.billing-admin-page {
  place-items: start center;
}

.billing-admin {
  width: min(1180px, calc(100% - 28px));
  padding: 28px 0 48px;
  display: grid;
  gap: 18px;
}

.billing-admin__header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
}

.billing-admin__header h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: .98;
}

.billing-admin__header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.billing-admin__panel {
  margin-top: 0;
}

.billing-admin__filters,
.billing-adjust {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.billing-admin label,
.billing-adjust label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.billing-admin input,
.billing-admin select {
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.billing-admin select option {
  background: #111827;
  color: #fff;
}

.billing-admin__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.billing-kpis article,
.billing-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
}

.billing-kpis span,
.billing-row span,
.billing-row small {
  display: block;
  color: var(--muted);
}

.billing-kpis strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 1.55rem;
}

.billing-table {
  display: grid;
  gap: 12px;
}

.billing-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.billing-wide {
  grid-column: 1 / -1;
}

@media (max-width: 1120px) {
  .nav__menu {
    gap: 18px;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.nav-open .nav__menu {
    display: grid;
  }

  .nav {
    min-height: 72px;
  }

  .nav__toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--text);
    font-weight: 900;
  }

  .nav__menu {
    display: none;
    position: fixed;
    left: 18px;
    right: 18px;
    top: 78px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(2, 7, 17, .98);
    box-shadow: var(--shadow);
  }

  .nav__menu a {
    padding: 10px 0;
  }

  .nav__cta {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 92px;
  }

  .hero::before {
    width: 100%;
  }

  .hero__media img {
    object-position: center center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(2, 7, 17, .08) 0%, rgba(2, 7, 17, .28) 42%, rgba(2, 7, 17, .88) 92%),
      linear-gradient(90deg, rgba(2, 7, 17, .48), rgba(2, 7, 17, .06) 70%);
  }

  .hero__text {
    font-size: 1.06rem;
  }

  .button {
    width: 100%;
  }

  .how {
    margin-top: -32px;
  }

  .steps,
  .feature-grid,
  .pricing-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .steps article + article::before {
    display: none;
  }

  .steps article {
    min-height: 0;
    grid-template-columns: 64px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .step__icon {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero__content,
  .how,
  .feature-grid,
  .pricing,
  .faq,
  .footer {
    width: min(100%, calc(100% - 28px));
  }

  .brand__logo {
    height: 44px;
  }

  .brand__name {
    font-size: 1.45rem;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .hero {
    min-height: 680px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__badges {
    gap: 12px;
  }

  .hero__badges span {
    width: 100%;
  }

  .how {
    padding: 18px;
  }

  .feature-card,
  .price-card {
    padding: 22px;
  }

  .price-card strong {
    font-size: 3.35rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-block,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .billing-admin__header,
  .billing-admin__filters,
  .billing-adjust,
  .billing-admin__grid,
  .billing-kpis {
    grid-template-columns: 1fr;
  }

  .billing-row {
    align-items: stretch;
    flex-direction: column;
  }
}

/* =========================================================================
   SPRINT UX — soiree.php : la porte émotionnelle après achat (2026-05-18)
   Refonte hiérarchique de la page d'arrivée post-Stripe.
   Préfixe .soiree-* pour ne pas entrer en collision avec les autres pages
   qui partagent landing.css (index.php, payment_success.php, contact.php).
   ========================================================================= */

/* --- Hero émotionnel ---------------------------------------------------- */
.soiree-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(240, 236, 228, .55);
}

.soiree-hero__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.15;
  color: #f0ece4;
}

.soiree-hero__lead {
  margin: 0 0 24px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: rgba(240, 236, 228, .82);
  max-width: 56ch;
}

/* --- Statut calme ------------------------------------------------------- */
.soiree-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 28px;
}

.soiree-status__pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(240, 236, 228, .92);
  line-height: 1.2;
}

.soiree-status__pill--unlimited {
  background: linear-gradient(180deg, rgba(232, 165, 90, .22), rgba(232, 165, 90, .08));
  border-color: rgba(232, 165, 90, .42);
  color: #ffe9cf;
}

.soiree-status__pill--empty {
  background: rgba(232, 110, 110, .10);
  border-color: rgba(232, 110, 110, .35);
  color: #ffdcdc;
}

.soiree-status__pill--empty a {
  margin-left: 8px;
  color: #ffe9cf;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.soiree-status__cumul,
.soiree-status__formula {
  margin: 0;
  font-size: 12.5px;
  color: rgba(240, 236, 228, .55);
  letter-spacing: .005em;
}

.soiree-status__formula {
  color: rgba(240, 236, 228, .45);
}

/* --- Actions principales post-achat ------------------------------------ */
.soiree-action-grid {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
}

.soiree-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .045);
  color: #f0ece4;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

.soiree-action:hover,
.soiree-action:focus-visible {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
  outline: none;
}

.soiree-action:active {
  transform: scale(.985);
}

.soiree-action--primary {
  background: linear-gradient(180deg, rgba(232, 165, 90, .34), rgba(232, 165, 90, .16));
  border-color: rgba(232, 165, 90, .52);
  color: #fff5e2;
}

.soiree-action__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  font-size: 23px;
  line-height: 1;
}

.soiree-action__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.soiree-action__copy strong {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0;
}

.soiree-action__copy small {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(240, 236, 228, .66);
}

.soiree-credit-note {
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(56, 132, 220, .08);
  border: 1px solid rgba(56, 132, 220, .18);
  color: rgba(234, 244, 255, .82);
  font-size: 13.5px;
  line-height: 1.45;
}

/* --- ⭐ Bloc Préparer (étoile, le plus voyant) ------------------------- */
.soiree-prep-card {
  position: relative;
  margin: 0 0 32px;
  padding: clamp(22px, 3.5vw, 32px);
  border-radius: 22px;
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(232, 165, 90, .28), transparent 60%),
    linear-gradient(180deg, rgba(232, 165, 90, .22), rgba(232, 165, 90, .08));
  border: 1px solid rgba(232, 165, 90, .42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 24px 60px -24px rgba(232, 165, 90, .35);
  color: #fff5e2;
}

.soiree-prep-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 14px;
}

.soiree-prep-card__title {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -.005em;
  line-height: 1.3;
  color: #fff5e2;
  max-width: 36ch;
}

.soiree-prep-card__body {
  margin: 0 0 10px;
  font-size: 15px;
  color: rgba(255, 245, 226, .85);
}

.soiree-prep-card__list {
  margin: 0 0 16px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 245, 226, .92);
}

.soiree-prep-card__list li::marker {
  color: rgba(255, 245, 226, .55);
}

.soiree-prep-card__promise {
  margin: 0 0 22px;
  font-size: 15.5px;
  font-weight: 600;
  font-style: italic;
  color: #ffe9cf;
}

.soiree-prep-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f5b079, #d68f57);
  color: #1a1610;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.005em;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    0 18px 38px -10px rgba(232, 165, 90, .65);
  transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
}

.soiree-prep-card__cta:hover,
.soiree-prep-card__cta:focus-visible {
  background: linear-gradient(180deg, #ffc89a, #e6a06b);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .32),
    0 24px 48px -12px rgba(232, 165, 90, .75);
  outline: none;
}

.soiree-prep-card__cta:active {
  transform: scale(.98);
}

.soiree-prep-card__hint {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 245, 226, .65);
}

/* --- Jour J — 3 gestes simples ---------------------------------------- */
.soiree-day {
  margin: 0 0 32px;
}

.soiree-day__title {
  margin: 0 0 16px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #f0ece4;
  letter-spacing: -.005em;
}

.soiree-day__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.soiree-day__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.soiree-day__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  font-size: 22px;
  line-height: 1;
}

.soiree-day__copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.soiree-day__copy strong {
  font-size: 15px;
  font-weight: 700;
  color: #f0ece4;
  letter-spacing: -.005em;
}

.soiree-day__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(240, 236, 228, .72);
}

.soiree-day__btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #f0ece4;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

.soiree-day__btn:hover,
.soiree-day__btn:focus-visible {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .32);
  outline: none;
}

.soiree-day__btn:active {
  transform: scale(.97);
}

/* --- Promesse poche --------------------------------------------------- */
.soiree-pocket {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 32px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(56, 132, 220, .08);
  border: 1px solid rgba(56, 132, 220, .22);
}

.soiree-pocket__visual {
  flex: 0 0 auto;
  font-size: 32px;
  line-height: 1;
  filter: saturate(.9);
  opacity: .9;
}

.soiree-pocket__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.soiree-pocket__copy h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #eaf4ff;
  letter-spacing: -.005em;
}

.soiree-pocket__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(234, 244, 255, .80);
}

/* --- Mes liens (compact) ---------------------------------------------- */
.soiree-links {
  margin: 0 0 32px;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
}

.soiree-links__title {
  margin: 0 0 14px;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(240, 236, 228, .55);
}

.soiree-links__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: #f0ece4;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

.soiree-links__btn:last-of-type {
  margin-bottom: 14px;
}

.soiree-links__btn:hover,
.soiree-links__btn:focus-visible {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
  outline: none;
}

.soiree-links__btn:active {
  transform: scale(.98);
}

.soiree-links__btn--primary {
  background: linear-gradient(180deg, rgba(232, 165, 90, .35), rgba(232, 165, 90, .18));
  border-color: rgba(232, 165, 90, .55);
  color: #fff5e2;
}

.soiree-links__btn--primary:hover,
.soiree-links__btn--primary:focus-visible {
  background: linear-gradient(180deg, rgba(232, 165, 90, .50), rgba(232, 165, 90, .25));
  border-color: rgba(232, 165, 90, .75);
}

.soiree-links__micro {
  margin: 0;
  font-size: 12px;
  color: rgba(240, 236, 228, .45);
  text-align: center;
}

/* --- Support calme ---------------------------------------------------- */
.soiree-support {
  margin: 0 0 8px;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}

.soiree-support__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #f0ece4;
  letter-spacing: -.005em;
}

.soiree-support__body {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(240, 236, 228, .80);
}

.soiree-support__body a {
  color: #ffe9cf;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.soiree-support__details summary {
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(240, 236, 228, .65);
  padding: 6px 0;
  list-style: none;
}

.soiree-support__details summary::-webkit-details-marker {
  display: none;
}

.soiree-support__details summary::before {
  content: '› ';
  margin-right: 4px;
  display: inline-block;
  transition: transform .15s ease;
}

.soiree-support__details[open] summary::before {
  transform: rotate(90deg);
}

.soiree-support__details p {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(240, 236, 228, .72);
}

/* --- Responsive ------------------------------------------------------- */
@media (min-width: 720px) {
  .soiree-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .soiree-action {
    align-items: flex-start;
    flex-direction: column;
  }
  .soiree-credit-note {
    grid-column: 1 / -1;
  }
  .soiree-day__steps {
    flex-direction: row;
    gap: 14px;
  }
  .soiree-day__step {
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .soiree-day__icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .soiree-prep-card__cta {
    width: auto;
    align-self: flex-start;
    padding: 16px 28px;
  }
  .soiree-prep-card {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .soiree-pocket {
    flex-direction: column;
    text-align: center;
  }
  .soiree-pocket__visual {
    font-size: 36px;
  }
}

/* =========================================================================
   SPRINT NETTOYAGE LANDING (2026-05-19)
   Tue le feel "bloc marketing", calme cartes, supprime redondances.
   Aucune touche au mécanisme Stripe (data-plan-code, data-billing-message
   intactes), aucun JS modifié.
   ========================================================================= */

/* L1. Hero : moins de texte secondaire. Les 3 badges en bas font marketing.
       On les retire visuellement (DOM conservé pour les a11y). */
.hero__badges {
  display: none !important;
}

.hero__text {
  font-weight: 600 !important;
  max-width: 600px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem) !important;
}

.hero h1 {
  font-weight: 900 !important;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .55) !important;
}

/* L2. "Comment ça marche" : 5 étapes → 3. Les étapes 3 (souvenirs deviennent
       jeu) et 4 (scores) sont implicites. On garde TV / QR / Final. */
.steps article:nth-child(3),
.steps article:nth-child(4) {
  display: none !important;
}

/* La grille s'adapte automatiquement aux 3 enfants restants */
.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(20px, 3vw, 36px) !important;
  max-width: 900px;
  margin: 0 auto !important;
}

/* Et les flèches entre étapes s'ajustent (la 3e devient la dernière) */
.steps article + article::before {
  opacity: .55;
}

/* L3. Feature-grid : 3 grosses cartes qui font doublon avec "Comment ça
       marche" + tout l'atelier. On les supprime visuellement. La page
       devient : Hero → Comment ça marche → Pricing → FAQ → Support. */
.feature-grid {
  display: none !important;
}

/* L4. Pricing : calmer le visuel. Le badge "Meilleur choix" trop agressif,
       les cards trop fortes. */
.pricing {
  margin-top: 20px;
}

.pricing h2 {
  text-transform: none !important;
  color: var(--text) !important;
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  letter-spacing: -.01em;
}

.price-card {
  border: 1px solid rgba(255, 255, 255, .08) !important;
  background: rgba(255, 255, 255, .03) !important;
  box-shadow: none !important;
}

.price-card--featured {
  border-color: rgba(255, 193, 47, .42) !important;
  background: rgba(255, 193, 47, .04) !important;
  box-shadow: 0 0 0 1px rgba(255, 193, 47, .14) !important;
}

.price-card__badge {
  background: rgba(255, 193, 47, .14) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(255, 193, 47, .25) !important;
  font-size: .7rem !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card__icon {
  background: rgba(255, 255, 255, .04) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  color: rgba(255, 255, 255, .55) !important;
  box-shadow: none !important;
}

.pricing-note {
  color: rgba(255, 255, 255, .42) !important;
  font-size: .82rem !important;
  font-weight: 500 !important;
}

/* L5. Support block : "Erreur de commande ou double paiement ?" en gros
       titre est anxiogène. On le calme : il devient un sous-bloc replié. */
.support-block {
  display: grid !important;
  gap: 12px !important;
  grid-template-columns: 1fr !important;
  background: rgba(255, 255, 255, .03) !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 16px !important;
  padding: clamp(20px, 3vw, 32px) !important;
  margin: 40px auto !important;
}

.support-block h2 {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: rgba(255, 255, 255, .92) !important;
  text-transform: none !important;
  margin: 0 0 8px !important;
  text-align: left !important;
}

.support-block p {
  font-size: .95rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, .72) !important;
}

/* Le 2e bloc support (double paiement) : visuellement plus discret, pas
   le même poids que le contact principal. */
.support-block > div:nth-child(2) {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  opacity: .80;
}

.support-block > div:nth-child(2) h2 {
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, .60) !important;
}

/* L6. FAQ : moins criarde. */
.faq h2 {
  text-transform: none !important;
  color: var(--text) !important;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem) !important;
  letter-spacing: -.005em;
  text-align: left;
  margin-bottom: 14px !important;
}

.faq-list details {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 0 !important;
  padding: 14px 0 !important;
}

.faq-list summary {
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
}

/* L7. Ancienne section "Comment ça marche" : remplacée par le nouveau
       `.hero-strip` sous le hero. On la masque entièrement. */
.how {
  display: none !important;
}

/* =========================================================================
   SPRINT HERO CINÉ — Refonte hero premium (2026-05-19)
   Inspiré référence : H1 fort avec accent gold, lead court, 2 CTAs,
   strip 3 features dessous. Fond image floutée + wash sombre + gradient.
   ========================================================================= */

/* L8. Hero ciné : fond image floutée + wash sombre fort. */
.hero--cine {
  min-height: 88svh;
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #06101d;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(70% 82% at 82% 42%, rgba(255, 193, 47, .14), transparent 58%),
    radial-gradient(56% 62% at 70% 30%, rgba(255, 100, 39, .11), transparent 58%),
    radial-gradient(120% 90% at 12% 30%, rgba(2, 7, 17, .24), transparent 55%),
    linear-gradient(180deg, rgba(2, 7, 17, .35) 0%, rgba(2, 7, 17, .55) 70%, rgba(2, 7, 17, .92) 100%),
    linear-gradient(90deg, rgba(2, 7, 17, .70) 0%, rgba(2, 7, 17, .30) 58%, rgba(2, 7, 17, .12) 100%);
}

.hero__grid {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .78fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.hero__content--cine {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 22px;
  max-width: 680px;
}

.hero__eyebrow {
  margin: 0;
  font-size: clamp(.78rem, .95vw, .92rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.hero__headline {
  margin: 0;
  max-width: 720px;
  color: var(--text);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 16px 48px rgba(0, 0, 0, .58);
}

.hero__accent {
  color: var(--gold);
}

.hero__lead {
  margin: 0;
  max-width: 540px;
  color: rgba(248, 241, 223, .92);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .65);
}

.hero--cine .hero__actions {
  margin-top: 6px;
  gap: 14px;
}

.hero--cine .button {
  padding: 17px 30px;
  font-size: 1.05rem;
  min-height: 56px;
  border-radius: 14px;
}

.hero--cine .button--primary {
  background: linear-gradient(180deg, #ffd463, #f5b125);
  color: #160b00;
  box-shadow: 0 0 0 1px rgba(255, 193, 47, .25), 0 18px 42px rgba(255, 140, 32, .28);
}

.hero--cine .button--secondary {
  background: rgba(2, 7, 17, .68);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.hero__visual {
  position: relative;
  min-height: clamp(430px, 48vw, 640px);
  display: grid;
  align-items: center;
  justify-items: center;
  perspective: 1200px;
}

.hero__visual-halo {
  position: absolute;
  width: min(520px, 82%);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 193, 47, .20), transparent 62%),
    radial-gradient(circle at 68% 28%, rgba(255, 100, 39, .18), transparent 56%);
  filter: blur(22px);
  opacity: .9;
}

.hero__visual-card {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .06);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(255, 193, 47, .08) inset;
  transform: rotateY(-8deg) rotateX(2deg);
}

.hero__visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.95) contrast(1.04) brightness(.86);
}

.hero__visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 17, .02), rgba(2, 7, 17, .38)),
    radial-gradient(circle at 72% 18%, rgba(255, 193, 47, .16), transparent 36%);
  pointer-events: none;
}

.hero__screen-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .22);
  background:
    linear-gradient(140deg, rgba(255, 248, 237, .14), rgba(255, 248, 237, .04)),
    rgba(2, 7, 17, .70);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .42);
}

.hero__screen-card--tv {
  right: -10px;
  bottom: 84px;
  width: min(250px, 48%);
  aspect-ratio: 16 / 10;
  border-radius: 18px;
}

.hero__screen-card--phone {
  left: 8px;
  bottom: 34px;
  width: min(98px, 22%);
  aspect-ratio: 9 / 17;
  border-radius: 24px;
}

.hero__screen-glow {
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 193, 47, .45), transparent 22%),
    linear-gradient(160deg, rgba(255, 100, 39, .26), rgba(255, 193, 47, .08) 52%, rgba(255, 255, 255, .08));
  opacity: .84;
}

/* L9. Hero strip (3 mini-features) : ruban clair sous le hero, Stripe-like.
       Sur fond très light, pas opaque. */
.hero-strip {
  width: min(1280px, calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px clamp(20px, 3vw, 36px);
  background: linear-gradient(180deg, rgba(248, 241, 223, .98), rgba(238, 230, 209, .96));
  border-radius: 20px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .32);
}

.hero-strip__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hero-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 193, 47, .12);
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.hero-strip__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-strip__copy strong {
  color: #1a1a2e;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.005em;
}

.hero-strip__copy p {
  margin: 0;
  color: rgba(26, 26, 46, .65);
  font-size: .88rem;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 940px) {
  .hero--cine {
    min-height: auto;
    padding: 110px 0 44px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 36px));
    gap: 34px;
  }
  .hero__visual {
    min-height: 360px;
    order: -1;
  }
  .hero__visual-card {
    width: min(430px, 92%);
    aspect-ratio: 16 / 11;
    border-radius: 22px;
    transform: none;
  }
  .hero__screen-card--tv {
    right: 8px;
    bottom: 42px;
    width: min(190px, 42%);
  }
  .hero__screen-card--phone {
    left: 18px;
    bottom: 22px;
    width: min(76px, 18%);
  }
  .hero-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -24px;
  }
  .hero__headline {
    font-size: clamp(2.1rem, 7vw, 3.6rem);
  }
  .hero__lead {
    font-size: 1rem;
  }
  .hero--cine .button {
    width: 100%;
  }
  .hero--cine .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================================
   LANDING FINALE HEROOK (2026-05-19)
   Image source : assets/img/heroOK.jpg. CSS uniquement, Stripe intact.
   ========================================================================= */

body {
  background:
    radial-gradient(circle at 72% 4%, rgba(255, 116, 70, .14), transparent 34%),
    radial-gradient(circle at 16% 0%, rgba(255, 193, 47, .10), transparent 36%),
    linear-gradient(180deg, #07111f 0%, #030711 58%, #02050b 100%);
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, .09);
  background: rgba(3, 8, 16, .76);
}

.brand__logo {
  height: 58px;
}

.hero--cine {
  min-height: 90svh;
  padding: 118px 0 72px;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 126, 82, .13), transparent 32%),
    radial-gradient(circle at 52% 10%, rgba(255, 193, 47, .08), transparent 34%),
    linear-gradient(135deg, #071522 0%, #04101d 48%, #02060f 100%);
}

.hero--cine::before,
.hero--cine::after {
  display: none;
}

.hero__wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, .88) 0%, rgba(2, 7, 17, .58) 42%, rgba(2, 7, 17, .18) 100%),
    radial-gradient(circle at 84% 40%, rgba(255, 193, 47, .16), transparent 34%),
    radial-gradient(circle at 88% 74%, rgba(255, 102, 58, .13), transparent 38%);
}

.hero__grid {
  width: min(1260px, calc(100% - 48px));
  grid-template-columns: minmax(0, .88fr) minmax(460px, .92fr);
  gap: clamp(42px, 6vw, 96px);
}

.hero__content--cine {
  gap: 24px;
  max-width: 650px;
}

.hero__eyebrow {
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(255, 193, 47, .24);
  border-radius: 999px;
  background: rgba(255, 193, 47, .08);
  color: #ffd978;
  font-size: .78rem;
  letter-spacing: .12em;
}

.hero__headline {
  max-width: 660px;
  font-size: clamp(3rem, 5.6vw, 5.75rem);
  line-height: .98;
  font-weight: 940;
  color: #fff7e8;
  text-shadow: 0 20px 60px rgba(0, 0, 0, .58);
}

.hero__lead {
  max-width: 590px;
  color: rgba(255, 247, 232, .82);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 540;
}

.hero--cine .button {
  min-height: 54px;
  border-radius: 14px;
  font-size: 1rem;
}

.hero--cine .button--primary,
.price-card__button {
  background: linear-gradient(180deg, #ffd67a 0%, #f3a936 100%);
  color: #170d05;
  box-shadow: 0 18px 46px rgba(243, 169, 54, .28);
}

.hero--cine .button--secondary {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero__badges {
  display: flex !important;
  gap: 12px;
  margin-top: 4px;
}

.hero__badges span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 247, 232, .72);
  font-size: .83rem;
  font-weight: 700;
  text-shadow: none;
}

.hero__badges span::before {
  display: none;
}

.hero__visual {
  min-height: clamp(480px, 47vw, 680px);
}

.hero__visual-halo {
  width: min(620px, 94%);
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 193, 47, .20), transparent 58%),
    radial-gradient(circle at 70% 68%, rgba(255, 104, 66, .18), transparent 56%);
  filter: blur(28px);
}

.hero__visual-card {
  width: min(610px, 100%);
  aspect-ratio: 1.06 / 1;
  border-radius: 26px;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, .58),
    0 0 0 1px rgba(255, 255, 255, .06) inset;
  transform: rotateY(-4deg) rotateX(1.5deg);
}

.hero__visual-card img {
  object-position: center center;
  filter: saturate(.98) contrast(1.03) brightness(.90);
}

.hero__visual-shade {
  background:
    linear-gradient(180deg, rgba(2, 7, 17, .02), rgba(2, 7, 17, .30)),
    radial-gradient(circle at 62% 20%, rgba(255, 213, 122, .12), transparent 34%);
}

.hero-strip {
  background: rgba(255, 248, 236, .94);
  border: 1px solid rgba(255, 255, 255, .42);
  box-shadow: 0 26px 68px rgba(0, 0, 0, .34);
}

.pricing {
  width: min(1160px, calc(100% - 48px));
}

.pricing h2 {
  color: #fff7e8 !important;
}

.price-card {
  border-radius: 20px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035)) !important;
  border-color: rgba(255, 255, 255, .10) !important;
}

.price-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 193, 47, .105), rgba(255, 255, 255, .04)) !important;
  border-color: rgba(255, 193, 47, .42) !important;
}

.price-card h3 {
  color: #fff7e8;
}

.price-card strong {
  color: #ffd978;
}

@media (max-width: 940px) {
  .brand__logo {
    height: 48px;
  }

  .hero--cine {
    padding: 104px 0 46px;
  }

  .hero__grid {
    width: min(700px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero__visual {
    order: -1;
    min-height: auto;
  }

  .hero__visual-card {
    width: 100%;
    aspect-ratio: 16 / 10.5;
    border-radius: 20px;
    transform: none;
  }

  .hero__headline {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero__badges {
    display: none !important;
  }
}

/* =========================================================================
   LANDING PREMIUM FULL HERO (2026-05-19)
   HeroOK devient l'expérience principale. HTML/CSS uniquement.
   ========================================================================= */

:root {
  --night: #030711;
  --night-2: #071422;
  --amber: #ffc247;
  --amber-soft: #ffd978;
  --coral: #ff7258;
  --cream: #fff5e5;
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 194, 71, .10), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(255, 114, 88, .10), transparent 34%),
    linear-gradient(180deg, #020611 0%, #061421 44%, #020611 100%);
}

.site-header {
  background: linear-gradient(180deg, rgba(1, 5, 12, .84), rgba(1, 5, 12, .54));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(2, 7, 17, .94);
}

.nav {
  width: min(1240px, calc(100% - 36px));
}

.nav__menu a {
  font-size: .88rem;
  letter-spacing: .02em;
}

.nav__cta {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd46d, #f5aa2e);
  color: #160c04;
  box-shadow: 0 18px 46px rgba(245, 170, 46, .24);
}

.hero--cine {
  min-height: 100svh;
  padding: 112px 0 76px;
  display: grid;
  align-items: center;
  background: var(--night);
}

.hero__media--full {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero__media--full img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.05) brightness(.88);
  transform: scale(1.01);
}

.hero__wash {
  z-index: -2;
  background:
    radial-gradient(72% 82% at 50% 44%, rgba(255, 194, 71, .08), transparent 44%),
    radial-gradient(50% 64% at 85% 42%, rgba(255, 114, 88, .12), transparent 50%),
    linear-gradient(90deg, rgba(2, 6, 15, .96) 0%, rgba(2, 6, 15, .76) 27%, rgba(2, 6, 15, .34) 58%, rgba(2, 6, 15, .50) 100%),
    linear-gradient(180deg, rgba(2, 6, 15, .46) 0%, rgba(2, 6, 15, .04) 40%, rgba(2, 6, 15, .92) 100%);
}

.hero__grid {
  width: min(1240px, calc(100% - 48px));
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  gap: 0;
}

.hero__content--cine {
  max-width: 760px;
  gap: 24px;
  padding-top: 38px;
}

.hero__eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--amber);
  font-size: clamp(.78rem, .9vw, .95rem);
  font-weight: 900;
  letter-spacing: .13em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .72);
}

.hero__headline {
  max-width: 760px;
  font-size: clamp(3.45rem, 7vw, 7.35rem);
  line-height: .88;
  font-weight: 950;
  color: var(--cream);
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 8px 0 rgba(0, 0, 0, .10),
    0 26px 70px rgba(0, 0, 0, .76);
}

.hero__lead {
  max-width: 650px;
  color: rgba(255, 245, 229, .92);
  font-size: clamp(1.12rem, 1.55vw, 1.48rem);
  font-weight: 650;
  line-height: 1.42;
  text-shadow: 0 14px 38px rgba(0, 0, 0, .78);
}

.hero--cine .hero__actions {
  margin-top: 4px;
  gap: 16px;
}

.hero--cine .button {
  min-height: 60px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 1.04rem;
  font-weight: 950;
}

.hero--cine .button--primary {
  background: linear-gradient(180deg, #ffd66f 0%, #ffb02e 100%);
  color: #130a03;
  box-shadow:
    0 20px 52px rgba(255, 176, 46, .34),
    inset 0 1px 0 rgba(255, 255, 255, .34);
}

.hero--cine .button--secondary {
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(3, 7, 17, .34);
  color: #fff8ed;
  backdrop-filter: blur(14px);
}

.hero__badges {
  display: flex !important;
  gap: 14px;
  margin-top: 8px;
}

.hero__badges span {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  background: rgba(255, 248, 237, .055);
  color: rgba(255, 248, 237, .76);
  cursor: default;
  font-size: .82rem;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: none;
  backdrop-filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.hero-strip {
  width: min(1160px, calc(100% - 40px));
  margin: -46px auto 0;
  padding: 32px clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(12, 27, 43, .88), rgba(5, 13, 24, .92)),
    radial-gradient(circle at 50% 0%, rgba(255, 194, 71, .10), transparent 44%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
}

.hero-strip__item {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
}

.hero-strip__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 194, 71, .42);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd46d, #f5aa2e);
  color: #150b03;
  font-size: 1.1rem;
  font-weight: 950;
}

.hero-strip__copy strong {
  color: #fff5e5;
  font-size: 1.08rem;
}

.hero-strip__copy p {
  color: rgba(255, 245, 229, .72);
  font-size: .95rem;
}

.pricing {
  padding-top: 58px;
}

.pricing h2 {
  margin-bottom: 28px !important;
  color: #fff5e5 !important;
  font-size: clamp(1.8rem, 3vw, 2.55rem) !important;
  font-weight: 950;
  text-align: center;
}

.pricing-grid {
  gap: 20px;
}

.price-card {
  padding: 34px 32px !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .09), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .034)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25) !important;
}

.price-card--featured {
  border-color: rgba(255, 194, 71, .64) !important;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 194, 71, .18), transparent 24%),
    linear-gradient(180deg, rgba(255, 194, 71, .10), rgba(255, 255, 255, .035)) !important;
}

.price-card__button {
  border-radius: 12px;
}

.price-card strong {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
}

.price-card small {
  color: rgba(255, 245, 229, .72);
}

.support-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03)) !important;
}

@media (max-width: 940px) {
  .hero--cine {
    min-height: 100svh;
    padding: 104px 0 54px;
    align-items: end;
  }

  .hero__media--full img {
    object-position: 58% center;
    filter: saturate(1.03) contrast(1.04) brightness(.82);
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(2, 6, 15, .30) 0%, rgba(2, 6, 15, .26) 32%, rgba(2, 6, 15, .92) 78%, rgba(2, 6, 15, .98) 100%),
      linear-gradient(90deg, rgba(2, 6, 15, .44), rgba(2, 6, 15, .14));
  }

  .hero__grid {
    width: min(640px, calc(100% - 32px));
  }

  .hero__content--cine {
    padding-top: 32vh;
    gap: 18px;
  }

  .hero__headline {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
    line-height: .92;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__badges {
    display: none !important;
  }

  .hero-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   HERO RESPONSIVE IMAGE (2026-05-19)
   Préserve la photo complète, surtout mobile/tablette.
   ========================================================================= */

.hero__media--full {
  background:
    linear-gradient(180deg, rgba(2, 6, 15, .10), rgba(2, 6, 15, .86)),
    #030711;
}

.hero__media--full::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  background: url("../img/heroOK.jpg") center center / cover no-repeat;
  filter: blur(24px) saturate(1.05) brightness(.62);
  transform: scale(1.05);
}

.hero__media--full img {
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 1180px) {
  .hero__media--full img {
    object-position: center 46%;
  }
}

@media (min-width: 701px) and (max-width: 1179px) {
  .hero--cine {
    min-height: 92svh;
    padding-bottom: 52px;
  }

  .hero__media--full img {
    object-fit: contain;
    object-position: center top;
    padding-top: 78px;
    padding-inline: 18px;
    filter: saturate(1.04) contrast(1.04) brightness(.88);
    transform: none;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(2, 6, 15, .08) 0%, rgba(2, 6, 15, .16) 45%, rgba(2, 6, 15, .94) 82%, rgba(2, 6, 15, .98) 100%),
      linear-gradient(90deg, rgba(2, 6, 15, .40), rgba(2, 6, 15, .14));
  }

  .hero__grid {
    align-self: end;
  }

  .hero__content--cine {
    padding-top: 42svh;
  }
}

@media (max-width: 700px) {
  .hero--cine {
    min-height: 100svh;
    padding-top: 86px;
    padding-bottom: 34px;
  }

  .hero__media--full {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .hero__media--full img {
    width: 100%;
    height: auto;
    max-height: 48svh;
    margin-top: 82px;
    object-fit: contain;
    object-position: center top;
    filter: saturate(1.03) contrast(1.03) brightness(.90);
    transform: none;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(2, 6, 15, .02) 0%, rgba(2, 6, 15, .08) 32%, rgba(2, 6, 15, .72) 54%, rgba(2, 6, 15, .98) 100%),
      linear-gradient(90deg, rgba(2, 6, 15, .18), rgba(2, 6, 15, .08));
  }

  .hero__grid {
    align-self: end;
    width: min(620px, calc(100% - 28px));
  }

  .hero__content--cine {
    padding-top: 50svh;
  }

  .hero__headline {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero--cine .button {
    min-height: 54px;
  }
}

/* =========================================================================
   LANDING PERSONNALISÉE (2026-05-19)
   Accent commercial sur les quiz privés + tarifs plus lisibles.
   ========================================================================= */

@media (min-width: 1180px) {
  .hero__headline {
    max-width: 720px;
    font-size: clamp(3.2rem, 6.1vw, 6.45rem);
  }

  .hero__content--cine {
    max-width: 720px;
  }

  .hero__wash {
    background:
      radial-gradient(72% 82% at 50% 44%, rgba(255, 194, 71, .07), transparent 44%),
      radial-gradient(50% 64% at 85% 42%, rgba(255, 114, 88, .10), transparent 50%),
      linear-gradient(90deg, rgba(2, 6, 15, .90) 0%, rgba(2, 6, 15, .64) 29%, rgba(2, 6, 15, .24) 60%, rgba(2, 6, 15, .38) 100%),
      linear-gradient(180deg, rgba(2, 6, 15, .36) 0%, rgba(2, 6, 15, .02) 42%, rgba(2, 6, 15, .88) 100%);
  }
}

.feature-grid--personal {
  display: grid !important;
  grid-template-columns: 1.35fr .9fr .9fr;
  gap: 20px;
  padding-top: 54px;
}

.feature-grid--personal .feature-card {
  min-height: 100%;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 194, 71, .12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .032));
  border-color: rgba(255, 255, 255, .10);
  box-shadow: 0 22px 68px rgba(0, 0, 0, .24);
}

.feature-grid--personal .feature-card--wide {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 114, 88, .14), transparent 32%),
    linear-gradient(180deg, rgba(255, 194, 71, .09), rgba(255, 255, 255, .035));
}

.feature-grid--personal .feature-card h2 {
  margin-bottom: 12px;
  color: #fff5e5;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.feature-grid--personal .feature-card p {
  color: rgba(255, 245, 229, .78);
  line-height: 1.5;
}

.feature-grid--personal .feature-card li {
  color: rgba(255, 245, 229, .82);
}

.feature-grid--personal .feature-card__tag {
  color: #ffd978 !important;
}

.price-card p {
  max-width: 260px;
  color: rgba(255, 245, 229, .86) !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.price-card small {
  max-width: 270px;
  color: rgba(255, 245, 229, .58) !important;
  font-size: .86rem;
  font-weight: 550;
  line-height: 1.42;
}

@media (max-width: 940px) {
  .feature-grid--personal {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 32px));
    padding-top: 38px;
  }
}

/* =========================================================================
   AFFINAGE LANDING (2026-05-19)
   Cards privées équilibrées + hero plus lumineux + placeholder vidéo.
   ========================================================================= */

@media (min-width: 1180px) {
  .hero__wash {
    background:
      radial-gradient(70% 78% at 52% 42%, rgba(255, 194, 71, .05), transparent 45%),
      radial-gradient(48% 58% at 86% 42%, rgba(255, 114, 88, .08), transparent 52%),
      linear-gradient(90deg, rgba(2, 6, 15, .78) 0%, rgba(2, 6, 15, .48) 28%, rgba(2, 6, 15, .14) 62%, rgba(2, 6, 15, .24) 100%),
      linear-gradient(180deg, rgba(2, 6, 15, .22) 0%, rgba(2, 6, 15, .00) 48%, rgba(2, 6, 15, .78) 100%);
  }
}

.feature-grid--personal {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
}

.feature-grid--personal .feature-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  min-height: 420px;
  padding: clamp(24px, 2.4vw, 34px);
}

.feature-grid--personal .feature-card > div {
  min-width: 0;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.feature-grid--personal .feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.2rem;
}

.feature-grid--personal .feature-card h2 {
  max-width: 12em;
  margin: 0 0 14px;
  font-size: clamp(1.28rem, 1.55vw, 1.68rem);
  line-height: 1.12;
  text-wrap: balance;
}

.feature-grid--personal .feature-card p {
  margin-top: 0;
  font-size: .98rem;
}

.feature-grid--personal .feature-card ul {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.feature-grid--personal .feature-card li {
  font-size: .96rem;
  line-height: 1.38;
}

.feature-grid--personal .feature-card__tag {
  width: fit-content;
  max-width: 100%;
  margin-top: auto !important;
  padding: 10px 14px;
  border: 1px solid rgba(255, 194, 71, .36);
  border-radius: 999px;
  font-size: .78rem !important;
  font-weight: 850;
  line-height: 1.25 !important;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .feature-grid--personal {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 32px));
  }

  .feature-grid--personal .feature-card {
    min-height: auto;
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .feature-grid--personal .feature-card__icon {
    width: 54px;
    height: 54px;
  }
}

/* =========================================================================
   Emotional landing modules + video modal (2026-05-21)
   ========================================================================= */

.section-kicker {
  margin: 0 0 10px;
  color: rgba(245, 176, 121, .86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.landing-video-open {
  border-color: rgba(245, 176, 121, .34) !important;
  background:
    linear-gradient(135deg, rgba(245, 176, 121, .18), rgba(255, 255, 255, .065)) !important;
  color: #fff2e2 !important;
  box-shadow: 0 18px 42px -24px rgba(245, 176, 121, .55), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
}

.landing-video-open:hover,
.landing-video-open:focus-visible {
  border-color: rgba(245, 176, 121, .50) !important;
  background:
    linear-gradient(135deg, rgba(245, 176, 121, .24), rgba(255, 255, 255, .085)) !important;
}

.memory-promise,
.story-showcase {
  width: min(1180px, calc(100vw - 32px));
  margin: 22px auto 0;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(245, 176, 121, .10), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(112, 78, 118, .13), transparent 34%),
    rgba(9, 12, 18, .76);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .055);
}

.memory-promise {
  padding: clamp(24px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.memory-promise h2,
.story-showcase h2 {
  margin: 0;
  max-width: 760px;
  color: #fff8ef;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.memory-promise p,
.story-showcase p,
.story-showcase li {
  color: rgba(255, 246, 235, .74);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 560;
  line-height: 1.62;
}

.memory-promise__copy p {
  margin: 18px 0 0;
}

.memory-promise__grid {
  display: grid;
  gap: 12px;
}

.memory-promise__grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}

.memory-promise__grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(245, 176, 121, .76);
  font-size: 12px;
  font-weight: 800;
}

.memory-promise__grid strong {
  display: block;
  color: #fff8ef;
  font-size: 18px;
  line-height: 1.25;
}

.memory-promise__grid p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.story-showcase {
  padding: clamp(16px, 2.2vw, 22px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.story-showcase__media {
  min-height: clamp(300px, 42vw, 520px);
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .22);
}

.story-showcase__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.story-showcase__copy {
  padding: clamp(14px, 3vw, 34px);
}

.story-showcase__copy p {
  margin: 18px 0 0;
}

.story-showcase__copy ul {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.story-showcase__copy li {
  position: relative;
  padding-left: 22px;
}

.story-showcase__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 176, 121, .72);
  box-shadow: 0 0 0 4px rgba(245, 176, 121, .10);
}

.story-showcase--wedding {
  background:
    radial-gradient(circle at 15% 10%, rgba(112, 78, 118, .20), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(245, 176, 121, .08), transparent 34%),
    rgba(9, 12, 18, .78);
}

.landing-video-modal[hidden] {
  display: none !important;
}

.landing-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 40px);
}

.landing-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 13, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.landing-video-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(245, 176, 121, .15), transparent 34%),
    linear-gradient(180deg, rgba(20, 24, 32, .98), rgba(9, 11, 16, .98));
  box-shadow: 0 38px 120px rgba(0, 0, 0, .58), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.landing-video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #fff8ef;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.landing-video-modal__copy {
  max-width: 720px;
  padding-right: 44px;
}

.landing-video-modal__copy h2 {
  margin: 0;
  color: #fff8ef;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.landing-video-modal__copy p:last-child {
  margin: 12px 0 22px;
  color: rgba(255, 246, 235, .72);
  font-size: 16px;
  line-height: 1.55;
}

.landing-video-player {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #05070b;
}

.landing-video-error {
  margin: 12px 0 0;
  color: rgba(255, 246, 235, .68);
  font-size: 14px;
  line-height: 1.45;
}

.landing-video-error[hidden] {
  display: none !important;
}

body.landing-video-modal-open {
  overflow: hidden;
}

/* =========================================================================
   Editorial landing refinement (2026-05-21)
   ========================================================================= */

.text-accent-soft {
  color: #f2c98f;
  font-style: normal;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(242, 201, 143, .32);
  text-underline-offset: .18em;
  text-decoration-thickness: 1px;
}

.memory-promise,
.story-showcase {
  margin-top: 30px;
}

.memory-promise {
  padding: clamp(26px, 3.6vw, 42px);
}

.memory-promise h2,
.story-showcase h2 {
  max-width: 690px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.memory-promise p,
.story-showcase p,
.story-showcase li {
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1.66;
}

.story-showcase__copy ul {
  gap: 8px;
}

.story-showcase__copy li::before {
  width: 6px;
  height: 6px;
  background: rgba(242, 201, 143, .55);
  box-shadow: 0 0 0 4px rgba(242, 201, 143, .07);
}

.feature-grid--personal {
  gap: 24px;
  padding-top: 46px;
}

.feature-grid--personal .feature-card {
  min-height: 360px;
  padding: clamp(26px, 2.6vw, 38px);
  border-color: rgba(255, 255, 255, .085);
  background:
    radial-gradient(circle at 82% 10%, rgba(242, 201, 143, .07), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .058), rgba(255, 255, 255, .025));
  box-shadow: 0 20px 62px rgba(0, 0, 0, .20);
}

.feature-grid--personal .feature-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  font-size: 1rem;
  opacity: .92;
}

.feature-grid--personal .feature-card h2 {
  max-width: 13.5em;
  margin-bottom: 16px;
  color: rgba(255, 248, 239, .96);
  font-size: clamp(1.2rem, 1.35vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -.018em;
  text-transform: none;
}

.feature-grid--personal .feature-card p {
  max-width: 25em;
  color: rgba(255, 245, 229, .70);
  font-size: .95rem;
  font-weight: 480;
  line-height: 1.62;
}

.feature-grid--personal .feature-card ul {
  margin-top: 22px;
  gap: 9px;
}

.feature-grid--personal .feature-card li {
  color: rgba(255, 245, 229, .76);
  font-size: .93rem;
  font-weight: 500;
  line-height: 1.48;
}

.feature-grid--personal .feature-card li::before {
  width: 6px;
  height: 6px;
  margin-top: .55em;
  box-shadow: 0 0 18px rgba(255, 194, 71, .22);
}

.feature-grid--personal .feature-card__tag {
  display: none !important;
}

.price-card {
  gap: 14px;
}

.price-card h3 {
  max-width: 12em;
  font-size: clamp(1.08rem, 1.3vw, 1.38rem);
  line-height: 1.18;
  letter-spacing: -.01em;
}

.price-card strong {
  margin-top: 6px;
  font-size: clamp(3.2rem, 5vw, 4.9rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.price-card__price {
  display: grid;
  gap: 7px;
  align-items: end;
}

.price-card__price span {
  color: #fff8ef;
}

.price-card__price em {
  color: rgba(255, 248, 239, .94);
  font-size: clamp(.84rem, 1vw, 1.02rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.1;
  text-transform: uppercase;
}

.price-card p {
  max-width: 290px;
  margin-top: 4px;
  color: rgba(255, 245, 229, .78) !important;
  font-size: .98rem;
  font-weight: 620;
  line-height: 1.45;
}

.price-card small {
  max-width: 300px;
  color: rgba(255, 245, 229, .56) !important;
  font-size: .86rem;
  font-weight: 460;
  line-height: 1.52;
}

.price-card__button {
  margin-top: auto;
}

/* =========================================================================
   Premium polish (2026-05-22)
   ========================================================================= */

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.2vh, 34px);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 248, 237, .78);
  text-decoration: none;
  opacity: .78;
  transform: translateX(-50%);
  transition: opacity .42s ease, transform .42s ease;
}

.hero__scroll-cue span {
  width: 15px;
  height: 15px;
  display: block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: scroll-cue-drift 2.7s ease-in-out infinite;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .62));
}

body.has-scrolled .hero__scroll-cue {
  opacity: 0;
  transform: translate(-50%, 10px);
  pointer-events: none;
}

@keyframes scroll-cue-drift {
  0%, 100% {
    opacity: .42;
    transform: translateY(-3px) rotate(45deg);
  }

  45% {
    opacity: 1;
    transform: translateY(7px) rotate(45deg);
  }
}

.hero__badges span::before {
  width: 5px;
  height: 5px;
  background: rgba(242, 201, 143, .82);
  box-shadow: none;
}

.hero__badges span em {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.price-card__price {
  margin-top: 8px;
}

.price-card__price span {
  letter-spacing: -.07em;
}

@media (min-width: 1180px) {
  .hero__media--full img {
    object-fit: contain;
    object-position: center top;
    filter: saturate(1.08) contrast(1.02) brightness(1.02);
    transform: none;
  }

  .hero__media--full::before {
    inset: -42px;
    background-size: cover;
    filter: blur(28px) saturate(1.05) brightness(.68);
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgba(2, 6, 15, .68) 0%, rgba(2, 6, 15, .42) 30%, rgba(2, 6, 15, .10) 62%, rgba(2, 6, 15, .16) 100%),
      linear-gradient(180deg, rgba(2, 6, 15, .08) 0%, rgba(2, 6, 15, 0) 46%, rgba(2, 6, 15, .46) 100%);
  }
}

@media (max-width: 860px) {
  .memory-promise,
  .story-showcase {
    grid-template-columns: 1fr;
  }

  .story-showcase--wedding .story-showcase__media {
    order: -1;
  }
}

@media (max-width: 620px) {
  .memory-promise,
  .story-showcase {
    width: min(100%, calc(100vw - 20px));
    border-radius: 22px;
  }

  .memory-promise {
    padding: 20px;
  }

  .story-showcase {
    padding: 10px;
  }

  .story-showcase__media {
    min-height: 260px;
    border-radius: 18px;
  }

  .story-showcase__copy {
    padding: 14px 8px 10px;
  }

  .landing-video-modal__dialog {
    border-radius: 22px;
  }
}

/* =========================================================================
   Champions + final premium balance (2026-05-22)
   ========================================================================= */

.hero--cine {
  min-height: clamp(680px, 86svh, 860px);
  padding-top: clamp(96px, 11vh, 118px);
  padding-bottom: clamp(46px, 7vh, 70px);
  align-items: center;
}

.hero__content--cine {
  padding-top: 0;
  gap: 20px;
}

.hero__lead {
  max-width: 610px;
}

.hero__badges {
  gap: 10px;
  margin-top: 2px;
}

.hero__badges span {
  min-height: 0;
  padding: 7px 10px;
  border: 0;
  border-radius: 9px;
  background: rgba(255, 248, 237, .045);
  color: rgba(255, 248, 237, .68);
  cursor: default;
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .08em;
  line-height: 1.25;
  text-shadow: none;
  box-shadow: none;
  pointer-events: none;
}

.hero__badges span::before {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: rgba(242, 201, 143, .68);
}

.hero__scroll-cue {
  bottom: clamp(12px, 2.4vh, 24px);
  width: 34px;
  height: 34px;
}

.hero__scroll-cue span {
  width: 13px;
  height: 13px;
}

.hero-strip {
  margin-top: -28px;
}

.pricing {
  padding-top: 48px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  min-height: 440px;
  padding: 32px 30px !important;
}

.price-card h3 {
  min-height: 2.4em;
  margin-bottom: 6px;
}

.price-card__price {
  gap: 15px;
  margin: 8px 0 8px;
  align-items: start;
}

.price-card__price span {
  display: block;
  color: #fff8ef;
  font-size: clamp(3.6rem, 5.1vw, 5rem);
  line-height: .82;
  letter-spacing: -.075em;
}

.price-card__price em {
  display: block;
  padding-top: 2px;
  color: #fff8ef;
  font-size: clamp(.82rem, .95vw, .98rem);
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.2;
}

.price-card p {
  max-width: 255px;
  margin-top: 8px;
  font-size: .95rem;
  font-weight: 620;
  line-height: 1.42;
}

.price-card small {
  max-width: 245px;
  font-size: .82rem;
  line-height: 1.45;
}

.champions {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 26px auto 0;
  padding: clamp(22px, 3.5vw, 42px);
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 50%, rgba(242, 201, 143, .18), transparent 36%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, .062), rgba(255, 255, 255, .026)),
    rgba(8, 11, 18, .92);
  box-shadow: 0 32px 96px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.champions::before {
  content: "";
  position: absolute;
  inset: auto 12% -28% 6%;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(242, 201, 143, .17), transparent 64%);
  pointer-events: none;
}

.champions__media {
  position: relative;
  min-height: clamp(230px, 28vw, 360px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px;
  background: rgba(0, 0, 0, .22);
}

.champions__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, rgba(242, 201, 143, .16), transparent 35%),
    linear-gradient(180deg, rgba(5, 7, 11, 0), rgba(5, 7, 11, .18));
  pointer-events: none;
}

.champions__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.02) brightness(.96);
}

.champions__copy {
  position: relative;
  max-width: 640px;
}

.champions__copy h2 {
  margin: 0;
  color: #fff8ef;
  font-size: clamp(2.15rem, 4.5vw, 4.9rem);
  line-height: .95;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.champions__copy p {
  margin: 18px 0 0;
  color: rgba(255, 246, 235, .78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 560;
  line-height: 1.58;
}

.champions__copy p:first-of-type {
  max-width: 450px;
  color: rgba(255, 248, 239, .92);
  font-size: clamp(1.1rem, 1.55vw, 1.42rem);
  font-weight: 740;
  line-height: 1.34;
}

@media (min-width: 1180px) {
  .hero--cine {
    min-height: 82svh;
  }
}

@media (min-width: 701px) and (max-width: 1179px) {
  .hero--cine {
    min-height: clamp(640px, 82svh, 780px);
    padding-bottom: 46px;
  }

  .hero__content--cine {
    padding-top: 34svh;
  }
}

@media (max-width: 940px) {
  .hero__badges {
    display: flex !important;
    flex-wrap: wrap;
  }

  .price-card {
    min-height: 0;
  }

  .champions {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 32px));
    gap: 10px;
  }

  .champions__media {
    min-height: 220px;
    margin-bottom: -6px;
  }

  .champions__media img {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero--cine {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 54px;
  }

  .hero__media--full img {
    max-height: 42svh;
  }

  .hero__content--cine {
    padding-top: 43svh;
    gap: 14px;
  }

  .hero__badges {
    gap: 7px;
  }

  .hero__badges span {
    padding: 6px 8px;
    font-size: .66rem;
    letter-spacing: .055em;
  }

  .hero-strip {
    margin-top: 0;
  }

  .price-card__price {
    gap: 12px;
  }

  .champions {
    width: min(100%, calc(100vw - 20px));
    padding: 18px;
    border-radius: 22px;
  }

  .champions__media {
    min-height: 180px;
  }

  .champions__copy h2 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }
}

/* =========================================================================
   Pricing balance + anchor polish (2026-05-22)
   ========================================================================= */

#fonctionnement,
#tarifs,
#faq {
  scroll-margin-top: 112px;
}

.pricing {
  padding-top: 38px;
}

.pricing h2 {
  margin-bottom: 22px !important;
  font-size: clamp(1.65rem, 2.6vw, 2.28rem) !important;
  letter-spacing: -.025em;
}

.pricing-grid {
  gap: 16px;
}

.price-card {
  min-height: 382px;
  padding: 26px 26px 24px !important;
  gap: 11px;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, .06), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .026)) !important;
  box-shadow: 0 20px 58px rgba(0, 0, 0, .22) !important;
}

.price-card--featured {
  border-color: rgba(242, 201, 143, .42) !important;
  background:
    radial-gradient(circle at 82% 14%, rgba(242, 201, 143, .13), transparent 24%),
    linear-gradient(180deg, rgba(242, 201, 143, .075), rgba(255, 255, 255, .028)) !important;
  transform: none;
}

.price-card__badge {
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-color: rgba(242, 201, 143, .30);
  background: rgba(242, 201, 143, .10);
  color: rgba(255, 248, 239, .84);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .105em;
}

.price-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  border-color: rgba(242, 201, 143, .34);
  background: rgba(242, 201, 143, .09);
  color: rgba(255, 235, 195, .92);
  font-size: .98rem;
  box-shadow: none;
}

.price-card h3 {
  min-height: 2.25em;
  max-width: 13em;
  margin: 0 0 2px;
  color: rgba(255, 248, 239, .90);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 820;
  line-height: 1.18;
}

.price-card__price {
  gap: 11px;
  margin: 5px 0 4px;
}

.price-card__price span {
  font-size: clamp(2.78rem, 4vw, 3.65rem);
  line-height: .88;
  letter-spacing: -.06em;
}

.price-card__price em {
  color: rgba(255, 248, 239, .92);
  font-size: clamp(.72rem, .78vw, .82rem);
  letter-spacing: .16em;
}

.price-card p {
  max-width: 245px;
  margin-top: 5px;
  color: rgba(255, 245, 229, .76) !important;
  font-size: .9rem;
  font-weight: 570;
  line-height: 1.4;
}

.price-card small {
  max-width: 235px;
  color: rgba(255, 245, 229, .52) !important;
  font-size: .78rem;
  font-weight: 480;
  line-height: 1.42;
}

.price-card__button {
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: .91rem;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(255, 176, 46, .18), inset 0 1px 0 rgba(255, 255, 255, .25);
}

@media (max-width: 940px) {
  #fonctionnement,
  #tarifs,
  #faq {
    scroll-margin-top: 92px;
  }

  .pricing-grid {
    gap: 14px;
  }

  .price-card {
    min-height: 0;
    padding: 24px !important;
  }
}

@media (max-width: 620px) {
  #fonctionnement,
  #tarifs,
  #faq {
    scroll-margin-top: 82px;
  }

  .pricing {
    padding-top: 32px;
  }

  .price-card__price span {
    font-size: clamp(2.65rem, 15vw, 3.35rem);
  }
}

/* =========================================================================
   FAQ compact desktop row (2026-05-22)
   ========================================================================= */

.faq {
  padding-top: 34px;
}

.faq-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.faq-list details {
  padding: 12px 0 !important;
}

.faq-list summary {
  min-height: 2.6em;
  font-size: clamp(.84rem, .88vw, .96rem);
  line-height: 1.28;
}

.faq p {
  margin-top: 10px;
  font-size: .88rem;
  line-height: 1.42;
}

@media (max-width: 980px) {
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 0;
  }
}
