/* Welcome offer panel — sits in the right-hand 8-col of the hero */

.ccs-rev-offer {
  background: #fff;
  border-radius: var(--ccs-radius-xl);
  box-shadow: var(--ccs-shadow-card);
  border-left: 4px solid var(--ccs-secondary);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.ccs-rev-offer__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ccs-secondary-container);
  color: var(--ccs-on-secondary-container);
  padding: 8px 24px;
  border-bottom-left-radius: var(--ccs-radius-xl);
  font-family: var(--ccs-font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ccs-rev-offer__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .ccs-rev-offer__body { flex-direction: row; justify-content: space-between; }
}

.ccs-rev-offer__copy { flex: 1; }

.ccs-rev-offer__label {
  font-family: var(--ccs-font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ccs-outline);
  margin: 0 0 8px 0;
}

.ccs-rev-offer__headline {
  font-family: var(--ccs-font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ccs-primary-container);
  margin: 0 0 16px 0;
}
@media (min-width: 768px) {
  .ccs-rev-offer__headline { font-size: 32px; }
}

.ccs-rev-offer__bullets {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ccs-rev-offer__bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
}
.ccs-rev-offer__bullets .material-symbols-outlined {
  color: var(--ccs-primary);
  font-size: 20px;
}

.ccs-rev-offer__terms {
  font-family: var(--ccs-font-label);
  font-size: 11px;
  line-height: 1.5;
  color: var(--ccs-on-surface-variant);
  margin: 0;
}
.ccs-rev-offer__terms a {
  color: var(--ccs-primary);
  text-decoration: underline;
}

.ccs-rev-offer__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) { .ccs-rev-offer__actions { width: 260px; } }

.ccs-rev-offer__cta {
  background: var(--ccs-cta-orange);
  color: #fff;
  padding: 16px 24px;
  border: none;
  border-radius: var(--ccs-radius-xl);
  font-family: var(--ccs-font-display);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(247, 163, 53, 0.3);
  transition: filter 0.15s ease, transform 0.15s ease;
}
.ccs-rev-offer__cta:hover { filter: brightness(1.05); }
.ccs-rev-offer__cta:active { transform: scale(0.98); }

.ccs-rev-offer__secondary {
  background: transparent;
  color: var(--ccs-primary-container);
  border: 2px solid var(--ccs-primary-container);
  padding: 12px 24px;
  border-radius: var(--ccs-radius-xl);
  font-family: var(--ccs-font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.ccs-rev-offer__secondary:hover {
  background: var(--ccs-primary-container);
  color: #fff;
}
