/* About Us section (inside gradient background, 1272 container) */
.gradient-section__about-us {
  padding-top: 160px;
}
.gradient-section__about-us-title {
  margin: 0 auto 30px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  max-width: 746px;
}
.gradient-section__about-us-subtitle {
  margin: 0 auto 40px;
  text-align: center;
  color: #ffffff;
  opacity: 0.85;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  max-width: 888px;
}

.gradient-section__about-us-card {
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 10px 10px 10px 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 24px;
  height: 357px;
}

.about-us__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-us__left-heading-title {
  margin: 0 0 30px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  max-width: 340px;
}

.about-us__left-heading-subtitle {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 400;
  max-width: 85%;
  opacity: 0.8;
}

.about-us__list {
  position: relative;
  margin: 0 0 0;
  padding: 0 0 0 17px;
  list-style: none;
}
.about-us__list::before {
  display: none;
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #D9DEE6;
}
.about-us__list li {
  position: relative;
  color: var(--text);
  opacity: 0.85;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 20px;
}
.about-us__list li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2EA2FF;
}

.about-us__right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
.about-us__photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: url("/assets/images/about-us.png") no-repeat center / cover;
}

.about-us__cta {
  position: absolute;
  left: 10px;
  bottom: 10px;
  height: 42px;
  border-radius: 50px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(2px);
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.about-us__cta:hover {
  background: #ffffff;
}
.about-us__cta img {
  width: 14px;
  height: 14px;
}
.about-us__corner {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.3s ease;
}
.about-us__corner:hover {
  background: #ffffff;
  transform: rotate(45deg);
}
.about-us__corner img {
  width: 18px;
  height: auto;
}

.about-us__right:hover .about-us__corner {
  background: #ffffff;
  transform: rotate(45deg);
}
.about-us__right:hover .about-us__cta {
  background: #ffffff;
}
.about-us__photo {
  transition: transform 0.35s ease;
}

.about-us__right:hover .about-us__photo {
  transform: scale(1.08);
}