/* ===== About Page ===== */

/* Hero */
.about-hero {
  padding: 0 0 80px 0;
}
.about-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-hero__content {
  flex: 1;
}
.about-hero__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  margin-bottom: 20px;
}
.about-hero__title span {
  color: #1a89f9;
}
.about-hero__desc {
  font-size: 18px;
  line-height: 165%;
  color: #64748b;
  max-width: 560px;
  margin-bottom: 40px;
}
.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about-hero__stat {
  background: #f2f7fd;
  border-radius: 16px;
  padding: 20px 24px;
}
.about-hero__stat-num {
  font-weight: 700;
  font-size: 32px;
  color: #1a89f9;
  line-height: 110%;
  margin-bottom: 4px;
}
.about-hero__stat-text {
  font-size: 14px;
  color: #64748b;
}
.about-hero__image {
  width: 460px;
  min-width: 460px;
  height: 540px;
  border-radius: 0;
  overflow: hidden;
}
.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.15);
  transform-origin: top center;
}

/* Mission */
.about-mission {
  padding: 0 0 80px 0;
}
.about-mission__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-mission__card {
  background: #f8fafc;
  border-radius: 24px;
  padding: 28px 24px;
  border: 2px solid #f1f5f9;
  transition: border-color 0.2s ease;
}
.about-mission__card:hover {
  border-color: #1a89f9;
}
.about-mission__card--main {
  grid-column: span 4;
  background: radial-gradient(100% 100% at 50% 0%, rgba(26, 137, 249, 0.6) 0%, #1a89f9 100%);
  color: #fff;
  border: none;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 8px 40px;
}
.about-mission__card--main .about-mission__icon {
  grid-row: span 2;
  align-self: start;
}
.about-mission__card--main:hover {
  border-color: transparent;
}
.about-mission__card--main p {
  font-size: 20px;
  line-height: 165%;
  max-width: 100%;
  color: #fff !important;
}
.about-mission__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
}
.about-mission__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.about-mission__icon svg {
  width: 28px;
  height: 28px;
}
.about-mission__icon--light {
  background: #f2f7fd;
}
.about-mission__card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  margin: 16px 0 10px 0;
}
.about-mission__card p {
  font-size: 14px;
  line-height: 160%;
  color: #64748b;
}

/* Why Section */
.about-why {
  padding: 0 0 80px 0;
}
.about-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-why__card {
  background: #fff;
  border: 2px solid #f2f7fd;
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.2s ease;
}
.about-why__card:hover {
  border-color: #1a89f9;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 137, 249, 0.08);
}
.about-why__num {
  font-weight: 700;
  font-size: 40px;
  color: #e2e8f0;
  line-height: 100%;
  margin-bottom: 16px;
}
.about-why__card:hover .about-why__num {
  color: #1a89f9;
}
.about-why__card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  margin-bottom: 12px;
}
.about-why__card p {
  font-size: 14px;
  line-height: 160%;
  color: #64748b;
}

/* CTA */
.about-cta {
  padding: 0 0 80px 0;
}
.about-cta__box {
  background: radial-gradient(100% 100% at 50% 0%, rgba(26, 137, 249, 0.6) 0%, #1a89f9 100%);
  border-radius: 32px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-cta__content {
  max-width: 560px;
  color: #fff;
}
.about-cta__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  margin-bottom: 16px;
}
.about-cta__content p {
  font-size: 17px;
  line-height: 160%;
  opacity: 0.9;
  margin-bottom: 32px;
}
.about-cta__content .blue-btn {
  background: #fff;
  color: #1a89f9;
  font-weight: 600;
  font-size: 17px;
  padding: 16px 40px;
}
.about-cta__content .blue-btn:hover {
  background: #f2f7fd;
}
.about-cta__graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-cta__circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: aboutPulse 4s ease-in-out infinite;
}
@keyframes aboutPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-hero .container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .about-hero__image {
    width: 100%;
    min-width: unset;
    max-width: 460px;
    height: 420px;
  }
  .about-hero__stats {
    max-width: 100%;
  }
  .about-mission__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-mission__card--main {
    grid-column: span 2;
  }
  .about-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero__title {
    font-size: 36px;
  }
  .about-hero__desc {
    font-size: 16px;
  }
  .about-hero__stat-num {
    font-size: 24px;
  }
  .about-mission__title {
    font-size: 24px;
  }
  .about-cta__box {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }
  .about-cta__title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .about-hero__title {
    font-size: 28px;
  }
  .about-hero__stats {
    grid-template-columns: 1fr;
  }
  .about-hero__image {
    height: 280px;
  }
  .about-mission__grid {
    grid-template-columns: 1fr;
  }
.about-mission__card--main {
    grid-column: span 1;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about-mission__card--main p {
    font-size: 15px;
  }
  .about-why__grid {
    grid-template-columns: 1fr;
  }
  .about-cta__box {
    padding: 32px 24px;
  }
  .about-cta__title {
    font-size: 24px;
  }
  .about-cta__circle {
    width: 120px;
    height: 120px;
  }
  .about-cta__circle svg {
    width: 48px;
    height: 48px;
  }
}

.about-mission__card--main,
.about-mission__card--main p,
.about-mission__card--main .about-mission__title {
  color: #fff !important;
}