.activation-email-template-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 48px;
  border-radius: 18px;
  margin-top: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.activation-email-template-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(37, 99, 235, 0.24);
  filter: brightness(1.02);
}

.activation-step-help {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(216, 225, 236, 0.95);
  background: rgba(248, 250, 252, 0.92);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.activation-step-help strong {
  display: block;
  color: var(--primary);
  font-weight: 950;
}

.activation-step-help span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.activation-step-help-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.activation-step-help-actions a,
.activation-step-help-actions button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.activation-step-help-actions a[href^="tel:"] {
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #ffffff;
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.18);
}

.activation-step-help-actions a[href^="tel:"]:hover {
  background: linear-gradient(135deg, #16a34a, #166534);
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.22);
}

.activation-step-help-actions button[data-chat-open] {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(135deg, #000000 0%, #171717 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.activation-step-help-actions button[data-chat-open] i {
  color: #ffffff;
}

.activation-step-help-actions button[data-chat-open]:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(135deg, #000000 0%, #171717 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
}

.activation-next-card {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border-radius: 22px;
  padding: 1rem;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff, #f0fdf4);
  border: 1px solid rgba(187, 247, 208, 0.95);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.08);
}

.activation-next-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #dcfce7;
  color: #15803d;
}

.activation-next-card h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 950;
}

.activation-next-card ol {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.activation-next-card p {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

@media (max-width: 767px) {
  section[data-process-wizard] {
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: contain;
  }

  [data-process-step] {
    touch-action: pan-y;
  }

  .activation-email-template-button {
    min-height: 50px;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
  }

  .activation-step-help {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .activation-step-help-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .activation-step-help-actions a,
  .activation-step-help-actions button {
    min-height: 48px;
    width: 100%;
  }

  .activation-step-help-actions a[href^="tel:"] {
    background: linear-gradient(135deg, #22c55e, #15803d);
  }

  .activation-next-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.95rem;
  }

  .activation-next-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (min-width: 768px) {
  [data-process-step] .activation-step-help,
  [data-process-step] .activation-next-card,
  [data-process-step] .activation-email-template-button {
    max-width: 780px;
  }

  .activation-step-help,
  .activation-next-card {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .activation-step-help {
    padding: 0.85rem 1rem;
    border-radius: 18px;
  }

  .activation-step-help-actions {
    width: auto;
    flex-shrink: 0;
  }

  .activation-step-help-actions a,
  .activation-step-help-actions button {
    width: auto;
    min-width: 130px;
    max-width: 180px;
    white-space: nowrap;
  }

  .activation-email-template-button {
    width: auto;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .activation-next-card {
    grid-template-columns: auto 1fr;
    padding: 1rem 1.1rem;
  }

  .activation-next-card ol {
    max-width: 620px;
  }
}

@media (min-width: 1024px) {
  .activation-step-help,
  .activation-next-card {
    max-width: 820px;
  }

  .activation-step-help {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .activation-step-help-actions {
    display: flex;
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .activation-step-help,
  .activation-next-card {
    width: min(100%, 740px);
    max-width: 740px;
  }

  .activation-step-help {
    padding: 0.8rem 0.95rem;
  }

  .activation-step-help-actions a,
  .activation-step-help-actions button {
    min-width: 120px;
    max-width: 160px;
  }

  .activation-email-template-button {
    max-width: 250px;
  }

  .activation-next-card {
    padding: 0.95rem 1rem;
  }

  .activation-step-help,
  .activation-next-card {
    justify-self: center;
  }
}
/* Vodafone CU - Φορητότητα / Νέος αριθμός και σε κινητά */
.process-wizard-sticky[data-process-container^="v-"] span.process-provider-type,
.process-wizard-sticky[data-process-container^="v-"] .process-provider-type {
    background: #e60000 !important;
    color: #ffffff !important;
    border: 1px solid #e60000 !important;
    border-radius: 999px !important;
    padding: 7px 13px !important;
    font-weight: 900 !important;
}

/* Vodafone CU badge και σε κινητά */
.process-wizard-sticky[data-process-container^="v-"] span.process-provider-badge.is-voda,
.process-wizard-sticky[data-process-container^="v-"] .process-provider-badge.is-voda {
    background: #e60000 !important;
    color: #ffffff !important;
    border: 1px solid #e60000 !important;
    border-radius: 999px !important;
    padding: 7px 13px !important;
    font-weight: 900 !important;
}

/* Extra δυνατό override για mobile, επειδή το mobile-wizard.css πατάει όλα τα span */
@media (max-width: 767px) {
    .process-wizard-sticky[data-process-container^="v-"] span.process-provider-type,
    .process-wizard-sticky[data-process-container^="v-"] span.process-provider-badge.is-voda {
        color: #ffffff !important;
        background: #e60000 !important;
        border-color: #e60000 !important;
    }
}

/* NOVA Q - provider badge */
.process-provider-badge.is-nova {
    background: #0057b8 !important;
    color: #ff7a00 !important;
    border: 1px solid #0057b8 !important;
    border-radius: 999px !important;
    padding: 7px 13px !important;
    font-weight: 900 !important;
}

/* NOVA Q - Φορητότητα / Νέος αριθμός */
.process-provider-badge.is-nova + .process-provider-type {
    background: #ffedd5 !important;
    color: #0057b8 !important;
    border: 1px solid #fdba74 !important;
    border-radius: 999px !important;
    padding: 7px 13px !important;
    font-weight: 900 !important;
}