/* ============================== */
/* ABOUT PAGE STYLES
/* ============================== */

/* About Hero */
.about-hero {
  padding: 60px 0 48px;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, border 0.2s ease;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Sections */
.about-section {
  padding: 60px 0;
  transition: background 0.2s ease;
}

.about-section.alt-bg {
  background: var(--bg-secondary);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

/* Mission Grid */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-icon .icon-emoji {
  font-size: 6rem;
  display: block;
  text-align: center;
}

/* Offer Grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
}

.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

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

.offer-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.audience-item:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
}

.audience-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.audience-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.audience-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
}

.value-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  opacity: 0.3;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

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

.value-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.step-item {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

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

.step-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-cta {
  text-align: center;
  margin-top: 8px;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-2px);
}

/* About FAQ */
.about-faq {
  padding-top: 20px;
}

/* Fade-in animation for sections */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================== */
/* RESPONSIVE
/* ============================== */

@media (max-width: 900px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-icon .icon-emoji {
    font-size: 4rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 40px 0 32px;
  }

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

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 20px 16px;
  }

  .audience-item {
    padding: 20px 16px;
  }

  .value-item {
    padding: 24px 20px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}