/* Progress Indicator Wrapper */
.onboarding-progress-wrapper {
  padding: 20px 0 60px 0;
}
/* Progress Indicator */
.onboarding-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.progress-step.active .step-number {
  background: #5865F2;
  color: white;
}
.progress-step.active .step-label {
  color: #5865F2;
  font-weight: 600;
}
.progress-step.complete .step-number {
  background: #5865F2;
  color: white;
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.step-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}
.progress-line {
  width: 40px;
  height: 2px;
  background: #e0e0e0;
  margin: 0 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.progress-line.complete {
  background: #5865F2;
}
/* Main Content */
.onboarding-content {
  padding: 60px 20px 20px 20px;
}
.onboarding-content .site_width {
  max-width: 800px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 50px;
}
.onboarding-v2-colors .onboarding-content .site_width {
  max-width: 1200px;
  width: calc(100% - 80px);
}
@media (max-width: 920px) {
  .onboarding-content {
    padding: 20px;
  }
  .onboarding-content .site_width {
    width: 100%;
    padding: 30px 20px;
  }
  .onboarding-content .site_width .auto-find-badge {
    font-size: 9px;
  }
  .onboarding-content .site_width .podcast-selection-card .podcast-info {
    width: calc(100% - 186px);
  }
  .onboarding-content .site_width .onboarding-step-header h1 {
    font-size: 28px;
  }
  .onboarding-content .site_width .onboarding-step-header p {
    font-size: 14px;
    line-height: 1.3em;
  }
}
.onboarding-step-header {
  text-align: center;
  margin-bottom: 40px;
}
.onboarding-step-header h1 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #222;
}
.onboarding-step-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
/* Footer styles now inherited from public footer.php */
/* Form Styles */
.onboarding-form {
  display: flex;
  flex-direction: column;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: #222;
}
.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="email"],
.form-group input[type="password"] {
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input[type="text"]:focus,
.form-group input[type="url"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
  outline: none;
  border-color: #5865F2;
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}
.form-group input[type="text"]#podcast_search,
.form-group input[type="url"]#podcast_search,
.form-group input[type="email"]#podcast_search,
.form-group input[type="password"]#podcast_search {
  text-align: center;
}
@media (max-width: 920px) {
  .form-group label {
    font-size: 11px;
  }
}
.rss-url-toggle {
  text-align: right;
}
.rss-url-toggle a {
  color: #141414;
  opacity: 0.5;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}
.rss-url-toggle a:hover {
  opacity: 1;
}
.form-help {
  font-size: 13px;
  color: #666;
}
.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 16px 0;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}
.form-divider span {
  padding: 0 16px;
  color: #666;
  font-size: 13px;
  font-weight: 500;
}
.form-actions {
  margin-top: 16px;
}
.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.alert-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.alert-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}
/* Search Input Container */
.search-input-container {
  position: relative;
}
.search-loading {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-top-color: #5865F2;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Search Results */
.podcast-search-results {
  margin-top: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  background: #f8f9fa;
}
.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.search-results-header h4 {
  font-size: 16px;
  margin: 0;
}
.results-count {
  font-size: 13px;
  color: #666;
}
.podcast-selection-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.podcast-selection-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.2s;
  align-items: center;
}
.podcast-selection-card:hover {
  border-color: #5865F2;
  box-shadow: 0 2px 8px rgba(88, 101, 242, 0.1);
}
.podcast-cover-container {
  flex-shrink: 0;
  max-width: 80px;
  max-height: 80px;
  border-radius: 8px;
  overflow: hidden;
}
.podcast-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcast-cover-placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.podcast-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.podcast-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #222;
}
.podcast-meta {
  font-size: 13px;
  color: #666;
  margin: 0;
}
.podcast-excerpt {
  font-size: 13px;
  color: #666;
  margin: 4px 0 0;
  line-height: 1.4;
}
.podcast-stats {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.stat-item {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}
/* Claim button on each search result card */
.podcast-claim-action {
  display: flex;
  align-items: center;
  padding-left: 16px;
  flex-shrink: 0;
}
.claim-podcast-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}
.claim-podcast-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}
/* Platform selection indicator (for platforms step) */
.podcast-selection-indicator {
  display: flex;
  align-items: center;
  padding-left: 16px;
}
.selection-radio {
  width: 24px;
  height: 24px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s;
}
.podcast-selection-card.selected {
  border-color: #5865F2;
  background: #f0f2ff;
}
.podcast-selection-card.selected .selection-radio {
  border-color: #5865F2;
  background: #5865F2;
}
.podcast-selection-card.selected .selection-radio::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}
.no-results,
.search-error {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}
.no-results p,
.search-error p {
  margin: 0 0 8px;
  font-weight: 600;
}
.no-results small,
.search-error small {
  color: #999;
}
/* Responsive */
@media (max-width: 768px) {
  .onboarding-header-content {
    padding: 0 20px;
    flex-direction: column;
    gap: 20px;
  }
  .onboarding-progress {
    overflow-x: auto;
    width: 100%;
  }
  .progress-line {
    width: 20px;
    margin: 0 4px;
  }
  .step-label {
    font-size: 10px;
  }
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .onboarding-container {
    padding: 40px 24px;
  }
  .podcast-selection-card {
    flex-wrap: wrap;
  }
  .podcast-selection-card .podcast-info {
    width: calc(100% - 96px);
  }
  .podcast-selection-card .podcast-claim-action {
    width: 100%;
    padding-left: 0;
    padding-top: 12px;
  }
  .podcast-selection-card .podcast-claim-action .claim-podcast-btn {
    width: 100%;
  }
}
.onboarding-page {
  background: #f1f1f1;
}
.onboarding-page.podlink_template {
  /* Ensure mockup doesn't overflow */
  /* Responsive adjustments */
}
.onboarding-page.podlink_template .onboarding-step-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}
.onboarding-page.podlink_template .onboarding-step-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #141414;
}
.onboarding-page.podlink_template .onboarding-step-header p {
  font-size: 16px;
  color: #666;
}
.onboarding-page.podlink_template .site_width {
  max-width: 1190px;
}
.onboarding-page.podlink_template .site_width .module-section {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  box-shadow: none;
  padding: 0;
}
.onboarding-page.podlink_template .site_width .module-section h2 {
  visibility: hidden;
}
.onboarding-page.podlink_template .site_width .module-section .mode-toggle .mode-btn:first-child {
  display: none;
}
.onboarding-page.podlink_template .onboarding-template-editor {
  display: flex;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  align-items: center;
  transition: all 0.3s ease;
}
.onboarding-page.podlink_template .onboarding-template-editor.advanced-editor {
  align-items: flex-start;
}
.onboarding-page.podlink_template .editor-main-column {
  flex: 1;
  max-width: 700px;
}
.onboarding-page.podlink_template .editor-preview-column {
  width: 300px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  position: sticky;
  top: 30px;
}
.onboarding-page.podlink_template .preview-sticky {
  position: sticky;
  top: 20px;
}
.onboarding-page.podlink_template .phone-mockup-container {
  position: relative;
  z-index: 10;
}
@media (max-width: 1200px) {
  .onboarding-page.podlink_template .onboarding-template-editor {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .onboarding-page.podlink_template .editor-preview-column {
    width: 280px;
    order: -1;
    position: relative;
    top: 0;
  }
  .onboarding-page.podlink_template .editor-main-column {
    order: 1;
    max-width: 100%;
    width: 100%;
  }
  .onboarding-page.podlink_template .preview-sticky {
    position: static;
  }
}
@media (max-width: 920px) {
  .onboarding-page.podlink_template .onboarding-template-editor {
    gap: 30px;
    padding: 0 15px;
  }
  .onboarding-page.podlink_template .editor-preview-column {
    width: 260px;
  }
}
@media (max-width: 768px) {
  .onboarding-page.podlink_template .onboarding-step-header {
    margin-bottom: 24px;
  }
  .onboarding-page.podlink_template .onboarding-step-header h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  .onboarding-page.podlink_template .onboarding-step-header p {
    font-size: 14px;
  }
  .onboarding-page.podlink_template .onboarding-template-editor {
    gap: 24px;
    padding: 0 10px;
  }
  .onboarding-page.podlink_template .editor-preview-column {
    width: 240px;
  }
  .onboarding-page.podlink_template .site_width .module-section {
    min-height: auto;
    padding: 20px 0 0 0;
    margin-bottom: 0;
  }
  .onboarding-page.podlink_template .site_width .module-section .section-header {
    display: none;
  }
  .onboarding-page.podlink_template .site_width .module-section .mode-toggle {
    width: 100%;
    justify-content: center;
  }
  .onboarding-page.podlink_template .site_width .module-section .mode-toggle .mode-btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 13px;
  }
  .onboarding-page.podlink_template .form-section {
    flex-wrap: wrap;
  }
  .onboarding-page.podlink_template .form-section .form-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .onboarding-page.podlink_template .form-section.row {
    gap: 20px;
    justify-content: space-between;
  }
  .onboarding-page.podlink_template .form-section .group-row .row-content {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .onboarding-page.podlink_template .form-section .group-row .row-content.complete-text-row {
    grid-template-columns: 1fr !important;
  }
  .onboarding-page.podlink_template .font-columns {
    grid-template-columns: 1fr;
  }
  .onboarding-page.podlink_template .button-style-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .onboarding-page.podlink_template .button-style-options .button-style-option {
    padding: 12px 8px;
  }
  .onboarding-page.podlink_template .image-radio-group .image-radio-options {
    flex-wrap: wrap;
  }
  .onboarding-page.podlink_template .image-radio-group .image-radio-options .image-radio-option {
    width: 55px;
    height: 55px;
  }
  .onboarding-page.podlink_template .color-picker-row {
    flex-direction: column;
    gap: 16px;
  }
  .onboarding-page.podlink_template .color-picker-row .form-group {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .onboarding-page.podlink_template .onboarding-step-header h1 {
    font-size: 20px;
  }
  .onboarding-page.podlink_template .onboarding-step-header p {
    font-size: 13px;
  }
  .onboarding-page.podlink_template .onboarding-template-editor {
    gap: 20px;
    padding: 0 5px;
  }
  .onboarding-page.podlink_template .editor-preview-column {
    width: 220px;
    transform: scale(0.95);
    transform-origin: center top;
  }
  .onboarding-page.podlink_template .button-style-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .onboarding-page.podlink_template .form-actions {
    flex-direction: column;
  }
  .onboarding-page.podlink_template .form-actions .cta_button {
    width: 100%;
  }
  .onboarding-page.podlink_template .image-radio-group .image-radio-options {
    gap: 6px;
  }
  .onboarding-page.podlink_template .image-radio-group .image-radio-options .image-radio-option {
    width: 48px;
    height: 48px;
  }
}
.onboarding-page.register-page .table-grid {
  border: none;
  padding: 0;
}
.onboarding-page.register-page .table-grid .table-header {
  display: none;
}
.onboarding-page.register-page .table-grid .form-content {
  padding: 0;
}
.onboarding-page.register-page .table-grid .email_login .form-group {
  margin-bottom: 14px;
}
.onboarding-page.register-page .table-grid .email_login .cta_button {
  width: 100%;
}
.onboarding-page.pricing-page .site_width {
  max-width: 1190px;
}
.onboarding-page.pricing-page .site_width .block.pricing {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}
.onboarding-page.pricing-page .site_width .block.pricing .site_width {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  width: 100%;
}
.onboarding-page.pricing-page .site_width .block.pricing .site_width .pricing_period_toggle {
  margin: 0;
}
.onboarding-page.pricing-page .site_width .block.pricing .pricing_plans {
  justify-content: space-between;
}
.onboarding-page.pricing-page .site_width .block.pricing .pricing_plans .pricing_plan {
  border: none;
  border-radius: 0;
}
.onboarding-page.pricing-page .site_width .block.pricing .pricing_plans .pricing_plan h3 {
  text-align: center;
}
.onboarding-page.pricing-page .site_width .block.pricing .pricing_plans .phone-mockup-device {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(0, 0, 0, 0.5) inset !important;
}
.onboarding-page.pricing-page .onboarding-pricing-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 20px;
}
.onboarding-page.pricing-page .onboarding-pricing-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #141414;
}
.onboarding-page.pricing-page .onboarding-pricing-header p {
  font-size: 16px;
  color: #666;
}
.onboarding-page.pricing-page .podcast-context {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 0 auto 48px;
  max-width: 600px;
}
.onboarding-page.pricing-page .podcast-context img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}
.onboarding-page.pricing-page .podcast-context-text {
  flex: 1;
}
.onboarding-page.pricing-page .podcast-context-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #141414;
}
.onboarding-page.pricing-page .podcast-context-text span {
  font-size: 13px;
  color: #666;
}
.onboarding-page.pricing-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.onboarding-page.pricing-page .pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.onboarding-page.pricing-page .pricing-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.onboarding-page.pricing-page .pricing-card.popular {
  border-color: #3b82f6;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}
.onboarding-page.pricing-page .pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #141414;
}
.onboarding-page.pricing-page .pricing-card .price {
  font-size: 48px;
  font-weight: 800;
  color: #141414;
  margin-bottom: 8px;
}
.onboarding-page.pricing-page .pricing-card .period {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}
.onboarding-page.pricing-page .pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}
.onboarding-page.pricing-page .pricing-card .features li {
  padding: 12px 0;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.onboarding-page.pricing-page .pricing-card .features li:last-child {
  border-bottom: none;
}
.onboarding-page.pricing-page .pricing-card .features li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  font-size: 16px;
}
.onboarding-page.pricing-page .pricing-card form {
  margin: 0;
}
.onboarding-page.pricing-page .pricing-card button {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.onboarding-page.pricing-page .pricing-card button.btn-primary {
  background: #3b82f6;
  color: white;
}
.onboarding-page.pricing-page .pricing-card button.btn-primary:hover {
  background: #2563eb;
}
.onboarding-page.pricing-page .pricing-card button.btn-secondary {
  background: #f3f4f6;
  color: #374151;
}
.onboarding-page.pricing-page .pricing-card button.btn-secondary:hover {
  background: #e5e7eb;
}
.onboarding-page.pricing-page .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 4px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.onboarding-page.pricing-page .pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}
.onboarding-page.pricing-page .plan-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -10px;
  padding: 16px 0;
  min-height: 249px;
}
.onboarding-page.pricing-page .plan-mockup.studio-mockups {
  position: relative;
  padding: 10px 0 20px;
}
.onboarding-page.pricing-page .plan-mockup .studio-desktop-mockup {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.onboarding-page.pricing-page .plan-mockup .studio-desktop-mockup .platform-modal {
  display: none!important;
}
.onboarding-page.pricing-page .plan-mockup .studio-phone-mockup {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .onboarding-page.pricing-page .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .onboarding-page.pricing-page .plan-mockup {
    padding: 12px 0;
    margin-bottom: 16px;
  }
  .onboarding-page.pricing-page .plan-mockup.studio-mockups {
    min-height: 180px;
  }
  .onboarding-page.pricing-page .plan-mockup.studio-mockups .studio-desktop-mockup {
    transform: scale(0.8);
    transform-origin: top left;
  }
  .onboarding-page.pricing-page .plan-mockup.studio-mockups .studio-phone-mockup {
    transform: scale(0.85);
    transform-origin: bottom right;
  }
}
/* Onboarding V2 - Colors & Fonts step */
.onboarding-v2-colors .colors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-end;
}
.onboarding-v2-colors .colors-row .form-group {
  flex: 1;
  min-width: 140px;
}
.onboarding-v2-colors .fonts-section {
  margin-bottom: 32px;
}
.onboarding-v2-colors .fonts-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px 0;
}
.onboarding-v2-colors .fonts-section-desc {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px 0;
}
.onboarding-v2-colors .fonts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.onboarding-v2-colors .font-picker-wrap label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: #222;
  margin-bottom: 8px;
}
.onboarding-v2-colors .font-scroll-list {
  height: 160px;
  overflow-y: auto;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  padding: 6px 0;
  background: #fff;
}
.onboarding-v2-colors .font-option {
  padding: 10px 14px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}
.onboarding-v2-colors .font-option:hover {
  background: #f0f0f0;
}
.onboarding-v2-colors .font-option.selected {
  background: #e8ecff;
  color: #5865F2;
  font-weight: 600;
}
.onboarding-v2-colors .abstract-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
}
.onboarding-v2-colors .preview-rect {
  border-radius: 0;
  padding: 28px 24px;
  min-height: 140px;
}
.onboarding-v2-colors .preview-rect .preview-title {
  margin: 0 0 12px 0;
  font-size: 1.35rem;
  line-height: 1.3;
}
.onboarding-v2-colors .preview-rect .preview-para {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.onboarding-v2-colors .preview-rect .preview-cta {
  margin-top: 16px;
  border: none;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 768px) {
  .onboarding-v2-colors .colors-row {
    flex-direction: column;
  }
  .onboarding-v2-colors .colors-row .form-group {
    min-width: 100%;
  }
  .onboarding-v2-colors .fonts-row {
    grid-template-columns: 1fr;
  }
  .onboarding-v2-colors .abstract-preview {
    grid-template-columns: 1fr;
  }
}
/* Trust Badge - Shield with Checkmark (SVG) */
.trust_badge {
  display: inline-block;
  width: 26px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='shieldGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%2322c55e'/%3E%3Cstop offset='100%25' stop-color='%2315803d'/%3E%3C/linearGradient%3E%3Cfilter id='shadow' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeDropShadow dx='0' dy='1' stdDeviation='1' flood-color='%23000' flood-opacity='0.15'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M12 1L2 5v7c0 7.5 4.3 12.7 10 14 5.7-1.3 10-6.5 10-14V5L12 1z' fill='url(%23shieldGrad)' filter='url(%23shadow)'/%3E%3Cpath d='M12 2.5L3.5 5.8v6.2c0 6.5 3.7 11 8.5 12.3 4.8-1.3 8.5-5.8 8.5-12.3V5.8L12 2.5z' fill='url(%23shieldGrad)'/%3E%3Cpath d='M10.5 16.5l-3.5-3.5 1.5-1.5 2 2 5-5 1.5 1.5-6.5 6.5z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
