.info-page {
  min-height: 70vh;
}

.info-hero {
  padding: 44px 0 18px;
}

.info-hero__inner {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(123, 240, 176, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(39, 202, 17, 0.16), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 213, 74, 0.12), transparent 34%),
    rgba(15, 41, 34, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.info-hero__inner::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 240, 176, 0.62), rgba(255, 213, 74, 0.55), transparent);
}

.info-hero h1 {
  position: relative;
  max-width: 990px;
  margin: 18px 0 18px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.info-hero p {
  position: relative;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.info-page--about .info-hero p {
  max-width: 1180px;
  columns: 2 360px;
  column-gap: clamp(28px, 6vw, 92px);
  text-wrap: pretty;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(13, 31, 27, 0.82);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand2), #f2eb58);
}

.info-card h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.08;
}

.info-card--icon {
  min-height: 300px;
  padding-top: 86px;
}

.info-card--image-icon {
  padding-top: 126px;
}

.info-card--delivery-icon {
  padding-top: 126px;
}

.info-card--contact-icon {
  padding-top: 126px;
}

.info-card--contact-actions {
  display: flex;
  flex-direction: column;
}

.info-card__icon {
  position: absolute;
  top: 26px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  color: #071611;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, var(--brand2), #f2eb58 88%);
  box-shadow:
    0 18px 38px rgba(123, 240, 176, 0.18),
    inset 0 -10px 18px rgba(7, 22, 17, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.info-card__image-icon {
  position: absolute;
  top: 24px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(178, 240, 96, 0.46);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 38px rgba(123, 240, 176, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.info-card__image-icon img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(5, 21, 17, 0.12));
}

.info-card--delivery-icon .info-card__image-icon {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(178, 240, 96, 0.5);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 38px rgba(123, 240, 176, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.info-card--delivery-icon .info-card__image-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(5, 21, 17, 0.12));
}

.info-card--contact-icon .info-card__image-icon {
  width: 78px;
  height: 78px;
  border-color: rgba(178, 240, 96, 0.5);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.92);
}

.info-card--contact-icon .info-card__image-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.info-card__icon::before {
  z-index: 1;
}

.info-card__icon::before,
.info-card__icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.info-card__icon::after {
  z-index: 0;
}

.info-card__icon--clock::before {
  width: 25px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.info-card__icon--clock::after {
  z-index: 2;
  width: 9px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(3px, -3px);
}

.info-card__icon--truck::before {
  width: 29px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: translateX(-2px);
}

.info-card__icon--truck::after {
  z-index: 2;
  width: 31px;
  height: 7px;
  border-left: 6px solid currentColor;
  border-right: 6px solid currentColor;
  border-radius: 0 0 10px 10px;
  transform: translate(-2px, 13px);
}

.info-card__icon--wallet::before {
  width: 30px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.info-card__icon--wallet::after {
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(9px);
}

.info-card__icon--receipt::before {
  width: 25px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.info-card__icon--receipt::after {
  z-index: 2;
  width: 15px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.info-card__icon--gift::before {
  width: 30px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.info-card__icon--gift::after {
  z-index: 2;
  width: 3px;
  height: 31px;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor, 12px 11px 0 -10px currentColor;
}

.info-card__icon--percent::before {
  z-index: 2;
  width: 27px;
  height: 3px;
  background: currentColor;
  transform: rotate(-45deg);
}

.info-card__icon--percent::after {
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 7px 7px, currentColor 0 4px, transparent 4.5px),
    radial-gradient(circle at 21px 21px, currentColor 0 4px, transparent 4.5px);
}

.info-card__icon--return::before {
  width: 29px;
  height: 23px;
  border: 3px solid currentColor;
  border-left: 0;
  border-radius: 0 12px 12px 0;
  transform: translateX(2px);
}

.info-card__icon--return::after {
  z-index: 2;
  width: 14px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-9px, -4px) rotate(45deg);
}

.info-card__icon--shield::before {
  width: 27px;
  height: 31px;
  border: 3px solid currentColor;
  border-radius: 15px 15px 18px 18px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.info-card__icon--shield::after {
  z-index: 2;
  width: 14px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.info-card__icon--tools::before {
  width: 27px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-38deg);
}

.info-card__icon--tools::after {
  z-index: 2;
  width: 25px;
  height: 25px;
  border-top: 5px solid currentColor;
  border-left: 5px solid currentColor;
  border-radius: 6px 0 0 0;
  transform: translate(4px, -4px) rotate(45deg);
}

.info-card__icon--box::before {
  width: 30px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translateY(3px);
}

.info-card__icon--box::after {
  z-index: 2;
  width: 22px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: translateY(-6px) rotate(45deg);
}

.info-card__icon--chat::before {
  width: 30px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 10px;
}

.info-card__icon--chat::after {
  z-index: 2;
  width: 10px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-7px, 11px) skew(-15deg);
}

.info-card__icon--document::before,
.info-card__icon--list::before {
  width: 24px;
  height: 31px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.info-card__icon--document::after,
.info-card__icon--list::after {
  z-index: 2;
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.info-card__icon--location::before {
  width: 24px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 55% 55%;
  transform: rotate(45deg);
}

.info-card__icon--location::after {
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.info-card__icon--diamond::before {
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.info-card__icon--diamond::after {
  z-index: 2;
  width: 19px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
  transform: rotate(45deg);
}

.info-card__icon--warning::before {
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 30px solid currentColor;
}

.info-card__icon--warning::after {
  z-index: 2;
  width: 4px;
  height: 15px;
  border-radius: 999px;
  background: #f2eb58;
  box-shadow: 0 12px 0 #f2eb58;
  transform: translateY(5px);
}

.info-card__icon--phone::before {
  width: 25px;
  height: 25px;
  border-left: 7px solid currentColor;
  border-bottom: 7px solid currentColor;
  border-radius: 7px;
  transform: rotate(-45deg);
}

.info-card__icon--phone::after {
  z-index: 2;
  width: 16px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(6px, 8px) rotate(32deg);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.info-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 30px;
}

.info-contact-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 146px;
  min-height: 58px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-contact-action::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.info-contact-action:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32);
}

.info-contact-action img {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.info-contact-action span {
  position: relative;
  z-index: 1;
}

.info-contact-action--vodafone {
  background: linear-gradient(135deg, #c9062f, #ff4868);
}

.info-contact-action--kyivstar {
  background: linear-gradient(135deg, #1294ff, #35c4ff);
}

.info-contact-action--viber {
  background: linear-gradient(135deg, #6e38cb, #8d63ff);
}

.info-contact-action--telegram {
  background: linear-gradient(135deg, #1d8fe1, #47d0ff);
}

.info-contact-list {
  display: grid;
  gap: 12px;
}

.info-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.info-contact-link:hover {
  transform: translateX(4px);
  border-color: rgba(123, 240, 176, 0.28);
  background: rgba(123, 240, 176, 0.07);
}

.info-contact-link img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.info-contact-link span {
  display: grid;
  gap: 4px;
}

.info-contact-link small {
  color: var(--brand2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-contact-link strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .info-hero {
    padding-top: 24px;
  }

  .info-hero__inner,
  .info-card {
    border-radius: 22px;
  }

  .info-hero__inner {
    padding: 24px 18px 26px;
  }

  .info-hero h1 {
    font-size: clamp(1.72rem, 9vw, 2.42rem);
    line-height: 1.04;
    letter-spacing: 0.025em;
  }

  .info-hero p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .info-page--about .info-hero p {
    columns: 1;
  }

  .info-contact-action {
    flex: 1 1 128px;
    min-width: 0;
  }
}
