:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #1a1a25;
  --bg-tertiary: #0f1419;
  --bg-card: rgba(30, 30, 40, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.02);
  --bg-glass-hover: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #a1a9b8;
  --text-muted: #6b7280;
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #a855f7;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(
    135deg,
    #6366f1 0%,
    #8b5cf6 50%,
    #a855f7 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  --gradient-card: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  --border-primary: rgba(255, 255, 255, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-accent: rgba(99, 102, 241, 0.3);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3),
    0 0 40px rgba(99, 102, 241, 0.1);
  --backdrop-blur: blur(20px);
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(120, 119, 198, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 119, 198, 0.08) 0%,
      transparent 50%
    );
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  scroll-behavior: smooth;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Layout Components */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-lg {
  padding: 8rem 0;
}

.section-sm {
  padding: var(--spacing-2xl) 0;
}

/* Typography */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: var(--spacing-lg) 0 var(--spacing-md) 0;
  color: var(--accent-secondary);
}

h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  line-height: 1.6;
}

ul {
  margin-left: 2rem;
  margin-bottom: var(--spacing-md);
}

li {
  margin-bottom: var(--spacing-xs);
  color: var(--text-secondary);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Company Name */
.company-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      ellipse at top,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(99, 102, 241, 0.08) 0%,
    transparent 70%
  );
  opacity: 0.7;
  animation: fadeIn 1.5s ease-out;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(10, 10, 15, 0.8) 100%
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 0.8s ease-out;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #6366f1 50%, #8b5cf6 100%);
  background-size: 150% 150%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: subtleGradient 8s ease-in-out infinite;
  position: relative;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1.125rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--accent-primary) 0%,
    var(--accent-secondary) 100%
  );
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--backdrop-blur);
  position: relative;
  overflow: hidden;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--backdrop-blur);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2),
    0 0 0 1px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: var(--spacing-2xl);
  margin-top: var(--spacing-lg);
  font-weight: 600;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: var(--backdrop-blur);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2),
    0 0 0 1px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Section Titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  text-align: center;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #a1a9b8 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--spacing-xl);
  font-weight: 400;
}

/* Cards and Grids */
.process-grid,
.values-grid,
.collaborate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.process-card,
.value-card,
.methodology-card,
.portfolio-card,
.collaborate-item,
.legal-section {
  background: var(--bg-glass);
  backdrop-filter: var(--backdrop-blur);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-primary);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.portfolio-card {
  padding: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
}

.process-card,
.value-card,
.methodology-card,
.portfolio-card,
.collaborate-item,
.legal-section {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-card:hover,
.value-card:hover,
.methodology-card:hover,
.portfolio-card:hover,
.collaborate-item:hover,
.legal-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(99, 102, 241, 0.1);
  background: var(--bg-glass-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.25);
}

.legal-section:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.value-card {
  text-align: center;
}

/* Problem List */
.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin-top: 2rem;
}

.problem-item {
  background: var(--bg-glass);
  backdrop-filter: var(--backdrop-blur);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-primary);
  border-left: 3px solid var(--accent-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.problem-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-item:hover {
  border-left-color: var(--accent-secondary);
  border-color: rgba(99, 102, 241, 0.2);
  background: var(--bg-glass-hover);
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(99, 102, 241, 0.05);
}

.problem-item:hover::before {
  opacity: 1;
}

.problem-item strong {
  color: var(--accent-secondary);
  font-weight: 600;
}

/* Not List */
.not-list {
  list-style: none;
}

.not-list li {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
  border-left: 2px solid var(--accent-primary);
  color: var(--text-secondary);
  line-height: 1.6;
}

.not-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Methodology */
.methodology-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gradient-secondary);
  color: var(--text-primary);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.methodology-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.detail-item {
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-secondary);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Portfolio */
.portfolio-meta {
  flex: 1;
  margin: var(--spacing-md) 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.portfolio-meta strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--backdrop-blur);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.5rem;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

.status-badge.live {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2) 0%,
    rgba(5, 150, 105, 0.2) 100%
  );
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.status-badge.beta {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2) 0%,
    rgba(217, 119, 6, 0.2) 100%
  );
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.status-badge.prototype {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2) 0%,
    rgba(147, 51, 234, 0.2) 100%
  );
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

/* Impact Stats */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
  padding: var(--spacing-xl);
  background: var(--bg-glass);
  backdrop-filter: var(--backdrop-blur);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-primary);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Icons */
.value-icon,
.collaborate-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

/* Sections with Background */
.what-we-do,
.pipeline,
.portfolio,
.collaborate {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 37, 0.8) 0%,
      rgba(15, 20, 25, 0.9) 100%
    ),
    radial-gradient(
      circle at 30% 30%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    );
  border-top: 1px solid var(--border-primary);
  backdrop-filter: var(--backdrop-blur);
  position: relative;
}

.pipeline {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 37, 0.8) 0%,
      rgba(15, 20, 25, 0.9) 100%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    );
}

.portfolio {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 37, 0.8) 0%,
      rgba(15, 20, 25, 0.9) 100%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(139, 92, 246, 0.05) 0%,
      transparent 50%
    );
}

.collaborate {
  text-align: center;
}

.what-we-do::before,
.pipeline::before,
.collaborate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(99, 102, 241, 0.02) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    -45deg,
    transparent 30%,
    rgba(139, 92, 246, 0.02) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.collaborate::before {
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(99, 102, 241, 0.02) 50%,
    transparent 70%
  );
}

/* Differentiation */
.differentiation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

/* Contact Info */
.contact-info {
  margin-top: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.contact-info h2 {
  color: var(--accent-secondary);
  text-align: center;
}

/* Footer */
.footer-text {
  text-align: center;
  margin-top: var(--spacing-3xl);
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-xl);
  border-top: 1px solid var(--border-subtle);
}

.footer {
  margin-top: var(--spacing-3xl);
  color: var(--text-muted);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--border-subtle);
}

/* Legal Page Specific */
.header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-2xl) 0;
}

.legal-section {
  margin-bottom: var(--spacing-lg);
}

/* Animations */
@keyframes subtleGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.scale-on-hover {
  transition: all 0.3s ease;
}

.scale-on-hover:hover {
  transform: translateY(-4px) scale(1.01);
}

.animate-delay-1 {
  animation-delay: 0.15s;
}

.animate-delay-2 {
  animation-delay: 0.3s;
}

.animate-delay-3 {
  animation-delay: 0.45s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .methodology-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container,
  .container-narrow {
    padding: 0 var(--spacing-md);
  }

  .header {
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
  }

  .legal-section {
    padding: var(--spacing-lg);
  }

  .differentiation {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
  }

  .pipeline-flow {
    flex-direction: column;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section,
  .section-lg {
    padding: var(--spacing-2xl) 0;
  }

  .process-grid,
  .methodology-grid,
  .portfolio-grid,
  .values-grid,
  .collaborate-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .problem-list {
    grid-template-columns: 1fr;
  }
}
