/* ═══════════════════════════════════════════════════════════════════
   IMOBIL — style.css
   Brand: Deep Navy #0D1B2A | Royal Indigo #1A1A5E | Dark Violet #2D1B69
          Electric Purple #6C3FC5 | Off-White #F0EFF4
   Font:  Plus Jakarta Sans
═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --navy:   #0D1B2A;
  --indigo: #1A1A5E;
  --violet: #2D1B69;
  --purple: #6C3FC5;
  --white:  #F0EFF4;
  --white-dim: rgba(240,239,244,0.55);
  --white-faint: rgba(240,239,244,0.1);
  --white-ghost: rgba(240,239,244,0.05);
  --purple-dim: rgba(108,63,197,0.15);
  --font: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.22,1,0.36,1);
  --radius: 12px;
  --nav-h: 76px;
}

/* ─── Reset & Base ─── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  cursor: none;
  overflow-x: hidden;
}

/* Hide default cursor on desktop */
@media (hover: hover) {
  * { cursor: none !important; }
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── Custom Cursor ─── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

.cursor-trail {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(108,63,197,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

.cursor.cursor-hover { width: 18px; height: 18px; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 6px;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after { opacity: 0.06; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(108,63,197,0.35);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(108,63,197,0.5); }

.btn-ghost {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid rgba(240,239,244,0.15);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(240,239,244,0.35); }

.btn-nav {
  background: var(--purple);
  color: var(--white);
  font-size: 13px;
  padding: 11px 22px;
  box-shadow: 0 4px 20px rgba(108,63,197,0.3);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  padding: 18px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-white:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.3); }

.btn-arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── Section Labels ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.sl-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}

.sl-bar {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--purple);
  opacity: 0.6;
}

.sl-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,239,244,0.35);
}

/* ─── Section Title ─── */
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
}

.section-header {
  margin-bottom: 64px;
}

.accent-word { color: var(--purple); }

.accent-line {
  position: relative;
  color: var(--white);
}
.accent-line::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(240,239,244,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-wordmark {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(240,239,244,0.5);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--white); background: var(--white-ghost); }

.btn-nav { margin-left: 8px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,239,244,0.35);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(108,63,197,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(108,63,197,0); }
}

.hero-headline {
  font-size: clamp(44px, 7.5vw, 100px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(240,239,244,0.45);
  margin-bottom: 48px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-mark {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.5;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scroll-hint 2s ease infinite;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}

.scroll-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,239,244,0.2);
}

@keyframes scroll-hint {
  0%,100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════════
   PROBLEMA / SOLUÇÃO
═══════════════════════════════════════════════════════════════════ */
.problema {
  padding: 140px 0;
  border-top: 1px solid rgba(240,239,244,0.05);
  position: relative;
}

.problema::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(45,27,105,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problema-headline {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
}

.problema-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,239,244,0.6);
  margin-bottom: 24px;
}

.problema-body strong {
  font-weight: 600;
  color: var(--white);
}

.problema-cta { margin-top: 16px; }

/* ═══════════════════════════════════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════════════════════════════════ */
.servicos {
  padding: 140px 0;
  background: rgba(26,26,94,0.08);
  border-top: 1px solid rgba(240,239,244,0.05);
  border-bottom: 1px solid rgba(240,239,244,0.05);
}

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

.service-card {
  padding: 44px 36px;
  background: rgba(240,239,244,0.025);
  border: 1px solid rgba(240,239,244,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--purple);
  transition: height 0.4s var(--ease);
}

.service-card:hover {
  background: rgba(108,63,197,0.07);
  border-color: rgba(108,63,197,0.25);
  transform: translateY(-4px);
}
.service-card:hover::before { height: 100%; }

.sc-icon {
  width: 52px;
  height: 52px;
  background: rgba(108,63,197,0.12);
  border: 1px solid rgba(108,63,197,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--white);
  transition: background 0.3s, border-color 0.3s;
}
.service-card:hover .sc-icon {
  background: rgba(108,63,197,0.2);
  border-color: rgba(108,63,197,0.4);
}

.sc-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.sc-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,239,244,0.5);
}

.sc-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 16px;
  color: var(--purple);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════════════════════
   RESULTADOS
═══════════════════════════════════════════════════════════════════ */
.resultados {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.resultados::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(45,27,105,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.stat-card {
  padding: 52px 36px 44px;
  background: rgba(240,239,244,0.025);
  border: 1px solid rgba(240,239,244,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}

.stat-card.counting::after,
.stat-card:hover::after { transform: scaleX(1); }

.stat-prefix {
  font-size: 16px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  display: inline-block;
}

.stat-unit {
  font-size: 28px;
  font-weight: 800;
  color: var(--purple);
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  margin-left: 2px;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.stat-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(240,239,244,0.35);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════════
   DIFERENCIAIS
═══════════════════════════════════════════════════════════════════ */
.diferenciais {
  padding: 140px 0;
  background: rgba(26,26,94,0.08);
  border-top: 1px solid rgba(240,239,244,0.05);
  border-bottom: 1px solid rgba(240,239,244,0.05);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

.diff-card {
  padding: 52px 44px;
  background: rgba(240,239,244,0.02);
  border: 1px solid rgba(240,239,244,0.06);
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.diff-card:hover {
  background: rgba(108,63,197,0.06);
  border-color: rgba(108,63,197,0.2);
}

.diff-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(240,239,244,0.15);
  margin-bottom: 36px;
  font-variant-numeric: tabular-nums;
}

.diff-icon { margin-bottom: 28px; }

.diff-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.diff-body {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240,239,244,0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   CTA CENTRAL
═══════════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--purple);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-mark {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,239,244,0.6);
  margin-bottom: 24px;
}

.cta-headline {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240,239,244,0.7);
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(240,239,244,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(240,239,244,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-wordmark {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,239,244,0.35);
}

.footer-nav-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,239,244,0.25);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }

.footer-nav a,
.footer-contact a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(240,239,244,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(240,239,244,0.2);
}

.footer-tagline-bottom {
  font-size: 12px;
  font-style: italic;
  color: rgba(108,63,197,0.5) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(108,63,197,0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 48px rgba(108,63,197,0.6);
}

.wf-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--purple);
  animation: wf-pulse 2.5s ease infinite;
  z-index: -1;
}

@keyframes wf-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .diff-card.diff-large { grid-column: 1 / -1; }
  .hero-mark { display: none; }
  .cta-bg-mark { opacity: 0.05; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 66px; }

  body { cursor: auto !important; }
  * { cursor: auto !important; }
  .cursor, .cursor-trail { display: none; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 32px;
    border-bottom: 1px solid rgba(240,239,244,0.07);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    pointer-events: none;
    margin-left: 0;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 14px 0; font-size: 15px; border-bottom: 1px solid rgba(240,239,244,0.05); width: 100%; }
  .nav-link:last-child { border-bottom: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-content { padding: 60px 24px 100px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll-hint { display: none; }

  /* Sections */
  .problema { padding: 80px 0; }
  .problema-grid { grid-template-columns: 1fr; gap: 40px; }

  .servicos { padding: 80px 0; }
  .servicos-grid { grid-template-columns: 1fr; }

  .resultados { padding: 80px 0; }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }

  .diferenciais { padding: 80px 0; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card.diff-large { grid-column: auto; }
  .diff-card { padding: 40px 28px; }

  .cta-section { padding: 80px 0; }
  .cta-headline { font-size: 36px; }

  .footer { padding: 60px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  .section-header { margin-bottom: 40px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
