.media-header__link.is-current {
  color: #ffffff;
  background: rgba(255, 116, 2, 0.09);
}

.media-header__mobile-link.is-current {
  border-color: rgba(255, 116, 2, 0.24);
  background: rgba(255, 116, 2, 0.09);
}

.about-simple {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(180deg, #090909 0%, #050505 100%);
}

.about-simple::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 90px
    );
}

.about-simple__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.about-simple__top {
  max-width: 780px;
  margin-bottom: 58px;
}

.about-simple__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #ff6900;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-simple__top h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.125rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-simple__top h1 span {
  display: block;
  color: #ff5b00;
}

.about-simple__intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-simple__content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 55px;
}

.about-simple__text {
  padding-right: 15px;
}

.about-simple__text p {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9375rem;
  line-height: 1.85;
}

.about-simple__text p:last-child {
  margin-bottom: 0;
}

.about-simple__card {
  position: sticky;
  top: 110px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065) 0%,
      rgba(255, 255, 255, 0.025) 100%
    );
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.about-simple__card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 21px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(180deg, #ff7402 0%, #ff3600 100%);
  box-shadow: 0 12px 24px rgba(255, 54, 0, 0.22);
}

.about-simple__card-icon .material-symbols-rounded {
  font-size: 27px;
}

.about-simple__card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.4375rem;
  font-weight: 800;
  line-height: 1.3;
}

.about-simple__card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  line-height: 1.75;
}

.about-simple__items {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-simple__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8125rem;
  font-weight: 600;
}

.about-simple__item .material-symbols-rounded {
  color: #ff6900;
  font-size: 19px;
}

.about-simple__final {
  margin-top: 65px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.about-simple__final p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.about-simple__final p strong {
  color: #ff6200;
  font-weight: 800;
}

.about-simple__button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(180deg, #ff7402 0%, #ff3600 100%);
  box-shadow: 0 13px 26px rgba(255, 54, 0, 0.23);
  font-size: 0.8125rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.about-simple__button:hover {
  color: #ffffff;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 54, 0, 0.3);
}

.about-simple__button:focus-visible {
  outline: 2px solid #ff6800;
  outline-offset: 4px;
}

.about-simple__button .material-symbols-rounded {
  font-size: 19px;
}

@media (max-width: 900px) {
  .about-simple__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-simple__card {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .about-simple {
    padding: 60px 16px;
  }

  .about-simple__top {
    margin-bottom: 42px;
  }

  .about-simple__top h1 {
    font-size: 2.4375rem;
  }

  .about-simple__intro {
    font-size: 0.9375rem;
  }

  .about-simple__text {
    padding-right: 0;
  }

  .about-simple__text p {
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .about-simple__card {
    padding: 24px;
  }

  .about-simple__final {
    margin-top: 48px;
    align-items: stretch;
    flex-direction: column;
  }

  .about-simple__final p {
    font-size: 1.125rem;
  }

  .about-simple__button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .about-simple__top h1 {
    font-size: 2.125rem;
  }

  .about-simple__card h2 {
    font-size: 1.3125rem;
  }
}
