/* =========================================================
   SHARES CONSULTANTS — DESIGN SYSTEM
   Editorial / documentary fintech direction.
   Hairline rules, restrained color, one deliberate accent.
   ========================================================= */

:root {
  /* Color tokens */
  --ink: #142132;
  /* primary text */
  --ink-soft: #4B5666;
  /* secondary text */
  --navy: #15304A;
  /* primary brand */
  --navy-deep: #0D2134;
  /* header / footer surface */
  --slate: #2E5468;
  /* secondary brand accent (links, tags) */
  --brass: #A5762F;
  /* accent — used sparingly */
  --brass-soft: #C79A55;
  --paper: #F2F0E9;
  /* page background */
  --surface: #FFFFFF;
  /* card / panel surface */
  --border: #DBD6C7;
  /* warm hairline */
  --border-cool: #D7DBDD;
  --success: #2E6B4C;
  --success-bg: #E7F0E9;
  --error: #A23B27;
  --error-bg: #F7E9E4;

  /* Type */
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  /* Spacing rhythm */
  --gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(64px, 9vw, 128px);
  --content-max: 1240px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-body);
  color: var(--navy-deep);
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 600;
}

p {
  margin: 0;
}

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

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

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-space);
  border-top: 1px solid var(--border);
}

.section:first-of-type {
  border-top: none;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  max-width: 640px;
}

.section-intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-top: 16px;
}

/* Visible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 3px;
  border-radius: 2px;
}

/* =============== BUTTONS (UNIFIED MODERN PILL DESIGN) =============== */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 12px 28px;
  border-radius: 9999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(13, 33, 52, 0.06);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease);
}

/* Glass shine sweep across all buttons */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.45) 50%, transparent 85%);
  transform: translateX(-135%);
  transition: transform 540ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.btn:hover::after {
  transform: translateX(135%);
}

.btn:active {
  transform: scale(0.96);
}

.btn svg,
.btn i {
  flex-shrink: 0;
  font-size: 15px;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), color 200ms var(--ease);
}

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

.btn:hover svg,
.btn:hover i {
  transform: scale(1.15);
}

/* 1. PRIMARY BUTTON (GOLD / BRASS PILL) */
.btn-primary {
  background: linear-gradient(135deg, #B2833A 0%, #C79A55 50%, #A5762F 100%);
  border-color: rgba(255, 255, 255, 0.35);
  color: #121A26;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(165, 118, 47, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #BF8F44 0%, #D4A864 50%, #B2833A 100%);
  border-color: #FFFFFF;
  color: #0B111A;
  box-shadow: 0 10px 28px rgba(165, 118, 47, 0.44), 0 2px 6px rgba(13, 33, 52, 0.12);
}

/* 2. SECONDARY BUTTON (FROSTED GLASS PILL) */
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: var(--navy-deep);
  border-color: #FFFFFF;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

/* 3. QUIET BUTTON (MATCHING HEADER WHITE PILL) */
.btn-quiet {
  background: #FFFFFF;
  color: var(--navy-deep);
  border-color: rgba(21, 48, 74, 0.16);
  box-shadow: 0 2px 8px rgba(13, 33, 52, 0.05);
}

.btn-quiet:hover {
  border-color: var(--navy-deep);
  background: #FFFFFF;
  color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(13, 33, 52, 0.12);
}

/* 4. DARK BUTTON (MATCHING HEADER DEEP NAVY PILL) */
.btn-dark {
  background: linear-gradient(135deg, #0D2134 0%, #163655 100%);
  border-color: rgba(199, 154, 85, 0.55);
  color: var(--surface);
  box-shadow: 0 4px 14px rgba(13, 33, 52, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #132E47 0%, #1E466E 100%);
  border-color: #F2BE65;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(199, 154, 85, 0.35), 0 4px 14px rgba(13, 33, 52, 0.28);
}

/* 5. WHATSAPP BUTTON PILL */
.btn-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.18);
}

.btn-whatsapp .icon-whatsapp,
.btn-whatsapp i {
  color: #25D366;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  border-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover .icon-whatsapp,
.btn-whatsapp:hover i {
  color: #FFFFFF;
}

.btn:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
  box-shadow: none;
}

.btn:disabled::after {
  display: none;
}

/* =============== HEADER =============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(242, 240, 233, 0);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(242, 240, 233, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom-color: var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* =============== WORDMARK (BRAND IDENTITY) =============== */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  user-select: none;
  transition: transform 260ms var(--ease);
  flex-shrink: 0;
}

.wordmark:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
  border-radius: 8px;
}

.wordmark-emblem {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow:
    0 4px 14px rgba(13, 33, 52, 0.16),
    0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.wordmark-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wordmark-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.wordmark-title {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.wordmark-shares {
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: color 240ms var(--ease);
}

.wordmark-consultants {
  font-weight: 600;
  background: linear-gradient(135deg, #8A5B18 0%, #C79A55 60%, #A5762F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  transition: filter 240ms var(--ease);
}

.wordmark-tagline {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 3px;
  opacity: 0.88;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 240ms var(--ease);
}

/* Fallback for simple wordmark markup */
.wordmark>span:not(.wordmark-brand) {
  color: var(--slate);
}

/* Hover Interactions */
.wordmark:hover .wordmark-emblem {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 22px rgba(165, 118, 47, 0.28),
    0 2px 6px rgba(13, 33, 52, 0.15);
}

.wordmark:hover .wordmark-shares {
  color: var(--slate);
}

.wordmark:hover .wordmark-consultants {
  filter: brightness(1.15);
}

/* Pulse animation on gold node ring */
@keyframes scPulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.sc-pulse-ring {
  transform-origin: 27px 9px;
  animation: scPulseRing 3s ease-in-out infinite;
}

@media (max-width: 640px) {
  .wordmark {
    gap: 9px;
  }

  .wordmark-emblem {
    width: 35px;
    height: 35px;
    border-radius: 9px;
  }

  .wordmark-title {
    font-size: 17.5px;
    gap: 3px;
  }

  .wordmark-tagline {
    font-size: 7.5px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 420px) {
  .wordmark {
    gap: 8px;
  }

  .wordmark-emblem {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .wordmark-title {
    font-size: 16px;
  }

  .wordmark-tagline {
    display: none;
  }
}

/* Footer context styling */
.site-footer .wordmark-shares {
  color: #FFFFFF;
}

.site-footer .wordmark-consultants {
  background: linear-gradient(135deg, #F9D889 0%, #C79A55 70%, #E6AF56 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-footer .wordmark-tagline {
  color: #9BB0C1;
  opacity: 0.75;
}

.site-footer .wordmark-emblem {
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.primary-nav {
  display: none;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding-block: 4px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
}

/* =============== HEADER ACTIONS (UNIFIED MODERN BUTTONS) =============== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 6px;
}

/* Base modern button - exact identical size and structure for all 3 */
.header-action {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 114px;
  height: 40px;
  min-width: 114px;
  max-width: 114px;
  box-sizing: border-box;
  padding: 0 10px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: #FFFFFF;
  border: 1.5px solid rgba(21, 48, 74, 0.15);
  color: var(--navy-deep);
  box-shadow: 0 2px 8px rgba(13, 33, 52, 0.05);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease);
}

/* Gloss shine sweep across all 3 buttons */
.header-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.45) 50%, transparent 85%);
  transform: translateX(-135%);
  transition: transform 540ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.header-action:hover::after {
  transform: translateX(135%);
}

.header-action:active {
  transform: scale(0.96);
}

.header-action svg,
.header-action i {
  flex-shrink: 0;
  font-size: 14.5px;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), color 200ms var(--ease);
}

.header-action span {
  display: inline;
}

/* Identical hover elevation and shadow for all 3 buttons */
.header-action:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  border-color: var(--navy-deep);
  color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(13, 33, 52, 0.12);
}

/* Subtle branded accents on the icons */
.header-action-call i {
  color: #2E5468;
}

.header-action-call:hover i {
  color: var(--navy-deep);
  transform: rotate(-12deg) scale(1.16);
}

.header-action-whatsapp i,
.header-action-whatsapp .icon-whatsapp {
  color: #25D366;
}

.header-action-whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.22);
}

.header-action-whatsapp:hover i,
.header-action-whatsapp:hover .icon-whatsapp {
  transform: scale(1.18);
}

.header-action-meeting i,
.header-action-dark i {
  color: var(--brass);
}

.header-action-meeting:hover,
.header-action-dark:hover {
  border-color: var(--brass);
  box-shadow: 0 8px 22px rgba(165, 118, 47, 0.22);
}

.header-action-meeting:hover i,
.header-action-dark:hover i {
  transform: scale(1.18);
}

/* Modern Rounded Nav Toggle (Mobile Hamburger) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(21, 48, 74, 0.16);
  background: var(--surface);
  font-size: 17px;
  color: var(--navy-deep);
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(13, 33, 52, 0.12);
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--paper);
  z-index: 55;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  overflow-y: auto;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 24px var(--gutter);
}

.mobile-nav li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav a {
  display: block;
  padding: 18px 4px;
  font-size: 18px;
  font-weight: 500;
}

.mobile-nav-actions {
  padding: 8px var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .primary-nav {
    display: block;
  }

  .header-actions {
    margin-left: 0;
    margin-right: 0;
    gap: 8px;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 1120px) and (min-width: 900px) {
  .header-actions {
    gap: 6px;
  }

  .header-action {
    width: 102px;
    min-width: 102px;
    max-width: 102px;
    height: 38px;
    min-height: 38px;
    font-size: 12.5px;
    padding: 0 6px;
    gap: 5px;
  }

  .header-action svg,
  .header-action i {
    font-size: 13.5px;
  }
}

@media (max-width: 899px) and (min-width: 641px) {
  .header-actions {
    gap: 8px;
  }

  .header-action {
    width: 106px;
    min-width: 106px;
    max-width: 106px;
    height: 38px;
    min-height: 38px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 7px;
    margin-right: 4px;
  }

  .header-action {
    padding: 0;
    width: 38px;
    height: 38px;
    min-width: 38px;
    max-width: 38px;
    min-height: 38px;
    max-height: 38px;
    border-radius: 50%;
  }

  .header-action span {
    display: none;
  }

  .header-action svg,
  .header-action i {
    font-size: 15px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .header-actions {
    gap: 5px;
    margin-right: 2px;
  }

  .header-action {
    width: 34px;
    height: 34px;
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    max-height: 34px;
  }

  .header-action svg,
  .header-action i {
    font-size: 13px;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

/* =============== HERO =============== */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-deep);
  color: var(--surface);
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(72px, 10vw, 120px);
}

@media (max-width: 899px) {
  .hero {
    padding-bottom: 108px;
  }
}

.hero-bg,
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 18, 30, 0.93) 0%, rgba(13, 33, 52, 0.86) 46%, rgba(13, 33, 52, 0.52) 100%);
}

@media (max-width: 799px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(8, 18, 30, 0.92) 0%, rgba(13, 33, 52, 0.86) 100%);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* Prevent grid tracks from expanding to a child's intrinsic (e.g. broken-image) size */
.lead-grid>*,
.human-grid>*,
.footer-grid>* {
  min-width: 0;
}

.hero-eyebrow {
  font-size: 15px;
  color: var(--brass-soft);
  margin-bottom: 18px;
  font-weight: 500;
}

.hero h1 {
  color: var(--surface);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(8, 18, 30, 0.35);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}

.hero.is-revealed h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: #E2E8EE;
  max-width: 480px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 640ms var(--ease) 120ms, transform 640ms var(--ease) 120ms;
}

.hero.is-revealed .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.hero-meta {
  margin-top: 18px;
  font-size: 14px;
  color: #93A2B2;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transition: opacity 640ms var(--ease) 220ms;
}

.hero.is-revealed .hero-actions {
  opacity: 1;
}

.hero-link-quiet {
  font-size: 15px;
  color: #C9D2DB;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
}

.hero-link-quiet:hover {
  border-color: #fff;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1100ms var(--ease), visibility 1100ms var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide-caption {
  margin-top: 28px;
  font-size: 14px;
  color: #C9D2DB;
  max-width: 420px;
  min-height: 2.8em;
}

.hero-slide-dots {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--brass-soft);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--brass-soft);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide img {
    transform: none;
    transition: none;
  }
}

/* =============== TRUST STRIP =============== */
.trust-strip {
  padding-block: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

@media (max-width: 899px) {
  .trust-strip {
    padding-bottom: 28px;
  }
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.trust-item {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  padding: 20px 8px 20px 16px;
  border-left: 2px solid var(--brass);
  border-bottom: 1px solid var(--border);
}

.trust-item:last-child {
  border-bottom: none;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

@media (min-width: 700px) and (max-width: 1099px) {
  .trust-list {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 22px 20px 22px 18px;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .trust-item:nth-child(n+3) {
    border-bottom: none;
  }
}

@media (min-width: 1100px) {
  .trust-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-item {
    padding: 22px 18px 22px 16px;
    border-bottom: none;
  }
}

/* =============== PROBLEM SELECTOR =============== */
.problem-section {
  background: var(--paper);
}

.problem-intro {
  max-width: 640px;
}

.problem-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

  .problem-card-wide {
    grid-column: 1 / -1;
  }
}

.problem-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 18px 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 220ms var(--ease), background-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.problem-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brass);
  min-width: 1.6em;
}

.problem-text {
  font-size: 16px;
  font-weight: 550;
  line-height: 1.35;
  color: var(--navy-deep);
}

.problem-go {
  color: var(--slate);
  font-size: 18px;
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}

.problem-card:hover,
.problem-card:focus-visible {
  border-color: var(--navy);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(13, 33, 52, 0.08);
}

.problem-card:hover .problem-go,
.problem-card:focus-visible .problem-go {
  color: var(--brass);
  transform: translateX(4px);
}

/* =============== SERVICES (editorial list, not card grid) =============== */
.service-list {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-block: 28px;
  border-bottom: 1px solid var(--border);
  transition: background-color 260ms var(--ease);
  scroll-margin-top: 100px;
}

@media (min-width: 780px) {
  .service-row {
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 28px;
  }
}

.service-row.is-highlighted {
  background: #EEEAdd;
}

.service-name-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: 1px solid rgba(165, 118, 47, 0.28);
  background: #F7F1E6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  flex-shrink: 0;
}

.service-icon i {
  font-size: 18px;
}

.service-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-deep);
}

.service-desc {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 46ch;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: #FFFFFF;
  border: 1.5px solid rgba(21, 48, 74, 0.15);
  color: var(--navy-deep);
  box-shadow: 0 2px 8px rgba(13, 33, 52, 0.05);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease);
}

.service-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.45) 50%, transparent 85%);
  transform: translateX(-135%);
  transition: transform 540ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.service-link:hover::after {
  transform: translateX(135%);
}

.service-link:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  border-color: var(--brass);
  color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(165, 118, 47, 0.22);
}

.service-link:active {
  transform: scale(0.96);
}

/* =============== WHY US =============== */
.reason-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

@media (min-width: 720px) {
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reason-item {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reason-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.reason-item p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* =============== PROCESS (real sequence -> numbering justified) =============== */
.process-list {
  margin-top: 48px;
  position: relative;
  max-width: 780px;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-block: 22px;
  position: relative;
  align-items: flex-start;
}

.process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 66px;
  bottom: -6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(165, 118, 47, 0.45) 0%, rgba(21, 48, 74, 0.12) 100%);
}

.process-index {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brass);
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(165, 118, 47, 0.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(13, 33, 52, 0.05);
  z-index: 1;
  flex-shrink: 0;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 240ms var(--ease),
    box-shadow 240ms var(--ease),
    background-color 240ms var(--ease);
}

.process-item:hover .process-index {
  border-color: var(--brass);
  background: #FAF7F0;
  box-shadow: 0 6px 18px rgba(165, 118, 47, 0.22);
  transform: translateY(-2px);
}

.process-item h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy-deep);
  margin-bottom: 6px;
  transition: color 200ms var(--ease);
}

.process-item:hover h3 {
  color: var(--brass);
}

.process-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0;
}

@media (max-width: 540px) {
  .process-item {
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding-block: 16px;
  }

  .process-item:not(:last-child)::after {
    left: 22px;
    top: 52px;
  }

  .process-index {
    width: 46px;
    height: 46px;
    font-size: 13.5px;
  }

  .process-item h3 {
    font-size: 17px;
  }
}

/* =============== EDUCATIONAL SECTION =============== */
.chain {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chain-node {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--ink);
  border-radius: 4px;
}

.chain-sep {
  color: var(--slate);
  font-size: 15px;
}

.edu-note {
  margin-top: 28px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 62ch;
  border-left: 2px solid var(--brass);
  padding-left: 16px;
}

/* =============== PROOF SECTION =============== */
.proof-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.proof-card {
  border: 1.5px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13, 33, 52, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 240ms var(--ease);
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: var(--brass-soft);
  box-shadow: 0 16px 36px rgba(13, 33, 52, 0.1);
}

.proof-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0B1723;
  overflow: hidden;
}

.proof-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.proof-card:hover .proof-img {
  transform: scale(1.05);
}

.proof-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background: rgba(13, 33, 52, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.proof-badge i {
  color: #F2BE65;
}

.proof-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.proof-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
  line-height: 1.35;
}

.proof-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.proof-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(219, 214, 199, 0.6);
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
}

.proof-meta i {
  color: var(--brass);
  margin-right: 2px;
}

.proof-amount {
  color: var(--success);
  font-weight: 700;
}

/* =============== HUMAN TRUST =============== */
.human-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 960px) {
  .human-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }
}

.human-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(13, 33, 52, 0.08);
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-inline: auto;
}

.human-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.human-photo-card:hover .human-img {
  transform: scale(1.04);
}

.human-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13, 33, 52, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(199, 154, 85, 0.45);
  border-radius: 14px;
  padding: 14px 18px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.human-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F2BE65 0%, #A5762F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111A26;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(165, 118, 47, 0.35);
}

.human-badge-float strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.human-badge-float span {
  display: block;
  font-size: 12.5px;
  color: #C9D6E2;
  margin-top: 2px;
}

.human-content {
  display: flex;
  flex-direction: column;
}

.human-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 600px) {
  .human-points {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.human-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.human-point-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(13, 33, 52, 0.04);
}

.human-point h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.human-point p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.human-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =============== FAQ =============== */
.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 220ms var(--ease);
  color: var(--slate);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
}

.faq-answer-inner {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 66ch;
}

/* =============== LEAD FORM =============== */
.lead-section {
  background: linear-gradient(180deg, #11283F 0%, #0C1E30 100%);
  color: var(--surface);
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(48px, 6vw, 76px);
  position: relative;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 940px) {
  .lead-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}

.lead-copy h2 {
  color: var(--surface);
}

.lead-copy p {
  color: #C9D2DB;
}

.lead-form {
  background: var(--surface);
  padding: clamp(26px, 3.5vw, 42px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 620px) {
  .form-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  font-size: 13px;
  color: var(--error);
  margin-top: 6px;
  min-height: 16px;
}

.field-hint {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.form-submit-row {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-submit-row .btn {
  align-self: flex-start;
  min-height: 48px;
  padding: 13px 32px;
}

@media (max-width: 640px) {
  .form-submit-row .btn {
    width: 100%;
    justify-content: center;
  }
}

.form-status {
  font-size: 14.5px;
  min-height: 20px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

/* =============== CURVED DIVIDER (BETWEEN LEAD & FOOTER) =============== */
.curve-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #0C1E30; /* matches bottom of lead-section */
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}

.curve-separator svg {
  display: block;
  width: 100%;
  height: clamp(34px, 4.5vw, 60px);
}

/* =============== FOOTER =============== */
.site-footer {
  background: #070F18;
  color: #A3B1BF;
  padding-top: clamp(28px, 3.5vw, 48px);
  padding-bottom: 32px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 780px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand .wordmark {
  color: var(--surface);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 14.5px;
  max-width: 32ch;
  color: #A9B4BF;
}

.footer-col h4 {
  color: var(--surface);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col li {
  font-size: 14.5px;
  color: #A9B4BF;
}

.footer-col a:hover {
  color: var(--surface);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13.5px;
  color: #8895A2;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============== FLOATING / MOBILE ACTIONS =============== */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.38);
}

@media (min-width: 900px) {
  .floating-whatsapp {
    display: flex;
  }
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 900px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-action-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 12px;
  font-size: 12px;
  color: var(--navy-deep);
  min-height: 44px;
  justify-content: center;
}

.mobile-action-bar a:not(:last-child) {
  border-right: 1px solid var(--border);
}

.mobile-action-bar i {
  font-size: 18px;
}

.floating-whatsapp i {
  font-size: 26px;
}

/* keep last section clear of mobile bar */
body {
  padding-bottom: 0;
}

@media (max-width: 899px) {
  .site-footer {
    padding-bottom: 96px;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* =============== SCROLL REVEAL ANIMATIONS (PAGE-WIDE) =============== */
.js-scroll-animate .scroll-reveal:not(.reveal-done) {
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Hidden initial state until element scrolls into view */
.js-scroll-animate .scroll-reveal:not(.is-revealed) {
  opacity: 0;
  transform: translateY(26px);
  pointer-events: none;
}

/* Section Header Specific Trajectories */
.js-scroll-animate .section-label.scroll-reveal:not(.is-revealed) {
  transform: translateY(14px);
}

/* =============== EDITORIAL MASKED CLIP REVEAL (HEADINGS) =============== */
.js-scroll-animate .section-heading.heading-masked-reveal {
  overflow: hidden;
  display: block;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  transform: none !important;
  opacity: 1 !important;
}

.js-scroll-animate .section-heading.heading-masked-reveal .heading-reveal-inner {
  display: block;
  transform: translateY(112%);
  opacity: 0;
  transition: transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 650ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 80ms;
  will-change: transform, opacity;
}

.js-scroll-animate .section-heading.heading-masked-reveal.is-revealed .heading-reveal-inner {
  transform: translateY(0);
  opacity: 1;
}

.js-scroll-animate .section-heading.heading-masked-reveal.reveal-done {
  overflow: visible;
}

.js-scroll-animate .section-heading.heading-masked-reveal.reveal-done .heading-reveal-inner {
  transform: none;
  transition: none;
  will-change: auto;
}

.js-scroll-animate .section-intro.scroll-reveal:not(.reveal-done),
.js-scroll-animate .problem-intro.scroll-reveal:not(.reveal-done) {
  transition-duration: 680ms;
}

.js-scroll-animate .section-intro.scroll-reveal:not(.is-revealed),
.js-scroll-animate .problem-intro.scroll-reveal:not(.is-revealed) {
  transform: translateY(18px);
}

.js-scroll-animate .edu-note.scroll-reveal:not(.is-revealed) {
  transform: translateY(18px);
}

/* Timeline & Cards Specific Trajectories */
.js-scroll-animate .process-item.scroll-reveal:not(.is-revealed) {
  transform: translateY(22px);
}

.js-scroll-animate .proof-card.scroll-reveal:not(.is-revealed) {
  transform: translateY(30px);
}

.js-scroll-animate .service-row.scroll-reveal:not(.is-revealed) {
  transform: translateY(18px);
}

.js-scroll-animate .human-photo-frame.scroll-reveal:not(.is-revealed) {
  transform: translateY(28px);
}

.js-scroll-animate .lead-form.scroll-reveal:not(.is-revealed) {
  transform: translateY(28px);
}

/* Accessibility: respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .js-scroll-animate .scroll-reveal,
  .js-scroll-animate .scroll-reveal:not(.is-revealed) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
  }
}