/* ─────────────────────────────────────────────────────────────
   SOS-SMART · STYLES
   Direction : bureau d'études automobile / magazine éditorial
   ───────────────────────────────────────────────────────────── */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.55; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }

/* === TOKENS === */
:root {
  /* Palette */
  --bg: #0a0a0a;
  --bg-alt: #0e0e0f;
  --bg-section: #0c0c0d;
  --surface: #131314;
  --border: #1f1f20;
  --border-strong: #2a2a2b;
  --text: #f5f2eb;
  --text-dim: #b8b3a6;
  --text-mute: #9a968a;
  --text-faint: #5a574f;
  --accent: #c8312b;
  --accent-bright: #e4322a;

  /* Typo */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Échelle */
  --space-1: 0.25rem;   /* 4 */
  --space-2: 0.5rem;    /* 8 */
  --space-3: 1rem;      /* 16 */
  --space-4: 1.5rem;    /* 24 */
  --space-5: 2rem;      /* 32 */
  --space-6: 3rem;      /* 48 */
  --space-7: 4rem;      /* 64 */
  --space-8: 6rem;      /* 96 */
  --space-9: 8rem;      /* 128 */
  --space-10: 12rem;    /* 192 */

  --container: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* === BASE === */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--text); }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
  border-top: 1px solid var(--border);
}

/* === TYPO === */
.overline {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text);
}
.display__line { display: block; white-space: nowrap; }
.display em { font-style: italic; color: var(--text-dim); font-weight: 500; }
.display .dot { color: var(--accent); margin-left: 0.05em; }

.display--md { font-size: clamp(2.25rem, 6vw, 5rem); }

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  line-height: 1.4;
  color: var(--text-dim);
  font-weight: 400;
  max-width: 50ch;
  margin-block: var(--space-5);
}

/* === TOPBAR === */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-3) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
  align-items: center;
}
.status { display: inline-flex; align-items: center; gap: var(--space-2); color: var(--text-dim); }
.status__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(200, 49, 43, 0.6);
  animation: pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 49, 43, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(200, 49, 43, 0); }
}
.topbar__coords { text-align: center; }
.topbar__tag { text-align: right; }

@media (max-width: 720px) {
  .topbar__inner { grid-template-columns: 1fr 1fr; }
  .topbar__coords { display: none; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(5rem, 12vh, 8rem);
  padding-bottom: var(--space-7);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  /* sweep radar subtil derrière le hero */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200, 49, 43, 0.04), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  width: 100%;
}

.hero__text { position: relative; z-index: 2; }
.hero__title { margin-block: var(--space-4) var(--space-5); }
.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 42ch;
  margin-bottom: var(--space-6);
}
.hero__lead strong { color: var(--text); font-weight: 500; font-style: italic; }

.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.meta-block { display: flex; flex-direction: column; gap: var(--space-2); }
.meta-link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 200ms var(--ease-out);
}
a.meta-link:hover { color: var(--accent); }

.hero__visual { position: relative; }
.blueprint {
  width: 100%;
  height: auto;
  max-height: 70vh;
}

/* === BLUEPRINT FADE-UP AU LOAD === */
.blueprint {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 900ms var(--ease-out),
              transform 900ms var(--ease-out);
}
.blueprint.is-loaded {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .blueprint { opacity: 1; transform: none; transition: none; }
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  transition: color 200ms var(--ease-out);
}
.hero__scroll:hover { color: var(--accent); }
.hero__scroll-arrow { animation: scrollHint 2s var(--ease-in-out) infinite; }
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-height: 40vh; }
  .blueprint { max-height: 40vh; }
  .hero__scroll { display: none; }
}

/* === MARQUEE MARQUES === */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding-block: var(--space-5);
  overflow: hidden;
}
.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: var(--space-7);
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.marquee__track > span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  white-space: nowrap;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.dotmark {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* === STATS (section maison) === */
.section--maison .lead { max-width: 60ch; margin-bottom: var(--space-8); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat__value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat__value--em em { font-style: italic; color: var(--accent); }
.stat__suffix {
  font-style: italic;
  font-size: 0.5em;
  color: var(--text-dim);
  margin-left: 0.1em;
}
.stat__label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 28ch;
}

@media (max-width: 880px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
}

/* === SERVICES === */
.section--services .display { margin-bottom: var(--space-8); }
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service {
  padding: var(--space-6) var(--space-5);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 300ms var(--ease-out);
}
.service:last-child { border-right: none; }
.service::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 400ms var(--ease-out);
}
.service:hover { background: var(--surface); }
.service:hover::before { width: 100%; }
.service:hover .service__title { color: var(--accent); }

.service__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.service__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1.1;
  color: var(--text);
  transition: color 300ms var(--ease-out);
}
.service__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dim);
}

@media (max-width: 980px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(2) { border-right: none; }
  .service:nth-child(1), .service:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--border); }
  .service:last-child { border-bottom: none; }
}

/* === LOCATION === */
.section--location .display { margin-bottom: var(--space-7); }
.location {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}
.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  justify-content: center;
}
.info-block { display: flex; flex-direction: column; gap: var(--space-2); }
.info-block p { font-size: 1rem; line-height: 1.55; color: var(--text); }
.info-coords { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-mute); margin-top: var(--space-2); }
.info-mute { color: var(--text-mute); font-size: 0.9rem; }

.location__map {
  border: 1px solid var(--border);
  background: #0c0c0d;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.map-svg { width: 100%; height: 100%; }
.map-pin circle { animation: pinPulse 3s var(--ease-in-out) infinite; transform-origin: 300px 230px; }
.map-pin circle:nth-child(1) { animation-delay: 0s; }
.map-pin circle:nth-child(2) { animation-delay: 0.6s; }
.map-pin circle:nth-child(3) { animation-delay: 1.2s; }
@keyframes pinPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (max-width: 880px) {
  .location { grid-template-columns: 1fr; }
}

/* === BTN === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border-strong);
  transition: all 200ms var(--ease-out);
  align-self: flex-start;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost { background: transparent; }

/* === CONTACT === */
.section--contact .display { margin-bottom: var(--space-8); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.contact-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  transition: all 250ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.contact-cta::after {
  content: '↗';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--text-mute);
  transition: all 200ms var(--ease-out);
}
.contact-cta__number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.contact-cta__hint {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.contact-cta--phone { background: var(--accent); border-color: var(--accent); }
.contact-cta--phone .overline { color: rgba(255,255,255,0.7); }
.contact-cta--phone .contact-cta__number { color: #fff; }
.contact-cta--phone .contact-cta__hint { color: rgba(255,255,255,0.7); }
.contact-cta--phone::after { color: rgba(255,255,255,0.7); }
.contact-cta--phone:hover { background: var(--accent-bright); }
.contact-cta--phone:hover::after { transform: translate(2px, -2px); color: #fff; }

.contact-cta--whatsapp:hover { border-color: var(--accent); }
.contact-cta--whatsapp:hover .contact-cta__number { color: var(--accent); }
.contact-cta--whatsapp:hover::after { transform: translate(2px, -2px); color: var(--accent); }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-meta {
  border-top: 1px solid var(--border);
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.meta-row { display: flex; align-items: baseline; gap: var(--space-5); justify-content: space-between; }
.meta-row a { color: var(--text); transition: color 200ms var(--ease-out); }
.meta-row a:hover { color: var(--accent); }
.meta-row--hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding-top: var(--space-5);
  gap: var(--space-4);
}
.meta-row--hours > div { display: flex; flex-direction: column; gap: var(--space-2); font-size: 0.95rem; color: var(--text-dim); }
@media (max-width: 720px) {
  .meta-row--hours { grid-template-columns: 1fr; }
}

/* === FOOTER === */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: var(--space-7);
  font-size: 0.85rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.footer__title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.footer__addr { color: var(--text-mute); line-height: 1.7; }
.footer__addr a { color: var(--text-dim); transition: color 200ms var(--ease-out); }
.footer__addr a:hover { color: var(--accent); }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-align: right;
}
.footer__nav a { color: var(--text-mute); transition: color 200ms var(--ease-out); }
.footer__nav a:hover { color: var(--accent); }
.footer__copy {
  grid-column: 1 / -1;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { text-align: left; }
}

/* === REVEALS (scroll-driven) === */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === FOCUS VISIBLE (a11y) === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* === STICKY CTA BOTTOM === */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom, 0));
  background: rgba(10, 10, 10, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid rgba(245, 242, 235, 0.08);
  transform: translateY(105%);
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta[hidden] { display: none; }

.sticky-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (min-width: 1024px) {
  .sticky-cta__inner { grid-template-columns: 1fr 1fr 1fr; }
}

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  transition: background 200ms var(--ease-out),
              border-color 200ms var(--ease-out),
              color 200ms var(--ease-out);
}
.sticky-cta__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.sticky-cta__btn:hover { border-color: var(--accent); color: var(--accent); }

.sticky-cta__btn--phone {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.sticky-cta__btn--phone:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: #fff;
}

.sticky-cta__btn--maps { display: none; }
@media (min-width: 1024px) {
  .sticky-cta__btn--maps { display: inline-flex; }
}

/* Padding-bottom du main pour ne pas masquer le contenu */
@media (max-width: 1023px) {
  body.has-sticky main { padding-bottom: 88px; }
}
@media (min-width: 1024px) {
  body.has-sticky main { padding-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* === HIGH-TECH HERO REVEAL === */

/* Scan reveal bottom-up sur la Smart */
.blueprint {
  clip-path: inset(100% 0 0 0);
  opacity: 0;
  animation: scanReveal 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
}
@keyframes scanReveal {
  0%   { clip-path: inset(100% 0 0 0); opacity: 0; }
  8%   { opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

/* Ligne scan rouge qui suit le reveal */
.hero__visual {
  position: relative;
  overflow: hidden;
}
.hero__visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 49, 43, 0.15) 20%,
    rgba(200, 49, 43, 0.9) 50%,
    rgba(200, 49, 43, 0.15) 80%,
    transparent 100%
  );
  filter: blur(0.5px);
  box-shadow: 0 0 12px rgba(200, 49, 43, 0.6);
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  animation: scanLine 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
}
@keyframes scanLine {
  0%   { bottom: 100%; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { bottom: 0%; opacity: 0; }
}

/* Titre staggered ligne par ligne */
.display__line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: lineReveal 800ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.display__line:nth-child(1) { animation-delay: 0.15s; }
.display__line:nth-child(2) { animation-delay: 0.35s; }
.display__line:nth-child(3) { animation-delay: 0.55s; }
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Lead + meta fade-up délayés */
.hero__text .overline {
  opacity: 0;
  animation: fadeIn 600ms ease-out 0s forwards;
}
.hero__lead {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 0.9s forwards;
}
.hero__meta {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Topbar fade-in */
.topbar {
  opacity: 0;
  animation: fadeIn 800ms ease-out 0.2s forwards;
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .blueprint { clip-path: none; opacity: 1; animation: none; }
  .hero__visual::after { display: none; }
  .display__line, .hero__text .overline, .hero__lead, .hero__meta, .topbar {
    opacity: 1; transform: none; animation: none;
  }
}

/* WhatsApp vert standard */
.sticky-cta__btn--wa {
  background: #25D366;
  border-color: #25D366;
  color: #0a2014;
}
.sticky-cta__btn--wa:hover {
  background: #1DBA56;
  border-color: #1DBA56;
  color: #0a2014;
}
