/* About Page */
.about-hero {
  padding: 140px 0 96px;
  text-align: center;
  background: #0a0f1a;
}

.about-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #a0a0a0;
  margin-bottom: 48px;
}

.founder-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(253, 126, 20, 0.5);
}

.credentials-section {
  padding: 96px 0;
  background: #131b2b;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.credential-card {
  background: #1a2332;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  transition: all 0.3s ease;
}

.credential-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.credential-icon {
  color: #219b9d;
  margin-bottom: 24px;
}

.credential-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.credential-description {
  font-size: 0.9375rem;
  color: #a0a0a0;
}

.story-section {
  padding: 96px 0;
  background: #0a0f1a;
}

.story-content {
  max-width: 800px;
  margin: 48px auto 0;
}

.story-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 24px;
}

.story-highlight {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  padding: 32px;
  margin: 32px 0;
  background: #131b2b;
  border-left: 2px solid #219b9d;
}

.story-signature {
  font-size: 1.125rem;
  font-style: italic;
  color: #fd7e14;
  text-align: right;
  margin-top: 32px;
}

.benefits-section {
  padding: 96px 0;
  background: #131b2b;
}

.benefits-list {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: #1a2332;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.benefit-icon {
  color: #219b9d;
  flex-shrink: 0;
}

.benefit-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.benefit-description {
  font-size: 0.9375rem;
  color: #a0a0a0;
}

.featured-section {
  padding: 96px 0;
  background: #0a0f1a;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.featured-card {
  background: #131b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.featured-icon {
  color: #fd7e14;
  margin-bottom: 24px;
}

.featured-name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.featured-description {
  font-size: 0.9375rem;
  color: #a0a0a0;
  margin-bottom: 16px;
}

.featured-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fd7e14;
  font-size: 0.9375rem;
  font-weight: 500;
}

.team-section {
  padding: 96px 0;
  background: #131b2b;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-top: 48px;
}

.team-card {
  background: #1a2332;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.team-member-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(253, 126, 20, 0.5);
  margin-bottom: 24px;
}

.team-name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fd7e14;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.9375rem;
  color: #a0a0a0;
}

.cta-section-about {
  padding: 96px 0;
  background: #0a0f1a;
}

.cta-content-about {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-description {
  font-size: 1.125rem;
  color: #a0a0a0;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 64px;
  }

  .credentials-grid,
  .featured-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}
