/* ================================
   CSS Variables & Reset
================================ */
:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F8FA;
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-primary-light: #3B82F6;
  --color-accent: #06B6D4;
  --color-accent-dark: #0891B2;
  --color-text: #111827;
  --color-text-muted: #4B5563;
  --color-text-light: #9CA3AF;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-hero-bg: #050D1F;
  --color-hero-bg-2: #0A1628;
  --color-dark-section: #050D1F;
  --color-success: #10B981;
  --color-danger: #EF4444;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-xs: 3px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.06), 0 2px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-blue: 0 4px 24px rgba(37, 99, 235, 0.25);
  --max-width: 1200px;
  --section-padding: 96px 24px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ================================
   Utility Classes
================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-label.light {
  color: var(--color-accent);
}

.section-label.light::before {
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.section-title.light {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 580px;
}

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

.text-accent { color: var(--color-primary); }
.text-cyan { color: var(--color-accent); }

.accent-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
  opacity: 0.25;
}

/* ================================
   Buttons
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(37, 99, 235, 0.38);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ================================
   Navigation
================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  transition: all var(--transition);
}

.nav.transparent {
  background: transparent;
}

.nav.scrolled {
  background: rgba(5, 13, 31, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav.light-bg {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-xs);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-logo-text .dot {
  color: var(--color-accent);
}

.nav-logo-text.dark {
  color: var(--color-text);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* On dark nav (homepage), invert to white */
.nav.transparent .nav-logo-img,
.nav.scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
}

/* Footer logo is always on dark bg */
.footer .nav-logo-img {
  filter: brightness(0) invert(1);
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav-link.dark {
  color: var(--color-text-muted);
}

.nav-link.dark:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
}

.nav-cta {
  margin-left: 12px;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(5, 13, 31, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-mobile-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ================================
   Hero Section
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-hero-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 130px 24px 80px;
}

/* Dot grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-canvas-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.65;
}

#pipelineCanvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-headline .line-accent {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-hook {
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 14px;
  font-weight: 500;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-hook strong {
  color: var(--color-accent);
  font-weight: 700;
}

.hero-subheadline {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-stat-value span {
  color: var(--color-accent);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-top: 2px;
}

.hero-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

/* Pipeline stage labels overlay */
.pipeline-stages-overlay {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

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

.stage-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stage-label-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
}

.stage-label-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ================================
   Section Divider
================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border) 20%, var(--color-border) 80%, transparent 100%);
}

.section-divider.dark {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.07) 20%, rgba(255,255,255,0.07) 80%, transparent 100%);
}

/* ================================
   Problem Section
================================ */
.problem-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}

.problem-card.animated {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.22s, border-color 0.22s;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow: 0 4px 24px rgba(239, 68, 68, 0.06);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-icon svg {
  width: 18px;
  height: 18px;
  stroke: #EF4444;
  fill: none;
  stroke-width: 1.75;
}

.problem-card-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.problem-card-text strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  font-size: 15px;
}

.problem-cta-text {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem-cta-text::after {
  content: '→';
}

.problem-chart-wrapper {
  position: relative;
}

.chart-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.chart-card-header {
  margin-bottom: 20px;
}

.chart-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.chart-card-subtitle {
  font-size: 13px;
  color: var(--color-text-light);
}

.chart-container {
  position: relative;
  height: 280px;
}

/* ================================
   Solution Section
================================ */
.solution-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.solution-header {
  max-width: 660px;
  margin-bottom: 60px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

.pillar-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.22s, border-color 0.22s;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.pillar-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ================================
   Process Section
================================ */
.process-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.process-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 16px;
}

/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
}

.process-step.animated {
  opacity: 1;
  transform: translateY(0);
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(37, 99, 235, 0.2);
}

.process-step:hover .step-circle {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-blue);
  background: rgba(37, 99, 235, 0.04);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-light);
  transition: color var(--transition);
}

.process-step:hover .step-number {
  color: var(--color-primary);
}

.step-icon {
  display: none;
}

.step-content-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.step-content-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ================================
   Stats Section (Dark)
================================ */
.stats-section {
  padding: var(--section-padding);
  background: var(--color-dark-section);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.stats-inner {
  position: relative;
  z-index: 1;
}

.stats-header {
  max-width: 580px;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.stats-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.stat-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.22s, border-color 0.22s;
}

.stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(37, 99, 235, 0.3);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.75;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value .unit {
  font-size: 22px;
  color: var(--color-accent);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  line-height: 1.4;
}

.stat-source {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
  font-style: italic;
}

.stats-chart-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.stats-chart-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.stats-chart-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.stats-chart-container {
  position: relative;
  height: 260px;
}

/* ================================
   Clients Section
================================ */
.clients-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.clients-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.clients-header .section-subtitle {
  margin: 16px auto 0;
  text-align: center;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.client-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}

.client-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.client-info-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 3px;
}

.client-info-role {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.4;
}

.clients-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.clients-quote-text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-style: italic;
}

.clients-quote-text strong {
  color: var(--color-text);
  font-style: normal;
}

/* ================================
   Differentiator Section
================================ */
.diff-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.diff-header {
  max-width: 620px;
  margin-bottom: 60px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.diff-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.diff-column {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.diff-column.them {
  border-color: var(--color-border);
}

.diff-column.us {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-blue);
}

.diff-col-header {
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.diff-column.them .diff-col-header {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.diff-column.us .diff-col-header {
  background: var(--color-primary);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.diff-items {
  padding: 0;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 13px;
  line-height: 1.5;
}

.diff-column.them .diff-item:last-child,
.diff-column.us .diff-item:last-child {
  border-bottom: none;
}

.diff-column.them .diff-item {
  color: var(--color-text-muted);
}

.diff-column.us .diff-item {
  color: var(--color-text);
}

.diff-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 700;
}

.diff-column.them .diff-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.diff-column.us .diff-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.diff-chart-wrapper {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.diff-chart-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.diff-chart-subtitle {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.diff-chart-container {
  position: relative;
  height: 280px;
}

.diff-chart-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ================================
   Who Section
================================ */
.who-section {
  padding: var(--section-padding);
  background: var(--color-bg-alt);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 60px;
}

.who-criteria {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(-16px);
}

.who-item.animated {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.22s, box-shadow 0.22s;
}

.who-item:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow-sm);
}

.who-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.who-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2.5;
}

.who-item-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.who-item-text strong {
  color: var(--color-text);
  font-weight: 600;
}

.who-industries {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 20px;
}

.who-industries-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-tag {
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
}

.who-right {
  position: relative;
}

.who-cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1E40AF 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.who-cta-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.who-cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.who-cta-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.who-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 28px;
}

.who-cta-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.who-cta-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.who-cta-point::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #6EE7B7;
  flex-shrink: 0;
  line-height: 18px;
  text-align: center;
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: #F0F6FF;
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* ================================
   Apply Section
================================ */
.apply-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.apply-left {
  position: sticky;
  top: 90px;
}

.apply-left-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.apply-left-title span {
  color: var(--color-primary);
}

.apply-left-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.apply-trust-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.75;
}

/* Form */
.apply-form-wrapper {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.apply-form-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.apply-form-subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

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

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

label .required {
  color: var(--color-primary);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-light);
}

textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit-area {
  margin-top: 28px;
}

.form-submit-area .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 14px;
  line-height: 1.5;
}

.form-note svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-text-light);
  fill: none;
  display: inline;
  vertical-align: middle;
  margin-right: 4px;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2;
}

.form-success-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.form-success-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================================
   Footer
================================ */
.footer {
  background: var(--color-dark-section);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.4);
}

.footer-social-link:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
  color: var(--color-accent);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-link:hover {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer-built-by {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}

.footer-built-by a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-built-by a:hover {
  color: var(--color-accent);
}

/* ================================
   Scroll Animation Classes
================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ================================
   About Page Specific
================================ */
.page-hero {
  background: var(--color-hero-bg);
  padding: 150px 24px 96px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 40%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 680px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.7;
}

.about-section {
  padding: var(--section-padding);
}

.about-section:nth-child(even) {
  background: var(--color-bg-alt);
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-content p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.about-section:nth-child(even) .value-card {
  background: #fff;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.75;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.about-cta {
  text-align: center;
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--color-hero-bg) 0%, var(--color-hero-bg-2) 100%);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
  background-size: 36px 36px;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.about-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ================================
   Apply Page Specific
================================ */
.apply-page {
  min-height: 100vh;
  background: var(--color-bg-alt);
  display: flex;
  flex-direction: column;
}

.apply-page-main {
  flex: 1;
  padding: 130px 24px 80px;
}

.apply-page-inner {
  max-width: 680px;
  margin: 0 auto;
}

.apply-page-label {
  margin-bottom: 14px;
}

.apply-page-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.apply-page-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.apply-page-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.apply-page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: 24px;
  transition: color var(--transition);
}

.apply-page-back:hover {
  color: var(--color-primary);
}

.apply-page-back::before {
  content: '←';
  transition: transform var(--transition);
}

.apply-page-back:hover::before {
  transform: translateX(-3px);
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 1080px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --section-padding: 72px 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

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

  .who-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .apply-inner {
    grid-template-columns: 1fr;
  }

  .apply-left {
    position: static;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    gap: 24px;
  }

  .hero-divider {
    display: none;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-counters {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .apply-form-wrapper {
    padding: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pipeline-stages-overlay {
    display: none;
  }

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

/* ================================
   Custom Scrollbar
================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-light);
}

/* ================================
   Chart.js overrides
================================ */
canvas {
  max-width: 100%;
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
  /* Fix chart/canvas overflow */
  canvas { max-width: 100% !important; height: auto !important; }
  .chart-container, .chart-wrap, [class*='chart'] {
    max-width: 100% !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  /* Fix general overflow */
  body { overflow-x: hidden !important; }
  .container, .wrapper, section, .section { max-width: 100vw !important; box-sizing: border-box !important; }
  
  /* Table label overflow (left labels cut off) */
  .chart-label, [class*='label'] { 
    font-size: 12px !important; 
    white-space: normal !important;
    word-break: break-word !important;
  }
  
  /* Nav on mobile */
  .nav-links { display: none !important; }
  .nav-mobile-toggle { display: flex !important; }
}
