:root {
  --bg: #f4f5f7;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --text: #141820;
  --text-muted: #5a6472;
  --border: #e2e6ec;
  --border-strong: #c8d0dc;
  /* Argenté : dégradé métal + relief blanc/noir */
  --silver-metal: linear-gradient(
    165deg,
    #8d9dab 0%,
    #6d7f92 22%,
    #7a8c9e 40%,
    #5a6d7e 55%,
    #6b7d90 72%,
    #7d8f9f 88%,
    #6a7c8e 100%
  );
  --accent-cyan: rgb(69, 161, 207);
  /* Turquoise : boutons */
  --turquoise-tint: rgba(69, 161, 207, 0.8);
  --silver-metal-tinted: linear-gradient(0deg, var(--turquoise-tint), var(--turquoise-tint)),
    var(--silver-metal);
  --silver-base: #8a9aaa;
  --silver-text: #5a6c7e;
  --silver-muted: #6a7a8a;
  --silver-chrome: #8a9aaa;
  --silver-chrome-hover: #7d8f9f;
  --silver-chrome-active: #6f818f;
  --silver-edge-dark: #4a5868;
  --silver-edge-light: #c5d2de;
  --silver-inset-light: rgba(255, 255, 255, 0.35);
  --silver-inset-dark: rgba(30, 40, 55, 0.25);
  --silver-shadow: rgba(30, 40, 55, 0.16);
  --accent-dim: rgba(110, 124, 140, 0.1);
  --accent-border: #b8c4d0;
  --shadow-sm: 0 1px 2px var(--silver-shadow);
  --shadow-md: 0 8px 24px rgba(60, 75, 95, 0.1);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --grain-opacity: 0.04;
  --header-h: 3.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

#offre,
#methode {
  scroll-margin-top: 2.5rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

body > * {
  position: relative;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-cyan);
  z-index: 101;
  pointer-events: none;
}

/* Surface argentée (boutons, pastilles) */
.silver-brushed-surface {
  background-color: var(--silver-chrome);
  background-image: var(--silver-metal-tinted);
}

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

.btn[aria-busy="true"] {
  opacity: 0.88;
  pointer-events: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(244, 245, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-mark {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

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

.nav a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.nav a:not(.btn):hover {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none !important;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-primary {
  color: #ffffff;
  background-color: var(--silver-chrome);
  background-image: var(--silver-metal-tinted);
  border: 1px solid var(--silver-edge-dark);
  border-top-color: var(--silver-edge-light);
  box-shadow: var(--shadow-sm), inset 0 1px 0 var(--silver-inset-light),
    inset 0 -1px 0 var(--silver-inset-dark);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background-color: var(--silver-chrome-hover);
  filter: brightness(1.04);
  box-shadow: 0 3px 12px var(--silver-shadow),
    inset 0 1px 0 var(--silver-inset-light),
    inset 0 -1px 0 var(--silver-inset-dark);
}

.btn-primary:active {
  background-color: var(--silver-chrome-active);
  filter: brightness(0.96);
  transform: translateY(1px);
  box-shadow: inset 0 1px 2px var(--silver-inset-dark),
    inset 0 1px 0 var(--silver-inset-light);
}

.btn-ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--silver-edge-light);
  color: var(--silver-text);
}

.btn-block {
  width: 100%;
  margin-top: 1.5rem;
}

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

/* Hero — tout le pitch jusqu'au strip 50/50 tient dans le premier écran */
.hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.hero--fold {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
}

.hero-fold {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vh, 1.25rem);
  padding: clamp(0.75rem, 2vh, 1.25rem) 0 clamp(0.35rem, 1vh, 0.5rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  min-height: 0;
}

.hero-fold__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.65rem, 1.8vh, 1.1rem);
  min-height: 0;
}

.hero-fold__anchor {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  color: var(--text);
}

.hero-title__intro {
  display: block;
  font-size: clamp(1.75rem, 6.5vw, 3.25rem);
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-rotate--process {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 1.15em;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 8vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 0.1em;
  white-space: nowrap;
}

.hero-roi {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 4.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0.2em;
  color: var(--text);
}

.hero-roi__text,
.hero-savings-prefix {
  color: var(--text);
}

.hero-rotate--accent {
  display: inline;
}

.hero-rotate--accent .rotate-savings,
.offer-amount,
.offer-card .section-title.offer-card__title {
  color: var(--accent-cyan);
}

.hero-rotate--accent .rotate-savings {
  font-family: var(--font-sans);
  font-size: 1.12em;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-align: center;
  box-sizing: content-box;
}

.rotate-savings {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.rotate-process {
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.rotate-suffix {
  font-family: var(--font-sans);
  font-size: 0.82em;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.15em;
}

.hero-rotate.is-fading .rotate-process,
.hero-rotate.is-fading .rotate-savings {
  opacity: 0;
  transform: translateY(6px);
}

.hero-rotate--accent.is-counting .rotate-savings {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.hero-sub {
  margin: 0;
  max-width: 34rem;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  line-height: 1.45;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero-disclaimer {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.hero-disclaimer a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-disclaimer a:hover {
  color: var(--accent-cyan);
}

.hero-tools {
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0;
}

.hero--fold .btn {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
}

.hero-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto;
  color: var(--text-muted);
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.hero-scroll:hover {
  color: var(--accent-cyan);
  background: var(--accent-dim);
}

.hero-scroll:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.hero-scroll__icon {
  display: block;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.methode-offre {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 8%, var(--bg) 100%);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2.25rem, 6vh, 3.75rem);
  padding: clamp(0.75rem, 2vh, 1.25rem) 0 clamp(1.5rem, 3vh, 2.5rem);
  box-sizing: border-box;
}

.section--methode {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  background: transparent;
}

/* Sections */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  margin: 0 0 1rem;
  text-align: center;
  color: var(--text);
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 520px;
  margin: 0 auto 0.5rem;
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.tier-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.step-n {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--silver-muted);
}

.step h3 {
  font-size: 1.125rem;
  margin: 0.5rem 0;
  color: var(--text);
}

.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Méthode + Pack — compact mais respirable (entre-deux) */
.section--compact {
  padding: clamp(1.5rem, 3vh, 2rem) 1.5rem;
}

.section--methode.section--compact {
  padding-bottom: 0;
  flex-shrink: 0;
}

.section--offer.section--compact {
  padding-top: 0;
  padding-bottom: 0;
  flex-shrink: 0;
}

.section--compact .section-title {
  font-size: clamp(1.625rem, 3.8vw, 2.125rem);
  margin-bottom: 0.75rem;
}

.section--compact .section-intro {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.section--compact .steps {
  gap: 1rem;
  margin-top: 1.25rem;
}

.section--compact .step {
  padding: 1.125rem 1.25rem;
}

.section--compact .step h3 {
  font-size: 1.0625rem;
  margin: 0.375rem 0;
}

.section--compact .step p {
  font-size: 0.875rem;
  line-height: 1.45;
}

.section--compact .offer-card {
  padding: clamp(1.5rem, 3vh, 2rem) clamp(1.25rem, 3vw, 1.75rem);
}

.section--compact .offer-price {
  margin-bottom: 1rem;
}

.section--compact .offer-amount {
  font-size: clamp(2rem, 4.5vw, 2.375rem);
}

.section--compact .offer-lead {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.section--compact .offer-subhead {
  margin: 0.875rem 0 0.375rem;
}

.section--compact .offer-list {
  font-size: 0.875rem;
}

.section--compact .offer-list li {
  margin-bottom: 0.3rem;
}

.section--compact .offer-maint {
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-top: 1rem;
  padding-top: 0.75rem;
}

.section--compact .btn-block {
  margin-top: 1rem;
}

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

@media (max-height: 820px) {
  .methode-offre {
    gap: clamp(1.5rem, 4vh, 2.25rem);
    padding-bottom: 1rem;
  }

  .section--compact {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }

  .section--compact .section-title {
    margin-bottom: 0.5rem;
  }

  .section--compact .steps {
    margin-top: 0.875rem;
    gap: 0.75rem;
  }

  .section--compact .step {
    padding: 0.875rem 1rem;
  }

  .section--compact .offer-card {
    padding: 1.25rem 1.125rem;
  }
}

/* Offer (sections hors bloc compact) */
.section--offer:not(.section--compact) {
  padding-top: 1rem;
}

.offer-card {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.offer-price {
  text-align: center;
  margin: 0 0 1.5rem;
}

.offer-amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.offer-card .section-title.offer-card__title {
  margin-bottom: 0.5rem;
}

.offer-vat {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.offer-lead {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.offer-subhead {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 1.25rem 0 0.5rem;
}

.offer-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.offer-list li {
  margin-bottom: 0.4rem;
}

.offer-list--out {
  opacity: 0.9;
}

.offer-maint {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Grid cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.25s;
}

.card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

.card h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

.card-roi {
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--silver-muted);
}

.card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-examples {
  margin-top: 0.75rem !important;
  font-size: 0.75rem !important;
  font-style: italic;
}

.disclaimer {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--accent-dim);
  border-left: 3px solid var(--silver-base);
  border-radius: 0 8px 8px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.disclaimer p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* CTA */
.section--cta {
  text-align: center;
  padding-bottom: 5rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.cta-text {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Footer */
.footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-founder {
  margin: 0.5rem 0 0;
}

.footer-founder a {
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.footer-founder a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-brand > .logo-mark {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}

.footer-brand > .logo-mark:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-tag {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-meta {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
}

.footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.85;
}

.footer-meta a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-logo-link {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.15s ease;
}

.footer-logo-link:hover {
  opacity: 1;
}

.footer-logo {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

/* Page Conditions & transparence */
.legal {
  padding: 2rem 1.25rem 3rem;
}

.legal__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  text-align: center;
}

.legal__lead {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.legal__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: center;
  margin: 1.75rem 0 2rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.75rem;
}

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

.legal__toc a:hover {
  color: var(--accent-cyan);
}

.legal__section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 5rem;
}

.legal__section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.legal__section h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.legal__section h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 1.25rem 0 0.5rem;
}

.legal__section p,
.legal__section li {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.legal__section ul,
.legal__section ol {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.legal__section li {
  margin-bottom: 0.35rem;
}

.legal__section a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__muted {
  font-size: 0.8125rem !important;
  font-style: italic;
}

.legal__card {
  padding: 1rem 1.125rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.legal__card p {
  margin: 0 0 0.65rem;
}

.legal__card p:last-child {
  margin-bottom: 0;
}

.legal__checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal__checks li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.875rem;
}

.legal__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.legal__steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  counter-reset: legal-step;
}

.legal__steps li {
  counter-increment: legal-step;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
}

.legal__steps li::before {
  content: counter(legal-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
}

.legal__steps strong {
  display: block;
  color: var(--text);
  font-size: 0.9375rem;
  margin-bottom: 0.2rem;
}

.legal__steps span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.legal__faq {
  margin: 1rem 0 0;
}

.legal__faq dt {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-top: 0.75rem;
}

.legal__faq dt:first-child {
  margin-top: 0;
}

.legal__faq dd {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.legal__condensed {
  padding-left: 1.25rem;
}

.legal__condensed li {
  margin-bottom: 0.4rem;
}

.legal__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
}

.legal__meta li {
  margin-bottom: 0.35rem;
}

.legal__back {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.875rem;
}

.legal__back a {
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .nav a:not(.btn) {
    display: none;
  }

  .hero-tools {
    white-space: normal;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-height: 740px) {
  .hero-fold {
    gap: 0.45rem;
    padding-top: 0.35rem;
  }

  .hero-title__intro {
    font-size: clamp(1.35rem, 5.5vw, 2.25rem);
  }

  .hero-rotate--process {
    font-size: clamp(1.5rem, 7vw, 3rem);
  }

  .hero-roi {
    font-size: clamp(1.1rem, 4vw, 1.85rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rotate-process,
  .rotate-savings {
    transition: none;
  }

  .hero-scroll__icon {
    animation: none;
  }
}
