.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 32px 6px 6px 6px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    border-radius: 6px;
}

.step-card__visual {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.step-card__visual img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.step-card__number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-condensed);
    font-size: 24px;
    font-style: italic;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -0.48px;
    color: var(--color-white);
    text-transform: uppercase;

    p{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    p::before,
    p::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 3px;
        background:#F9DB36;
    }

    p::before {
        right: calc(100% + 12px);
    }

    p::after {
        left: calc(100% + 12px);
    }
}

.step-card__title {
    font-family: var(--font-yanone);
    font-size: clamp(2.25rem, 1.9688rem + 0.75vw, 2.625rem);
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0;
}

.step-card__text {
    color: var(--color-white);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.product-card {
    position: relative;
    z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 4px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 6px;
      border: none;
}

.product-card__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--color-bg-dark);
    box-sizing: border-box;
    z-index: 100;
    isolation: isolate;
    overflow: hidden;
}

.product-card__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.product-card__body {
  display: flex;
  flex-direction: column;
    justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
    height: 100%;
}

.product-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}

.product-card__brand {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-muted);
  margin: 0;
}

.prize-card {
  flex: 0 0 224px;
  width: 224px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: none;
  overflow: visible;
}

.prize-card__image {
  position: relative;
  height: 281px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.prize-card__image::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 88%;
  height: 84%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.1) 38%,
    rgba(255, 255, 255, 0.03) 58%,
    transparent 72%
  );
  pointer-events: none;
}

.prize-card__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.prize-card__image--compact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prize-card__image--compact img {
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 62%;
  object-fit: contain;
  object-position: center;
}

.prize-card__image--compact.prize-card__image--certificate img {
  max-width: 90%;
  max-height: 58%;
}

.prize-card__image--compact.prize-card__image--headphones img {
  max-width: 78%;
  max-height: 68%;
}

.prize-card__image--compact.prize-card__image--station img {
  max-width: 76%;
  max-height: 66%;
}

.prize-card__image--compact.prize-card__image--iphone img {
  max-width: 48%;
  max-height: 62%;
}

.prize-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 0 0 0 4px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--color-bg-dark);
}

.prize-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px 12px;
}

.prize-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}

.prize-card__qty {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-muted);
  margin: 0;
}

.brand-card {
    position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: none;
  min-height: 222px;
}

.brand-card__image {
  flex: 0 0 183px;
  width: 183px;
  align-self: stretch;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card__content {
  flex: 1;
  min-width: 0;
  align-self: stretch;
    gap:10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 12px 16px 0;
}

.brand-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-card__title {
    font-family: var(--font-yanone);
    font-size: clamp(1.75rem, 1.5625rem + 0.5vw, 2rem);
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0;
}

.brand-card__text {
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.brand-card__link {
    margin: 0;
    color: #FF461B;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 90%;
}

.brand-card__link::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    inset: 0;
}

.retailer {
  text-align: center;
  flex: 0 0 100px;
}

.retailer__logo {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.retailer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.retailer__name {
  font-size: var(--text-base);
  font-weight: 500;
}

.faq-item {
    width: 100%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  text-align: left;
  color: var(--color-text);
}

.faq-item__text {
  flex: 1;
  min-width: 0;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.faq-item__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ff5011;
    transition: transform var(--transition);

    svg{
        transition: transform var(--transition);
    }
}

.faq-item.is-open .faq-item__icon svg {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 16px 16px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
    transition: height var(--transition);
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.city-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
}

.city-row__name {
  font-weight: 600;
}

.city-row__networks {
  font-size: var(--text-sm);
  color: var(--color-text-dim);
}

.city-row__networks span {
  color: var(--color-accent);
}

.district-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.district-block__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: var(--color-bg-card);
  font-size: var(--text-xl);
  font-weight: 700;
  text-align: left;
}

.district-block__body {
  display: none;
  background: var(--color-bg-page);
}

.district-block.is-open .district-block__body {
  display: block;
}

@media (max-width: 767px) {


  .brand-card__content {
    padding: 12px 12px 16px;
  }

    .step-card__visual {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .brand-card {
        flex-direction: column;
        align-items: stretch;
    }

    .brand-card__image {
        height: 173px;
        margin-left: auto;
        margin-right: auto;
    }
}
