/* ============================================
   INCUBADORA GROWTH — Design System
   Clinical Premium Theme
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Primary palette */
  --navy-deep: #0F2B3C;
  --navy-darker: #0A1628;
  --navy-light: #1a3d52;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #6cf8bb;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --amber-dark: #D97706;

  /* Surfaces */
  --surface: #F8FAFC;
  --surface-alt: #F1F5F9;
  --surface-container: #eaeef2;
  --white: #FFFFFF;

  /* Text */
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --text-on-dark: #F1F5F9;
  --text-on-dark-muted: #94A3B8;

  /* Borders & outlines */
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --outline-variant: #c3c7cc;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-emerald: 0 0 30px rgba(16, 185, 129, 0.3);
  --shadow-amber: 0 0 30px rgba(245, 158, 11, 0.3);

  /* Spacing */
  --section-py: 6rem;
  --section-py-lg: 8rem;
  --container-px: 1.5rem;
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(15, 43, 60, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 20px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--surface);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.section--lg {
  padding: var(--section-py-lg) 0;
}

.section--dark {
  background: var(--navy-darker);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p {
  color: var(--text-on-dark-muted);
}

.section--alt {
  background: var(--surface-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header .eyebrow {
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:hover {
  background: var(--emerald-dark);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-medium);
}

.btn--secondary:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.btn--amber {
  background: var(--amber);
  color: var(--navy-deep);
  box-shadow: var(--shadow-md);
}

.btn--amber:hover {
  background: var(--amber-dark);
  box-shadow: var(--shadow-amber);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--emerald);
  font-size: 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card--glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-slow);
}

.card--glass:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.card--glass .card__title {
  color: var(--white);
}

.card--glass p {
  color: var(--text-on-dark-muted);
}

.card--accent-left {
  border-left: 4px solid var(--emerald);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(15, 43, 60, 0.95);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid transparent;
  background-clip: padding-box;
}

/* backdrop-filter via pseudo-element to avoid breaking position:fixed
   on descendants (mobile menu was confined to navbar bounds) */
.navbar.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  z-index: -1;
  pointer-events: none;
}

.navbar.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0.4;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.navbar__logo {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: opacity var(--transition-base);
}

.navbar__logo:hover {
  opacity: 0.85;
}

.navbar__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.navbar.scrolled .navbar__logo-img {
  height: 28px;
}

@media (max-width: 480px) {
  .navbar__logo-img {
    height: 26px;
  }
  .navbar.scrolled .navbar__logo-img {
    height: 24px;
  }
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--white);
}

.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--emerald);
  border-radius: 1px;
}

.navbar__cta .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* Mobile menu */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-darker);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.navbar__mobile-menu.open {
  display: flex;
}

.navbar__mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }
}

/* --- Hero --- */
.hero {
  background: var(--navy-darker);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Dots pattern replaced by particle canvas */

/* Gradient mesh accent */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(16,185,129,0.1) 0%, rgba(245,158,11,0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.1875rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero__metrics {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__metric {
  text-align: left;
}

.hero__metric-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.hero__metric-label {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  margin-top: 0.25rem;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(15, 43, 60, 0.5));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
}

.hero__image-photo {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 80px rgba(16, 185, 129, 0.15), 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Hero Canvas (particles) --- */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Hero Visual: Health-Themed 3D Composition --- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 450px;
  margin: 0 auto;
}

.hero-visual__filters { position: absolute; }

/* --- Hero Metric Top (sparkline next to value) --- */
.hero__metric-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Animated EKG heartbeat line */
.hero-visual__ekg {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 80px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
}

.hero-visual__ekg-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

/* Central medical cross + pulse rings */
.hero-visual__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  z-index: 2;
}

.hero-visual__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.15);
  animation: ringPulse 3s ease-out infinite;
}

.hero-visual__ring--2 { animation-delay: 1s; }
.hero-visual__ring--3 { animation-delay: 2s; }

@keyframes ringPulse {
  0% { transform: scale(0.6); opacity: 0.6; border-color: rgba(16, 185, 129, 0.3); }
  100% { transform: scale(2.2); opacity: 0; border-color: rgba(16, 185, 129, 0); }
}

.hero-visual__cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: crossGlow 4s ease-in-out infinite alternate;
}

@keyframes crossGlow {
  0% { filter: drop-shadow(0 0 8px rgba(16,185,129,0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(16,185,129,0.6)); }
}

/* DNA Helix strands */
.hero-visual__dna {
  position: absolute;
  right: 5%;
  top: 10%;
  width: 60px;
  height: 80%;
  z-index: 1;
  opacity: 0;
}

.hero-visual__dna-strand {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 3px, rgba(16,185,129,0.5) 100%, transparent 100%) 0 0 / 12px 24px,
    radial-gradient(circle 3px, rgba(16,185,129,0.3) 100%, transparent 100%) 6px 12px / 12px 24px;
  animation: dnaScroll 4s linear infinite;
}

.hero-visual__dna-strand--b {
  opacity: 0.4;
  animation-direction: reverse;
  animation-duration: 5s;
  filter: blur(1px);
}

@keyframes dnaScroll {
  0% { background-position: 0 0, 6px 12px; }
  100% { background-position: 0 48px, 6px 60px; }
}

/* Floating glassmorphism cards */
.hero-visual__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 3;
  opacity: 0;
}

.hero-visual__card-icon { font-size: 1.3rem; }

.hero-visual__card-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--emerald);
  display: block;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(16,185,129,0.3);
}

.hero-visual__card-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual__card--1 {
  top: 5%;
  right: 0;
}

.hero-visual__card--2 {
  bottom: 25%;
  left: -5%;
}

.hero-visual__card--3 {
  bottom: 5%;
  right: 10%;
}

/* Orbiting dots */
.hero-visual__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  transform: translate(-50%, -50%);
  animation: orbitSpin 20s linear infinite;
  z-index: 1;
}

.hero-visual__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px rgba(16,185,129,0.5);
}

.hero-visual__dot--1 { top: 0; left: 50%; }
.hero-visual__dot--2 { top: 25%; right: 0; background: var(--amber); box-shadow: 0 0 10px rgba(245,158,11,0.5); }
.hero-visual__dot--3 { bottom: 0; left: 50%; }
.hero-visual__dot--4 { top: 25%; left: 0; }
.hero-visual__dot--5 { bottom: 25%; right: 0; width: 4px; height: 4px; }
.hero-visual__dot--6 { bottom: 25%; left: 0; background: var(--amber); box-shadow: 0 0 10px rgba(245,158,11,0.5); width: 4px; height: 4px; }

@keyframes orbitSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 1024px) {
  .hero-visual__card { display: none; }
  .hero-visual__dna { display: none; }
  .hero-visual__orbit { width: 250px; height: 250px; }
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin: 0 auto 2rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__metrics {
    justify-content: center;
  }

  .hero__image {
    display: none;
  }
}

/* Tablet & smaller — stack metrics, full-width buttons */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

  .hero h1 {
    margin-bottom: 1.25rem;
  }

  .hero__subtitle {
    font-size: 1.0625rem;
    margin: 0 auto 1.75rem;
  }

  .hero__buttons {
    margin-bottom: 2.5rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  .hero__metrics {
    justify-content: space-around;
    gap: 1.25rem;
  }

  .hero__metric {
    text-align: center;
  }

  .hero__metric-top {
    justify-content: center;
  }

  .navbar__mobile-menu .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Phone — tighter padding, single-column metrics, badge wrap */
@media (max-width: 480px) {
  .hero {
    padding: 5rem 0 2rem;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
    text-align: center;
    line-height: 1.3;
    max-width: 95vw;
  }

  .hero h1 {
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
  }

  .hero__buttons {
    margin-bottom: 2rem;
  }

  .hero__metrics {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }
}

/* --- Authority Bar --- */
.authority-bar {
  background: var(--surface-alt);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.authority-bar__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
}

.authority-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.authority-bar__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.authority-bar__logo:hover {
  opacity: 0.8;
  color: var(--emerald);
  transform: scale(1.05);
}

.authority-bar__logo {
  transition: all 0.3s ease;
}

.authority-bar__sub {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

/* --- Problem Section --- */
.problem .card__icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

/* --- Solution Section --- */
.solution {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-darker) 100%);
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--emerald);
}

.step__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9375rem;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps::before {
    display: none;
  }
}

/* --- Testimonials --- */
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-card__video {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card__play {
  width: 56px;
  height: 56px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-emerald);
  transition: transform var(--transition-base);
}

.testimonial-card__play:hover {
  transform: scale(1.1);
}

.testimonial-card__stars {
  color: var(--amber);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonial-card__quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.testimonial-card__author {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 0.9375rem;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
}

/* Light bg variant */
.testimonial-card--light {
  background: var(--white);
  border-color: var(--border-light);
}

.testimonial-card--light .testimonial-card__quote {
  color: var(--text-secondary);
}

.testimonial-card--light .testimonial-card__author {
  color: var(--navy-deep);
}

.testimonial-card--light .testimonial-card__role {
  color: var(--text-muted);
}

.testimonial-card--light .testimonial-card__video {
  background: var(--surface-alt);
}

/* --- Specialties Grid --- */
.specialty-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.specialty-card:hover {
  border-color: var(--emerald);
  background: rgba(16, 185, 129, 0.04);
  box-shadow: var(--shadow-md);
}

.specialty-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.specialty-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-deep);
}

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

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-deep);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--emerald);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.faq-item.open .faq-item__icon {
  background: var(--emerald);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  overflow: hidden;
  height: 0;
  transition: height var(--transition-base);
}

.faq-item__answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy-deep) 50%, rgba(16, 185, 129, 0.15) 100%);
  text-align: center;
  padding: var(--section-py-lg) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.cta-section p {
  color: var(--text-on-dark-muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
  position: relative;
}

.cta-section .btn {
  position: relative;
}

.cta-section__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  position: relative;
}

/* --- Footer --- */
.footer {
  background: var(--navy-darker);
  padding: 4rem 0 2rem;
  color: var(--text-on-dark-muted);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1.25fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

.footer__contact-block h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  color: var(--emerald-light);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer__contact-link:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
}

.footer__contact-link svg {
  flex-shrink: 0;
}

.footer__contact-note {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--emerald);
  color: var(--white);
}

.footer__column h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer__column a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.footer__column a:hover {
  color: var(--emerald);
}

.footer__newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer__newsletter input {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer__newsletter input::placeholder {
  color: var(--text-muted);
}

.footer__newsletter input:focus {
  border-color: var(--emerald);
}

.footer__newsletter button {
  padding: 0.625rem 1.25rem;
  background: var(--emerald);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  transition: background var(--transition-fast);
}

.footer__newsletter button:hover {
  background: var(--emerald-dark);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--emerald);
}

.footer__disclaimer {
  width: 100%;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.88), rgba(15, 43, 60, 0.82)),
    url('../img/solution-bg.png');
  background-size: cover;
  background-position: center;
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1rem;
  position: relative;
}

.page-hero p {
  color: var(--text-on-dark-muted);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.125rem;
  position: relative;
}

/* --- Contact Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Honeypot — hidden from users + assistive tech but visible to bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* Submit button states */
.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* Status messages */
.form-status {
  margin-top: 0.5rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-radius: var(--radius-sm);
  transition: padding 0.2s ease, background 0.2s ease;
}

.form-status:empty {
  display: none;
}

.form-status--success {
  padding: 0.875rem 1rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--emerald-dark);
  font-weight: 500;
}

.form-status--error {
  padding: 0.875rem 1rem;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #b91c1c;
  font-weight: 500;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Before/After --- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.comparison__side {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.comparison__side--before {
  background: var(--surface-alt);
  border: 1px solid var(--border-light);
}

.comparison__side--after {
  background: rgba(16, 185, 129, 0.06);
  border: 2px solid var(--emerald);
}

.comparison__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.comparison__side--before .comparison__label {
  color: var(--text-muted);
}

.comparison__side--after .comparison__label {
  color: var(--emerald);
}

.comparison__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
}

.comparison__item + .comparison__item {
  border-top: 1px solid var(--border-light);
}

.comparison__side--after .comparison__item {
  border-color: rgba(16, 185, 129, 0.2);
}

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

/* --- Contact Info Cards --- */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-card__icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.contact-info-card__icon--email {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}

.contact-info-card__icon--calendar {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

.contact-info-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}

.contact-info-card__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --- Locations --- */
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--navy-deep);
  transition: all var(--transition-base);
}

.location-tag:hover {
  border-color: var(--emerald);
  background: rgba(16, 185, 129, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.08);
}

.location-tag__flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.location-tag--more {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-dark);
  font-weight: 600;
}

.location-tag--more:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.05));
  border-color: var(--emerald);
}

.location-tag--more svg {
  color: var(--emerald);
}

/* --- Metrics Row --- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.metric-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.metric-card__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-card__label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.metric-card__arrow {
  color: var(--emerald);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .metrics-row { grid-template-columns: 1fr; }
}

/* --- Team Grid --- */
.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
}

.team-card__photo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.team-card__photo--icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04));
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: var(--emerald-dark);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.08);
}

.team-card:hover .team-card__photo--icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.08));
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 0;
  text-align: center;
}

/* --- Value Cards --- */
.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--emerald);
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

/* --- Founders Section --- */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founders__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.founders__image-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.founders__text h2 {
  margin-bottom: 1.5rem;
}

.founders__text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.founders__badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.founders__badge {
  padding: 0.5rem 1rem;
  background: var(--surface-alt);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .founders {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- Reveal animations (GSAP animates to opacity:1 via inline styles) --- */
.reveal {
  opacity: 0;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-emerald { color: var(--emerald); }
.text-amber { color: var(--amber); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }

/* --- Vertical Timeline (scroll-driven) --- */
@media (min-width: 769px) {
  .steps--vertical {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    position: relative;
    padding-left: 60px;
  }

  .steps--vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--emerald), var(--emerald-light));
    transform-origin: top;
    transform: scaleY(var(--line-scale, 0)) !important;
  }

  .steps--vertical .step {
    text-align: left;
    padding: 2rem 0 3rem 2rem;
    position: relative;
  }

  .steps--vertical .step::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 2.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--navy-deep);
    border: 2px solid var(--emerald);
    z-index: 2;
    transition: background 0.4s ease;
  }

  .steps--vertical .step.is-active::before {
    background: var(--emerald);
    box-shadow: 0 0 12px rgba(16,185,129,0.5);
  }

  .steps--vertical .step__number {
    width: auto;
    height: auto;
    border: none;
    background: none;
    border-radius: 0;
    margin: 0 0 0.75rem;
    font-size: 2.5rem;
    color: var(--amber);
    display: inline-block;
    opacity: 0;
  }

  .steps--vertical .step__title {
    opacity: 0;
  }

  .steps--vertical .step p {
    max-width: 500px;
    margin: 0;
    opacity: 0;
  }
}

/* --- Line Reveal Wrap --- */
.line-reveal-wrap {
  overflow: hidden;
}

/* Scroll progress bar: see WOW effects section below */

/* --- Section Divider --- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0.2;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Word Split Animation --- */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.word {
  display: inline-block;
}

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(16, 185, 129, 0.2);
  border-top-color: var(--emerald);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Custom cursor removed */

/* --- Scroll Down Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  z-index: 2;
}

.scroll-indicator__arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-on-dark-muted);
  border-bottom: 2px solid var(--text-on-dark-muted);
  transform: rotate(45deg);
  animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

@media (max-width: 768px) {
  .scroll-indicator { display: none; }
}

/* --- Language Switcher --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.lang-switcher a {
  color: rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.lang-switcher__divider {
  color: rgba(255, 255, 255, 0.3);
}

/* --- Footer Gradient Top Border --- */
.footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0.3;
  margin-bottom: 0;
}

/* --- Card Hover Emerald Top Border --- */
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top: 2px solid var(--emerald);
}

/* ============================================
   WOW EFFECTS — Premium Visual Styles
   ============================================ */

/* --- Hero Gradient Orbs (mesh gradient background) --- */
.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, rgba(16,185,129,0.05) 50%, transparent 70%);
  filter: blur(80px);
  top: -15%;
  right: -15%;
  animation: orbFloat1 14s ease-in-out infinite;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, rgba(245,158,11,0.03) 50%, transparent 70%);
  filter: blur(90px);
  bottom: -10%;
  left: -10%;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero__orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, rgba(6,182,212,0.06) 40%, transparent 70%);
  filter: blur(70px);
  top: 40%;
  left: 35%;
  animation: orbFloat3 16s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }
  25% {
    transform: translate(-40px, 30px) scale(1.08);
    border-radius: 42% 58% 55% 45%;
  }
  50% {
    transform: translate(20px, -20px) scale(0.95);
    border-radius: 55% 45% 42% 58%;
  }
  75% {
    transform: translate(-15px, -10px) scale(1.04);
    border-radius: 48% 52% 50% 50%;
  }
}

@keyframes orbFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }
  33% {
    transform: translate(60px, -40px) scale(1.1);
    border-radius: 45% 55% 60% 40%;
  }
  66% {
    transform: translate(-30px, 20px) scale(0.92);
    border-radius: 55% 45% 38% 62%;
  }
}

@keyframes orbFloat3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }
  50% {
    transform: translate(40px, -30px) scale(1.15);
    border-radius: 40% 60% 55% 45%;
  }
}

@media (max-width: 1024px) {
  .hero__orb--1 { width: 400px; height: 400px; }
  .hero__orb--2 { width: 300px; height: 300px; }
  .hero__orb--3 { width: 250px; height: 250px; }
}

@media (max-width: 480px) {
  .hero__orb--2, .hero__orb--3 { display: none; }
  .hero__orb--1 { width: 300px; height: 300px; }
}

/* --- Hero Sparkline Metrics --- */
.hero__metric {
  position: relative;
}

.hero__metric-spark {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  opacity: 0.5;
}

.hero__metric-value {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Proof Trio (testimonials with hard data) --- */
.proof-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.proof-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section--dark .proof-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(16, 185, 129, 0.15);
}

.proof-hd {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-darker));
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.proof-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: var(--font-display);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.proof-nm {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  font-family: var(--font-display);
}

.proof-rl {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  margin-top: 2px;
}

.proof-stat {
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.04), transparent);
}

.section--dark .proof-stat {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent);
}

.proof-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--emerald-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.section--dark .proof-num {
  color: var(--emerald-light);
}

.proof-sub {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  line-height: 1.45;
}

.section--dark .proof-sub {
  color: rgba(255, 255, 255, 0.7);
}

.proof-bd {
  padding: 1rem 1.5rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.proof-lbl {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.625rem;
}

.section--dark .proof-lbl {
  color: rgba(255, 255, 255, 0.5);
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.proof-tag {
  padding: 0.1875rem 0.625rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-size: 0.6875rem;
  color: var(--emerald-dark);
  font-weight: 600;
}

.section--dark .proof-tag {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--emerald-light);
}

.proof-qt {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-secondary);
  font-style: italic;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.section--dark .proof-qt {
  color: rgba(255, 255, 255, 0.75);
}

.proof-qt strong {
  color: var(--text-primary);
  font-style: normal;
}

.section--dark .proof-qt strong {
  color: #fff;
}

.proof-qt-bullet {
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
  font-style: normal;
  line-height: 1.4;
}

.proof-insight {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  line-height: 1.5;
}

.section--dark .proof-insight {
  color: rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .proof-trio { grid-template-columns: 1fr; max-width: 520px; }
}

/* --- Endorsement Grid (nosotros — trayectoria/respaldo) --- */
.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.endorsement-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.endorsement-item:hover {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08);
}

.endorsement-item img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.endorsement-item:hover img {
  opacity: 1;
  filter: brightness(0) invert(1);
}


@media (max-width: 640px) {
  .endorsement-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 520px;
  }
  .endorsement-item {
    padding: 1.25rem 0.75rem;
    min-height: 90px;
  }
  .endorsement-item img {
    max-width: 100px;
    max-height: 45px;
  }
}

/* --- Comparison Table (vs agencia) --- */
.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.comparison-table__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-table__col {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-table__col--vs {
  background: var(--surface-container);
  color: var(--text-secondary);
  border-right: 1px solid var(--border-light);
}

.comparison-table__col--us {
  background: var(--navy-deep);
  color: var(--emerald-light);
}

.comparison-table__col--us svg {
  flex-shrink: 0;
  stroke: var(--emerald);
}

.comparison-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-light);
}

.comparison-table__row:nth-child(odd) .comparison-table__cell--vs {
  background: var(--white);
}

.comparison-table__row:nth-child(even) .comparison-table__cell--vs {
  background: var(--surface-alt);
}

.comparison-table__cell {
  padding: 1.125rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.comparison-table__cell--vs {
  color: var(--text-secondary);
  border-right: 1px solid var(--border-light);
  position: relative;
}

.comparison-table__cell--vs::before {
  content: '✕';
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-right: 0.5rem;
  font-weight: 700;
}

.comparison-table__cell--us {
  background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(16,185,129,0.02));
  color: var(--navy-deep);
  font-weight: 500;
  position: relative;
}

.comparison-table__cell--us::before {
  content: '✓';
  color: var(--emerald-dark);
  font-size: 0.875rem;
  margin-right: 0.5rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .comparison-table__header { grid-template-columns: 1fr; }
  .comparison-table__col--vs { display: none; }
  .comparison-table__row { grid-template-columns: 1fr; }
  .comparison-table__cell--vs { display: none; }
  .comparison-table__cell--us { border-top: 1px solid rgba(16,185,129,0.15); }
  .comparison-table { box-shadow: var(--shadow-md); }
}

/* --- Proof Case Study (Romina timeline + screenshots) --- */
.proof-case {
  max-width: 860px;
  margin: 0 auto;
}

.proof-case__card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px -8px rgba(15, 43, 60, 0.12);
  overflow: hidden;
}

.proof-case__timeline {
  padding: 2rem;
}

.proof-hito {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.proof-hito__track {
  flex-shrink: 0;
  width: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-hito__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
  transition: box-shadow 0.3s ease;
}

.proof-hito__dot--start { background: var(--border-medium); }
.proof-hito__dot--mid {
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}
.proof-hito__dot--end {
  background: var(--emerald-dark);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.proof-hito__line {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, var(--border-light), rgba(16, 185, 129, 0.3));
}

.proof-hito__content {
  padding-bottom: 1.25rem;
  flex: 1;
}

.proof-hito:last-child .proof-hito__content {
  padding-bottom: 0;
}

.proof-hito__date {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}

.proof-hito__date--result {
  color: var(--emerald-dark);
}

.proof-hito__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.proof-hito__text--strong {
  color: var(--text-primary);
  font-weight: 600;
}

.proof-hito__text strong {
  color: var(--text-primary);
}

.proof-case__screenshots-bar {
  padding: 0.875rem 2rem;
  background: var(--surface-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof-case__screenshots-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
  font-family: var(--font-display);
}

.proof-case__screenshots {
  padding: 1.5rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.proof-case__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: block;
}

.proof-case__footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-light);
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.03));
}

.proof-case__quote-mark {
  font-size: 2rem;
  color: var(--emerald);
  opacity: 0.4;
  font-family: Georgia, serif;
  vertical-align: text-top;
  margin-right: 4px;
  line-height: 1;
}

.proof-case__quote-text {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.proof-case__quote-attr {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 640px) {
  .proof-case__screenshots {
    grid-template-columns: 1fr;
    padding: 1rem 1.25rem 1.5rem;
  }
  .proof-case__timeline { padding: 1.25rem; }
  .proof-case__footer { padding: 1rem 1.25rem; }
  .proof-case__screenshots-bar { padding: 0.75rem 1.25rem; }
}

/* --- Marquee (authority bar) --- */
/* --- Logo carousel (authority bar) --- */
.logo-carousel {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: logoScroll 32s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-slide {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 3.5rem;
  padding-right: 3.5rem;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  flex-shrink: 0;
}

.logo-item img {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Legacy marquee classes kept for reduced-motion fallback compatibility */
.marquee-track, .marquee-inner { display: none; }

/* --- CTA Blobs --- */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.cta-blob--1 {
  width: 400px;
  height: 400px;
  background: rgba(16,185,129,0.08);
  top: -100px;
  left: -100px;
  animation: blobDrift1 15s ease-in-out infinite;
}

.cta-blob--2 {
  width: 300px;
  height: 300px;
  background: rgba(245,158,11,0.05);
  bottom: -80px;
  right: -80px;
  animation: blobDrift2 18s ease-in-out infinite;
}

.cta-blob--3 {
  width: 350px;
  height: 350px;
  background: rgba(16,185,129,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobDrift3 20s ease-in-out infinite;
}

.cta-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 30px) scale(1.08); }
  66% { transform: translate(-20px, 50px) scale(0.95); }
}

@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -25px) scale(1.05); }
  66% { transform: translate(30px, -40px) scale(0.92); }
}

@keyframes blobDrift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-40%, -60%) scale(1.15); }
}

/* --- CTA Floating Particles --- */
.cta-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: particleFloat var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: var(--max-opacity, 0.15); }
  85% { opacity: var(--max-opacity, 0.15); }
  100% { opacity: 0; transform: translateY(-200px) scale(1); }
}

/* --- Testimonial Shine --- */
.testimonial-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 60px;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 2;
  animation: shineSwipe 6s ease-in-out infinite;
}

@keyframes shineSwipe {
  0%, 100% { left: -100%; }
  50% { left: 200%; }
}

/* Page transitions handled by wow-effects.js */

/* --- Decorative SVG Elements --- */
.deco-circles {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.deco-hex-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.025;
}

/* --- Problem Card 3D Tilt --- */
.problem .card {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

/* --- Specialty Card Hover Colors --- */
.specialty-card {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.specialty-card__icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light, #6cf8bb));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  [data-count] { opacity: 1 !important; filter: none !important; }
  .hero-dashboard__bar { transform: scaleY(1) !important; }
  .hero-dashboard__float { opacity: 1 !important; }
  .hero-dashboard__chart-line { stroke-dashoffset: 0 !important; }
  .hero__orb--1, .hero__orb--2, .hero__orb--3 { animation: none !important; }
  .marquee-inner { animation: none !important; }
  .logo-track { animation: none !important; }
  .cta-blob { animation: none !important; }
  .cta-particle { display: none !important; }
  .testimonial-shine { display: none !important; }
  canvas#heroParticles { display: none !important; }
  body { animation: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
