/* ============================================================
   Altivis Growth Engine (A.G.E.) Page Styles
   Minimal Black & White Theme with Inter Font
   ============================================================ */

.age-page {
  background-color: #ffffff;
  padding-top: 76px;
}

.age-hero-section {
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.age-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.age-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #000000;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.age-hero-para {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.age-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* SECTION 1: PIPELINE */
.section-age-pipeline {
  padding: 6rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.mb-4 { margin-bottom: 1rem; }

.age-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.age-step-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.age-step-card:hover {
  transform: translateY(-4px);
  border-color: #111827;
  box-shadow: var(--shadow-md);
}

.step-num {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* SECTION 2: CAPABILITIES */
.section-age-capabilities {
  padding: 6rem 0;
  border-bottom: 1px solid #e5e7eb;
  background-color: #fafafa;
}

.capabilities-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cap-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}

.cap-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(223, 120, 0, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cap-icon svg {
  width: 26px;
  height: 26px;
}

.cap-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
}

.cap-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* SECTION 3: CTA BANNER (MATCHES HOME PAGE CTA STYLE) */
.section-5 {
  padding: 6rem 0;
}

.cta-box {
  background: #fafafa;
  border: 2px solid #111827;
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 32px;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .age-steps-grid,
  .capabilities-grid-3 {
    grid-template-columns: 1fr;
  }
}
