/* ============================================
   QUANTUM LEAF SOFTWARE — ABOUT PAGE STYLES
   Founders, story, PACRA cert, values
   ============================================ */

/* --- Story Section --- */
.story-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.story-body {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Founders Section --- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  max-width: 700px;
  margin: 0 auto;
}
.founder-card {
  text-align: center;
  padding: var(--sp-10);
}
.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--r-lg);
  margin: 0 auto var(--sp-6);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  position: relative;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-muted);
}
.founder-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}
.founder-role {
  font-size: var(--text-sm);
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.founder-bio {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* --- PACRA Section --- */
.pacra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.pacra-details {
  margin-top: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.pacra-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pacra-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pacra-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.pacra-cert {
  text-align: center;
}
.pacra-cert img {
  max-width: 400px;
  border: 1px solid var(--bg-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.pacra-cert-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pacra-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .pacra-cert { order: -1; }
  .pacra-cert img { max-width: 100%; }
}

/* --- Values Section --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.value-card {
  text-align: center;
  padding: var(--sp-10);
}
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.value-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.value-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.cta-content p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
}
.cta-buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-lg { width: 100%; max-width: 300px; justify-content: center; }
}
