/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
  min-height: calc(100vh - 120px);
}

/* Hero */
.about-hero {
  padding: 5rem 3rem 2rem;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
}

.about-hero-text p {
  max-width: 680px;
  opacity: 0.85;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* Secondary button on light backgrounds */
.about-secondary {
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.about-secondary:hover {
  border-color: rgba(0, 194, 255, 0.55);
  box-shadow: 0 0 0 6px var(--accent-cyan-soft);
}

/* Secondary button on light backgrounds (About page) */
.about-page .btn.secondary {
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.6);
}

.about-page .btn.secondary:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 6px var(--accent-cyan-soft);
}

/* Hero info card */
.about-hero-card {
  border-radius: var(--radius);
  padding: 1.8rem;
}

.about-bullets {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.9;
}

.about-bullets .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 6px var(--accent-cyan-soft);
}

/* Split panels */
.about-split {
  padding: 2rem 3rem 4rem;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-panel {
  border-radius: var(--radius);
  padding: 1.8rem;
}

/* Keep the panel itself animating correctly */
.about-split .about-panel:last-child {
  position: sticky;
  top: 120px;
}

/* Scroll happens INSIDE the panel */
.about-scroll {
  max-height: 60vh; /* tweak: 55–70vh */
  overflow: auto;
  padding-right: 1rem;
  margin-top: 1rem;

  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

/* Premium scrollbar (optional, subtle) */
.about-scroll::-webkit-scrollbar {
  width: 10px;
}
.about-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.about-scroll::-webkit-scrollbar-track {
  background: transparent;
}

/* ---------- VERTICAL PROCESS STEPPER ---------- */
.process-stepper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.process-stepper .step {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 0.85rem;

  padding: 0.9rem 1rem;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Vertical connector line */
.process-stepper .step::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -0.75rem;
  height: 0.75rem;
  width: 2px;
  background: rgba(0, 0, 0, 0.12);
}

.process-stepper .step:first-child::before {
  display: none;
}

/* Dot */
.process-stepper .step-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}

/* Label */
.process-stepper .step-label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Accent highlight (optional) */
.process-stepper .step.is-active {
  border-color: rgba(0, 194, 255, 0.35);
  box-shadow: 0 0 0 6px var(--accent-cyan-soft);
}

.process-stepper .step.is-active .step-dot {
  background: var(--accent-cyan);
  box-shadow: 0 0 0 6px var(--accent-cyan-soft);
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.step-num {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-cyan);
}

.step h3 {
  margin-bottom: 0.25rem;
}

.step p {
  margin-bottom: 0;
  opacity: 0.8;
}

/* Stats */
.about-stats {
  padding: 0 3rem 4rem;
  max-width: 1200px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 3rem;
}

.stat {
  border-radius: var(--radius);
  padding: 1.9rem;

  display: flex;
  flex-direction: column;
  justify-content: center;   
  align-items: center;     

  text-align: center;     
}

.stat p {
  margin-bottom: 0;
  opacity: 0.8;
}

/* CTA */
.about-cta {
  padding: 0 3rem 5rem;
  max-width: 1200px;
  padding-top: 3rem;
}

.about-cta-card {
  border-radius: var(--radius);
  padding: 2.4rem;
}

.about-cta-card h2 {
  margin-bottom: 0.6rem;
}

.about-cta-card p {
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-inner,
  .about-split,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 1.6rem;
  }

  .about-cta-card {
    padding: 2rem;
  }
}
