/* ─── Hero ─────────────────────────────────────────────────────────────── */

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
}

.about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(20, 20, 28, 0.3),
      rgba(20, 20, 28, 0.6));
  z-index: 1;
}

.about-hero__overlay {
  position: relative;
  z-index: 2;
}

.about-hero__overlay {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 20px 0px;
}

.about-hero__logo {
  margin: 0;
}

.about-hero__title {
  font-size: 52px;
  line-height: normal;
  margin: 0;
  color: var(--White);
  font-family: var(--font-family-base);
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.about-who__body {
  margin: 0px 0 0;
  max-width: 620px;
  color: var(--White);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.about-hero__logo img {
  width: min(100%, 460px);
  height: auto;
}

.about-hero__content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(1160px, calc(100% - 120px));
  align-items: center;
}

.about-hero__arrow {}


/* ─── Shared section layout ─────────────────────────────────────────────── */

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

.about-section__inner {
  width: min(1160px, calc(100% - 120px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}


/* ─── Who We Are ────────────────────────────────────────────────────────── */

.about-who__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.about-who__body .panel__body {
  margin: 0;
}


/* ─── FAQ ───────────────────────────────────────────────────────────────── */

.about-section--faq .about-section__inner {
  align-items: stretch;
  text-align: left;
}

.about-section--faq .panel__title {
  text-align: center;
  align-self: center;
}

.about-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-accordion__header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  color: var(--White);
  font-family: var(--font-family-base);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: left;
}

.about-accordion__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.about-accordion__item.is-open .about-accordion__chevron {
  transform: rotate(180deg);
}

.about-accordion__body {
  display: none;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #CACED7;
  max-width: 90%;
}

.about-accordion__item.is-open .about-accordion__body {
  display: block;
}

.about-faq__subtext {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #CACED7;
  text-align: center;
}


/* ─── Get in Touch ──────────────────────────────────────────────────────── */

.about-contact-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.about-contact-card {
  background: #0A0B15;
  border-radius: 9px;
  padding: 32px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-contact-card__icon {
  display: block;
  opacity: 0.85;
}

.about-contact-card__heading {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--White);
}

.about-contact-card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #CACED7;
  flex: 1;
}

.about-contact-card__email {
  font-size: 14px;
  font-weight: 500;
  color: #3cb4cc;
  margin-top: 4px;
  transition: color 0.25s ease;
}

.about-contact-card__email:hover {
  color: #36a2b7;
}

.about-hero__body {
  margin: 0px 0 0;
}


/* ─── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 960px) {

  .about-hero,
  .about-hero__overlay {
    min-height: 680px;
  }

  .about-hero__logo img {
    max-width: 340px;
  }

  .about-hero__title {
    font-size: 42px;
  }
  .about-contact-cards {
    flex-direction: column;
  }


}

@media (max-width: 720px) {

  .about-hero__content {
    width: min(1160px, calc(100% - 80px));
  }

  .about-section__inner {
  width: min(1160px, calc(100% - 80px));
}



}

@media (max-width: 640px) {

  .about-hero__content {
    width: min(1160px, calc(100% - 80px));
  }

  .about-who__body {
    font-size: 14px;
  }


  .about-hero,
  .about-hero__overlay {
    min-height: 560px;
  }

  .about-hero__logo img {
    max-width: 260px;
  }

  .about-hero__overlay {
    gap: 36px;
  }


  .about-section__inner {
    gap: 28px;
  }

  .about-accordion__header {
    font-size: 15px;
    padding: 16px 0;
  }



  .about-contact-card {
    flex: none;
    width: 100%;
  }

  .about-contact-card__heading {
    font-size: 16px;
  }
}