/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px; /* offset navbar */
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 50%),
              radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent 50%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
}

/* Section Headers */
.section-header {
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.section-header h2 {
  font-size: 2.5rem;
}

/* Capability Cards */
.capability-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  padding: var(--space-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.capability-icon {
  width: 48px;
  height: 48px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.capability-card h3 {
  margin-bottom: var(--space-xs);
}

.capability-card p {
  flex: 1;
  font-size: 0.875rem;
}

/* Case Study Preview */
.case-preview {
  background: var(--bg-elevated);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bg-border);
}

.case-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--bg-border);
  display: block;
}

.case-content {
  padding: var(--space-md);
}

.case-content h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.case-content p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: var(--space-xl) 0;
}

.cta-section .callout-card {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}
