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

/* ---- Hero ---- */
.about-hero {
  margin-top: 70px;
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.about-hero__deco {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about-hero__deco--bottom {
  top: 300px;
}

.about-hero__deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__title {
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

/* ---- Main (intro + features) ---- */
.about-main {
  background: #f4f4f4;
  padding-top: 50px;
  padding-bottom: calc(80px - 37px);
}

/* Intro text */
.about-intro {
  max-width: 726px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* Feature items */
.about-feature {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1156px;
  margin: 0 auto 37px;
  min-height: 462px;
}
.about-feature:nth-child(even) {
  flex-direction: row-reverse;
}
.about-feature--reverse {
  flex-direction: row-reverse;
}

.about-feature__img-wrap {
  width: 588px;
  min-height: 462px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.about-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-feature__content {
  flex: 1;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.about-feature__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: #000;
}

.about-feature__desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.about-feature__btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00d3d7;
  border-radius: 100px;
  padding: 14px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #00d3d7;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  min-width: 141px;
}

.about-feature__btn:hover {
  background: #00d3d7;
  color: #fff;
}

/* ---- CTA ---- */
.about-cta {
  position: relative;
  width: 100%;
  height: 457px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff;
}

.about-cta__img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 685px;
  height: 100%;
  pointer-events: none;
}

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

.about-cta__content {
  position: relative;
  z-index: 2;
  margin-left: 146px;
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.about-cta__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #000;
}

.about-cta__desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #6c6c6c;
  line-height: 1.6;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9bcccd;
  border-radius: 100px;
  padding: 16px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.about-cta__btn:hover {
  background: #7ab8b9;
  color: #fff;
}

/* ---- Certifications ---- */
.about-cert {
  background: #f4f4f4;
  padding: 60px 0;
}

.about-cert__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  min-height: 532px;
  max-width: 1191px;
  margin: 0 auto;
}

.about-cert__left {
  position: relative;
  width: 616px;
  min-height: 532px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cert__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cert__title {
  position: relative;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 291px;
}

.about-cert__logos {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
}

.about-cert__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cert__logo-item img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
}

/* ---- Stats ---- */
.about-stats {
  background: #f4f4f4;
  padding: 80px 0;
  padding-top: 0;
}

.about-stats__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.about-stats__desc {
  max-width: 726px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-stats__desc p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.about-stats__grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-stats__card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  width: 268px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.about-stats__card-icon {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stats__card-icon img {
  max-height: 40px;
  max-width: 80px;
  object-fit: contain;
}

.about-stats__card-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: normal;
  color: #00d3d7;
  text-align: center;
}

.about-stats__card-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #000;
  text-align: center;
  max-width: 102px;
}

/* ---- News ---- */
.about-news {
  background: #f4f4f4;
  padding: 80px 0;
}

.about-news__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.about-news__grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.about-news__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 374px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.about-news__item:hover .about-news__item-thumb {
  transform: scale(1.04);
}

.about-news__item-img {
  width: 100%;
  height: 373px;
  border-radius: 20px;
  overflow: hidden;
  background: #dfdfdf;
  flex-shrink: 0;
}

.about-news__item-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.about-news__item-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
.certification {
  padding-top: 100px;
}
/*  */
.procedure {
  width: 1014px;
  gap: 60px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
}
.procedure__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.procedure__icon {
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
}
.procedure__icon img {
  width: 100%;
  height: 100%;
}
.procedure__label {
  color: #000;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
/* ===== RESPONSIVE ===== */

/* Tablet: <= 1200px */
@media (max-width: 1200px) {
  .about-feature {
    max-width: 95%;
  }

  .about-feature__img-wrap {
    width: 45%;
  }

  .about-feature__content {
    padding: 30px 40px;
  }

  .about-cert__inner {
    max-width: 95%;
  }

  .about-cert__left {
    width: 45%;
  }

  .about-news__item {
    width: calc(33.33% - 28px);
  }
}

/* Tablet: <= 1024px */
@media (max-width: 1024px) {
  .about-hero {
    height: 480px;
  }

  .about-hero__title {
    font-size: 30px;
    white-space: normal;
    text-align: center;
    padding: 0 20px;
  }

  .about-feature {
    flex-direction: column !important;
    max-width: 95%;
  }

  .about-feature__img-wrap {
    width: 100%;
    min-height: 300px;
  }

  .about-feature__content {
    padding: 30px 40px;
    gap: 24px;
  }

  .about-cta {
    height: auto;
    min-height: 400px;
    flex-direction: column;
    padding: 60px 40px;
  }

  .about-cta__img-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    right: auto;
    top: auto;
  }

  .about-cta__content {
    margin-left: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .about-cert__inner {
    flex-direction: column;
    max-width: 95%;
  }

  .about-cert__left {
    width: 100%;
    min-height: 250px;
  }

  .about-cert__logos {
    padding: 30px;
    justify-content: center;
  }

  .about-stats__grid {
    gap: 16px;
  }

  .about-stats__card {
    width: calc(50% - 8px);
  }

  .about-news__grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .about-news__item {
    width: calc(50% - 12px);
  }
}

/* Mobile: <= 768px */
@media (max-width: 768px) {
  .about-hero {
    height: 360px;
    margin-top: 70px;
  }

  .about-hero__title {
    font-size: 24px;
    padding: 0 16px;
  }

  .about-hero__deco {
    width: 300px;
    height: 200px;
  }

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

  .about-intro {
    padding: 0 16px;
    margin-bottom: 40px;
  }

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

  .about-feature {
    flex-direction: column !important;
    border-radius: 16px;
    margin: 0 16px 16px;
    max-width: calc(100% - 32px);
  }

  .about-feature__img-wrap {
    width: 100%;
    min-height: 220px;
  }

  .about-feature__content {
    padding: 24px 20px;
    gap: 20px;
  }

  .about-feature__title {
    font-size: 16px;
  }

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

  .about-cta {
    padding: 40px 16px;
  }

  .about-cta__title {
    font-size: 18px;
  }

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

  .about-cta__btn {
    font-size: 16px;
    padding: 12px 20px;
  }

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

  .about-cert__inner {
    flex-direction: column;
    max-width: calc(100% - 32px);
    margin: 0 16px;
  }

  .about-cert__left {
    width: 100%;
    min-height: 200px;
  }

  .about-cert__title {
    font-size: 18px;
  }

  .about-cert__logos {
    padding: 20px;
    gap: 20px;
  }

  .about-cert__logo-item img {
    max-width: 100px;
    max-height: 70px;
  }

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

  .about-stats__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .about-stats__desc {
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .about-stats__desc p {
    font-size: 14px;
  }

  .about-stats__grid {
    gap: 12px;
    padding: 0 16px;
  }

  .about-stats__card {
    width: calc(50% - 6px);
    padding: 24px 16px;
    gap: 16px;
  }

  .about-stats__card-number {
    font-size: 32px;
  }

  .about-stats__card-label {
    font-size: 13px;
    max-width: 100%;
  }

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

  .about-news__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .about-news__grid {
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
  }

  .about-news__item {
    width: 100%;
  }

  .about-news__item-img {
    height: 220px;
  }
  /*  */
  .procedure {
    width: 100%;
    flex-direction: column;
    align-items: start;
    padding: 40px 16px;
    gap: 30px;
  }
}
