@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@300;400;500&display=swap');

/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
:root {
  --navy: #05162d;
  --navy-mid: #0a2447;
  --navy-light: #0e3060;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --light-gray: #e8eaed;
  --mid-gray: #8a9ab0;
  --accent: #1a6fff;
  --accent-light: #4d8fff;
  --accent-glow: rgba(26, 111, 255, 0.15);
  --text-primary: #05162d;
  --text-secondary: #4a5e78;
  --text-muted: #8a9ab0;
  --border: rgba(5, 22, 45, 0.1);
  --border-light: rgba(255,255,255,0.1);

  --font: 'Geist', sans-serif;
  --font-mono: 'Geist Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1240px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: none; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: normal;
}

.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(26,111,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out);
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 6px; height: 6px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; }

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(5, 22, 45, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav__links a:hover { color: white; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(26,111,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26,111,255,0.06) 0%, transparent 60%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,111,255,0.1);
  border: 1px solid rgba(26,111,255,0.2);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.25s var(--ease-out);
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 30px rgba(26,111,255,0.3);
}

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(26,111,255,0.4);
}

.btn--ghost {
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn--ghost:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.btn svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.hero__stats {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  gap: 48px;
}

.hero__stat {
  text-align: right;
}

.hero__stat-num {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker__item::after {
  content: '✦';
  opacity: 0.5;
}

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

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.section-title.light { color: white; }

.section-subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 16px;
}

.section-subtitle.light { color: rgba(255,255,255,0.55); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}

.service-card:hover::before { transform: translateY(0); }

.service-card__num {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.service-card:hover .service-card__num { color: rgba(255,255,255,0.3); }

.service-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover .service-card__icon { transform: scale(1.1); }

.service-card__icon svg {
  width: 100%; height: 100%;
  color: var(--accent);
  transition: color 0.3s;
}

.service-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.service-card:hover .service-card__title { color: white; }

.service-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.service-card:hover .service-card__desc { color: rgba(255,255,255,0.55); }

.service-card__arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.3s var(--ease-out);
  transform: rotate(-45deg);
}

.service-card:hover .service-card__arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(0deg);
}

.service-card__arrow svg {
  width: 14px; height: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.service-card:hover .service-card__arrow svg { color: white; }

/* Hover image popup */
.service-card__popup {
  position: fixed;
  width: 280px; height: 200px;
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  box-shadow: 0 30px 80px rgba(5,22,45,0.3);
}

.service-card__popup.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.service-card__popup img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how-we-work {
  background: var(--navy);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  padding: 48px 32px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.process-step::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.process-step:last-child::after { display: none; }

.process-step:hover { background: var(--navy-mid); }

.process-step__num {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.process-step__icon {
  width: 52px; height: 52px;
  background: rgba(26,111,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, transform 0.4s var(--ease-out);
}

.process-step:hover .process-step__icon {
  background: rgba(26,111,255,0.2);
  transform: scale(1.05);
}

.process-step__icon svg { width: 24px; height: 24px; color: var(--accent); }

.process-step__title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-step__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}

.stat-item {
  background: white;
  padding: 48px 40px;
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover { background: var(--navy); }
.stat-item:hover .stat-item__num,
.stat-item:hover .stat-item__suffix { color: white; }
.stat-item:hover .stat-item__label { color: rgba(255,255,255,0.45); }

.stat-item__num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline;
  transition: color 0.3s;
}

.stat-item__suffix {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--accent);
  display: inline;
  transition: color 0.3s;
}

.stat-item__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

/* ============================================================
   CAROUSEL / TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: white;
}

.testimonials__track-wrap {
  overflow: hidden;
  margin-top: 64px;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(26,111,255,0.3);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-card__company {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonials__controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.testimonials__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  color: var(--text-secondary);
}

.testimonials__btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.testimonials__btn svg { width: 16px; height: 16px; }

/* ============================================================
   NEWSROOM
   ============================================================ */
.newsroom {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

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

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(5,22,45,0.1);
}

.news-card__img {
  width: 100%;
  height: 220px;
  background: var(--navy-mid);
  overflow: hidden;
  position: relative;
}

.news-card--large .news-card__img { height: 300px; }

.news-card__img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out);
}

.news-card:hover .news-card__img-inner { transform: scale(1.04); }

.news-card__img-inner svg { width: 48px; height: 48px; color: rgba(255,255,255,0.15); }

.news-card__body { padding: 28px; }

.news-card__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.news-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-card--large .news-card__title { font-size: 21px; }

.news-card__excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-card__meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,111,255,0.12), transparent);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.cta-section__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.cta-section__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.6;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #020d1e;
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.5);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}

.footer__brand img { height: 32px; margin-bottom: 20px; }

.footer__brand p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 260px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer__col ul li a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { transition: color 0.2s; }
.footer__bottom-links a:hover { color: white; }

/* ============================================================
   ANIMATIONS (initial states for GSAP)
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-in { opacity: 0; }
.slide-left { opacity: 0; transform: translateX(-40px); }
.slide-right { opacity: 0; transform: translateX(40px); }
.scale-in { opacity: 0; transform: scale(0.92); }

/* ============================================================
   PAGE TRANSITION
   ============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9000;
  transform: translateY(100%);
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .newsroom__grid { grid-template-columns: 1fr 1fr; }
  .newsroom__grid .news-card--large { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cta-section__content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .newsroom__grid { grid-template-columns: 1fr; }
  .testimonials__track .testimonial-card { flex: 0 0 calc(100% - 24px); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .services__header { flex-direction: column; align-items: flex-start; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
