/* ===== OurVoice 1.0 — About Page ===== */

/* ---------- Back Bar ---------- */
.back-bar {
  margin-top: var(--nav-h);
  background: var(--gray-50);
  border-bottom: 1px solid var(--border-color);
  padding: 0.625rem 1rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover {
  color: var(--indigo-600);
}
.back-link svg {
  flex-shrink: 0;
}

/* ---------- Hero Banner ---------- */
.about-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.about-banner__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.about-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,0.80), rgba(79,70,229,0.65));
}
.about-banner__content {
  position: relative; z-index: 2;
  text-align: center; padding: 4rem 1.5rem;
}
.about-banner__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}
.about-banner__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 600px; margin: 0 auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* ---------- Content Sections ---------- */
.about-section { padding: 4rem 1.5rem; }
.about-section--white { background: #fff; }
.about-section--slate { background: #1e293b; }
.about-section--indigo { background: linear-gradient(135deg, #1e3a8a, #312e81); }

.about-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-section__tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #4f46e5;
  background: #eef2ff;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.about-section__tag--light {
  color: #c7d2fe;
  background: rgba(255,255,255,0.1);
}
.about-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: #111827;
  letter-spacing: -0.01em;
}
.about-section__title--light { color: #fff; }

/* ---------- Body Content ---------- */
.about-content {
  max-width: 760px; margin: 0 auto;
}
.about-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 1.5rem;
}
.about-content p:last-child { margin-bottom: 0; }
.about-content strong { color: #111827; }

.about-content--light p { color: rgba(255,255,255,0.85); }
.about-content--light strong { color: #fff; }

/* ---------- Image Divider ---------- */
.about-divider {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.about-divider__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.about-divider__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(30,41,59,0.3));
}
@media (max-width: 767px) {
  .about-divider__bg { background-attachment: scroll; }
  .about-divider { height: 200px; }
}

/* ---------- Steps ---------- */
.about-steps {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2rem;
}
.about-step {
  display: flex; gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.about-step:hover {
  border-color: #c7d2fe;
  box-shadow: 0 8px 30px rgba(79,70,229,0.08);
}
.about-step__num {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: #fff; font-size: 1.25rem; font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.about-step__title {
  font-size: 1.125rem; font-weight: 700; color: #111827;
  margin-bottom: 0.5rem;
}
.about-step p {
  font-size: 0.95rem; line-height: 1.7; color: #4b5563;
}
.about-step em { color: #6b7280; font-style: italic; }

/* ---------- Closing Section ---------- */
.about-closing {
  text-align: center;
  padding: 2rem 1.5rem;
}
.about-closing__badges {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.about-closing__badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem; font-weight: 500;
}
.about-closing__badge svg { flex-shrink: 0; color: #a5b4fc; }

.about-closing__text {
  font-size: 1.125rem; line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 640px; margin: 0 auto 1.5rem;
}
.about-closing__cta-text {
  font-size: 1.25rem; line-height: 1.7;
  color: #fff; font-weight: 500;
  margin-bottom: 2rem;
}
.about-closing__cta-text strong { font-weight: 800; }

.about-closing__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: #1e3a8a;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font: 700 1rem 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.about-closing__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.about-closing__sign {
  margin-top: 2.5rem;
  font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ---------- Scroll Reveal ---------- */
.about-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.about-reveal--visible {
  opacity: 1; transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .about-banner { min-height: 320px; }
  .about-banner__content { padding: 3rem 2.5rem; }
  .about-section { padding: 3rem 2.5rem; }
  .about-step { flex-direction: column; gap: 1rem; text-align: center; align-items: center; }
  .about-closing__badges { flex-direction: column; align-items: center; }
}
