/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  --bg-deep: #010104;
  --bg-midnight: #06060E;
  --bg-charcoal: #0C0C14;
  --bg-surface: #12121C;
  --accent-cyan: #00D4FF;
  --accent-soft: rgba(0, 212, 255, 0.12);
  --border-cyan: rgba(0, 212, 255, 0.25);
  --border-subtle: rgba(0, 212, 255, 0.08);
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --font-display: 'Space Grotesk', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 212, 255, 0.25);
  color: var(--text-primary);
}

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

/* ============================================
   ANIMATIONS — KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(80px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes lineGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1), transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1), transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(1, 1, 4, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}
.navbar.scrolled { background: rgba(1, 1, 4, 0.85); }
.nav-brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  transition: color 0.3s;
}
.nav-brand:hover { color: var(--accent-cyan); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-cyan);
  color: var(--bg-deep);
  padding: 10px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}
.nav-cta:hover { transform: scale(1.03); box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }

/* Mobile menu button - hidden on desktop */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-cyan);
}

/* Desktop CTA - hidden on mobile */
.nav-cta-desktop { display: inline-flex; }
.nav-cta-mobile { display: none; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: rgba(1, 1, 4, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-globe-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-globe-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  animation: fadeUp 1s 0.3s both;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  animation: fadeUp 1s 0.45s both;
}
.hero-company {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-top: 16px;
  animation: fadeUp 1s 0.6s both;
}
.hero-bio {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
  margin-top: 24px;
  animation: fadeUp 1s 0.72s both;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  animation: fadeUp 1s 0.84s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-cyan);
  color: var(--bg-deep);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 0 24px rgba(0, 212, 255, 0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-secondary:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  animation: fadeUp 1s 0.96s both;
}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-cyan);
}
.hero-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* Hero portrait */
.hero-portrait-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: fadeRight 1.4s 0.4s both;
}
.hero-portrait-inner {
  position: relative;
  width: clamp(375px, 47.5vw, 600px);
  max-height: 900px;
}
.hero-portrait-inner img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.2));
  animation: float 6s ease-in-out infinite;
}
.deco-shape {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}
.deco-hex {
  left: -16px;
  top: 10%;
  animation: spinSlow 25s linear infinite;
}
.deco-circle1 { right: 2%; top: 6%; animation: pulseGlow 3s ease-in-out infinite; }
.deco-star { right: -8px; top: 35%; animation: pulseGlow 2.5s ease-in-out infinite; }

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-ind span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
.scroll-ind-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--accent-cyan), transparent); animation: pulseGlow 2s infinite; }

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.section-sm { max-width: 900px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-soft);
  color: var(--accent-cyan);
  border: 1px solid var(--border-cyan);
  margin-bottom: 24px;
}
.body-text { font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.tag-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: var(--accent-soft);
  color: var(--accent-cyan);
  border: 1px solid var(--border-cyan);
}
.divider-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(0, 212, 255, 0.2), transparent);
}

/* ============================================
   CARD WITH CURSOR GLOW
   ============================================ */
.glow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: border-color 0.5s, transform 0.5s, box-shadow 0.5s;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 212, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}
.glow-card:hover { border-color: var(--border-cyan); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0, 212, 255, 0.08); }
.glow-card:hover::before { opacity: 1; }

/* ============================================
   METRICS SECTION
   ============================================ */
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.metric-num {
  font-family: var(--font-mono);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--accent-cyan);
}
.metric-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   JOURNEY GRID
   ============================================ */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.journey-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  overflow: hidden;
}
.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent-cyan), rgba(0, 212, 255, 0.3));
  opacity: 0.6;
  transition: opacity 0.4s;
}
.journey-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.1);
}
.journey-card:hover::before { opacity: 1; }
.journey-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  background: var(--accent-soft);
  border: 1px solid var(--border-cyan);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.journey-connector {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--border-cyan), transparent);
  margin-bottom: 16px;
  opacity: 0.5;
}
.journey-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.journey-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ============================================
   VERTICAL CARDS
   ============================================ */
.vert-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.5s, transform 0.5s, box-shadow 0.5s;
}
.vert-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 212, 255, 0.08);
}
.vert-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vert-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  transition: opacity 0.5s, transform 0.5s;
}
.vert-card:hover .vert-card-bg img {
  opacity: 0.35;
  transform: scale(1.05);
}
.vert-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 1, 4, 0.95) 0%, rgba(1, 1, 4, 0.6) 50%, rgba(1, 1, 4, 0.3) 100%);
  z-index: 1;
}
.vert-card-content {
  position: relative;
  z-index: 2;
}
.vert-icon {
  color: var(--accent-cyan);
  margin-bottom: 16px;
}
.vert-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
}
.vert-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.6;
}

/* ============================================
   PROJECT CARDS
   ============================================ */
.proj-card {
  background: var(--bg-charcoal);
  padding: 24px;
  border-radius: 12px;
}
.proj-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}
.proj-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.6;
}
.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.proj-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  color: var(--accent-cyan);
  background: var(--accent-soft);
}

.big-stat {
  font-family: var(--font-mono);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}
.big-stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-cyan);
  border-radius: 12px;
  text-align: center;
}

/* ============================================
   CERTIFICATION CARDS
   ============================================ */
.cert-card {
  background: var(--bg-surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s, transform 0.3s;
}
.cert-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
}
.cert-img-wrap {
  overflow: hidden;
  height: 180px;
}
.cert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 2px solid var(--accent-cyan);
  transition: transform 0.5s;
}
.cert-card:hover .cert-img {
  transform: scale(1.1);
}
.cert-body { padding: 20px; }
.cert-year {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--accent-soft);
  color: var(--accent-cyan);
}
.cert-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.4;
}
.cert-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================
   COMPETENCIES & SKILLS
   ============================================ */
.comp-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 16px; }
.comp-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.comp-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--border-cyan);
  color: var(--accent-cyan);
  transition: transform 0.3s;
}
.comp-item:hover .comp-icon { transform: scale(1.1); }
.comp-label { font-size: 10px; font-weight: 500; color: var(--text-secondary); line-height: 1.3; }

.skill-card { background: var(--bg-charcoal); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 24px; }
.skill-title { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--accent-cyan); margin-bottom: 16px; }
.skill-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-pill { padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 500; background: var(--bg-surface); }

/* ============================================
   OFFICES & IMPACT
   ============================================ */
.offices { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.office-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-charcoal); border: 1px solid var(--border-subtle);
  border-radius: 12px; padding: 16px 20px;
}
.office-card svg { color: var(--accent-cyan); flex-shrink: 0; }

.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.impact-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s, transform 0.3s;
}
.impact-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
}
.impact-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.impact-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: opacity 0.3s, transform 0.3s;
}
.impact-card:hover .impact-card-bg img {
  opacity: 0.3;
  transform: scale(1.05);
}
.impact-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 14, 0.95) 0%, rgba(6, 6, 14, 0.85) 60%, rgba(6, 6, 14, 0.7) 100%);
  z-index: 1;
}
.impact-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  text-align: center;
}
.impact-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-cyan);
  margin: 0 auto 16px;
}
.impact-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-cyan);
}

/* ============================================
   CTA / CONTACT / FOOTER
   ============================================ */
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================
   GO TO TOP BUTTON
   ============================================ */
.go-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--accent-cyan);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.go-top.visible { opacity: 1; transform: translateY(0); }
.go-top:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-portrait-wrap { justify-content: center; order: -1; }
  .hero-portrait-inner { width: clamp(300px, 60vw, 450px); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .comp-grid { grid-template-columns: repeat(5, 1fr); }
  .impact-grid { grid-template-columns: repeat(1, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .nav-cta-desktop { display: none !important; }
  .nav-cta-mobile { display: block; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-name { font-size: clamp(40px, 12vw, 60px); }
  .section { padding: 60px 20px; }
  .hero-stats { gap: 20px; }
  .journey-grid { grid-template-columns: 1fr; }
  .vert-card { min-height: 240px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { width: 100%; justify-content: center; }
  .navbar { padding: 0 16px; }
  .metrics-grid { grid-template-columns: 1fr; }
}
