.pro-upgrade-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--brand-primary-border);
  background: linear-gradient(180deg, #f4fcfb 0%, #eef7f6 100%);
}
.pro-upgrade-banner__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary-dark);
}
.pro-upgrade-banner__text {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #5c5f62;
}
.pro-upgrade-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--brand-gradient);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
}
.pro-upgrade-banner__btn:hover { background: linear-gradient(135deg, #009e98 0%, #004a9e 100%); }

.page-nav-btn--pro {
  border-color: var(--brand-primary-border) !important;
  background: var(--brand-primary-light) !important;
  color: var(--brand-primary-dark) !important;
}

.pro-lock-card {
  position: relative;
  border-radius: 12px;
  border: 1px dashed var(--brand-primary-border);
  background: #f6fbfa;
  padding: 14px 16px;
}
.pro-lock-card__title {
  font-size: 13px;
  font-weight: 600;
  color: #202223;
}
.pro-lock-card__hint {
  margin-top: 4px;
  font-size: 12px;
  color: #6d7175;
  line-height: 1.5;
}
.pro-lock-card__link {
  margin-top: 8px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-teal);
  text-decoration: underline;
}

.pro-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.pro-modal.hidden { display: none; }
.pro-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 34, 35, 0.45);
}
.pro-modal__card {
  position: relative;
  width: min(420px, 100%);
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.35);
}
.pro-modal__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #202223;
}
.pro-modal__text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: #6d7175;
}
.pro-modal__list {
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.7;
  color: #202223;
}
.pro-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pro-modal__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--brand-gradient);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
}
.pro-modal__ghost {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #e1e3e5;
  background: #fff;
  font-size: 13px;
  color: #6d7175;
}

.pro-page-card {
  border: 1px solid #e1e3e5;
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(31, 33, 36, 0.06);
}
.pro-feature-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
@media (min-width: 640px) {
  .pro-feature-grid { grid-template-columns: 1fr 1fr; }
}
.pro-feature-item {
  border-radius: 12px;
  border: 1px solid #eef0f2;
  background: #fafbfb;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
}
.pro-feature-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: #202223;
}
