/* ============================================================
   REAV Design System v3 — Editorial Industrial
   Brand: #3C3C9E | Plus Jakarta Sans + DM Sans
   ============================================================ */

/* --- Tokens --- */
:root {
  --reav: #3C3C9E;
  --reav-dark: #2A2A6E;
  --reav-deeper: #1C1C48;
  --reav-light: #EDEDF8;
  --reav-glow: #6C6CD0;
  --reav-soft: #8B8BDF;
  --dark: #0E0E2A;
  --dark-card: #171740;
  --dark-border: #252550;
  --text: #1A1A2E;
  --text-secondary: #52527A;
  --surface: #F5F5FB;
  --green: #10B981;
  --green-soft: #ECFDF5;
  --border: #E2E2EE;
  --white: #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --container-wide: 1400px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--reav), var(--reav-glow), var(--reav-soft));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* --- Typography --- */
h1, .h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}
h2, .h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
h3, .h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 55ch;
  line-height: 1.7;
}
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--reav);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--reav);
  border-radius: 2px;
}
.text-secondary { color: var(--text-secondary); }

/* Gradient text accent */
.gradient-text {
  background: linear-gradient(135deg, var(--reav) 0%, var(--reav-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Sections */
.section { padding: 120px 0; position: relative; }
.section-dark {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark .subtitle,
.section-dark .text-secondary { color: rgba(255,255,255,.8); }
.section-dark .eyebrow { color: var(--reav-glow); }
.section-dark .eyebrow::before { background: var(--reav-glow); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-surface {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

/* Section headers — left-aligned by default for editorial feel */
.section-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .subtitle { margin-inline: auto; }
.section-header .subtitle { margin-top: 20px; }

/* --- Section Dividers (wavy transitions) --- */
.divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 2;
}
.divider svg {
  display: block;
  width: 100%;
}

/* --- Grid --- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Bento grid — mixed sizes */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

/* Flex */
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Fade up (default reveal) */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from left */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

/* Slide in from right */
.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }

/* Text reveal — words clip in */
.text-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.text-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-reveal.visible .word-inner {
  transform: translateY(0);
}
.text-reveal .word:nth-child(2) .word-inner { transition-delay: 0.05s; }
.text-reveal .word:nth-child(3) .word-inner { transition-delay: 0.1s; }
.text-reveal .word:nth-child(4) .word-inner { transition-delay: 0.15s; }
.text-reveal .word:nth-child(5) .word-inner { transition-delay: 0.2s; }
.text-reveal .word:nth-child(6) .word-inner { transition-delay: 0.25s; }
.text-reveal .word:nth-child(7) .word-inner { transition-delay: 0.3s; }
.text-reveal .word:nth-child(8) .word-inner { transition-delay: 0.35s; }

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Ambient orb drift */
@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Gradient shift */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Line draw */
@keyframes line-draw {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

/* Pulse ring */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   AMBIENT DECORATIONS
   ============================================================ */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-drift 20s ease-in-out infinite;
  z-index: 0;
}
.ambient-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(60, 60, 158, 0.08);
  top: 10%;
  right: -5%;
}
.ambient-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(108, 108, 208, 0.06);
  bottom: 20%;
  left: -3%;
  animation-delay: -7s;
}
.ambient-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.05);
  top: 50%;
  right: 15%;
  animation-delay: -13s;
}

/* ============================================================
   SPOTLIGHT EFFECT (Stripe-style cursor glow on cards)
   ============================================================ */
.spotlight {
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  position: relative;
  overflow: hidden;
}
.spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    350px circle at var(--spotlight-x) var(--spotlight-y),
    rgba(60, 60, 158, 0.08),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.spotlight:hover::after { opacity: 1; }

/* Gradient border glow on hover (Linear-style) */
.glow-border {
  position: relative;
}
.glow-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(60,60,158,.4), transparent 50%, rgba(108,108,208,.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.glow-border:hover::before { opacity: 1; }

/* ============================================================
   COMPONENTS
   ============================================================ */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--reav);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(60,60,158,.25);
}
.btn-primary:hover {
  background: var(--reav-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60,60,158,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--reav);
  border-color: rgba(60,60,158,.2);
}
.btn-secondary:hover {
  background: var(--reav-light);
  border-color: var(--reav);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--reav);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(60,60,158,.08), 0 8px 24px rgba(0,0,0,.04);
  border-color: rgba(60,60,158,.15);
}

.card-featured {
  border-color: var(--reav);
  box-shadow: 0 0 0 1px var(--reav), 0 8px 32px rgba(60,60,158,.12);
}

.card-dark {
  background: var(--dark-card);
  border-color: var(--dark-border);
  color: var(--white);
}
.card-dark:hover {
  background: #1E1E4A;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border-color: rgba(108,108,208,.3);
}

.card-glass {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.8);
}

/* Card with colored left accent */
.card-accent {
  border-left: 3px solid var(--reav);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tag-reav { background: var(--reav-light); color: var(--reav); }
.tag-green { background: var(--green-soft); color: var(--green); }
.tag-dark {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.12);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand img { height: 140px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.25s;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--reav);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { width: 100%; }
.nav-links a:not(.btn):hover, .nav-links a:not(.btn).active { color: var(--reav); }
.nav-links .btn-primary { color: #fff !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 24px; height: 24px; color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
}

/* Geometric background pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 30%, rgba(60,60,158,.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 70%, rgba(108,108,208,.04) 0%, transparent 70%);
  animation: orb-drift 25s ease-in-out infinite;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(60,60,158,.03) 1px, transparent 1px),
    linear-gradient(rgba(60,60,158,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { z-index: 1; }
.hero-text .tag { margin-bottom: 28px; }
.hero-text h1 { margin-bottom: 24px; }
.hero-text .subtitle { margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* Hero visual — video with floating badges */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow:
    0 40px 80px rgba(60,60,158,.1),
    0 16px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(60,60,158,.08);
}
.hero-video-wrap video,
.hero-video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,30,.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Hero floating badges */
.hero-badge {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 6s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay: -2s; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-section {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.trust-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 24px;
}
.trust-track {
  display: flex;
  gap: 72px;
  align-items: center;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.trust-track img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(50%);
  transition: all 0.4s;
}
.trust-track img:hover { opacity: 1; filter: none; }

/* ============================================================
   STATS BAR — Large editorial numbers
   ============================================================ */
.stats-section {
  padding: 80px 0;
  position: relative;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.stats-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(60,60,158,.15) 0%, transparent 50%, rgba(108,108,208,.1) 100%);
  pointer-events: none;
}
.stat-item {
  padding: 44px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.stats-note {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  text-align: right;
}

/* Stats on light backgrounds (inside cards) */
.card .stat-value { color: var(--reav); }
.card .stat-label { color: var(--text-secondary); }

/* ============================================================
   PROBLEM SECTION — Asymmetric layout
   ============================================================ */
.problem-layout {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 80px;
  align-items: start;
}
.problem-header {
  position: sticky;
  top: 120px;
}

.pain-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.pain-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--reav-glow);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 0 3px 0;
}
.pain-card:hover::after { height: 100%; }
.pain-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateX(4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.pain-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(108,108,208,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-card .icon-wrap svg { width: 22px; height: 22px; color: var(--reav-glow); }
.pain-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.pain-card p { color: rgba(255,255,255,.75); font-size: 0.95rem; line-height: 1.65; }

/* ============================================================
   SOLUTION SECTION — Bento grid
   ============================================================ */
.solution-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--reav), var(--reav-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(60,60,158,.1);
  border-color: rgba(60,60,158,.15);
}

/* Bento: first two cards span wider on second row */
.solution-bento .solution-card:nth-child(4),
.solution-bento .solution-card:nth-child(5) {
  /* These naturally flow into a 2-col second row if only 2 items */
}

.solution-card .card-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--reav-light);
  letter-spacing: -0.04em;
}
.solution-card h3 { font-size: 1.2rem; }
.solution-card .text-secondary { font-size: 0.95rem; line-height: 1.65; }

/* Two-col layout for last row */
.solution-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ============================================================
   SEENSYS / PROOF SECTION
   ============================================================ */
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proof-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.proof-stat-card:hover {
  border-color: var(--reav);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(60,60,158,.08);
}
.proof-stat-card .stat-value {
  font-size: 2rem;
  color: var(--reav);
  margin-bottom: 4px;
}
.proof-stat-card .stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}
.proof-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.proof-detail p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 16px;
}
.timeline-line {
  position: absolute;
  top: 28px;
  left: 56px;
  right: 56px;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.timeline-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--reav), var(--reav-glow));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-line-fill.active { width: 100%; }

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}
.timeline-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--reav);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(60,60,158,.25);
  transition: all 0.3s;
  position: relative;
}
/* Pulse effect on timeline numbers */
.timeline-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--reav);
  opacity: 0;
  transition: opacity 0.3s;
}
.timeline-step:hover .timeline-num::after {
  opacity: 0.3;
  animation: pulse-ring 1.5s ease-out infinite;
}
.timeline-step:hover .timeline-num {
  transform: scale(1.1);
}
.timeline-step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  max-width: 120px;
}

/* ============================================================
   ENGAGEMENT MODELS
   ============================================================ */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.model-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Featured card is elevated */
.model-card.card-featured {
  transform: translateY(-8px);
  z-index: 1;
}
.model-card.card-featured:hover {
  transform: translateY(-12px);
}
.model-card .ideal-for {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}
.model-card .ideal-for strong { color: var(--reav); }

/* ============================================================
   ECOSYSTEM CARDS
   ============================================================ */
.eco-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eco-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
}
.eco-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--white);
  padding: 4px;
  border: 1px solid var(--border);
}
.eco-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--reav);
  margin-bottom: 6px;
}
.eco-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
/* Animated gradient background for CTA — masked at top to blend with wave */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 60%, rgba(108,108,208,.12), transparent),
    radial-gradient(ellipse 500px 300px at 80% 70%, rgba(60,60,158,.1), transparent);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
  animation: orb-drift 20s ease-in-out infinite;
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section .subtitle {
  color: rgba(255,255,255,.8);
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: center;
}
.cta-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.cta-contact-info svg { width: 15px; height: 15px; }
.cta-contact-info a { color: rgba(255,255,255,.85); transition: color 0.2s; }
.cta-contact-info a:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-links-col {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--reav); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-social:hover { color: var(--reav); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}
.form-input, .form-textarea, .form-select {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: all 0.3s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--reav);
  box-shadow: 0 0 0 4px rgba(60,60,158,.08);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  table-layout: fixed;
}
.compare-table th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: 18px 16px;
  text-align: left;
  border-bottom: 2px solid var(--reav);
  color: var(--reav);
  font-size: 14px;
}
.compare-table th:first-child { width: 22%; }
.compare-table th:not(:first-child) { width: 26%; }
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--text); min-width: 140px; }
.compare-table tr:hover td { background: var(--surface); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(60,60,158,.2); }
.faq-item.open { border-color: var(--reav); box-shadow: 0 4px 20px rgba(60,60,158,.06); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: var(--white);
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  transition: all 0.2s;
}
.faq-question:hover { background: var(--surface); }
.faq-question svg {
  width: 20px; height: 20px;
  color: var(--text-secondary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-question { color: var(--reav); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--reav); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
  padding: 0 24px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 22px; }

/* ============================================================
   PHASE BLOCKS (Method page)
   ============================================================ */
.phase-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.phase-block:last-child { border-bottom: none; }
.phase-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--reav);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(60,60,158,.2);
}
.phase-content h3 { margin-bottom: 8px; }
.phase-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}
.phase-content ul { list-style: none; padding: 0; color: var(--text-secondary); }
.phase-content ul li { padding: 4px 0 4px 20px; position: relative; }
.phase-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--reav-glow);
}
.phase-deliverables {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 14px;
  border: 1px solid var(--border);
}
.phase-deliverables strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 120px 0 80px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 80% 20%, rgba(60,60,158,.03), transparent);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 18px; position: relative; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
  border-color: transparent;
}
.blog-thumb {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--reav-light) 0%, rgba(108,108,208,.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-thumb svg { width: 48px; height: 48px; color: var(--reav-glow); }
.blog-body { padding: 24px; }
.blog-body .tag { margin-bottom: 12px; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.blog-date { font-size: 13px; color: var(--text-secondary); margin-top: 12px; font-weight: 500; }

/* ============================================================
   TEAM
   ============================================================ */
.team-card { text-align: center; }
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--reav-light) 0%, rgba(108,108,208,.2) 100%);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 8px 24px rgba(60,60,158,.1);
  transition: all 0.3s;
}
.team-photo img {
  width: 115%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(60,60,158,.15);
}
.team-photo svg { width: 56px; height: 56px; color: var(--reav-glow); }
.team-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.team-card .role { font-size: 14px; color: var(--reav); font-weight: 600; margin-bottom: 8px; }
.team-card .bio { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}

/* ============================================================
   PILLAR STRIP (services page)
   ============================================================ */
.pillar-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pillar-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.3s;
}
.pillar-item:hover { background: var(--surface); }
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--reav-light) 0%, rgba(108,108,208,.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 22px; height: 22px; color: var(--reav); }

/* ============================================================
   PROOF CARD (legacy support)
   ============================================================ */
.proof-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}
.proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--reav);
}
.proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proof-metric {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.proof-metric:hover {
  border-color: var(--reav);
  transform: translateY(-2px);
}
.proof-metric .stat-value {
  font-size: 1.6rem;
  color: var(--reav);
}
.proof-metric .stat-label { font-size: 13px; color: var(--text-secondary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4, .eco-row { grid-template-columns: repeat(2, 1fr); }
  .pillar-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .proof-card { grid-template-columns: 1fr; }
  .problem-layout { grid-template-columns: 1fr; gap: 40px; }
  .problem-header { position: static; }
  .proof-layout { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .model-card.card-featured { transform: none; }
  .model-card.card-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-bg-lines { display: none; }
  .brand img { height: 110px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .solution-bento { grid-template-columns: 1fr; }
  .solution-bottom { grid-template-columns: 1fr; }
  .eco-row { grid-template-columns: 1fr; }
  .pillar-strip { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius-lg); }
  .stat-item { padding: 28px 16px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-value { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* Service & Technology pillar grids: stack on mobile */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Reset order so image always comes after text on mobile */
  [style*="order:-1"] { order: 0 !important; }

  .timeline {
    flex-direction: column;
    gap: 28px;
    padding: 0;
  }
  .timeline-line { display: none; }
  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
  .timeline-num { flex-shrink: 0; width: 48px; height: 48px; font-size: 1rem; }
  .timeline-step h4 { max-width: none; }

  .nav-links a:not(.btn) { display: none; }
  .menu-toggle { display: block; }

  .phase-block { grid-template-columns: 1fr; }
  .phase-num { width: 52px; height: 52px; font-size: 1.3rem; }

  .footer-grid { flex-direction: column; gap: 24px; }
  .footer-links-col { flex-direction: column; gap: 10px; }

  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }

  .proof-card { padding: 32px; }
  .page-hero { padding: 100px 0 40px; }
  .cta-contact-info { flex-direction: column; gap: 12px; }
  .proof-stats { grid-template-columns: 1fr; }

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

  h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--reav); }
.mobile-nav .close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav .close-menu svg { width: 28px; height: 28px; color: var(--text); }

/* Utility */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mx-auto { margin-inline: auto; }
.max-w-prose { max-width: 70ch; }

/* Legacy support */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }
.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 320ms; }

/* Legacy footer support */
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-secondary); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--reav); }
.footer-contact a { color: var(--reav); font-weight: 700; font-size: 13px; }
.footer-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up, .slide-left, .slide-right, .scale-in,
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}
