/* ── Transcribe Pro — SaveFree Style ───────────────────── */
#transcribe-pro-app {
  max-width: 780px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

/* ── Reset theme overrides ────────────────────────────── */
#transcribe-pro-app button,
#transcribe-pro-app input {
  font-family: inherit;
  line-height: 1.5;
}

/* ── Карточка ─────────────────────────────────────────── */
.trpro-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 32px;
}

/* ── Header ───────────────────────────────────────────── */
.trpro-header {
  text-align: center;
  margin-bottom: 28px;
}

.trpro-header h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.trpro-header p {
  color: #666;
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
}

/* ── Features row ─────────────────────────────────────── */
.trpro-features {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.trpro-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #555;
}

.trpro-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0073e6;
}
.trpro-feature-icon .trpro-ic {
  width: 20px;
  height: 20px;
}

/* ── User bar ─────────────────────────────────────────── */
.trpro-user-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

.trpro-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trpro-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.trpro-user-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trpro-badge {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.trpro-badge-free { background: #e8f0fe; color: #1a73e8; }
.trpro-badge-premium { background: #fef7cd; color: #b45309; }

/* ── Tabs ──────────────────────────────────────────────── */
.trpro-tabs {
  display: flex;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

#transcribe-pro-app .trpro-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: none;
  background: #f0f0f0 !important;
  font-size: 14px;
  font-weight: 500;
  color: #333 !important;
  cursor: pointer;
  transition: all 0.15s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#transcribe-pro-app .trpro-tab:first-child { border-right: 2px solid #e5e7eb; }

#transcribe-pro-app .trpro-tab.active {
  background: #0073e6 !important;
  color: #fff !important;
}

@media (hover: hover) and (pointer: fine) {
  #transcribe-pro-app .trpro-tab:not(.active):hover {
    background: #e0e0e0 !important;
    color: #111 !important;
  }
}
#transcribe-pro-app .trpro-tab:not(.active):active {
  background: #e0e0e0 !important;
  color: #111 !important;
}

/* ── URL Input ────────────────────────────────────────── */
.trpro-url-section {
  margin-bottom: 16px;
}

.trpro-url-hint {
  margin: 8px 2px 0;
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

.trpro-input-wrap {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.trpro-input-wrap:focus-within {
  border-color: #0073e6;
}

.trpro-input {
  flex: 1;
  padding: 14px 16px;
  font-size: 15px;
  border: none;
  outline: none;
  background: transparent;
}

.trpro-input::placeholder { color: #bbb; }

#transcribe-pro-app .trpro-paste-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 16px;
  min-height: 100%;
  background: #e8f0fe !important;
  border: none !important;
  border-left: 2px solid #90caf9 !important;
  cursor: pointer;
  color: #0073e6 !important;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

#transcribe-pro-app .trpro-paste-btn .trpro-ic {
  width: 18px;
  height: 18px;
  color: #0073e6;
}

#transcribe-pro-app .trpro-paste-btn:hover {
  background: #d2e3fc !important;
  color: #005bb5 !important;
}

#transcribe-pro-app .trpro-paste-btn:hover .trpro-ic {
  color: #005bb5;
}

#transcribe-pro-app .trpro-paste-btn.trpro-btn-done {
  background: #e8f5e9 !important;
  border-left-color: #81c784 !important;
  color: #2e7d32 !important;
}

#transcribe-pro-app .trpro-paste-btn.trpro-btn-done .trpro-ic {
  color: #2e7d32;
}

.trpro-paste-label {
  white-space: nowrap;
}

.trpro-submit-row {
  margin-top: 12px;
}

#transcribe-pro-app .trpro-btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: #0073e6 !important;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#transcribe-pro-app .trpro-btn-submit:hover { background: #005bb5 !important; color: #fff !important; }
#transcribe-pro-app .trpro-btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Dropzone ─────────────────────────────────────────── */
.trpro-dropzone {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  border: 2px dashed #d0d0d0;
  border-radius: 12px;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
  background: #fafafa;
}

.trpro-dropzone.dragover {
  border-color: #0073e6;
  background: #f0f7ff;
}
@media (hover: hover) and (pointer: fine) {
  .trpro-dropzone:hover {
    border-color: #0073e6;
    background: #f0f7ff;
  }
}
.trpro-dropzone:active {
  border-color: #0073e6;
  background: #f0f7ff;
}

.trpro-drop-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: #0073e6;
}
.trpro-drop-icon .trpro-ic-lg {
  width: 40px;
  height: 40px;
}
.trpro-drop-title { font-size: 15px; font-weight: 500; color: #333; margin-bottom: 4px; }
.trpro-drop-sub { font-size: 13px; color: #999; }
.trpro-drop-formats { font-size: 12px; color: #bbb; margin-top: 8px; }

.trpro-file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eef2f7;
  border: 1px solid #d0d7e0;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.trpro-file-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.trpro-file-name-icon {
  display: inline-flex;
  color: #0073e6;
}

.trpro-file-actions {
  display: flex;
  gap: 8px;
}

/* ── Progress ─────────────────────────────────────────── */
.trpro-progress {
  margin: 24px 0;
  text-align: center;
}

.trpro-progress-bar {
  height: 5px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.trpro-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0073e6, #42a5f5);
  border-radius: 3px;
  transition: width 0.5s ease;
  animation: trpro-shimmer 2s infinite;
}

@keyframes trpro-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.trpro-progress-label {
  font-size: 14px;
  color: #666;
}

.trpro-progress-label strong {
  color: #0073e6;
}

/* ── Result ───────────────────────────────────────────── */
.trpro-result {
  margin-top: 24px;
}

.trpro-result-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.trpro-result-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #999;
}

.trpro-result-stat {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trpro-result-stat .trpro-ic {
  color: #0073e6;
}

.trpro-export-bar {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

#transcribe-pro-app .trpro-btn-export {
  padding: 6px 12px;
  border: 2px solid #ccc !important;
  border-radius: 6px;
  background: #f5f5f5 !important;
  font-size: 12px;
  font-weight: 600;
  color: #333 !important;
  cursor: pointer;
  transition: all 0.15s;
}

#transcribe-pro-app .trpro-btn-export:hover {
  border-color: #0073e6 !important;
  color: #0073e6 !important;
  background: #e8f0fe !important;
}

#transcribe-pro-app .trpro-btn-copy {
  background: #0073e6 !important;
  color: #fff !important;
  border-color: #0073e6 !important;
  position: relative;
}

#transcribe-pro-app .trpro-btn-copy:hover { background: #005bb5 !important; border-color: #005bb5 !important; }


.trpro-transcript {
  background: #f9fafb;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  max-height: 450px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.85;
  white-space: pre-wrap;
  color: #222;
}

.trpro-transcript::-webkit-scrollbar { width: 6px; }
.trpro-transcript::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* ── Error ─────────────────────────────────────────────── */
.trpro-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin: 16px 0;
}

/* ── Top bar (auth / user) ────────────────────────────── */
.trpro-auth-top {
  margin: 0 0 24px;
}

.trpro-user-bar-top {
  margin-bottom: 24px;
}

/* ── Auth (register / login) ──────────────────────────── */
.trpro-auth {
  margin-top: 0;
}

.trpro-auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
}

.trpro-auth-divider::before,
.trpro-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.trpro-auth-card {
  text-align: center;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.trpro-auth-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: #f3f4f6;
  border-radius: 12px;
  margin-bottom: 20px;
}

#transcribe-pro-app .trpro-auth-tab {
  flex: 1;
  padding: 11px 16px;
  border: none !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: #6b7280 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none !important;
}

#transcribe-pro-app .trpro-auth-tab:hover {
  color: #374151 !important;
  background: rgba(255, 255, 255, 0.5) !important;
}

#transcribe-pro-app .trpro-auth-tab.active {
  background: #fff !important;
  color: #0073e6 !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
}

.trpro-auth-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.trpro-auth-perk {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.trpro-auth-perk em {
  font-style: normal;
  font-weight: 700;
  color: #374151;
}

.trpro-auth-perk-hi {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.trpro-auth-perk-hi em {
  color: #1d4ed8;
}

.trpro-login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

#transcribe-pro-app .trpro-login-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d1d5db !important;
  border-radius: 10px;
  font-size: 15px;
  color: #111827 !important;
  background: #fff !important;
  transition: border-color 0.15s, box-shadow 0.15s;
}

#transcribe-pro-app .trpro-login-input::placeholder {
  color: #9ca3af !important;
}

#transcribe-pro-app .trpro-login-input:focus {
  border-color: #0073e6 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.12) !important;
}

#transcribe-pro-app .trpro-login-submit {
  width: 100%;
  padding: 14px 16px;
  margin-top: 4px;
  background: #0073e6 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(0, 115, 230, 0.25);
}

#transcribe-pro-app .trpro-login-submit:hover {
  background: #005bb5 !important;
  box-shadow: 0 6px 18px rgba(0, 115, 230, 0.32);
  transform: translateY(-1px);
}

.trpro-login-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trpro-login-or::before,
.trpro-login-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.trpro-login-error {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 14px;
  text-align: center;
}

#transcribe-pro-app .trpro-btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #fff !important;
  border: 1px solid #d1d5db !important;
  color: #1f2937 !important;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

#transcribe-pro-app .trpro-btn-google:hover {
  border-color: #9ca3af !important;
  color: #111827 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #fafafa !important;
}

.trpro-btn-google svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Premium CTA ──────────────────────────────────────── */
.trpro-premium {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fcd34d;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.trpro-premium h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #92400e;
}

.trpro-premium p {
  font-size: 13px;
  color: #a16207;
  margin: 0 0 12px;
}

#transcribe-pro-app .trpro-btn-premium {
  padding: 10px 24px;
  background: linear-gradient(135deg, #f59e0b, #d97706) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

#transcribe-pro-app .trpro-btn-premium:hover { background: linear-gradient(135deg, #d97706, #b45309) !important; }

.trpro-limit-banner {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fcd34d;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  margin-top: 16px;
}
.trpro-limit-banner h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #92400e;
}
.trpro-limit-banner p {
  margin: 0;
  font-size: 13px;
  color: #a16207;
}
.trpro-dropzone-locked {
  border-color: #fcd34d !important;
  background: #fffbeb !important;
  cursor: default !important;
  text-align: center;
  padding: 32px 20px !important;
}
.trpro-dropzone-locked .trpro-btn-premium {
  margin-top: 14px;
}
.trpro-section-blocked .trpro-input-wrap {
  opacity: 0.55;
}
.trpro-limit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.trpro-premium-gate-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
}
.trpro-premium-gate-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.trpro-premium-gate-inner {
  width: 100%;
  background: linear-gradient(145deg, #0073e6 0%, #005bb5 55%, #083a8a 100%) !important;
  color: #fff !important;
  border-radius: 20px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 115, 230, 0.35);
}
.trpro-premium-gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff !important;
}
.trpro-premium-gate-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff !important;
}
.trpro-premium-gate-sub {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92) !important;
}
.trpro-premium-gate-features {
  list-style: none !important;
  margin: 0 0 28px;
  padding: 0 !important;
  text-align: left;
  display: inline-block;
}
.trpro-premium-gate-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
  color: #fff !important;
}
.trpro-pg-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  color: #fff !important;
}
.trpro-premium-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.trpro-premium-gate-cta {
  width: 100%;
  max-width: 280px;
  padding: 14px 28px !important;
  border: none !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #0073e6 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.trpro-premium-gate-dismiss {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
/* ── Guest limit modal ────────────────────── */
.trpro-limit-guest-modal {
  max-width: 460px;
}
.trpro-limit-guest-top {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 32px 28px 24px;
  text-align: center;
}
.trpro-limit-guest-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #0073e6;
  margin-bottom: 14px;
}
.trpro-limit-guest-icon svg { width: 24px; height: 24px; }
.trpro-limit-guest-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e !important;
  line-height: 1.25;
}
.trpro-limit-guest-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #666 !important;
}
.trpro-limit-guest-offer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background: #f0f7ff;
  border: 1px solid #d0e3ff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.trpro-limit-guest-offer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0073e6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trpro-limit-guest-offer-icon svg { width: 18px; height: 18px; }
.trpro-limit-guest-offer-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e !important;
  margin-bottom: 2px;
}
.trpro-limit-guest-offer-desc {
  font-size: 13px;
  color: #555 !important;
  line-height: 1.4;
}
.trpro-limit-guest-offer-desc strong {
  color: #0073e6 !important;
  font-weight: 700;
}
.trpro-limit-guest-register {
  width: 100%;
  padding: 13px 20px !important;
  border: none !important;
  border-radius: 10px !important;
  background: #0073e6 !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 115, 230, 0.3);
}
.trpro-limit-guest-register svg { width: 18px; height: 18px; }
.trpro-limit-guest-login {
  width: 100%;
  padding: 10px !important;
  margin-top: 8px;
  border: none !important;
  background: transparent !important;
  color: #0073e6 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.trpro-limit-guest-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  background: #f5f5f5;
}
.trpro-limit-guest-divider::before,
.trpro-limit-guest-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}
.trpro-limit-guest-divider span {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 10px 0;
}
.trpro-limit-guest-premium {
  border-radius: 0 0 20px 20px !important;
  padding: 22px 28px 26px !important;
}
.trpro-limit-guest-premium .trpro-premium-gate-badge { margin-bottom: 10px; }
.trpro-limit-guest-premium .trpro-premium-gate-cta {
  max-width: 240px;
  padding: 12px 24px !important;
  font-size: 14px !important;
}
@media (max-width: 480px) {
  .trpro-premium-gate-inner {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }
  .trpro-premium-gate-title { font-size: 20px; }
  .trpro-premium-gate-features { font-size: 13px; }
  .trpro-limit-guest-top { padding: 24px 20px 20px; }
  .trpro-limit-guest-title { font-size: 19px; }
  .trpro-limit-guest-divider { padding: 0 20px; }
  .trpro-limit-guest-premium { padding: 18px 20px 22px !important; }
}

/* ── Small buttons ────────────────────────────────────── */
#transcribe-pro-app .trpro-btn-sm {
  padding: 6px 14px;
  border: 2px solid #bbb !important;
  border-radius: 6px;
  background: #f0f0f0 !important;
  font-size: 12px;
  font-weight: 500;
  color: #333 !important;
  cursor: pointer;
  transition: all 0.15s;
}

#transcribe-pro-app .trpro-btn-sm:hover { border-color: #0073e6 !important; color: #0073e6 !important; background: #e8f0fe !important; }

#transcribe-pro-app .trpro-btn-sm-primary {
  background: #0073e6 !important;
  color: #fff !important;
  border-color: #0073e6 !important;
}

#transcribe-pro-app .trpro-btn-sm-primary:hover {
  background: #005bb5 !important;
  border-color: #005bb5 !important;
  color: #fff !important;
}

.trpro-link {
  color: #0073e6;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
}

.trpro-link:hover { text-decoration: underline; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 640px) {
  #transcribe-pro-app {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .trpro-card { padding: 20px 16px; }
  .trpro-header h2 { font-size: 28px; }
  .trpro-header p { font-size: 16px; }
  .trpro-features { gap: 16px; }
  .trpro-feature { font-size: 14px; }
  .trpro-result-toolbar { flex-direction: column; align-items: flex-start; }
  .trpro-user-bar { flex-direction: column; gap: 6px; text-align: center; }
  .trpro-file-info { flex-direction: column; gap: 8px; text-align: center; }
  .trpro-tabs { flex-direction: column; }
  .trpro-tab:first-child { border-right: none; border-bottom: 2px solid #e5e7eb; }
  .trpro-auth { margin-top: 28px; }
  .trpro-auth-card { padding: 20px 16px; }
  .trpro-auth-perks { gap: 6px; }
  .trpro-auth-perk { font-size: 11px; padding: 5px 10px; }
}
