.bonus {
  padding: clamp(24px, 5vw, 48px) 0 clamp(40px, 6vw, 80px);
}

/* ── Hero ── */
.bonus-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  background: #33261c;
  border-radius: 40px;
  padding: clamp(28px, 4vw, 48px) clamp(28px, 5vw, 56px);
  margin-bottom: clamp(20px, 3vw, 28px);
}

.bonus-hero__content {
  max-width: 560px;
  min-width: 0;
}

.bonus-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.bonus-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.bonus-hero__text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.72);
}

.bonus-hero__balance {
  flex-shrink: 0;
  width: min(280px, 100%);
  background: #e01b22;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 32px);
}

.bonus-hero__balance-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.bonus-hero__balance-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 8px;
}

.bonus-hero__balance-note {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Steps ── */
.bonus-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: clamp(40px, 6vw, 64px);
}

.bonus-step {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 32px);
}

.bonus-step__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: #e01b22;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.bonus-step__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  color: #33261c;
  margin-bottom: 10px;
}

.bonus-step__text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 0;
  color: #5c5045;
}

/* ── FAQ ── */
.bonus-faq {
  max-width: 860px;
}

.bonus-faq__title {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.bonus-faq__list {
  border-top: 1px solid var(--color-gray-200);
}

.bonus-faq__item {
  border-bottom: 1px solid var(--color-gray-200);
}

.bonus-faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: clamp(18px, 2.5vw, 22px) 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
  color: #33261c;
  cursor: pointer;
  list-style: none;
}

.bonus-faq__question::-webkit-details-marker {
  display: none;
}

.bonus-faq__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  position: relative;
}

.bonus-faq__icon::before,
.bonus-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #33261c;
  transform: translate(-50%, -50%);
}

.bonus-faq__icon::before {
  width: 12px;
  height: 1.5px;
}

.bonus-faq__icon::after {
  width: 1.5px;
  height: 12px;
  transition: opacity var(--transition), transform var(--transition);
}

.bonus-faq__item[open] .bonus-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.bonus-faq__answer {
  padding: 0 32px 22px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 23.8px;
  letter-spacing: 0;
  color: #5c5045;
}

/* ── Tablet (768–1023) ── */
@media (max-width: 1023px) {
  .bonus-hero {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .bonus-hero__balance {
    width: 100%;
    max-width: 320px;
  }

  .bonus-steps {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile (576–767) ── */
@media (max-width: 767px) {
  .bonus {
    padding: 24px 0 40px;
  }

  .bonus-hero {
    border-radius: 24px;
    padding: 24px;
  }

  .bonus-hero__title {
    font-size: 28px;
  }

  .bonus-hero__text {
    font-size: 14px;
    line-height: 23.8px;
  }

  .bonus-hero__balance {
    max-width: none;
  }

  .bonus-step__num {
    font-size: 28px;
  }

  .bonus-faq__title {
    font-size: 28px;
  }
}

/* ── Small mobile (400–575) ── */
@media (max-width: 575px) {
  .bonus-hero__title {
    font-size: 26px;
  }

  .bonus-faq__title {
    font-size: 26px;
  }

  .bonus-step {
    padding: 20px;
  }
}

/* ── Extra small (<400) ── */
@media (max-width: 399px) {
  .bonus-hero {
    border-radius: 20px;
    padding: 20px;
  }

  .bonus-hero__title {
    font-size: 24px;
  }

  .bonus-faq__title {
    font-size: 24px;
  }

  .bonus-step__text,
  .bonus-faq__answer {
    font-size: 13.5px;
    line-height: 21.6px;
  }
}

/* Tablet landscape: 3 steps stay if room, 2+1 optional */
@media (min-width: 768px) and (max-width: 1023px) {
  .bonus-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-step:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
  }
}
