/* ==========================================================================
   SPS · Angebots-Konfigurator
   Mehrstufiger Wizard mit Live-Summary
   ========================================================================== */

.page-hero--configurator { padding-bottom: clamp(40px, 5vw, 80px); }

.cfg-section { padding-top: clamp(32px, 4vw, 64px); }

.cfg {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--sh-md);
  overflow: hidden;
}

/* ===== Header / Progress =================================================== */
.cfg__header {
  padding: 20px clamp(20px, 3vw, 36px);
  border-bottom: 1px solid var(--c-border-soft);
  background: linear-gradient(135deg, var(--c-bg-soft) 0%, #fff 100%);
}
.cfg__progress { display: flex; flex-direction: column; gap: 10px; }
.cfg__progress-bar {
  height: 6px;
  background: var(--c-border);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.cfg__progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary-active) 100%);
  border-radius: var(--r-pill);
  transition: width 360ms var(--ease);
}
.cfg__progress-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--fs-xs); color: var(--c-text-muted);
  font-family: var(--ff-heading); letter-spacing: 0.08em; text-transform: uppercase;
}
.cfg__step-label { font-weight: 600; color: var(--c-deep); }
.cfg__reset-btn {
  font: inherit; color: var(--c-text-muted); cursor: pointer; padding: 4px 10px;
  border-radius: var(--r-md); transition: all var(--t-fast) var(--ease);
}
.cfg__reset-btn:hover { color: var(--c-accent); background: var(--c-accent-tint); }

/* ===== Grid (Stage + Aside) ================================================ */
.cfg__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
}
@media (max-width: 1080px) {
  .cfg__grid { grid-template-columns: 1fr; }
}

.cfg__stage {
  padding: clamp(24px, 4vw, 48px);
  min-height: 520px;
  display: flex; flex-direction: column;
  position: relative;
}

/* ===== Steps =============================================================== */
.cfg__step { display: none; flex: 1; }
.cfg__step.is-active { display: block; animation: cfg-fade 320ms var(--ease); }
@keyframes cfg-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cfg__step-head { margin-bottom: 28px; }
.cfg__step-eyebrow {
  display: inline-block;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--c-bg-blue); color: var(--c-deep-3);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.cfg__step-title { font-size: clamp(1.4rem, 2.2vw, 1.85rem); margin-bottom: 8px; }
.cfg__step-desc { color: var(--c-text-muted); font-size: var(--fs-sm); max-width: 64ch; }

/* ===== Cards =============================================================== */
.cfg__cards {
  display: grid; gap: 14px;
}
.cfg__cards--cols2 { grid-template-columns: repeat(2, 1fr); }
.cfg__cards--cols3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) {
  .cfg__cards--cols2,
  .cfg__cards--cols3 { grid-template-columns: 1fr; }
}

.cfg-card {
  position: relative;
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.cfg-card:hover {
  border-color: var(--c-primary-soft);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}
.cfg-card input { position: absolute; opacity: 0; pointer-events: none; }
.cfg-card.is-selected,
.cfg-card:has(input:checked) {
  border-color: var(--c-primary);
  background: var(--c-bg-blue);
  box-shadow: var(--sh-glow);
}
.cfg-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--c-bg-blue);
  color: var(--c-deep-3);
}
.cfg-card.is-selected .cfg-card__icon,
.cfg-card:has(input:checked) .cfg-card__icon {
  background: var(--c-primary);
  color: #fff;
}
.cfg-card__body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.cfg-card__title {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--c-deep);
  line-height: 1.25;
}
.cfg-card__desc { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.4; }
.cfg-card__check {
  position: absolute; top: 12px; right: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all var(--t-fast) var(--ease);
}
.cfg-card.is-selected .cfg-card__check,
.cfg-card:has(input:checked) .cfg-card__check {
  background: var(--c-primary);
  border-color: var(--c-primary);
}

.cfg-card--sm { padding: 14px; }
.cfg-card--sm .cfg-card__title { font-size: var(--fs-base); }
.cfg-card--xs { padding: 12px 14px; flex-direction: column; gap: 4px; }
.cfg-card--xs .cfg-card__title { font-size: var(--fs-sm); }
.cfg-card--xs .cfg-card__desc { font-size: var(--fs-xs); }

/* ===== Icons (data-icon) =================================================== */
.cfg-card__icon[data-icon="cog"]::before,
.cfg-card__icon[data-icon="megaphone"]::before,
.cfg-card__icon[data-icon="spark"]::before,
.cfg-card__icon[data-icon="chat"]::before {
  content: "";
  width: 24px; height: 24px;
  background-color: currentColor;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.cfg-card__icon[data-icon="cog"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z'/><circle cx='12' cy='12' r='3'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z'/><circle cx='12' cy='12' r='3'/></svg>");
}
.cfg-card__icon[data-icon="megaphone"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m3 11 18-5v12L3 14v-3z'/><path d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m3 11 18-5v12L3 14v-3z'/><path d='M11.6 16.8a3 3 0 1 1-5.8-1.6'/></svg>");
}
.cfg-card__icon[data-icon="spark"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z'/></svg>");
}
.cfg-card__icon[data-icon="chat"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>");
}

/* ===== Chips =============================================================== */
.cfg__group { margin-bottom: 24px; }
.cfg__group[hidden] { display: none; }
.cfg__group-title {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  font-family: var(--ff-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.cfg__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cfg-chip {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  color: var(--c-deep);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  font-family: var(--ff-body);
  line-height: 1.3;
}
.cfg-chip:hover {
  border-color: var(--c-primary-soft);
  color: var(--c-deep);
  background: var(--c-bg-blue);
}
.cfg-chip input { position: absolute; opacity: 0; pointer-events: none; }
.cfg-chip:has(input:checked) {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(41,183,244,0.25);
}

/* ===== Pills (single radio) ================================================ */
.cfg__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cfg-pill {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  color: var(--c-deep);
  cursor: pointer;
  font-family: var(--ff-heading); font-weight: 500;
  transition: all var(--t-fast) var(--ease);
  line-height: 1.3;
}
.cfg-pill:hover { border-color: var(--c-primary-soft); background: var(--c-bg-blue); }
.cfg-pill input { position: absolute; opacity: 0; pointer-events: none; }
.cfg-pill:has(input:checked) {
  background: var(--c-deep);
  border-color: var(--c-deep);
  color: #fff;
}

/* ===== Form fields ========================================================= */
.cfg__field { margin-bottom: 22px; }
.cfg__field:last-child { margin-bottom: 0; }
.cfg__label {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 500; font-size: var(--fs-sm);
  color: var(--c-deep);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cfg__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.cfg__row:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .cfg__row { grid-template-columns: 1fr; gap: 0; } .cfg__row .cfg__field { margin-bottom: 16px; } }

.cfg__input, .cfg__select, .cfg__textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit; font-size: var(--fs-base); color: var(--c-deep);
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--t-fast) var(--ease);
}
.cfg__input:focus, .cfg__select:focus, .cfg__textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(41,183,244,0.18);
}
.cfg__textarea { resize: vertical; min-height: 140px; line-height: 1.55; font-family: var(--ff-body); }
.cfg__select { cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E2A40' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 14px;
  padding-right: 38px;
}
.cfg__field--check {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 6px;
}
.cfg__field--check input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.cfg__field--check label {
  font-size: var(--fs-sm); color: var(--c-text);
  cursor: pointer; line-height: 1.5;
}
.cfg__hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.cfg__alert {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(220, 38, 38, 0.08);
  color: var(--c-danger);
  font-size: var(--fs-sm);
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.cfg__alert.is-info {
  background: var(--c-bg-blue);
  color: var(--c-deep-3);
  border-color: rgba(41,183,244,0.3);
}

/* ===== Nav buttons ========================================================= */
.cfg__nav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.cfg__nav .btn { flex: 0 0 auto; }
.cfg__back svg { transform: rotate(0); }
.cfg__next, .cfg__submit { margin-left: auto; }
.cfg__nav[data-cfg-nav][hidden] { display: none; }

/* ===== Aside (Live summary) ================================================ */
.cfg__aside {
  background: var(--c-deep);
  color: #fff;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  display: flex; flex-direction: column; gap: 24px;
}
.cfg__aside::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-mesh);
  opacity: 0.4;
  pointer-events: none;
}
.cfg__aside > * { position: relative; }

.cfg__aside-card { color: #fff; }
.cfg__aside-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 16px;
}

.cfg__summary {
  display: flex; flex-direction: column; gap: 12px;
  list-style: none; padding: 0; margin: 0;
}
.cfg__summary li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-primary);
}
.cfg__summary li .label {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  color: var(--c-primary-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cfg__summary li .value {
  font-size: var(--fs-sm);
  color: #fff;
  line-height: 1.4;
}
.cfg__summary-empty {
  color: rgba(255,255,255,0.55) !important;
  font-size: var(--fs-sm) !important;
  font-style: italic;
  background: transparent !important;
  border-left: 3px solid rgba(255,255,255,0.18) !important;
}

.cfg__aside-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
}
.cfg__trust-item { display: flex; flex-direction: column; gap: 2px; }
.cfg__trust-item strong {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--c-primary-soft);
  font-weight: 700;
  line-height: 1;
}
.cfg__trust-item span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

.cfg__aside-note {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 16px;
}

/* ===== Success screen ====================================================== */
.cfg__step--success { text-align: center; padding: clamp(20px, 4vw, 40px) 0; }
.cfg__success { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 560px; margin: 0 auto; }
.cfg__success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-active));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-glow);
  margin-bottom: 8px;
  animation: cfg-pop 480ms var(--ease);
}
@keyframes cfg-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cfg__success-title { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.cfg__success-text { color: var(--c-text); }
.cfg__success-summary {
  margin-top: 12px;
  text-align: left;
  width: 100%;
  background: var(--c-bg-soft);
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--c-text);
}
.cfg__success-summary strong { color: var(--c-deep); font-weight: 600; }
.cfg__success-cta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 14px; }

/* ===== Field error ========================================================= */
.cfg__input.is-invalid, .cfg__select.is-invalid, .cfg__textarea.is-invalid {
  border-color: var(--c-danger);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

/* ===== Mobile tweaks ======================================================= */
@media (max-width: 1080px) {
  .cfg__aside {
    order: 2;
    border-radius: 0;
  }
  .cfg__stage { order: 1; min-height: auto; }
  .cfg__aside-trust { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .cfg__aside-trust { grid-template-columns: 1fr 1fr; }
  .cfg__nav { gap: 8px; }
  .cfg__nav .btn { padding: 12px 18px; font-size: var(--fs-xs); }
}

/* ===== Inline CTA on home / pages ========================================== */
.cfg-cta-strip {
  background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-deep-2) 55%, var(--c-deep-3) 100%);
  color: #fff;
  padding: clamp(36px, 5vw, 60px);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.cfg-cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-mesh);
  opacity: 0.6;
  pointer-events: none;
}
.cfg-cta-strip > * { position: relative; }
.cfg-cta-strip__title {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 8px;
}
.cfg-cta-strip__title em {
  font-style: normal;
  background: linear-gradient(135deg, #29b7f4 0%, #60ccf7 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cfg-cta-strip__desc { color: rgba(255,255,255,0.82); max-width: 60ch; }
@media (max-width: 760px) {
  .cfg-cta-strip { grid-template-columns: 1fr; }
}
