:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --text: #0f172a;
  --text-muted: #64748b;
  --accent: #2563eb;
  --accent-light: #eff6ff;
  --accent-mid: rgba(37, 99, 235, 0.12);
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 12px;
  --header-h: 4.5rem;
  --max-w: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; text-underline-offset: 0.2em; }

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  min-height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--accent); text-decoration: none; }
.logo__mark { font-weight: 700; }
.logo__sep { opacity: 0.35; margin: 0 0.1em; }
.logo__sub { font-weight: 400; font-size: 0.9em; }

.nav {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--text); text-decoration: none; }

.nav-cta {
  font-size: 0.875rem !important;
  padding: 0.55rem 1.15rem !important;
  color: #fff !important;
}
.nav-cta:hover { color: #fff !important; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: slideDown 0.3s var(--ease-out);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }

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

@media (min-width: 768px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ─── BOUTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: #1d4ed8; color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,0.3); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

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

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

/* ─── HERO ───────────────────────────────────────── */
.hero {
  padding: clamp(4rem, 10vw, 7rem) 1.5rem clamp(4rem, 10vw, 7rem);
  background: var(--bg);
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr auto;
    gap: 4rem;
  }
}

.hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__eyebrow--accent { color: var(--accent); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 1.25rem;
  color: var(--text);
}

.hero__accent {
  font-style: italic;
  color: var(--accent);
  font-weight: 800;
}

.hero__lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 44ch;
  line-height: 1.7;
}

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

/* ─── TOOL SCATTER ───────────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
}

.tool-scatter {
  position: relative;
  width: min(480px, 90vw);
  aspect-ratio: 1;
}

.tool-scatter__bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at center, var(--accent-mid) 0%, transparent 68%);
  pointer-events: none;
}

.tool-scatter__center {
  position: absolute;
  left: 50%; top: 50%;
  width: 4.5rem; height: 4.5rem;
  margin: -2.25rem 0 0 -2.25rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(37,99,235,0.35);
}

.tool-scatter__item {
  position: absolute;
  width: 2.75rem; height: 2.75rem;
  margin: -1.375rem 0 0 -1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, border-color 0.2s;
  will-change: left, top;
  z-index: 1;
}

.tool-scatter__item:hover {
  box-shadow: 0 6px 20px rgba(37,99,235,0.18);
  border-color: rgba(37,99,235,0.35);
  z-index: 10;
}

.tool-scatter__item[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.tool-scatter__item[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tool-scatter__item img {
  width: auto;
  height: auto;
  max-width: 1.75rem;
  max-height: 1.75rem;
  object-fit: contain;
  display: block;
}

.tool-scatter__item--wide img {
  max-width: 2.4rem;
  max-height: 1rem;
}

/* ─── SECTION BASE ───────────────────────────────── */
.section {
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.section__label--light { color: rgba(255,255,255,0.5); }

/* ─── PROBLÈME ───────────────────────────────────── */
.probleme {
  background: var(--bg-alt);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.probleme > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.probleme__inner {
  display: grid;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 900px) {
  .probleme__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.probleme__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 2rem;
}

.time-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.time-list li {
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text);
}
.time-list li:last-child { border-bottom: none; }

.time-list__hour {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  min-width: 2.5rem;
  flex-shrink: 0;
}

.probleme__loss-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}

.loss-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.loss-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem 0.9rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.loss-item strong { font-weight: 700; color: var(--accent); font-size: 0.9375rem; }
.loss-item span { font-size: 0.875rem; color: var(--text-muted); }

/* ─── SOLUTION ───────────────────────────────────── */
.solution {
  text-align: center;
}

.solution__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto 1rem;
}

.solution__lead {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 48ch;
  margin: 0 auto 3rem;
}

.solution__cards {
  display: grid;
  gap: 1.25rem;
  text-align: left;
}

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

.solution__card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.solution__card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.1);
}

.solution__num {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.solution__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.solution__card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ─── ABOUT ──────────────────────────────────────── */
.about {
  background: var(--bg-alt);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about__inner { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 420px;
  background: repeating-linear-gradient(
    -45deg,
    var(--border) 0,
    var(--border) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 14px 14px;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.5;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.about__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.feature-box {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.feature-box strong { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.feature-box span { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.45; }

/* ─── SERVICES ───────────────────────────────────── */
.services__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.services__lead {
  color: var(--text-muted);
  margin: 0 0 3rem;
}

.services__group {
  margin-bottom: 3rem;
}

.services__group-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px dashed rgba(37,99,235,0.4);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.services__cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services__cards { grid-template-columns: 1fr 1fr; }
}

.service-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover { border-color: var(--border-strong); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.service-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}
.service-card--featured:hover { box-shadow: 0 6px 32px rgba(37,99,235,0.15); }

.service-card__badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.service-card__step {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

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

.service-card__list {
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-card__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.35em;
  position: relative;
}
.service-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8em;
}

/* ─── STATS ──────────────────────────────────────── */
.stats {
  background: var(--bg-alt);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.stats > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.stats__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 2.5rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.stats__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

@media (min-width: 900px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .stat-card--testimonial {
    grid-row: 1 / 3;
    grid-column: 3;
  }
}

.stat-card {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.stat-card__sup {
  font-size: 0.6em;
  vertical-align: super;
}
.stat-card__label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-card--testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .stat-card--testimonial { grid-column: unset; }
}

.testimonial__icon {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}

.testimonial__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.testimonial__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.testimonial__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.testimonial__info strong { font-size: 0.875rem; }
.testimonial__info span { font-size: 0.8125rem; color: var(--text-muted); }

.testimonial__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.7;
}

/* ─── LEAD MAGNET ────────────────────────────────── */
.leadmagnet {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.leadmagnet__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .leadmagnet__inner { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}

.pdf-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  background: repeating-linear-gradient(
    -45deg,
    var(--border) 0,
    var(--border) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 14px 14px;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

.leadmagnet__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  border: 1.5px dashed rgba(37,99,235,0.45);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}

.leadmagnet__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.leadmagnet__lead {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.65;
}

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

.leadmagnet__form input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.leadmagnet__form input::placeholder { color: var(--text-muted); }
.leadmagnet__form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* ─── CTA FINAL ──────────────────────────────────── */
.cta-final {
  background: var(--bg-dark);
  padding: clamp(5rem, 12vw, 8rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 Q300 100 600 150 Q900 200 1200 80 L1200 200 Z' fill='rgba(37,99,235,0.08)'/%3E%3C/svg%3E") bottom / cover no-repeat;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.25rem;
}

.cta-final__lead {
  color: rgba(255,255,255,0.65);
  font-size: 1.125rem;
  margin: 0 0 2.5rem;
  line-height: 1.65;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}
.site-footer p { margin: 0; }

.site-footer__links {
  display: flex;
  gap: 1.5rem;
}
.site-footer__links a { color: var(--text-muted); }
.site-footer__links a:hover { color: var(--text); }

/* ─── ANIMATIONS SCROLL ──────────────────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
