/* ===========================
   About Us - Hero
   =========================== */
.about-hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #100329 0%, #0F0039 50%, #1a0a3e 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.about-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-hero__subtitle {
  font-size: 1.3rem;
  color: #825EE7;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.5;
}

.about-hero__body {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ===========================
   About Us - Mission
   =========================== */
.about-mission {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
  border-top: 1px solid rgba(130, 94, 231, 0.1);
}

.about-mission__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.about-mission__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-mission__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ===========================
   About Us - Team
   =========================== */
.about-team {
  padding: 100px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
}

.about-team__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 56px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-team-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 20px;
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(130, 94, 231, 0.3);
}

.about-team-card__photo-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.25);
}

.about-team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.about-team-card__role {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-team-card__bio {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-team-card__interests {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  line-height: 1.6;
}

/* ===========================
   About Us - Values
   =========================== */
.about-values {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.about-values__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 56px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.about-value-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(130, 94, 231, 0.25);
}

.about-value-card__icon {
  margin-bottom: 20px;
}

.about-value-card__icon img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.about-value-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.about-value-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ===========================
   About Us - CTA
   =========================== */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0F0039 0%, #100329 50%, #1a0a3e 100%);
  position: relative;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(130, 94, 231, 0.08) 0%, transparent 70%);
}

.about-cta .container {
  max-width: 1400px;
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-cta__content {
  padding-top: 40px;
}

.about-cta__content .section-subtitle {
  margin-bottom: 32px;
  max-width: 100%;
}

.about-cta__booking {
  min-height: 680px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(130, 94, 231, 0.15);
}

.about-cta__booking .meetings-iframe-container {
  min-height: 680px;
  width: 100%;
}

.about-cta__booking iframe {
  border-radius: 16px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .about-hero__title {
    font-size: 2.75rem;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .about-cta__content {
    padding-top: 0;
  }

  .about-cta__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

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

  .about-hero__title {
    font-size: 2.25rem;
  }

  .about-hero__subtitle {
    font-size: 1.1rem;
  }

  .about-mission,
  .about-team,
  .about-values {
    padding: 64px 0;
  }

  .about-cta {
    padding: 64px 0;
  }

  .about-mission__title,
  .about-team__title,
  .about-values__title {
    font-size: 1.6rem;
  }

  .about-team-card__photo-wrap {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .about-hero__title {
    font-size: 1.85rem;
  }
}
