.eic-card-step-widget {
  max-width: 360px;
  margin: 0 auto;
  font-family: inherit;
}

.eic-card-step-inner {
  background: var(--card-step-bg, #052a5b);
  color: #ffffff;
  border-radius: 28px;
  padding: 32px 32px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eic-card-step-header {
  text-align: center;
}

.eic-card-step-title {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.eic-card-step-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.eic-card-step-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eic-card-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, #0b356d 0%, #072a57 100%);
  border-radius: 999px;
  padding: 10px 18px;
}

.eic-card-step-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eic-card-step-badge span {
  color: #052a5b;
  font-weight: 700;
  font-size: 15px;
}

.eic-card-step-text {
  font-size: 14px;
  line-height: 1.5;
}

.eic-card-step-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.eic-card-step-price {
  text-align: center;
}

.eic-card-step-price-main {
  font-size: 28px;
  font-weight: 800;
}

.eic-card-step-price-sub {
  font-size: 14px;
  color: #7fb6ff;
}

.eic-card-step-cta {
  width: 100%;
}

.eic-card-step-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--card-step-button-bg, #ffffff);
  color: var(--card-step-button-text, #052a5b);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.eic-card-step-button:hover,
.eic-card-step-button:focus-visible {
  background: #f0f4ff;
  color: #041d3d;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .eic-card-step-inner {
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .eic-card-step-title {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  .eic-card-step-widget {
    max-width: 1000px;
  }

  .eic-card-step-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 40px;
  }

  .eic-card-step-header {
    text-align: left;
    margin-bottom: 16px;
  }

  .eic-card-step-inner > .eic-card-step-header,
  .eic-card-step-inner > .eic-card-step-list {
    flex: 1 1 auto;
  }

  .eic-card-step-list {
    max-width: 420px;
  }

  .eic-card-step-footer {
    border-top: none;
    padding-top: 0;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    flex: 0 0 auto;
  }

  .eic-card-step-price {
    text-align: right;
  }

  .eic-card-step-cta {
    width: auto;
  }

  .eic-card-step-button {
    width: auto;
    padding-inline: 32px;
  }
}


