/* AF SOLUTION AI — DA officielle monochrome */

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

:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --card: #111111;
  --card-2: #1c1c1c;
  --white: #ffffff;
  --muted: #888888;
  --muted-2: #5a5a5a;
  --gray-light: #D9D9D9;
  --gray-dark: #393939;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --glow: rgba(255, 255, 255, 0.05);

  --font: "League Spartan", system-ui, sans-serif;
  --font-body: "Raleway", system-ui, sans-serif;
  --radius: 24px;
  --radius-sm: 14px;
  --pill: 999px;
  --nav-h: 76px;
  --container: min(1160px, 100% - 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 28px 80px -36px rgba(0, 0, 0, 0.85);
  --float: 5.5s;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: "League Spartan", sans-serif;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.dim {
  color: var(--muted);
}

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

/* Wave canvas — signature graphique DA */
.wave-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 55% at 50% 0%, black 15%, transparent 72%);
  opacity: 0.45;
}

.spotlight {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  transition: background 80ms ease;
  mix-blend-mode: soft-light;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section-alt {
  background: rgba(10, 10, 10, 0.6);
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
}

.nav.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-monogram {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.logo-monogram .l-a {
  color: var(--gray-dark);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 0 12px rgba(255,255,255,0.08);
}

.logo-monogram .l-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  margin: 0 3px 3px;
  flex-shrink: 0;
}

.logo-monogram .l-f {
  color: var(--white);
}

.logo-wordmark {
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  font-family: "League Spartan", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--pill);
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

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

.btn-white {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 12px 40px -16px rgba(255, 255, 255, 0.35);
}

.btn-large {
  padding: 1rem 1.85rem;
  font-size: 1rem;
}

.btn-shimmer::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.btn-shimmer:hover::after {
  animation: shimmer 0.7s var(--ease);
}

@keyframes shimmer {
  to {
    left: 140%;
  }
}

/* Card */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-float {
  animation: floatY var(--float) ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.hero-float:hover {
  animation-play-state: paused;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--fd, 0s);
}

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

/* ——— Hero ——— */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 960px) {
  .hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + 3.5rem);
    padding-bottom: 5rem;
  }
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.12));
}

.sparkle-lg {
  width: clamp(56px, 8vw, 96px);
  right: 6%;
  top: 12%;
  opacity: 0.7;
}

.sparkle-md {
  width: clamp(48px, 7vw, 80px);
}

.sparkle-sm {
  width: clamp(32px, 5vw, 52px);
  right: 38%;
  bottom: 22%;
  opacity: 0.65;
}

.s1 {
  animation: spin 20s linear infinite, pulse 4.2s ease-in-out infinite;
}

.s2 {
  right: 14%;
  top: 42%;
  opacity: 0.5;
  animation: spin 26s linear infinite reverse, pulse 5s ease-in-out infinite 0.6s;
}

.s3 {
  animation: spin 16s linear infinite, pulse 3.8s ease-in-out infinite 1s;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 960px) {
  .hero-copy {
    max-width: 640px;
    padding-right: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-copy {
    max-width: 700px;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.8);
  padding: 0.45rem 0.95rem;
  border-radius: var(--pill);
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-line {
  display: block;
}

.hero-line + .hero-line {
  margin-top: 0.35rem;
}

.hero-line-sub {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
}

.hero-title .word.dim {
  color: var(--muted);
  font-weight: 500;
}

.hero-line-sub .word.dim {
  color: var(--muted-2);
}

.hero-slogan {
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 1.2vw, 0.82rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 1.75rem;
  opacity: 0.75;
}

.hero-sub {
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  max-width: 480px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

/* Accroche Sylion */
.hook-title {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
  text-transform: uppercase;
}

/* Section head */
.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

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

.eyebrow {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.7rem;
}

.section-head h2 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.section-head p {
  font-size: 1.02rem;
  color: var(--muted);
}

/* Pain */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.pain-card {
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.35s var(--ease);
}

.pain-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pain-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  margin-bottom: 0.85rem;
}

.pain-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.pain-card p {
  font-size: 0.94rem;
  margin: 0;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-main {
  grid-column: span 7;
  grid-row: span 2;
  padding: 2rem;
}

.bento-card:not(.bento-main) {
  grid-column: span 5;
  padding: 1.75rem;
}

.bento-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.75rem;
}

.bento-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.bento-card p {
  font-size: 0.94rem;
  margin: 0;
}

.mini-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mini-list li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.35rem 0.7rem;
  border-radius: var(--pill);
  background: var(--card-2);
  border: 1px solid var(--border);
}

/* Steps */
.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  align-items: flex-start;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
}

.step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--card-2);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.step-card p {
  font-size: 0.94rem;
  margin: 0;
}

.step-duration {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.35rem;
}

/* Tableau comparatif */
.compare {
  overflow: hidden;
  max-width: 900px;
  margin-inline: auto;
}

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-header {
  border-bottom: 1px solid var(--border);
}

.compare-col {
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-bad {
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.02);
}

.compare-good {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.compare-row {
  border-bottom: 1px solid var(--border);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-cell {
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.compare-cell.compare-bad {
  color: var(--muted);
}

.compare-cell.compare-good {
  color: var(--white);
  font-weight: 500;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--white);
}

/* CTA intermédiaire */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Rareté & garantie */
.trust-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.trust-card {
  padding: 2rem 1.75rem;
}

.trust-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.75rem;
}

.trust-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.trust-card p {
  font-size: 0.94rem;
  margin: 0;
}

/* Pour qui */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.audience-card {
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.audience-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.audience-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.audience-card p {
  font-size: 0.94rem;
  margin: 0;
}

/* À propos */
.about-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.about-text-emphasis {
  color: var(--white);
  font-weight: 500;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  list-style: none;
  margin: 0.5rem 0 0.25rem;
  padding: 0;
}

.about-stats li {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
}

.about-stats li:not(:last-child)::after {
  content: "·";
  margin-left: 0.65rem;
  color: var(--muted-2);
  font-weight: 400;
}

.about-body .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.faq-item[open] {
  border-color: var(--border-hover);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.35s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  border-radius: 1px;
  transition: background 0.25s;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 9px;
  left: 3px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 3px;
  left: 9px;
}

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

.faq-answer {
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease);
}

.faq-answer p {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.94rem;
  margin: 0;
  color: var(--muted);
}

/* CTA final */
.cta-final {
  padding-bottom: 5rem;
}

.cta-box {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--card) 0%, var(--card-2) 100%);
}

.cta-sparkle {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  opacity: 0.5;
}

.cta-sparkle .sparkle-md {
  position: static;
  animation: spin 18s linear infinite, pulse 4s ease-in-out infinite;
}

.cta-box h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 640px;
  margin-inline: auto;
}

.cta-box p {
  max-width: 480px;
  margin: 0 auto 1.75rem;
  font-size: 1.02rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-loc {
  font-size: 0.82rem !important;
  color: var(--muted-2) !important;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.25s;
}

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

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted-2);
}

.footer-watermark {
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  margin-top: 1.5rem;
  pointer-events: none;
  user-select: none;
}

/* Mobile */
@media (max-width: 959px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    gap: 0.5rem;
    margin-left: 0;
  }

  .nav.is-open .nav-actions {
    display: flex;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1001;
  }

  .nav.is-open .nav-actions .btn {
    width: 100%;
  }

  .bento-main,
  .bento-card:not(.bento-main) {
    grid-column: span 12;
    grid-row: auto;
  }

  .hero-sparkles {
    opacity: 0.35;
  }
}

/* ——— Pages légales ——— */
.page-legal {
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 4rem;
}

.legal-header {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.legal-header p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color 0.25s;
}

.legal-back:hover {
  color: var(--white);
}

.legal-content {
  max-width: 760px;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.legal-content strong {
  color: var(--white);
  font-weight: 600;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--muted);
}

@media (max-width: 959px) {
  .legal-content {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-title .word {
    opacity: 1;
    transform: none;
  }

  .hero-float {
    animation: none;
  }

  .faq-answer {
    transition: none;
  }

  .wave-canvas {
    display: none;
  }
}

@media (max-width: 640px) {
  .compare-header,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-header .compare-good {
    border-top: 1px solid var(--border);
  }

  .compare-cell.compare-good {
    background: rgba(255, 255, 255, 0.03);
  }
}
