/* --- Sekcja CTA --- */
.rebrandy-cta-section {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(25, 25, 25, 0.8) 100%);
  backdrop-filter: blur(10px);
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.rebrandy-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;

}

.rebrandy-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  color: #fff !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55);
}

/* --- Przycisk CTA --- */
.rebrandy-cta-btn {
  background: #ff3b2d;
  color: #fff !important;
  font-weight: 600;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(255, 59, 45, 0.35);
  margin-top: 10px;
}

.rebrandy-cta-btn .arrow {
  transition: transform 0.35s ease;
}

.rebrandy-cta-btn:hover {
  background: linear-gradient(90deg, #ff3b2d, #ff6b5f);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 59, 45, 0.55);
}

.rebrandy-cta-btn:hover .arrow {
  transform: translateX(6px);
}

/* --- Gradientowy tekst --- */
.rebrandy-cta-gradient {
  position: relative;
  display: inline-block;
  background: linear-gradient(262deg, #ff8a8a 0%, #8dbaff 50%, #e9a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-fill-color: transparent;
}

/* --- Delikatna poświata neonowa --- */
.rebrandy-cta-gradient::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(8px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

/* --- Responsywność --- */
@media (max-width: 768px) {
  .rebrandy-cta-section {
    padding: 80px 20px;
    border-radius: 20px;
  }
  .rebrandy-cta-btn {
    padding: 14px 36px;
  }
}
