/* Hero Section */
.about-hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.about-hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--foreground);
}

.about-hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Ad Banner */
.about-ad-banner {
  padding: 24px 0;
}

.ad-placeholder {
  background: var(--muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.ad-leaderboard {
  height: 90px;
  max-width: 728px;
  margin: 0 auto;
}

.ad-rectangle {
  width: 300px;
  height: 250px;
}

/* Our Story Section */
.story-section {
  padding: 80px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.story-content p {
  color: var(--muted-foreground);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.story-image {
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 24px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.story-image::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.story-image svg {
  width: 120px;
  height: 120px;
  color: white;
  position: relative;
  z-index: 1;
}

/* Mission Cards */
.mission-section {
  padding: 80px 0;
  background: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mission-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.mission-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Values Section */
.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.value-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-content p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
}

.cta-content {
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--muted);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}


/* Responsive */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.story-image {
    height: 300px;
    order: -1;
}

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

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

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

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


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

.about-hero h1 {
    font-size: 2rem;
}

.about-hero p {
    font-size: 1rem;
}

.mission-grid,
.values-grid {
    grid-template-columns: 1fr;
}

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

.stat-number {
    font-size: 2rem;
}

.cta-content h2 {
    font-size: 1.75rem;
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
}
.ad-leaderboard {
    height: 100px;
    width: 100%;
}
}