/* ============================================
   BIZMENEJA SOLUTIONS — Design System + Animations
   Mintlify-inspired | Brand: #0B1CF2 + #C4F137
   ============================================ */

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

:root {
  --brand-blue: #0B1CF2;
  --brand-blue-deep: #080f99;
  --brand-blue-soft: rgba(11, 28, 242, 0.08);
  --brand-blue-glow: rgba(11, 28, 242, 0.25);
  --brand-lime: #C4F137;
  --brand-lime-deep: #a8d42a;
  --brand-lime-soft: rgba(196, 241, 55, 0.15);
  --brand-lime-glow: rgba(196, 241, 55, 0.35);

  --canvas: #FFFFFF;
  --canvas-dark: #060814;
  --canvas-blue: #0a0e2e;
  --surface: #F4F6FA;
  --surface-soft: #EEF1F7;
  --surface-dark: #0f1635;
  --surface-code: #0D1117;
  --hairline: #E2E5EC;
  --hairline-soft: #EDF0F5;
  --hairline-dark: rgba(255,255,255,0.08);

  --ink: #0B0F1A;
  --charcoal: #2D3142;
  --slate: #5A6078;
  --steel: #8B92A8;
  --stone: #B8BECF;
  --muted: #9CA3B8;
  --on-dark: #FFFFFF;
  --on-dark-muted: rgba(255,255,255,0.6);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-subtle: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-elevated: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-brand: 0 0 40px rgba(11, 28, 242, 0.12);
  --shadow-lime: 0 0 40px rgba(196, 241, 55, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.hero-display {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -3px;
}
.display-lg {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
}
.heading-1 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.10;
  letter-spacing: -1.5px;
}
.heading-2 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}
.heading-4 {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.30;
}
.heading-5 {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  line-height: 1.40;
}
.subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--slate);
}
.body-md { font-size: 16px; font-weight: 400; line-height: 1.6; }
.body-sm { font-size: 14px; font-weight: 400; line-height: 1.55; }
.caption { font-size: 13px; font-weight: 400; line-height: 1.4; }
.micro { font-size: 12px; font-weight: 500; line-height: 1.4; }
.micro-uppercase {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-animated {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-lime), var(--brand-blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-body); font-size: 14px;
  font-weight: 600; line-height: 1; padding: 12px 24px;
  border-radius: var(--radius-full); border: none;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--ink); color: var(--on-dark);
}
.btn-primary:hover {
  background: var(--brand-blue);
  box-shadow: 0 8px 24px var(--brand-blue-glow);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--brand-lime); color: var(--ink);
}
.btn-accent:hover {
  background: var(--brand-lime-deep);
  box-shadow: 0 8px 24px var(--brand-lime-glow);
  transform: translateY(-2px);
}
.btn-on-dark {
  background: var(--on-dark); color: var(--ink);
}
.btn-on-dark:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--hairline);
}
.btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  padding: 8px 14px; border-radius: var(--radius-md);
}
.btn-ghost:hover { background: var(--surface); }
.btn-blue {
  background: var(--brand-blue); color: var(--on-dark);
}
.btn-blue:hover {
  background: var(--brand-blue-deep);
  box-shadow: 0 8px 24px var(--brand-blue-glow);
  transform: translateY(-2px);
}

.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
}
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-dark {
  background: var(--canvas-dark);
  color: var(--on-dark); overflow: hidden;
}
.section-blue {
  background: linear-gradient(180deg, var(--canvas-blue) 0%, var(--canvas-dark) 100%);
  color: var(--on-dark); overflow: hidden;
}
.section-surface { background: var(--surface); }

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: 72px;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 20px; color: var(--ink);
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--slate); position: relative;
  transition: color 0.3s;
  padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--brand-blue); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(180deg, #EEF1FF 0%, #F8F9FF 40%, #FFFFFF 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  z-index: 0; opacity: 0.5;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: orb-float-1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brand-lime) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orb-float-2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(11,28,242,0.3) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation: orb-float-3 15s ease-in-out infinite;
}
@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.1); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}
@keyframes orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 13px; font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  border: 1px solid rgba(11,28,242,0.1);
  animation: fade-in-up 0.8s ease 0.2s both;
}
.hero-title {
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease 0.4s both;
}
.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fade-in-up 0.8s ease 0.6s both;
}
.hero-buttons {
  display: flex; justify-content: center;
  gap: 16px; margin-bottom: 60px;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.8s both;
}
.hero-stats {
  display: flex; justify-content: center;
  gap: 60px;
  animation: fade-in-up 0.8s ease 1s both;
}
.hero-stat {
  text-align: center; position: relative;
}
.hero-stat-number {
  font-size: 44px; font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 13px; color: var(--slate);
  margin-top: 8px; font-weight: 500;
}

.section-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  font-size: 17px; color: var(--slate);
  line-height: 1.65;
}

.card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.card::before {
  content: ''; position: absolute;
  inset: -1px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-lime));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }
.card-inner {
  background: var(--canvas);
  border-radius: calc(var(--radius-lg) - 1px);
  position: relative; z-index: 1;
  height: 100%;
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-blue-soft), var(--brand-lime-soft));
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-lime));
  color: var(--on-dark);
  transform: scale(1.1) rotate(-5deg);
}
.card-icon svg { width: 24px; height: 24px; }
.card-title { margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--slate); line-height: 1.55; }

.glow-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.glow-card::after {
  content: ''; position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(196,241,55,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glow-card:hover {
  border-color: rgba(196,241,55,0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(196,241,55,0.08);
}
.glow-card:hover::after { opacity: 1; }
.glow-card-title { color: var(--on-dark); margin-bottom: 10px; }
.glow-card-desc { color: var(--on-dark-muted); font-size: 14px; line-height: 1.55; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-lime));
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}
.pillar-card:hover::before { height: 100%; }
.pillar-number {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.pillar-title { margin-bottom: 12px; }
.pillar-services { margin-top: 20px; }
.pillar-service {
  display: flex; align-items: flex-start;
  gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 14px; transition: all 0.2s;
}
.pillar-service:last-child { border-bottom: none; }
.pillar-service svg {
  width: 18px; height: 18px;
  color: var(--brand-lime);
  flex-shrink: 0; margin-top: 2px;
  transition: transform 0.3s;
}
.pillar-card:hover .pillar-service svg { transform: scale(1.2); }
.pillar-service span { color: var(--charcoal); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.industry-card::before {
  content: ''; position: absolute;
  inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-lime));
  opacity: 0; transition: opacity 0.4s;
  z-index: 0;
}
.industry-card:hover {
  border-color: transparent;
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-brand);
}
.industry-card:hover::before { opacity: 1; }
.industry-card:hover .industry-name,
.industry-card:hover .industry-focus,
.industry-card:hover .industry-icon { color: var(--on-dark); position: relative; z-index: 1; }
.industry-icon {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  color: var(--brand-blue);
  transition: all 0.3s;
}
.industry-name {
  font-size: 15px; font-weight: 600;
  color: var(--ink); margin-bottom: 4px;
  transition: color 0.3s;
}
.industry-focus {
  font-size: 12px; color: var(--slate);
  transition: color 0.3s;
}

.delivery-section {
  position: relative; overflow: hidden;
  background: var(--canvas-dark);
  color: var(--on-dark);
  padding: 120px 0;
}
.delivery-section .section-label {
  background: rgba(196, 241, 55, 0.12);
  color: var(--brand-lime);
}
.delivery-section .section-title { color: var(--on-dark); }
.delivery-section .section-desc { color: var(--on-dark-muted); }

.delivery-flow {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 0;
  margin-top: 64px; position: relative;
}
.delivery-step {
  flex: 1; max-width: 260px;
  text-align: center; position: relative; z-index: 2;
  opacity: 0; transform: translateY(40px);
}
.delivery-step.visible {
  opacity: 1; transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.delivery-step-connector {
  flex: 0 0 60px; height: 3px;
  background: rgba(255,255,255,0.08);
  margin-top: 52px; position: relative;
  overflow: hidden; border-radius: 2px;
}
.delivery-step-connector::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-lime));
  transform: translateX(-101%);
  border-radius: 2px;
}
.delivery-step-connector.active::after {
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.delivery-step-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(196, 241, 55, 0.06);
  border: 2px solid rgba(196, 241, 55, 0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.delivery-step.visible .delivery-step-icon {
  background: rgba(196, 241, 55, 0.12);
  border-color: var(--brand-lime);
  box-shadow: 0 0 40px rgba(196, 241, 55, 0.25);
  animation: pulse-glow 3s ease-in-out infinite;
}
.delivery-step-icon svg {
  width: 34px; height: 34px;
  color: var(--brand-lime);
}
.delivery-step-number {
  position: absolute;
  top: -6px; right: -6px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-lime));
  color: var(--on-dark);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11,28,242,0.3);
}
.delivery-step-title {
  font-size: 22px; font-weight: 700;
  color: var(--on-dark); margin-bottom: 10px;
}
.delivery-step-desc {
  font-size: 14px; color: var(--on-dark-muted);
  line-height: 1.6;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(196, 241, 55, 0.2); }
  50% { box-shadow: 0 0 50px rgba(196, 241, 55, 0.45); }
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.diff-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.diff-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-brand);
  transform: translateY(-4px);
}
.diff-card:hover::after { transform: scaleX(1); }
.diff-card-top {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 16px;
}
.diff-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-blue-soft), var(--brand-lime-soft));
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.diff-card:hover .diff-card-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-lime));
  color: var(--on-dark);
  transform: rotate(-8deg) scale(1.1);
}
.diff-card-icon svg { width: 20px; height: 20px; }
.diff-card-title { font-size: 16px; font-weight: 700; }
.diff-card-desc { font-size: 14px; color: var(--slate); line-height: 1.55; margin-top: 8px; }

.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1a2fd9 50%, var(--brand-blue-deep) 100%);
  color: var(--on-dark);
  padding: 120px 0;
  text-align: center;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,241,55,0.15) 0%, transparent 60%);
  filter: blur(60px);
  animation: cta-orb-float 10s ease-in-out infinite;
}
.cta-section::after {
  content: ''; position: absolute;
  bottom: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,241,55,0.1) 0%, transparent 60%);
  filter: blur(60px);
  animation: cta-orb-float 12s ease-in-out infinite reverse;
}
@keyframes cta-orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.cta-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700; margin-bottom: 16px;
  letter-spacing: -1.5px; position: relative; z-index: 1;
}
.cta-desc {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 560px; margin: 0 auto 36px;
  position: relative; z-index: 1;
}
.cta-buttons {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-contact-info {
  display: flex; justify-content: center;
  gap: 48px; margin-top: 48px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-contact-item {
  display: flex; align-items: center;
  gap: 10px; font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.cta-contact-item svg {
  width: 18px; height: 18px;
  color: var(--brand-lime);
}
.cta-contact-item a { color: var(--on-dark); transition: color 0.2s; }
.cta-contact-item a:hover { color: var(--brand-lime); }

.footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}
.footer-brand {
  display: flex; align-items: center;
  gap: 10px; font-weight: 700;
  font-size: 20px; margin-bottom: 16px;
}
.footer-brand img { height: 32px; }
.footer-tagline {
  font-size: 14px; color: var(--steel);
  line-height: 1.6; margin-bottom: 20px;
}
.footer-heading {
  font-size: 14px; font-weight: 700;
  color: var(--on-dark); margin-bottom: 20px;
}
.footer-links a {
  display: block; font-size: 14px;
  color: var(--steel); padding: 6px 0;
  transition: all 0.2s;
}
.footer-links a:hover {
  color: var(--brand-lime);
  transform: translateX(4px);
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 13px; color: var(--steel);
}

.page-header {
  position: relative;
  background: linear-gradient(180deg, #EEF1FF 0%, #F8F9FF 60%, #FFFFFF 100%);
  padding: 160px 0 80px;
  overflow: hidden;
}
.page-header-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.page-header-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%);
  top: -150px; right: -100px; opacity: 0.2;
  animation: orb-float-1 12s ease-in-out infinite;
}
.page-header-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--brand-lime) 0%, transparent 70%);
  bottom: -80px; left: -80px; opacity: 0.25;
  animation: orb-float-2 10s ease-in-out infinite;
}
.page-header-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex; align-items: center;
  justify-content: center; gap: 8px;
  margin-bottom: 20px;
  font-size: 13px; color: var(--slate);
}
.breadcrumbs a:hover { color: var(--brand-blue); }
.breadcrumbs .sep { color: var(--stone); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.contact-info-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-brand);
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-blue-soft), var(--brand-lime-soft));
  color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-info-text { font-size: 14px; color: var(--slate); line-height: 1.5; }
.contact-info-text a { color: var(--brand-blue); font-weight: 500; }
.contact-info-text a:hover { text-decoration: underline; }

.contact-form {
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 13px;
  font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--ink); background: var(--surface);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-md);
  outline: none; transition: all 0.3s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px var(--brand-blue-soft);
  background: var(--canvas);
}
.form-textarea { min-height: 140px; resize: vertical; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.mobile-drawer {
  display: none; position: fixed;
  inset: 0; background: rgba(0,0,0,0.4);
  z-index: 2000; opacity: 0;
  transition: opacity 0.3s;
}
.mobile-drawer.open {
  display: block; opacity: 1;
}
.mobile-drawer-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 300px; background: var(--canvas);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-close {
  background: none; border: none;
  font-size: 28px; cursor: pointer;
  margin-bottom: 24px; color: var(--ink);
}
.mobile-drawer a {
  display: block; padding: 14px 0;
  font-size: 16px; font-weight: 600;
  border-bottom: 1px solid var(--hairline-soft);
  color: var(--ink);
}
.mobile-drawer a:hover { color: var(--brand-blue); }

@media (max-width: 1023px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .delivery-flow { flex-wrap: wrap; gap: 32px; }
  .delivery-step-connector { display: none; }
  .delivery-step { max-width: 45%; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
}

@media (max-width: 767px) {
  .hero-stats { flex-direction: column; gap: 28px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .delivery-step { max-width: 100%; }
  .section { padding: 64px 0; }
  .contact-form { padding: 24px; }
  .cta-contact-info { flex-direction: column; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
