:root {
  --ink: #10141c;
  /* Body/secondary text: WCAG AA on paper & soft (≥4.5:1) */
  --muted: #4f5b6c;
  --line: rgba(16, 20, 28, 0.12);
  --paper: #f7f3eb;
  --soft: #ede7dc;
  --white: #ffffff;
  /* Kickers on light sections */
  --sage: #4a5f4c;
  /* Text/links on light backgrounds (darker than decorative cyan) */
  --cyan: #2f6a7d;
  --cyan-soft: #5a9aad;
  --promo-price: #6b4f12;
  --promo-price-glow: rgba(122, 90, 20, 0.14);
  --promo-price-original: rgba(16, 20, 28, 0.62);
  --promo-price-original-featured: rgba(232, 210, 160, 0.88);
  --promo-accent: #dcc4fa;
  --promo-lavender: #dcc4fa;
  --promo-gold: #e2c48f;
  --amber: #b8893f;
  /* Unified dark family (violet → graphite) for continuous sections */
  --void: #0f0a1a;
  --void-mid: #161222;
  --void-deep: #120e1c;
  --graphite: #18202a;
  --graphite-soft: #1e2733;
  --text-on-dark: rgba(255, 255, 255, 0.94);
  --text-on-dark-muted: rgba(255, 255, 255, 0.86);
  --text-on-dark-subtle: rgba(255, 255, 255, 0.74);
  /* Dark chapter sections (IA zone) — same family as pricing */
  --chapter-ia-bg: #18202a;
  --chapter-ia-compare: #1e2733;
  /* Shared ambient accents */
  --glow-violet: rgba(140, 100, 220, 0.22);
  --glow-cyan: rgba(62, 127, 147, 0.16);
  --glow-gold: rgba(195, 154, 88, 0.14);
  /* Preferred dark band (tarifs « formules claires ») — reuse on IA zone */
  --surface-dark-band:
    radial-gradient(ellipse 80% 45% at 50% 0%, var(--glow-gold), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(62, 127, 147, 0.08), transparent 50%),
    linear-gradient(180deg, var(--graphite-soft) 0%, var(--graphite) 55%, var(--void-deep) 100%);
  --border-on-dark: rgba(255, 255, 255, 0.12);
  --surface-on-dark: rgba(255, 255, 255, 0.05);
  --surface-on-dark-hover: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 70px rgba(24, 32, 42, 0.13);
  --shadow-sm: 0 8px 28px rgba(24, 32, 42, 0.08);
  --shadow-lg: 0 28px 80px rgba(24, 32, 42, 0.16);
  --page-gutter: 20px;
  --page-max: 1180px;
  --page-width: min(calc(100% - var(--page-gutter) * 2), var(--page-max));
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --focus-ring: 0 0 0 3px rgba(47, 106, 125, 0.28);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 22px;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/inter-800.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(195, 154, 88, 0.09), transparent 50%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-gutter: stable;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

::selection {
  background: rgba(195, 154, 88, 0.28);
  color: var(--ink);
}

h1,
h2,
.section-heading h2,
.hero h1 {
  text-wrap: balance;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
}

p {
  text-wrap: pretty;
}

/* Thin branded scrollbar (desktop) */
@media (pointer: fine) {
  html {
    scrollbar-width: thin;
    scrollbar-color: rgba(24, 32, 42, 0.28) transparent;
  }

  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: rgba(24, 32, 42, 0.22);
    border: 2px solid transparent;
    border-radius: 999px;
    background-clip: padding-box;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: rgba(24, 32, 42, 0.36);
    border: 2px solid transparent;
    background-clip: padding-box;
  }
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

body.ux-ready img {
  transition: opacity 0.45s var(--ease-out);
}

body.ux-ready img[loading="lazy"]:not(.is-loaded) {
  opacity: 0.01;
}

body.ux-ready img.is-loaded,
body.ux-ready img:not([loading="lazy"]) {
  opacity: 1;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--graphite);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(16, 20, 28, 0.18);
  backdrop-filter: blur(22px);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 243, 235, 0.92);
}

.nav-shell,
.section-shell,
.hero-shell {
  width: var(--page-width);
  max-width: 100%;
  margin-inline: auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
}

.nav-shell > .brand {
  flex-shrink: 0;
}

.nav-shell > .nav-links {
  min-width: 0;
}

.nav-shell > .nav-actions {
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(24, 32, 42, 0.12);
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: 0 12px 30px rgba(16, 20, 28, 0.18);
}

.brand-mark span {
  width: 17px;
  height: 17px;
  border: 2px solid var(--amber);
  border-left-color: var(--cyan);
  transform: rotate(45deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: white;
  letter-spacing: 0.12em;
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.86rem, 1vw, 0.92rem);
  font-weight: 650;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease-out);
  opacity: 0.9;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: white;
}

.site-header.is-scrolled .brand-copy strong,
.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a:focus-visible,
.site-header.is-scrolled .nav-links a.is-active {
  color: var(--ink);
}

.site-header.is-scrolled .brand-copy small {
  color: var(--muted);
}

.site-header.is-scrolled .nav-links {
  color: rgba(16, 20, 28, 0.72);
}

.site-header--light-hero:not(.is-scrolled) {
  background: rgba(247, 243, 235, 0.72);
  border-bottom-color: rgba(16, 20, 28, 0.06);
}

.site-header--light-hero:not(.is-scrolled) .brand-copy strong,
.site-header--light-hero:not(.is-scrolled) .nav-links a:hover,
.site-header--light-hero:not(.is-scrolled) .nav-links a:focus-visible,
.site-header--light-hero:not(.is-scrolled) .nav-links a.is-active {
  color: var(--ink);
}

.site-header--light-hero:not(.is-scrolled) .brand-copy small,
.site-header--light-hero:not(.is-scrolled) .nav-links {
  color: rgba(16, 20, 28, 0.62);
}

.site-header--light-hero:not(.is-scrolled) .brand-mark {
  border-color: rgba(16, 20, 28, 0.12);
}

.site-header--light-hero:not(.is-scrolled) .nav-cta {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 28px rgba(16, 20, 28, 0.12);
}

.site-header--light-hero:not(.is-scrolled) .nav-cta:hover {
  background: #243040;
  border-color: #243040;
}

.site-header--light-hero.is-scrolled .brand-copy strong {
  color: var(--ink);
}

.site-header--dark-hero:not(.is-scrolled) {
  background: rgba(12, 10, 22, 0.42);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header--dark-hero:not(.is-scrolled) .brand-copy strong,
.site-header--dark-hero:not(.is-scrolled) .nav-links a:hover,
.site-header--dark-hero:not(.is-scrolled) .nav-links a:focus-visible,
.site-header--dark-hero:not(.is-scrolled) .nav-links a.is-active {
  color: white;
}

.site-header--dark-hero:not(.is-scrolled) .brand-copy small,
.site-header--dark-hero:not(.is-scrolled) .nav-links {
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a.is-active {
  position: relative;
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav-login:hover,
.nav-login:focus-visible {
  opacity: 1;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-login {
  color: var(--ink);
}

.site-header--dark-hero:not(.is-scrolled) .nav-login,
.site-header.is-over-dark:not(.is-scrolled) .nav-login {
  color: rgba(255, 255, 255, 0.88);
}

.mobile-nav-login {
  width: 100%;
  justify-content: center;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-switch__current {
  color: inherit;
  opacity: 0.92;
}

.lang-switch__sep {
  opacity: 0.4;
  font-weight: 400;
}

.lang-switch__link {
  color: inherit;
  opacity: 0.62;
  text-decoration: none;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.lang-switch__link:hover,
.lang-switch__link:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang-switch--mobile {
  justify-content: center;
  padding: 8px 0 4px;
}

.site-header.is-scrolled .lang-switch__link {
  color: var(--ink);
}

.site-header--dark-hero:not(.is-scrolled) .lang-switch,
.site-header.is-over-dark:not(.is-scrolled) .lang-switch {
  color: rgba(255, 255, 255, 0.82);
}

.site-header--dark-hero:not(.is-scrolled) .lang-switch__link,
.site-header.is-over-dark:not(.is-scrolled) .lang-switch__link {
  color: rgba(255, 255, 255, 0.62);
}

.site-header--dark-hero:not(.is-scrolled) .lang-switch__link:hover,
.site-header.is-over-dark:not(.is-scrolled) .lang-switch__link:hover {
  color: white;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 0;
  z-index: 29;
  background: rgba(16, 20, 28, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.28s var(--ease-out);
}

.mobile-nav.is-open {
  opacity: 1;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav-panel {
  display: grid;
  gap: 4px;
  padding: 18px 20px calc(28px + env(safe-area-inset-bottom));
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 235, 0.98);
  box-shadow: 0 24px 60px rgba(16, 20, 28, 0.14);
  transform: translateY(-10px);
  transition: transform 0.32s var(--ease-out);
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateY(0);
}

.mobile-nav-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  color: rgba(16, 20, 28, 0.82);
  font-size: 1rem;
  font-weight: 650;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible,
.mobile-nav-panel a.is-active {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.mobile-nav-panel a:active {
  transform: scale(0.99);
}

.mobile-nav-panel a.is-active {
  border: 1px solid rgba(62, 127, 147, 0.18);
  background: rgba(62, 127, 147, 0.08);
}

.mobile-nav-cta {
  margin-top: 8px;
  width: 100%;
  border-color: var(--graphite);
  background: var(--graphite);
  color: white;
}

body.nav-open {
  overflow: hidden;
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 0.92rem;
  font-weight: 760;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.site-header.is-scrolled .nav-cta {
  border-color: rgba(16, 20, 28, 0.16);
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(16, 20, 28, 0.08);
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.2);
}

.site-header.is-scrolled .nav-cta:hover {
  border-color: rgba(16, 20, 28, 0.2);
  background: white;
}

.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

.btn {
  position: relative;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

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

.btn:active,
.nav-cta:active {
  transform: translateY(0) scale(0.985);
}

.btn-primary:hover {
  background: #f8e6b8;
  border-color: #f8e6b8;
  box-shadow: 0 20px 44px rgba(245, 223, 172, 0.28);
}

.btn-primary:active {
  box-shadow: 0 10px 24px rgba(245, 223, 172, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.48);
}

.contact-panel .btn:hover {
  background: #243040;
  border-color: #243040;
}

.btn.is-loading {
  pointer-events: none;
  color: transparent !important;
}

.btn.is-loading::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0.95;
  animation: btnSpin 0.65s linear infinite;
}

.btn-primary.is-loading::after,
.btn-plan-featured.is-loading::after {
  border-color: rgba(22, 19, 13, 0.2);
  border-top-color: #16130d;
}

.contact-panel .btn.is-loading::after {
  border-color: rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

.hero {
  position: relative;
  min-height: calc(100svh - 42px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 58px) 0 124px;
  color: white;
  overflow: clip;
  background: var(--graphite);
  isolation: isolate;
}

/* ── Apple-style product hero (AuraPro first) ── */
.hero-product {
  display: block;
  min-height: auto;
  padding: calc(var(--header-height) + 28px) 0 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(62, 127, 147, 0.08), transparent 58%),
    linear-gradient(180deg, #faf8f4 0%, var(--paper) 72%);
  text-align: center;
}

.hero-product .hero-shell {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(48px, 6vw, 88px);
  justify-items: center;
}

.hero-product-intro {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
}

.hero-product .hero-wordmark {
  margin: 0 auto;
  line-height: 0;
}

.hero-product .hero-wordmark img {
  display: block;
  width: clamp(196px, 34vw, 280px);
  height: auto;
  margin-inline: auto;
}

.hero-product h1 {
  max-width: 12ch;
  margin: 14px auto 0;
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-shadow: none;
  color: var(--ink);
}

.hero-product .hero-lead {
  max-width: 42ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.hero-chips span,
.hero-chips a {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(16, 20, 28, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-chips a:hover {
  border-color: rgba(16, 20, 28, 0.22);
  background: white;
}

.hero-product .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.hero-product .hero-btn-secondary {
  border: 1px solid rgba(16, 20, 28, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(24, 32, 42, 0.06);
}

.hero-product .hero-btn-secondary:hover {
  background: white;
  border-color: rgba(16, 20, 28, 0.22);
}

/* Violet hero zone — hero + pillars share one continuous background */
.hero-violet-zone {
  position: relative;
  color: white;
  overflow: hidden;
  max-width: 100%;
  background:
    radial-gradient(ellipse 72% 48% at 50% -8%, rgba(140, 100, 220, 0.3), transparent 58%),
    radial-gradient(ellipse 80% 60% at 50% 100%, var(--glow-cyan), transparent 52%),
    linear-gradient(180deg, var(--void) 0%, #1a1230 48%, var(--void-deep) 82%, var(--void) 100%);
}

.hero-violet-zone::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: clamp(80px, 12vw, 140px);
  background: linear-gradient(180deg, transparent 0%, rgba(15, 10, 26, 0.45) 45%, var(--void-deep) 100%);
  pointer-events: none;
}

.hero-violet-zone > * {
  position: relative;
  z-index: 1;
}

/* Pillars band between cinema showcase and testimonials — stay dark through the compare table */
.hero-violet-zone--pillars-bridge {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(140, 100, 220, 0.08), transparent 55%),
    linear-gradient(180deg, var(--void-deep) 0%, var(--graphite) 48%, var(--graphite-soft) 100%);
}

.hero-violet-zone--pillars-bridge::after {
  display: none;
}

.hero-violet-zone--pillars-bridge .hero-pillars--violet {
  padding-top: clamp(16px, 2.5vw, 28px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

/* Seamless join: cinema showcase → pillars (no paper gap on mobile) */
.cinema-strip:has(+ .hero-violet-zone--pillars-bridge) {
  padding-bottom: 0;
}

.cinema-strip:has(+ .hero-violet-zone--pillars-bridge) > .cinema-panel:last-child {
  margin-bottom: 0;
}

.cinema-strip + .hero-violet-zone--pillars-bridge {
  margin-top: 0;
}

.cinema-strip + .hero-violet-zone--pillars-bridge .hero-pillars--violet::before {
  display: none;
}

.hero-violet-zone .hero-product .hero-shell {
  padding-bottom: clamp(16px, 3vw, 32px);
}

.hero-violet-zone .hero-product-shot img {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 40px 120px rgba(0, 0, 0, 0.45),
    0 80px 160px rgba(15, 10, 26, 0.5);
}

/* Violet dark hero — dashboard AuraPro */
.hero-product--violet {
  color: white;
  background: transparent;
  padding-bottom: 0;
}

.hero-violet-zone .hero-product--violet {
  background: transparent;
}

.hero-product--violet .hero-wordmark img {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.hero-promo {
  display: flex;
  width: 100%;
  max-width: 26rem;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin: clamp(2rem, 3.6vw, 2.75rem) auto 0;
  padding: 1.1rem 1.35rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.hero-promo__brand {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-promo__headline {
  max-width: 22rem;
  margin: 0 auto;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  text-wrap: balance;
}

.hero-promo__accent {
  font-weight: 700;
  color: var(--promo-accent);
}

.hero-promo__accent--xl {
  display: inline;
  font-size: clamp(1.7rem, 3.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0.14em 0 0;
  white-space: nowrap;
  vertical-align: -0.08em;
  text-shadow: 0 0 26px rgba(220, 196, 250, 0.38);
}

.hero-promo__subline {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.hero-promo--campaign,
.hero-promo--prominent {
  gap: 0.9rem;
  margin-top: clamp(2rem, 3.6vw, 2.75rem);
}

.hero-promo--prominent .hero-promo__headline {
  max-width: 24rem;
}

.hero-promo .promo-countdown {
  max-width: 18rem;
  gap: 0.4rem;
}

.hero-promo .promo-countdown__segment {
  padding: 0.45rem 0.25rem;
  border-radius: 0.75rem;
}

.hero-promo .promo-countdown__value {
  font-size: 1.35rem;
}

html.promo-default-20 #tarifs .price-monthly.has-promo .price-promo {
  font-size: 1.16em;
  text-shadow: 0 0 24px var(--promo-price-glow);
}

html.promo-default-20 #tarifs .price-card.featured .price-monthly.has-promo .price-promo {
  font-size: 1.2em;
  text-shadow: 0 0 28px rgba(216, 187, 131, 0.28);
}

html.promo-campaign-50 #tarifs .price-monthly.has-promo .price-promo {
  font-size: 1.22em;
  text-shadow: 0 0 28px var(--promo-price-glow);
}

html.promo-campaign-50 #tarifs .price-card.featured .price-monthly.has-promo .price-promo {
  font-size: 1.26em;
  text-shadow: 0 0 32px rgba(216, 187, 131, 0.32);
}

.promo-countdown {
  display: grid;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.promo-countdown__segment {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.45rem;
  border: 1px solid rgba(126, 200, 216, 0.22);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.promo-countdown__value {
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: white;
  line-height: 1;
}

.promo-countdown__label {
  margin-top: 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.tarifs-promo,
.formules-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(126, 200, 216, 0.2);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.tarifs-promo__copy,
.formules-promo__copy {
  min-width: 0;
  width: 100%;
}

.tarifs-promo__badge,
.formules-promo__badge {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--promo-lavender);
}

.tarifs-promo__headline,
.formules-promo__headline {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.tarifs-promo__headline .hero-promo__accent,
.formules-promo__headline .hero-promo__accent {
  color: var(--promo-accent);
}

.promo-countdown--compact {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

.promo-countdown--compact .promo-countdown__segment {
  padding: 0.55rem 0.35rem;
  border-radius: 0.85rem;
}

.promo-countdown--compact .promo-countdown__value {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.promo-countdown--compact .promo-countdown__label {
  font-size: 0.56rem;
}

.hidden {
  display: none !important;
}

.price-monthly.has-promo .price-amount,
.price-annual.has-promo .price-amount,
.price-display.has-promo .price-amount {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
}

.price-monthly.has-promo .price-original,
.price-annual.has-promo .price-original,
.price-display.has-promo .price-original {
  font-size: 0.46em;
  font-weight: 600;
  color: var(--promo-price-original);
  text-decoration: line-through;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-monthly.has-promo .price-promo,
.price-annual.has-promo .price-promo,
.price-display.has-promo .price-promo {
  font-size: 1em;
  font-weight: 800;
  letter-spacing: inherit;
  line-height: 1;
  color: var(--promo-price);
  text-shadow: 0 0 20px var(--promo-price-glow);
}

.price-card.featured .price-monthly.has-promo .price-promo,
.price-card.featured .price-annual.has-promo .price-promo,
.price-card.featured .price-display.has-promo .price-promo {
  color: var(--promo-gold);
  text-shadow: 0 0 18px rgba(216, 187, 131, 0.22);
}

.price-card.featured .price-monthly.has-promo .price-original,
.price-card.featured .price-annual.has-promo .price-original,
.price-card.featured .price-display.has-promo .price-original {
  color: var(--promo-price-original-featured);
}

#formules .price-display {
  margin-top: 18px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

#formules .price-display > span:not(.price-amount) {
  margin-left: 6px;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.54;
}

#formules .price-display .price-amount {
  margin-left: 0;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
  letter-spacing: inherit;
}

@media (max-width: 767px) {
  .promo-countdown--compact {
    max-width: 100%;
  }
}

.hero-product--violet h1 {
  max-width: 12ch;
  color: white;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero-product--violet .hero-lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero-product--violet .hero-chips span,
.hero-product--violet .hero-chips a {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.hero-product--violet .hero-btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero-product--violet .hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-product--violet .hero-note {
  color: rgba(255, 255, 255, 0.72);
}

.hero-product--violet .hero-note__link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-product--violet .hero-note__link:hover {
  color: #fff;
}

/* Démo — même famille que les pills hero */
.hero-btn-demo {
  gap: 8px;
}

.btn-demo__play {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 20, 28, 0.1);
}

.hero-product--violet .hero-btn-demo .btn-demo__play {
  background: rgba(255, 255, 255, 0.14);
}

.btn-demo__play svg {
  display: block;
}

.nav-demo {
  font-size: 0.86rem;
  font-weight: 650;
  color: inherit;
  text-decoration: none;
  opacity: 0.72;
  white-space: nowrap;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.site-header--dark-hero:not(.is-scrolled) .nav-demo,
.site-header.is-over-dark:not(.is-scrolled) .nav-demo {
  color: rgba(255, 255, 255, 0.78);
}

.nav-demo:hover,
.nav-demo:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header.is-scrolled .nav-demo {
  color: var(--ink);
}

.hero-product--violet .hero-product-shot {
  width: min(100%, 1280px);
}

.hero-product--violet .hero-product-shot img {
  border-radius: 20px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 40px 120px rgba(0, 0, 0, 0.45);
}

.hero-product-video {
  width: min(100%, 1040px);
  margin: clamp(16px, 3vw, 28px) auto 0;
}

.hero-product-video--cinema {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  margin-top: clamp(20px, 4vw, 36px);
  padding-inline: 0;
}

.hero-product > .hero-product-video--cinema {
  margin-top: 0;
}

.hero-product-video__kicker {
  margin: 0 0 14px;
  padding-inline: clamp(16px, 4vw, 28px);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-product-video--cinema .hero-product-video__kicker {
  color: rgba(255, 255, 255, 0.72);
}

.hero-product-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a0c12;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.32),
    0 40px 120px rgba(0, 0, 0, 0.45);
}

.hero-product-video--cinema .hero-product-video__frame {
  width: 100%;
  min-height: clamp(280px, 56.25vw, 85svh);
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.hero-product-video__frame:fullscreen {
  min-height: 100%;
  aspect-ratio: auto;
  background: #000;
}

.hero-product-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-product-video__frame:fullscreen .hero-product-video__media {
  object-fit: contain;
}

.hero-product-video__controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-product-video__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.62);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-product-video__control:hover {
  background: rgba(10, 12, 18, 0.82);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-product-video__control[hidden] {
  display: none;
}

.hero-product-video__frame:fullscreen .hero-product-video__controls {
  right: 20px;
  bottom: 20px;
}

/* ── Sector article pages (editorial layout) ── */
.article-page {
  background: var(--paper);
}

.article-page .site-header {
  border-color: var(--line);
  background: rgba(247, 243, 235, 0.94);
}

.article-page .site-header .brand-copy strong,
.article-page .site-header .nav-links a {
  color: var(--ink);
}

.article-page .site-header .brand-copy small {
  color: var(--muted);
}

.article-page .site-header .brand-mark {
  border-color: rgba(16, 20, 28, 0.14);
}

.sector-article {
  padding: calc(var(--header-height) + 28px) 0 72px;
}

.sector-article__masthead {
  max-width: 820px;
}

.sector-article__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(16, 20, 28, 0.72);
}

.sector-article__breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(16, 20, 28, 0.28);
}

.sector-article__breadcrumb a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sector-article__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(195, 154, 88, 0.14);
  color: #7a5a14;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-article__masthead h1 {
  margin: 18px 0 0;
  max-width: 18ch;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.sector-article__deck {
  margin: 20px 0 0;
  max-width: 62ch;
  color: rgba(16, 20, 28, 0.72);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.sector-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.sector-article__cover {
  margin: 36px 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 28, 0.08);
  box-shadow: 0 20px 60px rgba(24, 32, 42, 0.1);
}

.sector-article__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sector-article__cover figcaption {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.sector-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-top: 48px;
}

.sector-article__content {
  min-width: 0;
  max-width: 720px;
}

.sector-article__content > * + * {
  margin-top: 1.35em;
}

.sector-article__content h2 {
  margin-top: 2.2em;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.sector-article__content h2:first-child {
  margin-top: 0;
}

.sector-article__content h3 {
  margin-top: 1.6em;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.sector-article__content p,
.sector-article__content li {
  color: rgba(16, 20, 28, 0.78);
  line-height: 1.75;
  font-size: 1.02rem;
}

.sector-article__content ul:not(.article-checklist) {
  padding-left: 1.2em;
}

.sector-article__content strong {
  color: var(--ink);
  font-weight: 700;
}

.article-figure {
  margin: 2em 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 28, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.article-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-figure figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  border-top: 1px solid rgba(16, 20, 28, 0.06);
}

.article-checklist {
  margin: 1.4em 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.article-checklist li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}

.article-checklist li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--cyan);
  font-weight: 800;
}

.article-callout {
  margin: 2em 0;
  padding: 20px 22px;
  border-left: 4px solid var(--amber);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 40px rgba(24, 32, 42, 0.06);
}

.article-callout p {
  margin: 0;
  color: rgba(16, 20, 28, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

.article-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1rem;
}

.article-cta {
  margin: 2.4em 0;
  padding: 28px;
  border: 1px solid rgba(62, 127, 147, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(62, 127, 147, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.82);
  text-align: center;
}

.article-cta h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.article-cta p {
  margin: 10px auto 0;
  max-width: 42ch;
  font-size: 0.96rem;
}

.article-cta .btn {
  margin-top: 18px;
}

.article-cta--dark {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(195, 154, 88, 0.18), transparent 55%),
    linear-gradient(145deg, #1a2230, #121820);
  color: white;
  text-align: left;
}

.article-cta--dark h3,
.article-cta--dark strong {
  color: white;
}

.article-cta--dark p {
  color: rgba(255, 255, 255, 0.88);
  margin-inline: 0;
  max-width: none;
}

.article-cta--dark .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: white;
}

.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sector-article__aside {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 16px;
}

.aside-card {
  padding: 20px;
  border: 1px solid rgba(16, 20, 28, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 48px rgba(24, 32, 42, 0.06);
}

.aside-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.aside-card h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.aside-card .btn {
  width: 100%;
  margin-top: 14px;
}

.aside-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.aside-toc a {
  display: block;
  padding: 6px 0;
  color: rgba(16, 20, 28, 0.68);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid rgba(16, 20, 28, 0.06);
  transition: color 0.2s ease;
}

.aside-toc a:hover {
  color: var(--cyan);
}

.article-faq {
  margin-top: 2.4em;
  padding-top: 2em;
  border-top: 1px solid var(--line);
}

.article-faq .faq-list {
  margin-top: 20px;
}

.sector-article-contact {
  padding: 72px 0 96px;
  background: #fbfaf6;
  border-top: 1px solid rgba(16, 20, 28, 0.06);
}

.sector-article-contact .closing-grid {
  align-items: start;
}

@media (max-width: 1020px) {
  .sector-article__layout {
    grid-template-columns: 1fr;
  }

  .sector-article__aside {
    position: static;
    order: -1;
  }

  .aside-toc {
    display: none;
  }
}

@media (max-width: 560px) {
  .sector-article {
    padding-top: calc(var(--header-height) + 16px);
  }

  .sector-article__masthead h1 {
    max-width: none;
  }

  .article-cta__actions {
    flex-direction: column;
  }

  .article-cta__actions .btn {
    width: 100%;
  }
}

.hero-shot-animate {
  animation: heroShotIn 1.05s var(--ease-out) 0.42s both;
}

@keyframes heroShotIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(24px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-note {
  margin-top: 16px;
  color: rgba(16, 20, 28, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero-product-shot {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  will-change: transform;
}

.hero-product-shot img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 4px 6px rgba(16, 20, 28, 0.04),
    0 24px 80px rgba(16, 20, 28, 0.14);
}

.hero-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.95s var(--ease-out) forwards;
}

.hero-stagger > *:nth-child(1) { animation-delay: 0.04s; }
.hero-stagger > *:nth-child(2) { animation-delay: 0.1s; }
.hero-stagger > *:nth-child(3) { animation-delay: 0.16s; }
.hero-stagger > *:nth-child(4) { animation-delay: 0.22s; }
.hero-stagger > *:nth-child(5) { animation-delay: 0.28s; }
.hero-stagger > *:nth-child(6) { animation-delay: 0.34s; }
.hero-stagger > *:nth-child(7) { animation-delay: 0.4s; }

.hero-product-shot.hero-stagger {
  animation-delay: 0.48s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero pillars (3 key messages, Apple-style) ── */
.hero-pillars {
  padding: clamp(20px, 3vw, 32px) 0 clamp(36px, 5vw, 56px);
}

.hero-pillars--violet {
  padding: clamp(28px, 4vw, 56px) 0 clamp(56px, 7vw, 96px);
  color: white;
  background: transparent;
}

.hero-pillars--violet::before {
  content: "";
  display: block;
  width: min(92%, 720px);
  height: 1px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0.9;
}

.hero-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 14px);
  max-width: 920px;
  margin-inline: auto;
}

.hero-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 20, 28, 0.14);
  box-shadow: 0 16px 40px rgba(24, 32, 42, 0.08);
}

.hero-pillars--violet .hero-pillar {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-pillars--violet .hero-pillar:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hero-pillar__tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-pillars--violet .hero-pillar__tag {
  color: var(--promo-lavender);
}

.hero-pillar__title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.hero-pillars--violet .hero-pillar__title {
  color: rgba(255, 255, 255, 0.95);
}

.hero-pillar__hint {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero-pillars--violet .hero-pillar__hint {
  color: rgba(255, 255, 255, 0.76);
}

/* ── E-invoicing reassurance (hero violet zone) ── */
.einvoicing-reassure {
  padding: clamp(28px, 4vw, 48px) 0 0;
  color: white;
}

.hero-product .einvoicing-reassure + .hero-product-video--cinema {
  margin-top: clamp(40px, 6vw, 56px);
}

.hero-violet-zone + #tarifs.aurapro-pricing.section-band {
  padding-top: clamp(40px, 6vw, 56px);
}

.einvoicing-reassure__intro {
  max-width: 38rem;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.einvoicing-reassure__intro h2 {
  margin: 0 0 12px;
  color: white;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.einvoicing-reassure__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.55;
}

.einvoicing-compliance-label {
  max-width: 920px;
  margin: 0 auto;
}

.einvoicing-compliance-label__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.einvoicing-compliance-label__panel:has(.einvoicing-compliance-label__foot) {
  padding-bottom: 12px;
}

.einvoicing-compliance-label__badges {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.einvoicing-compliance-label__gov,
.einvoicing-compliance-label__partner {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
}

.einvoicing-compliance-label__gov {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.einvoicing-compliance-label__status {
  position: relative;
  z-index: 2;
  margin: 0 0 -11px;
  padding: 5px 12px;
  border-radius: 4px;
  background: #e3000b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  box-shadow: 0 6px 16px rgba(227, 0, 11, 0.22);
}

.einvoicing-compliance-label__gov-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px 16px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(16, 20, 28, 0.06);
}

.einvoicing-compliance-label__emblem {
  flex: 0 0 auto;
  width: 64px;
  height: auto;
}

.einvoicing-compliance-label__gov-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.einvoicing-compliance-label__gov-title {
  margin: 0;
  color: #2c217e;
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.einvoicing-compliance-label__gov-legal {
  margin: 0;
  line-height: 0;
}

.einvoicing-compliance-label__rf {
  display: block;
  width: min(100%, 118px);
  height: auto;
}

.einvoicing-compliance-label__partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 20px 16px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(16, 20, 28, 0.06);
}

.einvoicing-compliance-label__partner-link {
  display: block;
  line-height: 0;
}

.einvoicing-compliance-label__partner img {
  width: min(100%, 168px);
  height: auto;
}

.einvoicing-compliance-label__bridge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 4px;
}

.einvoicing-compliance-label__bridge-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.einvoicing-compliance-label__bridge-label {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.einvoicing-compliance-label__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.einvoicing-compliance-label__caption strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 650;
}

.einvoicing-compliance-label__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.einvoicing-compliance-label__foot a {
  color: var(--promo-lavender);
  font-weight: 600;
  text-decoration: none;
}

.einvoicing-compliance-label__foot a:hover,
.einvoicing-compliance-label__foot a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .einvoicing-compliance-label__badges {
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }

  .einvoicing-compliance-label__gov {
    align-items: flex-start;
  }

  .einvoicing-compliance-label__status {
    margin-left: 14px;
  }

  .einvoicing-compliance-label__bridge {
    flex: 0 0 auto;
    flex-direction: column;
    gap: 8px;
    width: 7.5rem;
    padding-inline: 0;
  }

  .einvoicing-compliance-label__bridge-line {
    width: 1px;
    height: 28px;
    flex: 0 0 auto;
  }

  .einvoicing-compliance-label__bridge-label {
    text-align: center;
    line-height: 1.35;
    white-space: normal;
  }
}

.hero-pillars-fe-story .hero-pillar--fe {
  position: relative;
  z-index: 1;
}

.hero-pillars-fe-story.is-visible .hero-pillar--fe {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.hero-pillars-fe-story__bridge {
  max-width: 920px;
  margin-inline: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition:
    max-height 0.55s var(--ease-out),
    opacity 0.45s var(--ease-out) 0.12s,
    transform 0.55s var(--ease-out) 0.12s;
}

.hero-pillars-fe-story.is-visible .hero-pillars-fe-story__bridge {
  max-height: 88px;
  opacity: 1;
  transform: translateY(0);
}

.hero-pillars-fe-story__bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 14px);
  padding-top: clamp(20px, 3.5vw, 32px);
}

.hero-pillars-fe-story__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
}

.hero-pillars-fe-story.is-visible .hero-pillars-fe-story__chevron {
  animation: hero-fe-chevron-bounce 1.35s var(--ease-out) 0.35s infinite;
}

@keyframes hero-fe-chevron-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }

  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}

.hero-pillars-fe-story .hero-pillars-compare {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition:
    max-height 0.85s var(--ease-out) 0.22s,
    margin 0.55s var(--ease-out) 0.22s,
    opacity 0.65s var(--ease-out) 0.32s,
    transform 0.7s var(--ease-out) 0.32s;
}

.hero-pillars-fe-story.is-visible .hero-pillars-compare {
  max-height: 420px;
  margin-top: clamp(14px, 2.5vw, 22px);
  opacity: 1;
  transform: translateY(0);
}

.hero-pillars-compare {
  max-width: 920px;
  margin: clamp(24px, 3.5vw, 36px) auto 0;
}

.hero-pillars-compare__table-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.hero-pillars-compare__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: clamp(0.92rem, 1.7vw, 1.02rem);
  line-height: 1.4;
}

.hero-pillars-compare__table th,
.hero-pillars-compare__table td {
  width: 50%;
  padding: clamp(14px, 2.2vw, 18px) clamp(16px, 2.5vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
  vertical-align: middle;
}

.hero-pillars-compare__table thead th {
  padding-block: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom-width: 2px;
}

.hero-pillars-compare__table thead th.is-minus {
  color: #ffc4be;
  background: rgba(220, 82, 82, 0.22);
  border-color: rgba(255, 130, 120, 0.28);
}

.hero-pillars-compare__table thead th.is-plus {
  color: #b0f0cd;
  background: rgba(56, 170, 110, 0.24);
  border-color: rgba(120, 220, 160, 0.3);
}

.hero-pillars-compare__th {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-pillars-compare__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-pillars-compare__table thead th.is-minus .hero-pillars-compare__badge {
  background: rgba(220, 82, 82, 0.28);
  border: 1px solid rgba(255, 130, 120, 0.42);
  color: #ffc4be;
  box-shadow: 0 0 0 4px rgba(220, 82, 82, 0.1);
}

.hero-pillars-compare__table thead th.is-plus .hero-pillars-compare__badge {
  background: rgba(56, 170, 110, 0.3);
  border: 1px solid rgba(120, 220, 160, 0.44);
  color: #b0f0cd;
  box-shadow: 0 0 0 4px rgba(56, 170, 110, 0.1);
}

.hero-pillars-compare__table tbody td {
  letter-spacing: -0.02em;
}

.hero-pillars-compare__table tbody td:first-child {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
  background: transparent;
}

.hero-pillars-compare__table tbody td:last-child {
  color: rgba(255, 255, 255, 0.97);
  font-weight: 700;
  background: rgba(56, 170, 110, 0.12);
}

.hero-pillars-compare__table tbody tr:nth-child(even) td:first-child {
  background: rgba(255, 255, 255, 0.04);
}

.hero-pillars-compare__table tbody tr:nth-child(even) td:last-child {
  background: rgba(56, 170, 110, 0.16);
}

@media (max-width: 560px) {
  .hero-pillars-compare__table th,
  .hero-pillars-compare__table td {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .hero-pillars-compare__badge {
    width: 26px;
    height: 26px;
  }

  .hero-pillars-compare__th {
    gap: 8px;
    font-size: 0.64rem;
  }
}

/* ── Sector cards (landing → guides secteur) ── */
.sector-cards {
  padding: clamp(36px, 5vw, 56px) 0 clamp(44px, 6vw, 68px);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, var(--glow-cyan), transparent 55%),
    linear-gradient(180deg, var(--graphite) 0%, var(--void-deep) 100%);
}

.sector-cards .section-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sector-cards .section-heading {
  width: 100%;
  max-width: 34rem;
  margin: 0 auto clamp(32px, 4.5vw, 44px);
  text-align: center;
  color: white;
}

.sector-cards .section-heading h2 {
  margin: 0.45em 0 0.7em;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.sector-cards .section-heading__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sector-cards .section-heading__logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.sector-cards .section-kicker {
  color: var(--promo-gold);
}

.sector-cards .section-heading > p {
  margin: 0 auto;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.sector-cards__grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 4px 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--page-gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

/*
  Center cards when the row fits; keep scroll access when it overflows.
  (empty flex spacers with margin:auto)
*/
.sector-cards__grid::before,
.sector-cards__grid::after {
  content: "";
  margin: auto;
}

.sector-cards__grid::-webkit-scrollbar {
  height: 6px;
}

.sector-cards__grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.sector-cards__grid::-webkit-scrollbar-track {
  background: transparent;
}

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  width: 124px;
  min-width: 124px;
  min-height: 148px;
  padding: 20px 14px 18px;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  background: var(--surface-on-dark);
  color: white;
  text-decoration: none;
  text-align: center;
  scroll-snap-align: start;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sector-card:hover,
.sector-card:focus-visible {
  border-color: rgba(125, 168, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.sector-card:focus-visible {
  outline: 2px solid rgba(125, 168, 255, 0.55);
  outline-offset: 2px;
}

.sector-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(125, 168, 255, 0.12);
  color: #b4cffd;
}

.sector-card__label {
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.3;
}

.sector-card__hint {
  font-size: 0.76rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 640px) {
  .sector-cards__grid {
    gap: 10px;
    padding-bottom: 12px;
  }

  .sector-card {
    width: 112px;
    min-width: 112px;
    min-height: 136px;
    padding: 16px 12px 14px;
  }

  .sector-cards .section-heading__title {
    align-items: flex-start;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .sector-cards .section-heading__title picture {
    display: block;
    flex-shrink: 0;
    margin-top: 0.12em;
  }

  .sector-cards .section-heading__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

/* Allow the row to breathe edge-to-edge while the heading stays centered */
.sector-cards .section-shell {
  align-items: stretch;
  max-width: none;
  width: 100%;
  padding-inline: 0;
}

.sector-cards .section-heading {
  width: var(--page-width);
  max-width: 34rem;
  margin-inline: auto;
  padding-inline: 0;
}

/* ── Unity promise (5 tools → 1 interface) ── */
.product-specs .unity-promise--hero {
  margin: 0 auto clamp(40px, 6vw, 64px);
  max-width: 920px;
  padding: 0 0 clamp(12px, 2vw, 20px);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.unity-promise__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(62, 127, 147, 0.28);
  background:
    radial-gradient(circle at 30% 25%, rgba(120, 190, 210, 0.28), transparent 55%),
    rgba(62, 127, 147, 0.1);
  color: var(--cyan);
}

.unity-promise__icon svg {
  display: block;
}

.product-specs .unity-promise--hero .unity-promise__icon {
  margin: 0 auto 16px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 30% 25%, rgba(140, 210, 230, 0.22), transparent 58%),
    rgba(255, 255, 255, 0.06);
  color: rgba(190, 230, 240, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.product-specs .unity-promise--hero .unity-promise__eyebrow {
  color: #b8dce8;
}

.product-specs .unity-promise--hero .unity-promise__text {
  margin: 12px auto 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.45;
  text-wrap: pretty;
}

.product-specs .unity-promise--hero .unity-promise__text strong {
  color: white;
  font-weight: 800;
}

.product-specs .unity-promise--hero .unity-promise__pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-specs .unity-promise--hero .unity-promise__pillars li {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.product-specs .unity-promise--hero .unity-promise__pillars a {
  display: block;
  padding: 7px 14px;
  color: inherit;
  text-decoration: none;
}

.product-specs .unity-promise--hero .unity-promise__pillars li:hover,
.product-specs .unity-promise--hero .unity-promise__pillars li:focus-within {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.unity-promise {
  margin: 1.6em 0 2em;
  padding: clamp(20px, 2.8vw, 28px) clamp(18px, 2.5vw, 28px);
  border: none;
  border-left: 4px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: rgba(62, 127, 147, 0.07);
  box-shadow: none;
  text-align: left;
}

.unity-promise__eyebrow {
  margin: 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.unity-promise__text {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.unity-promise__text strong {
  font-weight: 800;
}

.unity-promise__pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.unity-promise__pillars li {
  padding: 0;
  border: 1px solid rgba(62, 127, 147, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: rgba(16, 20, 28, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.unity-promise__pillars a {
  display: block;
  padding: 7px 14px;
  color: inherit;
  text-decoration: none;
}

.unity-promise__pillars li:hover,
.unity-promise__pillars li:focus-within {
  border-color: rgba(62, 127, 147, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 640px) {
  .unity-promise {
    padding: 18px 16px;
  }

  .product-specs .unity-promise--hero .unity-promise__pillars a,
  .unity-promise__pillars a {
    padding: 6px 12px;
  }
}

/* ── Product specs (split: image + cards) ── */
.product-specs {
  padding: clamp(28px, 4vw, 40px) 0 clamp(28px, 4vw, 40px);
  background:
    radial-gradient(ellipse 90% 40% at 50% 0%, var(--glow-violet), transparent 55%),
    linear-gradient(180deg, var(--void-deep) 0%, var(--graphite) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-specs__split {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
}

.product-specs__visual {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.product-specs__visual picture,
.product-specs__visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-specs__visual img {
  object-fit: cover;
  object-position: center 18%;
  aspect-ratio: 3 / 4;
  min-height: 100%;
}

.product-specs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: center;
}

.product-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  padding: clamp(14px, 1.8vw, 18px) clamp(14px, 2vw, 20px);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  background: var(--surface-on-dark);
  text-align: left;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s var(--ease-out),
    box-shadow 0.22s ease;
}

.product-spec:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.product-spec__icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 2px;
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.product-spec__icon--mint { color: #7ddec4; background: rgba(125, 222, 196, 0.12); }
.product-spec__icon--gold { color: #e8c27a; background: rgba(232, 194, 122, 0.12); }
.product-spec__icon--cyan { color: #7ec8e8; background: rgba(126, 200, 232, 0.12); }
.product-spec__icon--blue { color: #8fb4f0; background: rgba(143, 180, 240, 0.12); }
.product-spec__icon--violet { color: #c4a8f0; background: rgba(196, 168, 240, 0.12); }

.product-spec strong {
  display: block;
  color: white;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.product-spec > span:not(.product-spec__icon) {
  display: block;
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .product-specs__split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-specs__visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .product-specs__visual img {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .product-specs__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.aurapro-zone {
  position: relative;
  /* Soft bridge from body paper into the dark product narrative */
  background: linear-gradient(180deg, transparent 0%, transparent 100%);
}

/* Pricing inside IA zone keeps dark family without hard slab */
.ia-zone .pricing-section.section-band {
  background: var(--surface-dark-band);
}

.section-features {
  padding-bottom: 72px;
}

.feature-cards {
  margin-top: 28px;
}

.section-cta {
  margin-top: 36px;
  text-align: center;
}

/* ── Cinematic full-bleed sections ── */
.story-break {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(420px, 72vh, 680px);
  overflow: hidden;
  color: white;
}

.story-break + .story-break {
  margin-top: 0;
}

.story-break--compact {
  min-height: clamp(360px, 58vh, 560px);
}

.story-break__media,
.story-break__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-break__media img {
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 8s var(--ease-out);
}

.story-break.is-ken-burns .story-break__media img {
  transform: scale(1.06);
}

.story-break--align-left .story-break__content {
  margin-inline: 0 auto 0;
  max-width: min(100%, 640px);
  text-align: left;
}

.story-break--align-right .story-break__content {
  margin-inline: auto 0 0;
  max-width: min(100%, 640px);
  text-align: left;
}

.story-break--align-center .story-break__content {
  margin-inline: auto;
  text-align: center;
}

.story-break__content--wide {
  max-width: min(100%, 920px);
}

.story-break__content--stagger .reveal-child {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--child-delay, 0ms);
}

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

.story-break__content--stagger .reveal-child:nth-child(1) { --child-delay: 0ms; }
.story-break__content--stagger .reveal-child:nth-child(2) { --child-delay: 80ms; }
.story-break__content--stagger .reveal-child:nth-child(3) { --child-delay: 160ms; }
.story-break__content--stagger .reveal-child:nth-child(4) { --child-delay: 240ms; }
.story-break__content--stagger .reveal-child:nth-child(5) { --child-delay: 320ms; }
.story-break__content--stagger .reveal-child:nth-child(6) { --child-delay: 400ms; }

.story-break--role .story-break__content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.story-break__overlay--role {
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.45) 0%, rgba(10, 8, 18, 0.62) 50%, rgba(10, 8, 18, 0.94) 100%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(62, 127, 147, 0.14), transparent 58%);
}

.story-break--formules .story-break__overlay {
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.55) 0%, rgba(10, 8, 18, 0.74) 48%, rgba(10, 8, 18, 0.96) 100%),
    radial-gradient(ellipse 75% 55% at 50% 100%, rgba(140, 100, 220, 0.16), transparent 58%);
}

.story-break__bullets {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.story-break--align-center .story-break__bullets {
  text-align: center;
}

.story-break__bullets li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.story-break__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4b8f8;
}

.story-break--align-center .story-break__bullets li {
  padding-left: 0;
}

.story-break--align-center .story-break__bullets li::before {
  display: none;
}

.story-break__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 16px);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.story-break__steps li {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  background: var(--surface-on-dark);
  backdrop-filter: blur(10px);
}

.story-break__steps li > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(226, 196, 143, 0.4);
  color: var(--promo-gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.story-break__steps strong {
  display: block;
  color: white;
  font-size: 0.95rem;
}

.story-break__steps p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  line-height: 1.55;
}

.closing-grid--centered .closing-copy {
  max-width: 640px;
}

.closing-grid--centered .closing-copy h2,
.closing-grid--centered .closing-copy p {
  text-align: center;
  margin-inline: auto;
}

.closing-grid--centered .section-kicker {
  text-align: center;
}

.integration-modes__grid {
  margin-top: 0;
}

.integration-mode {
  border-radius: 14px;
}

.story-break--focus-top .story-break__media img {
  object-position: center 18%;
}

.story-break--focus-center .story-break__media img {
  object-position: center center;
}

.story-break--focus-right .story-break__media img {
  object-position: 62% center;
}

.story-break__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.52) 0%, rgba(10, 8, 18, 0.68) 42%, rgba(10, 8, 18, 0.96) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(62, 127, 147, 0.18), transparent 58%);
  pointer-events: none;
}

.story-break--aurapro .story-break__overlay {
  background:
    linear-gradient(180deg, rgba(8, 6, 14, 0.48) 0%, rgba(8, 6, 14, 0.66) 40%, rgba(8, 6, 14, 0.95) 100%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(140, 100, 220, 0.16), transparent 58%);
}

.story-break--aurapro .story-break__kicker {
  color: var(--promo-lavender);
}

.story-break--method .story-break__overlay {
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.55) 0%, rgba(10, 8, 18, 0.72) 45%, rgba(10, 8, 18, 0.96) 100%),
    radial-gradient(ellipse 75% 55% at 50% 100%, rgba(195, 154, 88, 0.14), transparent 58%);
}

.story-break--method .story-break__kicker {
  color: var(--promo-gold);
}

.story-break--proof .story-break__overlay {
  background:
    linear-gradient(180deg, rgba(10, 8, 18, 0.58) 0%, rgba(10, 8, 18, 0.75) 48%, rgba(10, 8, 18, 0.97) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(62, 127, 147, 0.2), transparent 58%);
}

.story-break__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(72px, 10vw, 112px) 0 clamp(56px, 8vw, 88px);
  text-align: center;
}

.story-break--proof .story-break__content {
  max-width: 820px;
}

.story-break__kicker {
  color: var(--promo-lavender);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-break__content h2 {
  margin-top: 14px;
  color: white;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.story-break__lead {
  margin-top: 18px;
  margin-inline: auto;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.story-break__cta {
  display: inline-flex;
  margin-top: 28px;
  min-height: 46px;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.story-break__cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.story-break__quote {
  margin: 32px auto 0;
  max-width: 54ch;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  backdrop-filter: blur(12px);
}

.story-break__quote p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.68;
  font-style: italic;
}

.story-break__quote footer {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.story-break__quote strong {
  color: white;
  font-size: 0.92rem;
}

.story-break__quote span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.story-break__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.story-break__pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.section--timeline {
  padding-top: clamp(56px, 7vw, 80px);
  padding-bottom: clamp(72px, 8vw, 96px);
}

.site-header.is-over-dark:not(.is-scrolled) {
  background: rgba(16, 20, 28, 0.18);
  border-color: transparent;
}

.site-header.is-over-dark:not(.is-scrolled) .brand-copy strong,
.site-header.is-over-dark:not(.is-scrolled) .nav-links a:hover,
.site-header.is-over-dark:not(.is-scrolled) .nav-links a:focus-visible,
.site-header.is-over-dark:not(.is-scrolled) .nav-links a.is-active {
  color: white;
}

.site-header.is-over-dark:not(.is-scrolled) .brand-copy small,
.site-header.is-over-dark:not(.is-scrolled) .nav-links a:not(.is-active):not(:hover) {
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-over-dark:not(.is-scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

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

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(10, 14, 20, 0.88) 0%, rgba(10, 14, 20, 0.64) 38%, rgba(10, 14, 20, 0.18) 72%),
    linear-gradient(180deg, rgba(10, 14, 20, 0.46) 0%, rgba(10, 14, 20, 0.1) 42%, rgba(10, 14, 20, 0.72) 100%);
}

.hero::after {
  background: linear-gradient(180deg, transparent 72%, rgba(247, 243, 235, 0.95) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
}

.hero:not(.hero-product) .hero-shell {
  display: block;
}

.hero-copy {
  max-width: 620px;
}

.hero .eyebrow {
  color: #f0d39b;
}

.hero h1 {
  max-width: 15.5ch;
  margin-top: 20px;
  font-size: clamp(3rem, 5.7vw, 5.95rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.hero-lead {
  max-width: 54ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  box-shadow: 0 10px 28px rgba(24, 32, 42, 0.14);
  backdrop-filter: blur(14px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.58);
}

.eyebrow,
.section-kicker,
.pill,
.plan {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  color: #d8bb83;
}

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

h1 {
  max-width: 790px;
  margin-top: 18px;
  font-size: clamp(2.8rem, 6.2vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.btn-primary {
  border: 1px solid #f5dfac;
  background: linear-gradient(180deg, #f8e8bc 0%, #f5dfac 100%);
  color: #16130d;
  box-shadow: 0 18px 40px rgba(245, 223, 172, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding: 8px 0 16px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(24, 32, 42, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(24, 32, 42, 0.11);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.section {
  padding: 112px 0;
}

.section-band {
  padding: 86px 0;
  background: var(--soft);
}

.intro-grid,
.split-grid,
.closing-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.section-kicker {
  color: var(--sage);
}

/* Dark surfaces: section kickers = gold (same language as tarifs) */
.pricing-section .section-kicker,
.ia-roles-band .section-kicker,
.ia-method-band .section-kicker,
.ia-zone .section-kicker,
.einvoicing-reassure .section-kicker,
[data-dark-section] .section-kicker {
  color: var(--promo-gold);
}

/* Lavender reserved for IA badges / focus labels only */
.ia-compare__label,
.ia-role-card__kicker,
.ia-compare__item--focus .ia-compare__label {
  color: var(--promo-lavender);
}

.story-break--ia .story-break__kicker,
.story-break--aurapro .story-break__kicker {
  color: var(--promo-lavender);
}

.story-break--method .story-break__kicker {
  color: var(--promo-gold);
}

h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.intro-lead,
.closing p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.intro-lead {
  max-width: 660px;
  color: rgba(16, 20, 28, 0.76);
  font-size: clamp(1.14rem, 1.6vw, 1.32rem);
  line-height: 1.7;
}

.intro-note {
  position: relative;
  margin-top: -4px;
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(62, 127, 147, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  color: rgba(16, 20, 28, 0.72);
  font-size: 0.98rem;
  font-weight: 680;
  line-height: 1.55;
}

.intro-note::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cyan);
  border-left-color: var(--amber);
  transform: rotate(45deg);
}

.split-lead {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(16, 20, 28, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.split-intro {
  display: grid;
  gap: 0;
}

.modes-diagram {
  margin: 32px 0 0;
  padding: 0;
}

.modes-diagram img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border: 1px solid rgba(16, 20, 28, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(24, 32, 42, 0.06);
}

/* ── Integration modes (Remote / Local / Hybride) ── */
/* Same band as tarifs; light cards like price-cards */
.integration-modes {
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 80px);
  position: relative;
  color: white;
  background: var(--surface-dark-band);
}

.section-band.integration-modes {
  background: var(--surface-dark-band);
  color: white;
}

.integration-modes__diagram {
  margin: 0 auto;
  max-width: min(100%, 560px);
}

.integration-modes__diagram img {
  max-width: 100%;
  margin-inline: auto;
  border-radius: 14px;
}

.integration-modes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(32px, 4vw, 44px);
}

.integration-mode {
  display: grid;
  align-content: start;
  gap: 0;
  min-height: 0;
  padding: clamp(26px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease-out);
}

.integration-mode:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.integration-mode__index {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-inline: auto;
  place-items: center;
  border: 1px solid rgba(195, 154, 88, 0.28);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(195, 154, 88, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.integration-mode h3 {
  margin-top: 18px;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.integration-mode__fit {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.integration-mode p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.intro-proof {
  display: grid;
  gap: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-grid div {
  min-height: 174px;
  padding: 20px;
  border: 1px solid rgba(16, 20, 28, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(24, 32, 42, 0.06);
  transition: transform 0.25s var(--ease-out), border-color 0.2s ease, box-shadow 0.25s ease;
}

.proof-grid div:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 127, 147, 0.2);
  box-shadow: 0 22px 56px rgba(24, 32, 42, 0.09);
}

.proof-grid span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(195, 154, 88, 0.25);
  border-radius: 50%;
  background: rgba(195, 154, 88, 0.08);
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 800;
}

.proof-grid strong {
  display: block;
  margin-top: 28px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.proof-grid p {
  margin-top: 10px;
  color: rgba(16, 20, 28, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 740px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(62, 127, 147, 0.18);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(62, 127, 147, 0.08);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(16, 20, 28, 0.74);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.aurapro-section {
  position: relative;
  overflow: clip;
  scroll-margin-top: 0;
  padding: clamp(72px, 7vw, 96px) 0 104px;
  background:
    linear-gradient(180deg, rgba(16, 20, 28, 0.98), rgba(24, 32, 42, 0.94)),
    var(--graphite);
  color: white;
}

.aurapro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 44% 52% at 76% 22%, rgba(62, 127, 147, 0.2), transparent 62%),
    radial-gradient(ellipse 34% 44% at 18% 90%, rgba(195, 154, 88, 0.16), transparent 64%);
  pointer-events: none;
}

.aurapro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 46px);
  align-items: start;
}

.aurapro-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.aurapro-copy h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.25rem, 4.6vw, 4.45rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.aurapro-section .section-kicker {
  color: #f0d39b;
}

.aurapro-lead {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.aurapro-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.aurapro-benefits div {
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.aurapro-benefits span {
  display: inline-flex;
  color: #f0d39b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.aurapro-benefits strong {
  display: block;
  margin-top: 16px;
  color: white;
  font-size: 1rem;
  line-height: 1.25;
}

.aurapro-benefits p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.aurapro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.aurapro-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.aurapro-secondary:hover {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.18);
}

.aurapro-visual {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(6px, 1vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
}

.aurapro-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(16, 20, 28, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.faq-item[open] {
  border-color: rgba(62, 127, 147, 0.26);
  box-shadow: 0 16px 44px rgba(24, 32, 42, 0.07);
  background: rgba(255, 255, 255, 0.88);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  transition: color 0.18s ease;
}

.faq-item summary:hover {
  color: #0c1018;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
  transition:
    transform 0.28s var(--ease-spring),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.faq-item summary:hover::after {
  border-color: rgba(62, 127, 147, 0.28);
  color: var(--cyan);
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(62, 127, 147, 0.1);
  border-color: rgba(62, 127, 147, 0.22);
  color: var(--cyan);
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  animation: faqAnswerIn 0.28s var(--ease-out);
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-cta {
  margin-top: 28px;
  max-width: 820px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-cta a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-cta a:hover,
.faq-cta a:focus-visible {
  color: var(--ink);
}

.faq-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  background:
    linear-gradient(180deg, var(--soft) 0%, var(--paper) 14%, var(--paper) 100%);
  border-top: 1px solid transparent;
  color: var(--ink);
  padding-top: clamp(72px, 9vw, 110px);
  padding-bottom: clamp(72px, 9vw, 110px);
}

.faq-section.section-shell,
.section-shell.faq-section {
  /* legacy guard if class combo reappears */
  width: 100%;
  max-width: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  max-width: 1100px;
  margin-inline: auto;
}

.section-shell.faq-layout {
  max-width: min(1100px, var(--page-max));
}

.faq-layout__intro {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.faq-layout__intro h2 {
  max-width: 14ch;
  margin-top: 12px;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.faq-layout__lead {
  margin: 14px 0 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-cta--intro {
  margin-top: 22px;
  text-align: left;
}

.faq-layout .faq-list {
  margin-inline: 0;
  max-width: none;
  width: 100%;
}

.formules-heading {
  text-align: center;
  margin-inline: auto;
}

.formules-heading h2 {
  max-width: 16ch;
  margin-inline: auto;
}

#formules.pricing-section .pricing-lead {
  max-width: 42rem;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(72px, 12vw, 120px);
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, var(--glow-gold), transparent 60%);
  opacity: 0.55;
}

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

/* Light pockets (FAQ + contact) reset white inheritance from .ia-zone */
.ia-zone .faq-section,
.ia-zone .closing {
  color: var(--ink);
}

.ia-zone .faq-section h2,
.ia-zone .closing h2 {
  color: var(--ink);
}

.ia-zone .faq-section .section-kicker {
  color: var(--amber);
}

.ia-zone .closing .section-kicker {
  color: var(--sage);
}

.ia-zone .closing {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(195, 154, 88, 0.08), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, #fbfaf6 55%, var(--soft) 100%);
}

.ia-zone .closing .contact-panel {
  border-color: rgba(16, 20, 28, 0.1);
  box-shadow: 0 28px 70px rgba(24, 32, 42, 0.12);
}

.ia-zone .closing .btn.btn-primary {
  min-height: 52px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

/* Integration modes: dark band like tarifs, light cards like price-cards */
.ia-zone .integration-modes .section-heading h2,
.ia-zone .integration-modes h3 {
  color: inherit;
}

.ia-zone .integration-modes .integration-mode h3 {
  color: var(--ink);
}

.faq-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.faq-section .section-heading h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.faq-list,
.faq-cta {
  margin-inline: auto;
}

.faq-section .faq-item p {
  color: rgba(16, 20, 28, 0.72);
}

.faq-section .faq-cta {
  text-align: center;
}

.form-intro {
  margin: 0;
  padding-bottom: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-intro-step {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-right: 8px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(62, 127, 147, 0.2);
  background: rgba(62, 127, 147, 0.08);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 28;
  padding: 12px var(--page-gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 243, 235, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease-out);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta-shell {
  width: var(--page-width);
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.sticky-cta .btn {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.mode-grid,
.pricing-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 47px;
  left: calc(16.66% + 19px);
  right: calc(16.66% + 19px);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(62, 127, 147, 0.72));
  pointer-events: none;
}

.timeline-item {
  position: relative;
  z-index: 1;
}

.mode-card,
.price-card,
.timeline-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mode-card:hover,
.price-card:hover {
  border-color: rgba(16, 20, 28, 0.18);
  box-shadow: 0 20px 56px rgba(24, 32, 42, 0.1);
  transform: translateY(-2px);
}

.price-card.featured:hover {
  border-color: rgba(245, 223, 172, 0.62);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.34);
}

.mode-card,
.timeline-item {
  padding: 28px;
}

.mode-card {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  display: grid;
  align-content: start;
}

.mode-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), rgba(62, 127, 147, 0.72));
}

.mode-index {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(195, 154, 88, 0.28);
  border-radius: 50%;
  color: var(--amber);
  background: rgba(195, 154, 88, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.mode-card h3,
.timeline-item h3 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.mode-fit {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.45;
}

.mode-card p,
.timeline-item p,
.price-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.mode-card .mode-fit {
  margin-top: 10px;
  color: var(--ink);
  line-height: 1.45;
}

.timeline-item span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--graphite);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--graphite);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-section {
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(62, 127, 147, 0.08), transparent 50%),
    var(--surface-dark-band);
  color: var(--text-on-dark);
}

.pricing-section .section-kicker,
.pricing-section .pricing-note {
  color: var(--promo-gold);
}

.pricing-grid {
  align-items: stretch;
  padding-top: 14px;
}

.price-card {
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 223, 172, 0.5);
  background: #f5dfac;
  color: #16130d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card.featured {
  color: white;
  border-color: rgba(226, 196, 143, 0.42);
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(226, 196, 143, 0.1), transparent 55%),
    linear-gradient(180deg, #2a3140 0%, #171c28 55%, #14101f 100%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  transform: scale(1.02);
}

.price-card.featured li,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.86);
}

.plan {
  color: var(--cyan);
}

.featured .plan {
  color: #f5dfac;
}

.price-card h3 {
  margin-top: 22px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -0.055em;
}

.price-card h3 span {
  margin-left: 6px;
  color: currentColor;
  opacity: 0.54;
  font-size: 1rem;
  letter-spacing: 0;
}

.pricing-note {
  margin-top: 28px;
  max-width: 52ch;
  margin-inline: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
}

.pricing-note a {
  color: #f5dfac;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 223, 172, 0.45);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pricing-section .pricing-note a {
  color: #f5dfac;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 223, 172, 0.45);
}

.pricing-section .pricing-note a:hover {
  color: white;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.btn-plan {
  margin-top: 28px;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.btn-plan:hover {
  border-color: rgba(16, 20, 28, 0.22);
  background: #fffdf8;
}

.btn-plan-featured {
  border-color: #f5dfac;
  background: #f5dfac;
  color: #16130d;
}

.btn-plan-featured:hover {
  background: #f8e6b8;
  border-color: #f8e6b8;
}

/* AuraPro billing toggle & pricing visibility */
.billing-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid rgba(16, 20, 28, 0.12);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.billing-switch::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: var(--graphite);
  box-shadow: 0 2px 8px rgba(24, 32, 42, 0.25);
  transition: transform 0.32s var(--ease-spring);
  z-index: 0;
  pointer-events: none;
}

.billing-switch[data-billing='annual']::before {
  transform: translateX(100%);
}

.billing-switch--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.billing-switch--dark::before {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.billing-toggle {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.2s ease;
}

.billing-toggle.billing-active {
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.billing-switch--dark .billing-toggle.billing-active {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.billing-switch--dark .billing-toggle.billing-inactive {
  color: rgba(255, 255, 255, 0.8);
}

.billing-switch--dark .billing-toggle.billing-inactive:hover {
  color: white;
}

.billing-toggle.billing-inactive:hover {
  color: var(--ink);
}

.billing-save {
  color: #7ec8d8;
}

.pricing-lead {
  max-width: 560px;
  margin: 12px auto 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.6;
}

.aurapro-pricing .section-heading {
  margin-inline: auto;
  text-align: center;
}

.aurapro-pricing .section-heading h2 {
  color: white;
}

#pricing-grid .price-annual:not(.price-savings) {
  display: none;
}

#pricing-grid .price-monthly {
  display: block;
}

#pricing-grid .price-annual.price-savings {
  display: none;
}

#pricing-grid.pricing-annual .price-monthly {
  display: none;
}

#pricing-grid.pricing-annual .price-annual:not(.price-savings) {
  display: block;
}

#pricing-grid.pricing-annual .price-annual.price-savings {
  display: block;
}

.aurapro-pricing .price-block h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -0.055em;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.aurapro-pricing .price-block h3 > span:not(.price-amount) {
  margin-left: 6px;
  font-size: 1rem;
  opacity: 0.54;
  letter-spacing: 0;
}

.aurapro-pricing .price-block h3 .price-amount {
  margin-left: 0;
  font-size: inherit;
  font-weight: inherit;
  opacity: 1;
  letter-spacing: inherit;
}

.aurapro-pricing .price-savings {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #7ec8d8;
  line-height: 1.4;
}

#pricing-grid.is-switching .price-block h3 {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

#pricing-grid .price-block h3 {
  transition: opacity 0.24s var(--ease-out), transform 0.24s var(--ease-out);
}

.pricing-alt {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  max-width: 640px;
  margin-inline: auto;
}

.pricing-alt-fold {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pricing-alt-fold[open] {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-alt-fold__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  padding: 12px 16px;
  list-style: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.pricing-alt-fold__summary::-webkit-details-marker {
  display: none;
}

.pricing-alt-fold__summary::after {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.42);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease;
}

.pricing-alt-fold[open] > .pricing-alt-fold__summary::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

.pricing-alt-fold__summary:hover,
.pricing-alt-fold[open] > .pricing-alt-fold__summary {
  color: rgba(255, 255, 255, 0.86);
}

.pricing-alt-fold__label {
  font-weight: 600;
}

.pricing-alt-fold__meta {
  margin-left: auto;
  text-align: right;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.pricing-alt-fold__body {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-alt-fold__body > :first-child {
  margin-top: 14px;
}

@media (max-width: 520px) {
  .pricing-alt-fold__summary {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .pricing-alt-fold__meta {
    margin-left: 0;
    width: 100%;
    text-align: left;
  }
}

.pricing-alt__heading {
  margin-bottom: 16px;
  color: #d8bb83;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.pricing-alt__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-alt__item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pricing-alt__item:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-alt__label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-alt__title {
  margin-top: 6px;
  color: white;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.pricing-alt__detail,
.pricing-alt__note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pricing-alt__note {
  font-size: 0.8rem;
}

.pricing-alt__list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-alt__list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pricing-alt__check {
  flex-shrink: 0;
  color: #7ec8d8;
  font-weight: 700;
}

.pricing-alt__link {
  display: inline-flex;
  margin-top: 14px;
  color: #7ec8d8;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

.pricing-alt__link:hover {
  color: white;
  transform: translateX(3px);
}

.text-neon-cyan {
  color: var(--cyan-soft);
}

/* features mode cards polish */
.mode-card ul {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.mode-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: rgba(16, 20, 28, 0.72);
}
.mode-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--cyan);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.social-proof-lead {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(16, 20, 28, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sector-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(16, 20, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(16, 20, 28, 0.72);
  font-size: 0.84rem;
  font-weight: 650;
}

.testimonial-card {
  margin: 0;
  padding: 32px;
  border: 1px solid rgba(16, 20, 28, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 60px rgba(24, 32, 42, 0.08);
}

.testimonial-card p {
  color: rgba(16, 20, 28, 0.82);
  font-size: 1.18rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testimonial-card strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
  animation: formStatusIn 0.35s var(--ease-out);
}

.form-status__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-top: 1px;
}

.form-status__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.form-status__icon-ring {
  fill: rgba(36, 150, 96, 0.14);
  stroke: rgba(36, 150, 96, 0.55);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: formStatusRingIn 0.5s var(--ease-out);
}

.form-status__icon-check {
  fill: none;
  stroke: #1f8f57;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: formStatusCheckDraw 0.45s 0.15s var(--ease-out) forwards;
}

.form-status__text {
  flex: 1;
  min-width: 0;
}

@keyframes formStatusIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formStatusSuccessIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes formStatusRingIn {
  from {
    opacity: 0;
    transform: scale(0.55);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes formStatusCheckDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.form-status.is-success {
  border: 1.5px solid rgba(36, 150, 96, 0.42);
  background: linear-gradient(135deg, rgba(36, 150, 96, 0.12), rgba(36, 150, 96, 0.05));
  color: #145c38;
  box-shadow:
    0 0 0 1px rgba(36, 150, 96, 0.06),
    0 12px 28px rgba(36, 150, 96, 0.12);
  animation: formStatusSuccessIn 0.55s var(--ease-out);
}

.form-status.is-error {
  border: 1px solid rgba(180, 70, 70, 0.24);
  background: rgba(180, 70, 70, 0.08);
  color: #6d2323;
}

.label-optional {
  color: rgba(16, 20, 28, 0.58);
  font-weight: 600;
}

.contact-panel.is-submitting {
  opacity: 0.82;
  pointer-events: none;
}

.contact-panel.is-submitting label {
  opacity: 0.72;
}

.closing {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(140, 100, 220, 0.06), transparent 50%),
    linear-gradient(180deg, #f3efe6 0%, var(--paper) 40%, #fbfaf6 100%);
}

.contact-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.proposal-preview {
  max-width: 620px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.proposal-preview > p {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.proposal-preview ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.proposal-preview li {
  position: relative;
  padding-left: 28px;
  color: rgba(16, 20, 28, 0.76);
  font-size: 1.02rem;
  line-height: 1.6;
}

.proposal-preview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: #fbfaf6;
  box-shadow: 0 0 0 5px rgba(195, 154, 88, 0.12);
}

.contact-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-panel input:not(.visually-hidden),
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-panel input:not(.visually-hidden):hover,
.contact-panel select:hover,
.contact-panel textarea:hover {
  border-color: rgba(16, 20, 28, 0.2);
}

.contact-panel input:not(.visually-hidden):focus-visible,
.contact-panel select:focus-visible,
.contact-panel textarea:focus-visible {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(62, 127, 147, 0.18);
  background: #fff;
}

.contact-panel input:not(.visually-hidden):user-invalid,
.contact-panel select:user-invalid,
.contact-panel textarea:user-invalid {
  border-color: rgba(180, 70, 70, 0.45);
}

.contact-panel input:not(.visually-hidden):user-invalid:focus-visible,
.contact-panel select:user-invalid:focus-visible,
.contact-panel textarea:user-invalid:focus-visible {
  box-shadow: 0 0 0 3px rgba(180, 70, 70, 0.14);
}

.contact-panel input:not(.visually-hidden),
.contact-panel select {
  min-height: 52px;
  padding: 0 14px;
}

.contact-panel textarea {
  min-height: 102px;
  resize: vertical;
  padding: 14px;
  line-height: 1.5;
}

.contact-panel .btn {
  width: 100%;
  border-color: var(--graphite);
  background: var(--graphite);
  color: white;
}

.contact-panel .form-note {
  color: rgba(16, 20, 28, 0.72);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.72);
}

.footer-banner {
  position: relative;
  min-height: clamp(220px, 32vw, 320px);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.footer-banner-media,
.footer-banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  filter: saturate(0.94) contrast(1.02) brightness(0.95);
}

.footer-banner-overlay {
  background:
    linear-gradient(180deg, rgba(16, 20, 28, 0.06), rgba(16, 20, 28, 0.48) 50%, rgba(16, 20, 28, 0.96)),
    linear-gradient(90deg, rgba(16, 20, 28, 0.82) 0%, rgba(16, 20, 28, 0.45) 38%, rgba(16, 20, 28, 0.12) 62%);
}

.footer-banner-content {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vw, 72px) 0 clamp(28px, 5vw, 40px);
}

.footer-brand-block {
  max-width: 560px;
}

.footer-brand {
  color: white;
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.78);
}

.footer-tagline {
  margin: 18px 0 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.footer-grid nav {
  display: flex;
  gap: 18px;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: white;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.legal-page .legal-body {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-page .legal-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-stagger > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-shot-animate {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .story-break__content--stagger .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .story-break__media img {
    transform: scale(1.02);
    transition: none;
  }

  .cinema-panel__image {
    transform: scale(1.03);
    transition: none;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-pillars-fe-story .hero-pillar--fe,
  .hero-pillars-fe-story.is-visible .hero-pillar--fe {
    transform: none;
  }

  .hero-pillars-fe-story__bridge,
  .hero-pillars-fe-story .hero-pillars-compare,
  .hero-pillars-fe-story.is-visible .hero-pillars-fe-story__bridge,
  .hero-pillars-fe-story.is-visible .hero-pillars-compare {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-top: clamp(14px, 2.5vw, 22px);
    transition: none;
    animation: none;
  }

  .hero-pillars-fe-story.is-visible .hero-pillars-fe-story__chevron {
    animation: none;
  }

  .btn:hover,
  .mode-card:hover,
  .price-card:hover,
  .integration-mode:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .nav-links .nav-link--extended {
    display: none;
  }
}

@media (max-width: 920px) {
  .nav-links,
  .nav-actions .nav-cta,
  .nav-actions .nav-demo,
  .nav-actions .nav-search,
  .nav-actions .lang-switch {
    display: none;
  }

  .nav-shell {
    min-height: 64px;
    gap: 10px;
  }

  .nav-shell > .brand {
    min-width: 0;
  }

  .brand {
    gap: 8px;
  }

  .brand-copy--single strong {
    font-size: 0.9rem;
  }

  .nav-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .nav-actions .nav-login {
    padding: 8px 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
  }

  .faq-section .section-heading h2 {
    max-width: none;
  }

  .hero:not(.hero-product) {
    min-height: calc(100svh - 34px);
    padding-bottom: 110px;
  }

  .hero-product {
    min-height: auto;
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 0;
  }

  .hero-product--violet {
    padding-bottom: 0;
  }

  .hero-pillars__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero-pillars-fe-story__bridge-grid {
    grid-template-columns: 1fr;
  }

  .hero-pillars-fe-story__bridge-grid > span:first-child,
  .hero-pillars-fe-story__bridge-grid > span:last-child {
    display: none;
  }

  .hero-product h1,
  .hero-product--violet h1 {
    max-width: 14ch;
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-product-shot img,
  .hero-product--violet .hero-product-shot img {
    border-radius: 12px;
  }

  .story-break__content {
    padding: clamp(56px, 12vw, 88px) 0 clamp(44px, 10vw, 72px);
  }

  .story-break__content h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .story-break__quote {
    padding: 20px;
    text-align: center;
  }

  .story-break--align-left .story-break__content,
  .story-break--align-right .story-break__content {
    margin-inline: auto;
    text-align: center;
  }

  .story-break__bullets {
    text-align: center;
  }

  .story-break__bullets li {
    padding-left: 0;
  }

  .story-break__bullets li::before {
    display: none;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero h1 {
    max-width: 11.5ch;
  }

  .intro-grid,
  .split-grid,
  .closing-grid,
  .social-proof-grid,
  .aurapro-grid,
  .proof-grid,
  .aurapro-benefits,
  .product-specs__grid,
  .hero-pillars__grid,
  .story-break__steps,
  .mode-grid,
  .integration-modes__grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .proof-grid div {
    min-height: 0;
  }

  .section,
  .closing {
    padding: 78px 0 110px;
  }

  .price-card.featured,
  .ia-compare__item--focus {
    transform: none;
  }

  .ia-compare__item--focus:hover {
    transform: none;
  }

  .trust-strip {
    margin-top: -50px;
    padding-top: 0;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta-shell {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}

@media (min-width: 921px) {
  .sticky-cta {
    display: none !important;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 14px;
  }

  .hero:not(.hero-product) {
    min-height: calc(100svh - 28px);
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 100px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 14, 20, 0.9) 0%, rgba(10, 14, 20, 0.72) 54%, rgba(10, 14, 20, 0.34) 100%),
      linear-gradient(180deg, rgba(10, 14, 20, 0.36) 0%, rgba(10, 14, 20, 0.12) 38%, rgba(10, 14, 20, 0.78) 100%);
  }

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

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
  }

  .hero-lead {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .aurapro-benefits div {
    min-height: 0;
  }

  .aurapro-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aurapro-actions .btn {
    width: 100%;
  }

  .aurapro-section {
    padding: 78px 0 92px;
  }

  .aurapro-copy {
    text-align: left;
  }

  .aurapro-copy h2,
  .aurapro-lead {
    margin-inline: 0;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-tagline {
    font-size: 1rem;
  }
}

/* ── Feature band ── */
.feature-band {
  padding: 88px 0 96px;
}

.feature-band .section-heading,
.testimonials-band .section-heading {
  margin-inline: auto;
  text-align: center;
}

.feature-band__lead {
  max-width: 42rem;
  margin: 14px auto 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.65;
}

.feature-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 32px 0 40px;
}

.feature-rail__link {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.feature-rail__link:hover {
  border-color: rgba(62, 127, 147, 0.35);
  background: #fff;
}

.feature-stack {
  display: grid;
  gap: 24px;
}

.feature-duo {
  display: grid;
  gap: 24px;
}

.feature-card {
  display: grid;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

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

.feature-card__copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.feature-card__copy p,
.feature-card__copy li {
  color: var(--muted);
  line-height: 1.6;
}

.feature-card__copy ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.feature-card__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.feature-card__kicker--violet {
  color: #6b4fd1;
}

.feature-card__meta {
  margin: 14px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.feature-card__media {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.feature-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-band__cta {
  margin-top: 36px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 920px) {
  .feature-card--hero {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    padding: 32px;
  }
  .feature-duo {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card:not(.feature-card--hero) {
    grid-template-rows: auto 1fr;
  }
}


.features-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 1.4em 0 1.8em;
}

.features-pillar {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.features-pillar .features-card-icon {
  margin-bottom: 12px;
}

.features-pillar h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.features-pillar p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(16, 20, 28, 0.74);
}

.features-legend {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}

.features-legend--yes {
  background: rgba(62, 127, 147, 0.14);
  color: var(--cyan);
}

.features-legend--soon {
  background: rgba(16, 20, 28, 0.06);
  color: var(--muted);
}

@media (max-width: 720px) {
  .features-pillars {
    grid-template-columns: 1fr;
  }
}

.features-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 1.4em 0 0;
}

.features-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.features-card-icon--cyan {
  background: linear-gradient(145deg, rgba(62, 127, 147, 0.16), rgba(62, 127, 147, 0.05));
  color: #2d6574;
  border: 1px solid rgba(62, 127, 147, 0.16);
  box-shadow: 0 6px 18px rgba(62, 127, 147, 0.08);
}

.features-card-icon--violet {
  background: linear-gradient(145deg, rgba(107, 79, 209, 0.14), rgba(107, 79, 209, 0.04));
  color: #5b43b8;
  border: 1px solid rgba(107, 79, 209, 0.16);
  box-shadow: 0 6px 18px rgba(107, 79, 209, 0.08);
}

.features-card-icon--amber {
  background: linear-gradient(145deg, rgba(196, 128, 42, 0.14), rgba(196, 128, 42, 0.04));
  color: #9a6318;
  border: 1px solid rgba(196, 128, 42, 0.16);
  box-shadow: 0 6px 18px rgba(196, 128, 42, 0.08);
}

.features-card-icon--slate {
  background: linear-gradient(145deg, rgba(24, 32, 42, 0.08), rgba(24, 32, 42, 0.02));
  color: rgba(16, 20, 28, 0.72);
  border: 1px solid rgba(16, 20, 28, 0.08);
}

.features-highlight {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 22px;
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.features-highlights--ia .features-highlight {
  border-color: rgba(107, 79, 209, 0.12);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(107, 79, 209, 0.05), transparent 55%),
    rgba(255, 255, 255, 0.78);
}

.features-highlight .features-card-icon {
  margin-bottom: 14px;
}

.features-highlight h3 {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.features-highlight p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(16, 20, 28, 0.74);
}

.features-sectors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 1.4em 0 0;
}

.features-sector-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(62, 127, 147, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(62, 127, 147, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.82);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.features-sector-card:hover {
  border-color: rgba(62, 127, 147, 0.32);
  box-shadow: 0 12px 36px rgba(24, 32, 42, 0.08);
}

.features-sector-card .features-card-icon {
  margin-bottom: 2px;
}

.features-sector-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.features-sector-card p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(16, 20, 28, 0.74);
}

.features-sector-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan);
}

@media (max-width: 720px) {
  .features-highlights,
  .features-sectors {
    grid-template-columns: 1fr;
  }
}

/* ── synced from Aura home: cinema+ia ── */
.cinema-strip {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(140, 100, 220, 0.1), transparent 50%),
    var(--void-deep);
  padding: clamp(8px, 1.5vw, 16px) 0;
}

.cinema-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: clamp(520px, 82svh, 760px);
  width: calc(100% - 1.5rem);
  margin: 12px auto;
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 70px rgba(14, 10, 42, 0.28);
}

.cinema-panel > picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.cinema-panel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.03);
  transition: transform 14s var(--ease-out);
  will-change: transform;
}

.cinema-panel.is-ken-burns .cinema-panel__image {
  transform: scale(1.07);
}

.cinema-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 6, 14, 0.86) 0%, rgba(8, 6, 14, 0.62) 36%, rgba(8, 6, 14, 0.28) 62%, rgba(8, 6, 14, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 6, 14, 0.18) 0%, rgba(8, 6, 14, 0.58) 100%);
}

.cinema-panel--alt::before {
  background:
    linear-gradient(90deg, rgba(8, 6, 14, 0.88) 0%, rgba(24, 32, 42, 0.62) 40%, rgba(8, 6, 14, 0.28) 68%, rgba(8, 6, 14, 0.12) 100%),
    radial-gradient(circle at 18% 24%, rgba(62, 127, 147, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(8, 6, 14, 0.18) 0%, rgba(8, 6, 14, 0.6) 100%);
}

.cinema-panel__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 45rem;
  padding: 0 24px 36px;
  color: white;
}

.cinema-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(226, 196, 143, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--promo-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.cinema-panel h2 {
  margin-top: 20px;
  max-width: 10.8ch;
  font-size: clamp(2.45rem, 8vw, 5.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: white;
}

.cinema-panel p {
  margin-top: 20px;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.cinema-panel__badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.cinema-panel__cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 22px;
  border: 1px solid rgba(226, 196, 143, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--promo-gold);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cinema-panel__cta:hover,
.cinema-panel__cta:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(240, 217, 168, 0.55);
}

@media (min-width: 640px) {
  .cinema-panel {
    width: calc(100% - 2rem);
  }

  .cinema-panel__content {
    padding: 0 40px 48px;
  }
}

.cinema-panel__image--center {
  object-position: center center;
}

.cinema-panel__image--left {
  object-position: center left;
}

@media (min-width: 1024px) {
  .cinema-strip {
    padding: 0;
  }

  .cinema-panel {
    min-height: 88vh;
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .cinema-panel + .cinema-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cinema-panel__content {
    padding: 0 64px 64px;
  }
}

.cinema-strip--showcase {
  padding: clamp(8px, 1.5vw, 16px) 0 0;
}

.cinema-strip--showcase .cinema-panel {
  align-items: flex-end;
  justify-content: flex-start;
  min-height: clamp(520px, 78svh, 820px);
}

/* Side copy: lighter left vignette so the photo stays visible */
.cinema-strip--showcase .cinema-panel::before {
  background:
    linear-gradient(90deg, rgba(8, 6, 14, 0.78) 0%, rgba(8, 6, 14, 0.46) 34%, rgba(8, 6, 14, 0.1) 58%, transparent 74%),
    linear-gradient(180deg, rgba(8, 6, 14, 0.14) 0%, transparent 38%, rgba(8, 6, 14, 0.42) 100%);
}

.cinema-strip--showcase .cinema-panel--alt::before {
  background:
    linear-gradient(90deg, rgba(8, 6, 14, 0.8) 0%, rgba(24, 32, 42, 0.44) 36%, rgba(8, 6, 14, 0.08) 60%, transparent 76%),
    radial-gradient(circle at 20% 26%, rgba(62, 127, 147, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(8, 6, 14, 0.12) 0%, transparent 40%, rgba(8, 6, 14, 0.46) 100%);
}

.cinema-strip--showcase .cinema-panel__content {
  display: block;
  max-width: 45rem;
  margin-inline: 0;
  padding: 0 24px 36px;
  text-align: left;
}

.cinema-strip--showcase .cinema-panel h2 {
  max-width: 10.8ch;
  margin-inline: 0;
}

.cinema-strip--showcase .cinema-panel p {
  margin-inline: 0;
}

@media (min-width: 640px) {
  .cinema-strip--showcase .cinema-panel__content {
    padding: 0 40px 48px;
  }
}

@media (min-width: 1024px) {
  .cinema-strip--showcase .cinema-panel {
    min-height: clamp(640px, 86svh, 920px);
  }

  .cinema-strip--showcase .cinema-panel__content {
    padding: 0 64px 64px;
  }
}

.cinema-strip--single {
  padding: clamp(8px, 1.5vw, 16px) 0 clamp(24px, 4vw, 40px);
}

.cinema-strip--single .cinema-panel {
  min-height: clamp(520px, 78svh, 820px);
}

@media (min-width: 1024px) {
  .cinema-strip--single .cinema-panel {
    min-height: clamp(640px, 86svh, 920px);
  }
}

.section-features {
  padding-bottom: 72px;
}

.feature-cards {
  margin-top: 28px;
}

.section-cta {
  margin-top: 36px;
  text-align: center;
}

.ia-zone {
  position: relative;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(195, 154, 88, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 100%, rgba(62, 127, 147, 0.08), transparent 50%),
    linear-gradient(180deg, var(--void-deep) 0%, var(--graphite) 42%, var(--graphite-soft) 100%);
  color: var(--text-on-dark);
}

/* ── Zone chapter + Compare = one continuous dark surface ──
   (avoid replaying surface-dark-band on each block — that double gold glow was the seam) */
.zone-chapter {
  padding: clamp(40px, 6vw, 64px) 0 clamp(12px, 2vw, 20px);
  background: transparent;
  color: var(--text-on-dark);
  text-align: center;
}

/* Chapter = manifesto (large, editorial) */
.zone-chapter__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(226, 196, 143, 0.32);
  border-radius: 999px;
  background: rgba(226, 196, 143, 0.1);
  color: var(--promo-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.zone-chapter__shell h2 {
  max-width: 12ch;
  margin: 18px auto 0;
  color: var(--text-on-dark);
  font-size: clamp(2.45rem, 5.8vw, 4.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.zone-chapter__lead {
  max-width: 40rem;
  margin: 20px auto 0;
  color: var(--text-on-dark-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  text-wrap: pretty;
}

/* Visual bridge image between chapter intro and compare */
.story-break--bridge {
  min-height: clamp(340px, 52vh, 520px);
}

.story-break--bridge.story-break--compact {
  min-height: clamp(320px, 48vh, 480px);
}

.story-break__overlay--bridge {
  background:
    linear-gradient(180deg, rgba(24, 32, 42, 0.72) 0%, rgba(24, 32, 42, 0.42) 38%, rgba(24, 32, 42, 0.78) 100%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(140, 100, 220, 0.14), transparent 58%);
}

.story-break--bridge .story-break__content {
  padding: clamp(48px, 8vw, 72px) 0 clamp(40px, 7vw, 64px);
}

.story-break--bridge .story-break__content h2 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  max-width: 14ch;
  margin-inline: auto;
}

.story-break--bridge .story-break__lead {
  max-width: 36ch;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

/* ── IA compare encart ── */
.ia-compare {
  /* Continuous with ia-zone — no second gold slab at chapter handoff */
  padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 6vw, 72px);
  background: transparent;
  color: var(--text-on-dark);
}

.section-band.ia-compare {
  background: transparent;
  color: var(--text-on-dark);
  padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 6vw, 72px);
}

.ia-compare__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.ia-compare__item {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  text-align: left;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.ia-compare__item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

/* Featured focus card — same language as price-card.featured */
.ia-compare__item--focus {
  color: white;
  border-color: rgba(220, 196, 248, 0.42);
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(220, 196, 248, 0.12), transparent 55%),
    linear-gradient(180deg, #2a3140 0%, #171c28 55%, #14101f 100%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  transform: scale(1.02);
}

.ia-compare__item--focus:hover {
  border-color: rgba(220, 196, 248, 0.55);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.36);
  transform: scale(1.02) translateY(-2px);
}

.ia-compare__label {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ia-compare__item--focus .ia-compare__label {
  color: var(--promo-lavender);
}

.ia-compare__item h3 {
  margin-top: 10px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.ia-compare__item--focus h3 {
  color: white;
}

.ia-compare__item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ia-compare__item--focus p {
  color: rgba(255, 255, 255, 0.86);
}

.ia-compare__meta {
  display: block;
  margin-top: 12px;
  color: rgba(16, 20, 28, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.ia-compare__item--focus .ia-compare__meta {
  color: rgba(255, 255, 255, 0.78);
}

/* Compare = subordinate tool heading (quieter, tighter — not a second chapter) */
.ia-compare .section-heading {
  margin-inline: auto;
  margin-bottom: clamp(22px, 3vw, 30px);
  text-align: center;
}

.ia-compare .section-kicker {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(226, 196, 143, 0.78);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.95;
}

.ia-compare .section-heading h2 {
  max-width: 22ch;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.28rem, 2.4vw, 1.72rem);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.ia-compare__lead {
  max-width: 34rem;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 920px) {
  /* After base .ia-compare__grid — cascade order requires override here */
  .ia-compare__grid {
    grid-template-columns: 1fr;
  }

  .ia-compare .section-heading h2 {
    max-width: none;
  }
}

/* ── IA roles: stacked profile rows (not 3 equal cards) ── */
.ia-roles-band {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface-dark-band);
  color: white;
}

.section-band.ia-roles-band {
  background: var(--surface-dark-band);
  color: white;
  padding: clamp(56px, 8vw, 96px) 0;
}

.ia-roles-band h2 {
  color: white;
}

.roles-intro {
  max-width: 40rem;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}

.roles-intro .section-kicker {
  margin: 0;
}

.roles-intro h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.ia-roles-band__lead {
  max-width: 38rem;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: center;
}

.roles-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}

.role-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  padding: clamp(18px, 2.5vw, 24px) clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease;
}

.role-row:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.role-row--featured {
  border-color: rgba(226, 196, 143, 0.32);
  background:
    radial-gradient(ellipse 80% 90% at 0% 50%, rgba(226, 196, 143, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.06);
}

.role-row--featured:hover {
  border-color: rgba(226, 196, 143, 0.48);
}

.role-row__index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(226, 196, 143, 0.4);
  color: var(--promo-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(24, 32, 42, 0.55);
}

.role-row__main {
  min-width: 0;
}

.role-row__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--promo-lavender);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.role-row__badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(226, 196, 143, 0.4);
  background: rgba(245, 223, 172, 0.14);
  color: var(--promo-gold);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-row__main h3 {
  margin: 8px 0 0;
  color: white;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.role-row__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.role-row__chips li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
}

.role-row__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.role-row__cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.role-row__cta--featured {
  border-color: rgba(245, 223, 172, 0.5);
  background: #f5dfac;
  color: #16130d;
}

.role-row__cta--featured:hover {
  background: #f8e6b8;
  border-color: #f8e6b8;
  color: #16130d;
}

@media (max-width: 720px) {
  .role-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px 16px;
  }

  .role-row__cta {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* ── IA method: split intro + vertical timeline (no cards) ── */
.ia-method-band {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--surface-dark-band);
  color: white;
}

.section-band.ia-method-band {
  background: var(--surface-dark-band);
  color: white;
  padding: clamp(56px, 8vw, 96px) 0;
}

.ia-method-band h2 {
  color: white;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.method-layout__intro {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  max-width: 34rem;
}

.method-layout__intro .section-kicker {
  margin: 0;
}

.method-layout__intro h2 {
  margin-top: 14px;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.ia-method-band__lead {
  max-width: 34rem;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

.method-layout__cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(226, 196, 143, 0.42);
  background: #f5dfac;
  color: #16130d;
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.method-layout__cta:hover {
  background: #f8e6b8;
  border-color: #f8e6b8;
  transform: translateY(-1px);
}

.method-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.method-timeline__step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.method-timeline__rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 2px;
}

.method-timeline__rail::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: -4px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(226, 196, 143, 0.55), rgba(255, 255, 255, 0.12));
}

.method-timeline__step:last-child .method-timeline__rail::before {
  display: none;
}

.method-timeline__dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(226, 196, 143, 0.45);
  background:
    radial-gradient(circle at 30% 25%, rgba(245, 223, 172, 0.28), transparent 60%),
    rgba(24, 32, 42, 0.92);
  color: var(--promo-gold);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(24, 32, 42, 0.55);
}

.method-timeline__body {
  padding: 0 0 clamp(28px, 4vw, 40px);
  min-width: 0;
}

.method-timeline__step:last-child .method-timeline__body {
  padding-bottom: 0;
}

.method-timeline__phase {
  margin: 6px 0 0;
  color: rgba(226, 196, 143, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-timeline__body h3 {
  margin: 8px 0 0;
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.method-timeline__body p {
  margin: 10px 0 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.method-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  margin-top: clamp(40px, 6vw, 56px);
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(226, 196, 143, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.04);
}

.method-proof__quote {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
}

.method-proof__quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-style: italic;
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.method-proof__quote footer {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.method-proof__quote strong {
  color: white;
  font-size: 0.92rem;
  font-style: normal;
}

.method-proof__quote span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-style: normal;
}

.method-proof__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 4px 0 4px clamp(0px, 2vw, 12px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.method-proof__label {
  margin: 0;
  color: rgba(226, 196, 143, 0.8);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-proof__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-proof__pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 650;
}

@media (max-width: 920px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-layout__intro {
    position: static;
    text-align: center;
  }

  .faq-layout__intro h2 {
    max-width: 16ch;
    margin-inline: auto;
  }

  .faq-layout__lead {
    margin-inline: auto;
  }

  .faq-cta--intro {
    text-align: center;
  }

  .method-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .method-layout__intro {
    position: static;
    max-width: none;
    text-align: center;
  }

  .method-layout__intro h2 {
    max-width: 16ch;
    margin-inline: auto;
  }

  .ia-method-band__lead {
    margin-inline: auto;
    text-align: center;
  }

  .method-layout__cta {
    margin-inline: auto;
  }

  .method-timeline__body p {
    max-width: none;
  }

  .method-proof {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .method-proof__meta {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    align-items: center;
  }

  .method-proof__pills {
    justify-content: center;
  }
}

.mobile-nav-more {
  margin: 8px 0 0;
  padding: 12px 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}


/* ── synced from Aura home: pricing-free ── */
.pricing-free-row {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-free-row picture {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: block;
}

.pricing-free-row__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.pricing-free-row__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.pricing-free-row__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.pricing-free-row__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
}

.pricing-free-row__price {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.pricing-free-row__detail {
  margin: 4px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-free-row__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #5eb8d4;
  color: #0b1218;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s var(--ease-out);
}

.pricing-free-row__cta:hover {
  background: #72c6de;
  color: #0b1218;
}

.pricing-trust-meta {
  max-width: 42rem;
  margin: 0 auto clamp(18px, 3vw, 26px);
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .pricing-free-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 10px 14px;
    align-items: start;
    padding: 16px;
  }

  .pricing-free-row picture {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .pricing-free-row__copy {
    grid-column: 2;
    min-width: 0;
  }

  .pricing-free-row__head {
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  .pricing-free-row__detail {
    font-size: 0.8rem;
  }

  .pricing-free-row__cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 40px;
  }
}

.pricing-paid-kicker {
  max-width: 720px;
  margin: 22px auto 16px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/* ── synced from Aura home: brand+trust ── */

/* ── AuraPro brand logo in header/footer ── */
.brand--aurapro {
  gap: 12px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(24, 32, 42, 0.12);
}

.brand-copy--single strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

/* ── Trust band ── */
.trust-band {
  padding: clamp(48px, 6vw, 64px) 0 clamp(56px, 7vw, 72px);
  background: linear-gradient(180deg, var(--graphite) 0%, var(--soft) 34%, var(--soft) 100%);
  border-block: 0;
  border-bottom: 1px solid var(--line);
}

.trust-band__title {
  margin: 0 auto 28px;
  max-width: 36rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(16, 20, 28, 0.78);
}

.trust-band__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 12px;
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.trust-band__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 150px;
  width: 150px;
  margin: 0;
  padding: 0;
}

.trust-band__logos picture {
  display: block;
  width: 100%;
}

.trust-band__logos img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.78);
}

.trust-band__logo--wide {
  flex-basis: 150px;
}

.trust-band__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.trust-band__badges li {
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .trust-band__logos {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .trust-band__logos li,
  .trust-band__logo--wide {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 104px;
  }
}

@media (max-width: 767px) {
  .trust-band__logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }

  .trust-band__logos li {
    width: auto;
    flex: none;
  }

  .trust-band__logo--wide {
    display: none;
  }
}

/* ── Feature band ── */
.feature-band {
  padding: 88px 0 96px;
}


/* ── synced from Aura home: testimonials-band-new ── */
.testimonials-band {
  padding: 88px 0 96px;
  background: var(--soft);
  color: var(--ink);
}

.hero-violet-zone--pillars-bridge + .testimonials-band {
  padding-top: clamp(56px, 8vw, 88px);
  background: linear-gradient(
    180deg,
    var(--graphite-soft) 0%,
    var(--soft) clamp(72px, 12vw, 120px),
    var(--soft) 100%
  );
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.testimonial-card {
  margin: 0;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(24, 32, 42, 0.08);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    border-color 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 20, 28, 0.14);
  box-shadow: 0 24px 58px rgba(24, 32, 42, 0.11);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.testimonial-card figcaption img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card figcaption strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-card figcaption span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (min-width: 920px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── synced: price-card body/footer ── */
#pricing-grid .price-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

#pricing-grid .price-card__footer {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 28px;
}

#pricing-grid .price-card__footer .btn-plan {
  margin-top: 0;
}

#pricing-grid .price-card.featured,
#pricing-grid .price-card.featured:hover,
#pricing-grid .price-card:hover {
  transform: none;
}

#pricing-grid .price-card:hover {
  border-color: rgba(16, 20, 28, 0.18);
  box-shadow: none;
}

#pricing-grid .price-card.featured:hover {
  border-color: rgba(245, 223, 172, 0.46);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

#pricing-grid .btn,
#pricing-grid .btn-plan {
  transition: border-color 0.2s ease, background 0.2s ease;
}

#pricing-grid .btn:hover,
#pricing-grid .btn-plan:hover {
  transform: none;
}

.price-card {
  padding: 34px;
  color: var(--ink);
  background: var(--paper);
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 223, 172, 0.5);
  background: #f5dfac;
  color: #16130d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card.featured {
  color: white;
  border-color: rgba(245, 223, 172, 0.46);
  background: linear-gradient(180deg, #2f3a48 0%, #171f29 100%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

#pricing-grid .price-card.featured {
  transform: none;
}

.price-card.featured li,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.86);
}

.plan {
  color: var(--cyan);
}

/* ── Site search (synced from Aura) ── */
.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: 0.78;
  transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nav-search:hover,
.nav-search:focus-visible {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.site-header.is-scrolled .nav-search,
.site-header--light-hero:not(.is-scrolled) .nav-search {
  color: var(--ink);
}

.site-header.is-scrolled .nav-search:hover,
.site-header.is-scrolled .nav-search:focus-visible,
.site-header--light-hero:not(.is-scrolled) .nav-search:hover,
.site-header--light-hero:not(.is-scrolled) .nav-search:focus-visible {
  border-color: rgba(16, 20, 28, 0.12);
  background: rgba(16, 20, 28, 0.05);
}

.site-header--dark-hero:not(.is-scrolled) .nav-search,
.site-header.is-over-dark:not(.is-scrolled) .nav-search {
  color: rgba(255, 255, 255, 0.88);
}

.mobile-nav-search {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 20, 28, 0.1);
  border-radius: 12px;
  background: rgba(16, 20, 28, 0.04);
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-search:hover,
.mobile-nav-search:focus-visible {
  background: rgba(16, 20, 28, 0.07);
  outline: none;
}

body.site-search-open {
  overflow: hidden;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  padding: max(12vh, 72px) 16px 24px;
}

.site-search[hidden] {
  display: none !important;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, 0.55);
  backdrop-filter: blur(6px);
}

.site-search__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #161b24;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  color: white;
}

.site-search__bar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-search__icon {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.55);
}

.site-search__input {
  width: 100%;
  min-width: 0;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  outline: none;
}

.site-search__input::placeholder {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.site-search__kbd {
  display: none;
  min-width: 1.6em;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 720px) {
  .site-search__kbd {
    display: inline-block;
  }
}

.site-search__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.site-search__close:hover,
.site-search__close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  outline: none;
}

.site-search__hint {
  margin: 0;
  padding: 8px 16px 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
}

.site-search__results {
  list-style: none;
  margin: 0;
  padding: 6px 8px 10px;
  max-height: min(52vh, 420px);
  overflow: auto;
}

.site-search__item {
  border-radius: 12px;
}

.site-search__item.is-active,
.site-search__item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-search__link {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  color: inherit;
  text-decoration: none;
}

.site-search__title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-search__meta {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
  line-height: 1.35;
}

.site-search__empty {
  padding: 18px 12px 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  text-align: center;
}

/* ═══════════════════════════════════════════
   UX polish — perceived quality layer
   ═══════════════════════════════════════════ */

/* Scroll progress under header */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  height: 2px;
  width: 100%;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--amber), var(--cyan) 55%, #8fb4f0);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.scroll-progress.is-active {
  opacity: 1;
}

/* Sticky mobile CTA refinements */
.sticky-cta {
  box-shadow: 0 -12px 40px rgba(24, 32, 42, 0.1);
}

.sticky-cta p {
  letter-spacing: -0.01em;
}

.sticky-cta .btn {
  box-shadow: 0 10px 28px rgba(245, 223, 172, 0.28);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 27;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 20, 28, 0.12);
  border-radius: 999px;
  background: rgba(247, 243, 235, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.94);
  transition:
    opacity 0.28s var(--ease-out),
    transform 0.28s var(--ease-out),
    visibility 0.28s,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: white;
  border-color: rgba(16, 20, 28, 0.18);
  box-shadow: 0 14px 36px rgba(24, 32, 42, 0.12);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.back-to-top:active {
  transform: scale(0.96);
}

.back-to-top svg {
  display: block;
}

@media (max-width: 920px) {
  .back-to-top {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  body:has(.sticky-cta.is-visible) .back-to-top {
    bottom: calc(108px + env(safe-area-inset-bottom));
  }
}

/* Contact panel elevation */
.contact-panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 20, 28, 0.07);
  backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 28px 72px rgba(24, 32, 42, 0.11);
}

.contact-panel .btn {
  min-height: 50px;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--ease-out),
    box-shadow 0.2s ease;
}

.contact-panel .btn:hover {
  box-shadow: 0 16px 36px rgba(24, 32, 42, 0.18);
}

/* Price cards: stick CTAs to bottom */
.price-card {
  display: flex;
  flex-direction: column;
}

.price-card__body {
  flex: 1 1 auto;
}

.price-card__footer {
  margin-top: auto;
  padding-top: 8px;
}

.price-card .btn-plan {
  margin-top: 20px;
}

/* Section heading rhythm */
.section-heading.narrow > p:last-child,
.section-heading > p:not(.section-kicker) {
  max-width: 48ch;
}

.section-heading.narrow {
  margin-inline: auto;
}

/* Link polish in body copy */
.pricing-note a,
.faq-cta a,
.form-note a,
.footer-grid a {
  text-underline-offset: 3px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease, opacity 0.18s ease;
}

/* Hero actions: better gap on wrap */
.hero-actions {
  row-gap: 12px;
}

/* Nav CTA micro-lift */
.nav-cta:hover {
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav-cta:hover {
  box-shadow: 0 14px 32px rgba(16, 20, 28, 0.12);
}

/* Header shadow when scrolled */
.site-header.is-scrolled {
  box-shadow: 0 10px 36px rgba(24, 32, 42, 0.06);
}

/* Reduced motion overrides for new effects */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .back-to-top,
  .sticky-cta,
  .mobile-nav,
  .mobile-nav-panel,
  .faq-item p,
  .form-status,
  img {
    transition: none !important;
    animation: none !important;
  }

  .product-spec:hover,
  .sector-card:hover,
  .price-card:hover,
  .ia-compare__item:hover,
  .ia-compare__item--focus,
  .ia-compare__item--focus:hover,
  .ia-role-card:hover,
  .integration-mode:hover,
  .btn:hover,
  .btn:active,
  .nav-cta:hover,
  .nav-cta:active {
    transform: none;
  }

  body.ux-ready img[loading="lazy"]:not(.is-loaded) {
    opacity: 1;
  }
}



/* ═══════════════════════════════════════════
   Landing simplification — proof + offer pivot
   ═══════════════════════════════════════════ */

.proof-product {
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  background:
    radial-gradient(ellipse 80% 45% at 50% 0%, var(--glow-gold), transparent 55%),
    linear-gradient(180deg, var(--void-deep) 0%, var(--graphite-soft) 22%, var(--graphite) 100%);
  color: var(--text-on-dark);
}

.hero-violet-zone--pillars-bridge .hero-pillars--violet::before {
  opacity: 0.55;
}

.proof-product__intro {
  max-width: 40rem;
  margin: 0 auto clamp(36px, 5vw, 52px);
  text-align: center;
}

.proof-product__intro .section-kicker {
  color: var(--promo-gold);
}

.proof-product__intro h2 {
  margin-top: 12px;
  color: var(--text-on-dark);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.proof-product__lead {
  margin: 14px auto 0;
  max-width: 42ch;
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.proof-product__split {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.proof-product__visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.proof-product__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  max-height: 520px;
  object-position: center 20%;
}

.proof-product__points {
  display: grid;
  gap: 14px;
}

.proof-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.proof-point__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(125, 168, 255, 0.12);
  color: #b4cffd;
}

.proof-point__icon svg {
  display: block;
  flex-shrink: 0;
}

.proof-point__copy {
  min-width: 0;
}

.proof-point strong {
  display: block;
  color: var(--text-on-dark);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.proof-point__copy span {
  display: block;
  margin-top: 6px;
  color: var(--text-on-dark-subtle);
  font-size: 0.92rem;
  line-height: 1.55;
}

.proof-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.proof-product__secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.proof-product__secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.proof-product__rail {
  margin-top: clamp(28px, 4vw, 40px);
  justify-content: center;
}

.proof-product .feature-rail__link {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark-muted);
}

.proof-product .feature-rail__link:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-on-dark);
}

/* Offer pivot — dark bridge between tarifs and zone IA */
.offer-pivot {
  padding: clamp(48px, 7vw, 80px) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(140, 100, 220, 0.14), transparent 55%),
    linear-gradient(180deg, var(--graphite-soft) 0%, var(--graphite) 55%, var(--void-deep) 100%);
  color: var(--text-on-dark);
}

.offer-pivot__shell {
  text-align: center;
}

.offer-pivot .section-kicker {
  color: var(--promo-gold);
}

.offer-pivot h2 {
  max-width: 20ch;
  margin: 12px auto 0;
  color: var(--text-on-dark);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.offer-pivot__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
  max-width: 880px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: left;
}

.offer-pivot__card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  color: var(--text-on-dark);
}

.offer-pivot__card--ia {
  border-color: rgba(220, 196, 248, 0.28);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(140, 100, 220, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.06);
}

.offer-pivot__label {
  margin: 0;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-pivot__card--ia .offer-pivot__label {
  color: var(--promo-lavender);
}

.offer-pivot__card h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
}

.offer-pivot__card p {
  margin: 0 0 8px;
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.offer-pivot__card .btn {
  justify-self: start;
  margin-top: 4px;
}

.offer-pivot__btn-ia {
  border-color: rgba(220, 196, 248, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}

.offer-pivot__btn-ia:hover {
  border-color: rgba(220, 196, 248, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

@media (max-width: 920px) {
  .proof-product__split {
    grid-template-columns: 1fr;
  }

  .proof-product__visual {
    max-width: 360px;
    margin-inline: auto;
  }

  .proof-product__visual img {
    max-height: 420px;
  }

  .proof-product__actions {
    justify-content: center;
  }

  .offer-pivot__grid {
    grid-template-columns: 1fr;
  }

  .offer-pivot__card .btn {
    width: 100%;
    justify-self: stretch;
  }
}

/* IA teaser — end of dark IA band before FAQ light pocket */
.ia-teaser {
  padding: clamp(40px, 6vw, 64px) 0 clamp(56px, 8vw, 88px);
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 10, 26, 0.35) 100%);
  color: var(--text-on-dark);
  text-align: center;
}

.ia-zone .ia-teaser.section-band,
.section-band.ia-teaser {
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 10, 26, 0.35) 100%);
  color: var(--text-on-dark);
  padding: clamp(40px, 6vw, 64px) 0 clamp(56px, 8vw, 88px);
}

.ia-teaser .section-kicker {
  color: var(--promo-gold);
}

.ia-teaser h2 {
  max-width: 18ch;
  margin: 12px auto 0;
  color: var(--text-on-dark);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.ia-teaser__lead {
  max-width: 40rem;
  margin: 14px auto 0;
  color: var(--text-on-dark-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.ia-teaser__cta {
  margin-top: 22px;
  border-color: rgba(220, 196, 248, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}

.ia-teaser__cta:hover {
  border-color: rgba(220, 196, 248, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

/* Secondary IA zone — after contact on /home */
.ia-zone--secondary {
  background: linear-gradient(180deg, var(--soft) 0%, var(--paper) 50%, var(--soft) 100%);
  color: var(--ink);
}

.ia-zone--secondary .section-kicker {
  color: var(--sage);
}

.ia-zone--secondary .offer-pivot {
  padding: clamp(36px, 5vw, 56px) 0;
  background: transparent;
  color: var(--ink);
}

.ia-zone--secondary .offer-pivot .section-kicker {
  color: var(--sage);
}

.ia-zone--secondary .offer-pivot h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.ia-zone--secondary .offer-pivot__card {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(24, 32, 42, 0.06);
  color: var(--ink);
}

.ia-zone--secondary .offer-pivot__card h3 {
  color: var(--ink);
}

.ia-zone--secondary .offer-pivot__card > p:not(.offer-pivot__label) {
  color: rgba(16, 20, 28, 0.76);
}

.ia-zone--secondary .offer-pivot__label {
  color: var(--sage);
}

.ia-zone--secondary .offer-pivot__card--ia .offer-pivot__label {
  color: #4a3860;
}

.ia-zone--secondary .offer-pivot__btn-ia {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.ia-zone--secondary .offer-pivot__btn-ia:hover {
  border-color: rgba(16, 20, 28, 0.18);
  background: var(--soft);
  color: var(--ink);
}

.ia-zone--secondary .ia-compare.section-band,
.ia-zone--secondary .ia-teaser.section-band {
  background: transparent;
  color: var(--ink);
}

.ia-zone--secondary .ia-compare .section-kicker {
  color: var(--sage);
  opacity: 1;
}

.ia-zone--secondary .ia-compare .section-heading h2,
.ia-zone--secondary .ia-teaser h2 {
  color: var(--ink);
}

.ia-zone--secondary .ia-compare__lead,
.ia-zone--secondary .ia-teaser__lead {
  color: var(--muted);
}

.ia-zone--secondary .ia-compare__item {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  color: var(--ink);
}

.ia-zone--secondary .ia-compare__item:hover {
  border-color: rgba(16, 20, 28, 0.16);
  box-shadow: 0 16px 40px rgba(24, 32, 42, 0.08);
}

.ia-zone--secondary .ia-compare__item h3 {
  color: var(--ink);
}

.ia-zone--secondary .ia-compare__label {
  color: var(--sage);
}

.ia-zone--secondary .ia-compare__item > p:not(.ia-compare__label) {
  color: rgba(16, 20, 28, 0.76);
}

.ia-zone--secondary .ia-compare__meta {
  color: rgba(16, 20, 28, 0.62);
}

.ia-zone--secondary .ia-compare__item--focus {
  color: var(--ink);
  border-color: rgba(140, 100, 220, 0.28);
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(140, 100, 220, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 56px rgba(24, 32, 42, 0.1);
}

.ia-zone--secondary .ia-compare__item--focus:hover {
  border-color: rgba(140, 100, 220, 0.4);
  box-shadow: 0 24px 64px rgba(24, 32, 42, 0.12);
}

.ia-zone--secondary .ia-compare__item--focus h3 {
  color: var(--ink);
}

.ia-zone--secondary .ia-compare__item--focus > p:not(.ia-compare__label) {
  color: rgba(16, 20, 28, 0.76);
}

.ia-zone--secondary .ia-compare__item--focus .ia-compare__meta {
  color: rgba(16, 20, 28, 0.62);
}

.ia-zone--secondary .ia-compare__item--focus .ia-compare__label {
  color: #4a3860;
}

.ia-zone--secondary .ia-teaser .section-kicker {
  color: var(--sage);
}

.ia-zone--secondary .ia-teaser__cta {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.ia-zone--secondary .ia-teaser__cta:hover {
  border-color: rgba(16, 20, 28, 0.18);
  background: var(--soft);
  color: var(--ink);
}

/* AuraPro bridge — secondary footer band on newexcellence */
.aurapro-bridge--secondary {
  padding: clamp(28px, 4vw, 40px) 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.aurapro-bridge--secondary .aurapro-bridge__shell {
  text-align: center;
}

.aurapro-bridge--secondary .section-kicker {
  color: var(--muted);
  font-size: 0.68rem;
}

.aurapro-bridge--secondary h2 {
  margin-top: 8px;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
}

.aurapro-bridge--secondary .aurapro-bridge__lead {
  max-width: 42ch;
  margin: 10px auto 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.aurapro-bridge--secondary .aurapro-bridge__cta {
  margin-top: 16px;
  font-size: 0.88rem;
}


/* ═══════════════════════════════════════════
   IA capabilities showcase (text + images)
   ═══════════════════════════════════════════ */

.ia-capabilities {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--surface-dark-band);
  color: white;
}

.ia-capabilities__intro {
  max-width: 42rem;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.ia-capabilities__intro .section-kicker {
  color: var(--promo-gold);
}

.ia-capabilities__intro h2 {
  margin-top: 12px;
  color: white;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.ia-capabilities__lead {
  margin: 16px auto 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ia-cap-stack {
  display: grid;
  gap: clamp(48px, 8vw, 88px);
}

.ia-cap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.ia-cap--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.ia-cap--reverse .ia-cap__media {
  order: 2;
}

.ia-cap--reverse .ia-cap__copy {
  order: 1;
}

.ia-cap__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  background: rgba(0, 0, 0, 0.25);
}

.ia-cap__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ia-cap__kicker {
  margin: 0;
  color: var(--promo-lavender);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ia-cap__copy h3 {
  margin: 10px 0 0;
  color: white;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-wrap: balance;
}

.ia-cap__text {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.7;
}

.ia-cap__list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ia-cap__list li {
  position: relative;
  padding: 12px 14px 12px 16px;
  border-left: 2px solid rgba(226, 196, 143, 0.45);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 10px 10px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  line-height: 1.55;
}

.ia-cap__list strong {
  color: white;
  font-weight: 700;
}

.ia-cap__wow {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(226, 196, 143, 0.28);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 80% 100% at 0% 50%, rgba(226, 196, 143, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.ia-cap-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: clamp(48px, 7vw, 72px);
  text-align: center;
}

.ia-cap-cta p {
  margin: 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.55;
}

@media (max-width: 920px) {
  .ia-cap,
  .ia-cap--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ia-cap--reverse .ia-cap__media,
  .ia-cap--reverse .ia-cap__copy {
    order: initial;
  }
}



/* ═══════════════════════════════════════════
   features-landing — visual bridge to home
   ═══════════════════════════════════════════ */

.features-landing {
  background: var(--paper);
  color: var(--ink);
}

.features-landing .site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(247, 243, 235, 0.94);
}

.features-landing .site-header.is-scrolled .brand-copy strong,
.features-landing .site-header.is-scrolled .nav-links a,
.features-landing .site-header.is-scrolled .nav-links a[aria-current="page"] {
  color: var(--ink);
}

.features-landing .site-header.is-scrolled .brand-copy small {
  color: var(--muted);
}

.features-landing .site-header.is-scrolled .nav-links a[aria-current="page"] {
  font-weight: 760;
}

/* Full-bleed dark hero (landing language) */
.features-hero-zone {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(ellipse 72% 48% at 50% -8%, rgba(140, 100, 220, 0.28), transparent 58%),
    radial-gradient(ellipse 80% 50% at 50% 100%, var(--glow-cyan), transparent 52%),
    linear-gradient(180deg, var(--void) 0%, #1a1230 48%, var(--void-deep) 100%);
  padding: calc(var(--header-height) + 36px) 0 clamp(48px, 7vw, 72px);
}

.features-hero {
  max-width: min(820px, var(--page-max));
  margin-inline: auto;
  text-align: left;
}

.features-hero__crumb ol {
  color: rgba(255, 255, 255, 0.7);
}

.features-hero__crumb a {
  color: rgba(255, 255, 255, 0.82);
}

.features-hero__crumb li + li::before {
  color: rgba(255, 255, 255, 0.35);
}

.features-hero__kicker {
  color: var(--promo-lavender);
  margin: 0;
}

.features-hero h1 {
  margin: 14px 0 0;
  max-width: 16ch;
  color: white;
  font-size: clamp(2.2rem, 5.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.features-hero__deck {
  margin: 18px 0 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.features-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.features-hero__btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.features-hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.48);
  color: white;
}

.features-hero__meta {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
}

.features-hero__cover {
  margin: 28px 0 0;
  max-width: min(920px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.2);
}

.features-hero__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.features-hero__cover figcaption {
  padding: 12px 16px;
  background: rgba(15, 10, 26, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.features-landing .closing {
  width: 100%;
  max-width: none;
}

/* Body content under hero */
.features-landing .sector-article {
  padding-top: clamp(40px, 6vw, 56px);
  padding-bottom: clamp(56px, 8vw, 88px);
}

.features-landing .sector-article__content h2 {
  margin-top: 2.2em;
  padding-top: 0.4em;
  border-top: 1px solid rgba(16, 20, 28, 0.08);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  letter-spacing: -0.035em;
  color: var(--ink);
}

.features-landing .sector-article__content h2:first-of-type {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.features-landing .sector-article__content > section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.features-landing .unity-promise {
  border-left-color: var(--cyan);
  background:
    radial-gradient(ellipse 80% 80% at 0% 0%, rgba(62, 127, 147, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.72);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.features-landing .article-cta {
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3vw, 28px);
}

.features-landing .article-cta--dark {
  border-color: rgba(226, 196, 143, 0.28);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(226, 196, 143, 0.12), transparent 55%),
    linear-gradient(180deg, #2a3140 0%, var(--graphite) 100%);
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.features-landing .article-cta--dark h3 {
  color: white;
}

.features-landing .article-cta--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.features-landing .einvoicing-compliance-label--article {
  margin: 1.75em 0;
}

.features-landing .einvoicing-compliance-label--article .einvoicing-compliance-label__panel {
  border-color: rgba(226, 196, 143, 0.28);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(226, 196, 143, 0.12), transparent 55%),
    linear-gradient(180deg, #2a3140 0%, var(--graphite) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.features-landing .sector-article__content .einvoicing-compliance-label--article .einvoicing-compliance-label__caption {
  color: #fff;
}

.features-landing .sector-article__content .einvoicing-compliance-label--article .einvoicing-compliance-label__caption strong {
  color: #fff;
}

.features-landing .sector-article__content .einvoicing-compliance-label--article .einvoicing-compliance-label__bridge-label {
  color: rgba(255, 255, 255, 0.72);
}

.features-landing .article-figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(16, 20, 28, 0.08);
  box-shadow: 0 16px 40px rgba(24, 32, 42, 0.1);
  background: white;
}

.features-landing .article-figure figcaption {
  padding: 12px 16px;
  background: rgba(247, 243, 235, 0.9);
  color: var(--muted);
  font-size: 0.88rem;
}

.features-landing .features-highlight,
.features-landing .features-pillar {
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 18px 18px 16px;
  transition: border-color 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.features-landing .features-highlight:hover,
.features-landing .features-pillar:hover {
  border-color: rgba(16, 20, 28, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(24, 32, 42, 0.1);
}

.features-landing .features-highlights {
  gap: 14px;
}

.features-landing .article-callout {
  border-radius: var(--radius-md);
  border-color: rgba(62, 127, 147, 0.22);
  background: rgba(62, 127, 147, 0.08);
}

.features-landing .aside-card {
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 18px 18px 16px;
}

.features-landing .aside-card h3 {
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.features-landing .aside-toc {
  background:
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(140, 100, 220, 0.08), transparent 55%),
    white;
  border-color: rgba(140, 100, 220, 0.16);
}

.features-landing .aside-toc a {
  color: rgba(16, 20, 28, 0.78);
}

.features-landing .aside-toc a:hover {
  color: var(--cyan);
}

.features-landing .closing {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(195, 154, 88, 0.08), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, #fbfaf6 55%, var(--soft) 100%);
}

.efacture-compare {
  margin: 2rem 0 0.5rem;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(62, 127, 147, 0.08), transparent 55%),
    white;
  box-shadow: var(--shadow-sm);
}

.features-landing .efacture-compare h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.efacture-compare__lead {
  margin: 0.75rem 0 1.25rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
}

.efacture-compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(16, 20, 28, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(247, 243, 235, 0.45);
}

.efacture-compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.55;
}

.efacture-compare__table th,
.efacture-compare__table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(16, 20, 28, 0.08);
}

.efacture-compare__table thead th {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
}

.efacture-compare__table thead th.is-aurapro {
  color: #1f5f72;
  background: rgba(62, 127, 147, 0.12);
}

.efacture-compare__table tbody th[scope="row"] {
  width: 22%;
  min-width: 9.5rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.efacture-compare__table tbody td:first-of-type {
  color: rgba(16, 20, 28, 0.72);
  background: rgba(255, 255, 255, 0.35);
}

.efacture-compare__table tbody td.is-aurapro {
  color: var(--ink);
  background: rgba(62, 127, 147, 0.08);
  border-left: 2px solid rgba(62, 127, 147, 0.28);
}

.efacture-compare__table tbody tr:last-child th,
.efacture-compare__table tbody tr:last-child td {
  border-bottom: 0;
}

.efacture-compare__note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 720px) {
  .efacture-compare__table {
    min-width: 560px;
  }

  .efacture-compare__table th,
  .efacture-compare__table td {
    padding: 12px 14px;
  }
}

@media (max-width: 920px) {
  .features-hero h1 {
    max-width: none;
  }

  .features-hero__actions .btn {
    width: 100%;
  }
}

