/* About Page Styles */

/* About Hero */
.about-hero {
  background: linear-gradient(to bottom, #e8fdf2, white);
  padding: 80px 0;
  text-align: center;
}

.about-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-badge {
  display: inline-block;
  background: var(--color-badge);
  color: var(--color-Forest-Green);
  padding: 6px 15px;
  border-radius: 9999px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
}

.about-hero h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -0.45px;
  color: var(--text-black);
  max-width: 700px;
  margin: 0;
}

.about-hero-description {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.31px;
  color: var(--text-color-muted);
  max-width: 640px;
  margin: 0;
  text-align: center;
}

/* Vision / Mission Cards */
.about-vision-mission {
  padding: 80px 0;
  background: white;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.vm-card {
  border: 1px solid var(--color-badge);
  border-radius: 16px;
  padding: 41px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vm-card--vision {
  background: linear-gradient(to bottom, #e8fdf2, white);
}

.vm-card--mission {
  background: linear-gradient(to bottom, #f0fdf4, white);
}

.vm-card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-badge);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-card-icon svg {
  width: 28px;
  height: 28px;
}

.vm-card h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.45px;
  color: var(--text-black);
  text-align: left;
  margin: 0;
}

.vm-card p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.31px;
  color: var(--text-color-muted);
  margin: 0;
}

/* Built by Worktika Section */
.about-worktika {
  padding: 80px 0;
  background: var(--color-soft-grey);
}

.worktika-content {
  display: flex;
  align-items: center;
  gap: 64px;
}

.worktika-text {
  flex: 1;
}

.worktika-badge {
  display: inline-block;
  background: var(--color-badge);
  color: var(--color-Forest-Green);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.31px;
  margin-bottom: 20px;
}

.worktika-text h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.45px;
  color: var(--text-black);
  text-align: left;
  margin: 0 0 24px 0;
}

.worktika-text p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.31px;
  color: var(--text-color-muted);
  margin: 0 0 20px 0;
}

.worktika-stats {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.worktika-stat {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
  min-width: 100px;
}

.worktika-stat-value {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.45px;
  color: var(--color-Forest-Green);
  margin: 0;
}

.worktika-stat-label {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: var(--text-color-muted);
  margin: 0;
}

.worktika-image {
  width: 480px;
  flex-shrink: 0;
}

.worktika-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* Leadership Team Section */
.about-team {
  padding: 80px 0;
  background: var(--color-soft-grey);
}

.about-team .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-team .section-header h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.45px;
  color: var(--text-black);
  margin: 0 0 16px 0;
}

.about-team .section-header p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: var(--text-color-muted);
  max-width: 520px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}

.team-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
}

.team-card-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-card-info {
  padding: 24px;
}

.team-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.team-card-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: var(--text-black);
  margin: 0;
}

.team-card-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--text-color-muted);
  text-decoration: none;
}

.team-card-linkedin:hover {
  color: var(--color-Forest-Green);
}

.team-card-linkedin svg,
.team-card-linkedin img {
  width: 18px;
  height: 18px;
}

.team-card-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.15px;
  color: var(--color-Forest-Green);
  margin: 0 0 8px 0;
}

.team-card-company {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.15px;
  color: var(--text-color-muted);
  margin: 0 0 12px 0;
}

.team-card-bio {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.31px;
  color: var(--text-color-muted);
  margin: 0;
}

/* CTA Section */
.about-cta {
  background: linear-gradient(to bottom, #28d19d, #269b8a);
  padding: 75px 0;
  text-align: center;
}

.about-cta .cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.about-cta .cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-cta h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: white;
  margin: 0;
}

.about-cta p {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #d0fae5;
  max-width: 520px;
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  background: #eee;
  border: none;
  border-radius: 8px;
  font-family: var(--font-family-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-Forest-Green);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.15px;
}

.cta-btn:hover {
  background: white;
}

.cta-btn svg {
  width: 16px;
  height: 16px;
}

/* Footer */
.about-footer {
  background: var(--color-Forest-Green);
  padding: 50px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 45px;
}

.footer-brand-description {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #eee;
  margin: 12px 0 0 0;
  max-width: 210px;
}

.footer-heading {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: var(--color-badge);
  font-weight: 400;
  margin: 0 0 16px 0;
  text-align: left;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #eee;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-badge);
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: white;
  border: 1px solid rgba(186, 250, 225, 0.25);
  border-radius: 8px;
  color: #eee;
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: rgba(186, 250, 225, 0.5);
}

.footer-social-link img {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  border-top: 1px solid rgba(186, 250, 225, 0.25);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #eee;
  margin: 0;
}

.footer-attribution {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: rgba(238, 238, 238, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .vision-mission-grid {
    gap: 32px;
  }

  .worktika-image {
    width: 380px;
  }

  .worktika-image img {
    height: 300px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .about-hero h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vm-card {
    padding: 28px;
  }

  .worktika-content {
    flex-direction: column;
    gap: 32px;
  }

  .worktika-image {
    width: 100%;
  }

  .worktika-image img {
    height: 260px;
  }

  .about-vision-mission,
  .about-worktika,
  .about-team {
    padding: 48px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
