/**
 * Movie Editor Styles
 */

/* Page Layout */
.movie-editor-page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
}

/* Credit Usage Info - Enhanced */
.credit-usage-info {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.credit-info-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.credit-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.credit-info-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.credit-info-content {
  flex: 1;
}

.credit-info-content h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: white;
}

.credit-usage-list {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.credit-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
  box-shadow: none;
}

.credit-item.credit-paid {
  border-left-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.credit-item.credit-free {
  border-left-color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

.credit-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
}

.credit-feature {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: white;
}

.credit-cost {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
  text-align: right;
}

.credit-cost.cost-premium {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  font-weight: 800;
}

.credit-cost.cost-free {
  background: rgba(74, 222, 128, 0.3);
  color: white;
  border: 2px solid #4ade80;
}

.credit-guest-note,
.credit-usage-note {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border-left: 5px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  backdrop-filter: blur(5px);
  color: white;
}

.credit-guest-note strong,
.credit-usage-note strong {
  color: #ffd700;
  font-weight: 700;
}

.credit-guest-note a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s;
}

.credit-guest-note a:hover {
  color: #ffed4e;
  text-shadow: 0 0 8px rgba(255, 237, 78, 0.6);
}

/* Header */
.movie-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.movie-editor-header-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.movie-editor-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.movie-editor-header p {
  margin: 6px 0 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.movie-editor-credits {
  display: flex;
  align-items: center;
  gap: 12px;
}

.credits-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 16px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.credits-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.credits-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-top: 2px;
}

/* Upload Section */
.movie-editor-upload {
  margin-bottom: 30px;
}

.upload-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.upload-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.upload-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.upload-card-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #1e293b;
}

.upload-card-body {
  padding: 24px;
}

.movie-captcha-wrap {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.captcha-hint {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 16px;
}

/* Workspace Layout */
.movie-editor-workspace {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  min-height: 600px;
}

/* Sidebar */
.movie-sidebar {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 200px);
  position: sticky;
  top: 20px;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.sidebar-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #1e293b;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: #e2e8f0;
  color: #334155;
}

.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #667eea;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-search {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.sidebar-categories {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  margin-bottom: 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.category-item:hover {
  background: #f8fafc;
}

.category-item.active {
  background: linear-gradient(135deg, #667eea15, #764ba215);
  border-color: #667eea;
}

.category-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-count {
  background: #f1f5f9;
  color: #64748b;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.category-item.active .category-count {
  background: #667eea;
  color: white;
}

.sidebar-actions {
  padding: 16px 20px;
  border-top: 1px solid #e2e8f0;
}

.category-loading {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Main Content */
.movie-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Toolbar */
.movie-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.toolbar-left {
  display: flex;
  gap: 12px;
  flex: 1;
}

.toolbar-left .form-control {
  max-width: 250px;
}

.toolbar-right {
  display: flex;
  gap: 8px;
}

/* Bulk Actions Bar */
.bulk-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(102, 126, 234, 0.3);
}

.bulk-info {
  font-weight: 600;
  font-size: 0.95rem;
}

.bulk-buttons {
  display: flex;
  gap: 8px;
}

.bulk-buttons .btn {
  padding: 6px 14px;
  font-size: 0.85rem;
}

/* Movies Container */
.movies-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-height: 400px;
  padding: 20px;
}

.movies-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: #94a3b8;
}

.movies-loading .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e2e8f0;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.movies-loading p {
  font-size: 0.95rem;
  margin: 0;
}

/* Movie Table */
.movie-table {
  width: 100%;
  border-collapse: collapse;
}

.movie-table thead {
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
}

.movie-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.movie-table th input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.movie-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s;
}

.movie-table tbody tr:hover {
  background: #fafbfc;
}

.movie-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #334155;
}

.movie-poster-thumb {
  width: 60px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #e2e8f0;
}

.movie-poster-placeholder {
  width: 60px;
  height: 90px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #cbd5e1;
  border: 2px solid #e2e8f0;
}

.movie-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.movie-original {
  font-size: 0.8rem;
  color: #94a3b8;
}

.movie-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.movie-badge.matched {
  background: #d1fae5;
  color: #065f46;
}

.movie-badge.unmatched {
  background: #fee2e2;
  color: #991b1b;
}

.movie-actions {
  display: flex;
  gap: 6px;
}

.movie-actions button {
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: white;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.movie-actions button:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

/* Export Bar */
.export-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.export-info {
  font-weight: 600;
  color: #334155;
}

.export-actions {
  display: flex;
  gap: 10px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.toast {
  background: white;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s ease-out;
  border-left: 4px solid #64748b;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast.success {
  border-left-color: #10b981;
}

.toast.error {
  border-left-color: #ef4444;
}

.toast.warning {
  border-left-color: #f59e0b;
}

.toast.info {
  border-left-color: #3b82f6;
}

.toast-icon {
  font-size: 1.25rem;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}

.toast-message {
  font-size: 0.85rem;
  color: #64748b;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 90%;
}

.modal-dialog.modal-lg {
  max-width: 900px;
}

.modal-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.btn-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-close:hover {
  background: #e2e8f0;
  color: #334155;
}

.modal-body {
  padding: 24px;
}

/* Modern Upload Tabs - Beautiful & Responsive */
.modern-upload-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px;
  background: #f1f5f9;
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.modern-tab {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.modern-tab:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.modern-tab.active {
  background: white;
  color: #667eea;
  border-color: #667eea;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.tab-icon {
  font-size: 1.25rem;
  display: inline-block;
}

.tab-label {
  display: inline-block;
}

/* Modern Upload Content */
.modern-upload-content {
  display: none;
  animation: modernFadeIn 0.3s ease-in-out;
}

.modern-upload-content.active {
  display: block;
}

@keyframes modernFadeIn {
  from { 
    opacity: 0; 
    transform: translateY(-10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Modern Upload Zone */
.modern-upload-zone {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.3s;
}

.modern-upload-zone:hover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

.modern-upload-zone.dragover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  transform: scale(1.02);
}

.upload-icon-large {
  font-size: 3.5rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.upload-main-text {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 8px;
}

.upload-main-text strong {
  color: #1e293b;
  font-weight: 700;
}

.upload-sub-text {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Modern Input Zone */
.modern-input-zone {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modern-input,
.modern-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #1e293b;
  background: white;
  transition: all 0.2s;
  font-family: inherit;
}

.modern-input:focus,
.modern-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.modern-textarea {
  resize: vertical;
  line-height: 1.6;
}

.btn-modern-primary {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-modern-primary:active {
  transform: translateY(0);
}

/* Modern Progress */
.modern-progress {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.progress-bar-container {
  width: 100%;
  height: 12px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  border-radius: 10px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  margin-top: 12px;
  line-height: 1.5;
}

.progress-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.status-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #10b981;
  background: #d1fae5;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.btn-change-file {
  padding: 8px 16px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-change-file:hover {
  border-color: #667eea;
  color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

.progress-bar-container {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
}

/* Responsive Modern Upload */
@media (max-width: 768px) {
  .modern-upload-tabs {
    gap: 6px;
    padding: 4px;
  }
  
  .modern-tab {
    min-width: 110px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .tab-icon {
    font-size: 1.1rem;
  }
  
  .modern-upload-zone {
    padding: 30px 16px;
  }
  
  .upload-icon-large {
    font-size: 2.5rem;
  }
  
  .upload-main-text {
    font-size: 0.9rem;
  }
  
  .progress-status {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .btn-change-file {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .modern-upload-tabs {
    flex-direction: column;
    gap: 8px;
  }
  
  .modern-tab {
    min-width: auto;
    width: 100%;
  }
  
  .upload-main-text {
    font-size: 0.85rem;
  }
  
  .upload-sub-text {
    font-size: 0.8rem;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .credit-usage-list {
    grid-template-columns: 1fr;
  }
  
  .credit-info-card {
    padding: 1.75rem;
    gap: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .movie-editor-workspace {
    grid-template-columns: 1fr;
  }
  
  .movie-sidebar {
    max-height: 400px;
  }
  
  .credit-info-card {
    flex-direction: column;
    padding: 20px;
  }
  
  .credit-info-icon {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .movie-editor-page {
    padding: 12px;
  }
  
  .movie-editor-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px;
  }
  
  .movie-editor-header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .movie-editor-header h1 {
    font-size: 1.5rem;
  }
  
  .movie-editor-header p {
    font-size: 0.85rem;
  }
  
  .credits-badge {
    align-items: center;
  }
  
  .credit-info-card {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .credit-info-icon {
    font-size: 2rem;
  }
  
  .credit-info-content h3 {
    font-size: 1.2rem;
  }
  
  .credit-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
  }
  
  .credit-feature {
    font-size: 0.9rem;
  }
  
  .credit-cost {
    align-self: flex-start;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
  }
  
  .upload-tab {
    padding: 12px 18px;
    font-size: 0.9rem;
    min-width: 110px;
  }
  
  .toolbar-left {
    flex-direction: column;
    width: 100%;
  }
  
  .toolbar-left .form-control {
    max-width: 100%;
    width: 100%;
  }
  
  .movie-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .bulk-actions-bar {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  
  .bulk-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .bulk-buttons .btn {
    width: 100%;
  }
  
  .export-bar {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  
  .export-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .export-actions .btn {
    width: 100%;
  }
  
  .upload-card-body {
    padding: 16px;
  }
  
  .movies-container {
    overflow-x: auto;
  }
  
  .movie-table {
    min-width: 600px;
  }
  
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .movie-editor-header h1 {
    font-size: 1.25rem;
  }
  
  .tool-header-icon {
    font-size: 1.5rem !important;
  }
  
  .credit-info-content h3 {
    font-size: 1.1rem;
  }
  
  .credit-item {
    font-size: 0.85rem;
  }
  
  .upload-step-badge {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .upload-card-header h2 {
    font-size: 1.1rem;
  }
}

/* ========================================
   COMPACT & SEO-FRIENDLY STYLES
   ======================================== */

/* Compact Upload Section */
.upload-card.compact-upload {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.upload-card-header.compact-header {
  padding: 12px 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.upload-card-header.compact-header h2 {
  font-size: 1.05rem;
}

.upload-card-body.compact-body {
  padding: 16px;
}

.movie-captcha-wrap.compact-captcha {
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.movie-upload-gate.compact-upload-gate {
  margin-top: 0;
}

/* Compact Pricing Card */
.pricing-info-section {
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.pricing-info-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
}

.pricing-info-card.compact-pricing {
  padding: 1rem;
}

.pricing-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.pricing-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.875rem 0.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  transition: all 0.2s;
}

.pricing-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-item.paid {
  border-color: #fbbf24;
  background: #fef3c7;
}

.pricing-item.free {
  border-color: #10b981;
  background: #d1fae5;
}

.price-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.price-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.price-value {
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  display: inline-block;
}

.price-value.premium {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  box-shadow: 0 2px 6px rgba(251, 191, 36, 0.4);
}

.price-value.free {
  background: #10b981;
  color: white;
}

.pricing-note {
  margin-top: 0.875rem;
  padding: 0.75rem;
  background: #dbeafe;
  border-left: 4px solid #3b82f6;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #1e40af;
}

.pricing-note strong {
  font-weight: 700;
}

.pricing-note a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: underline;
}

/* SEO Content Section */
.movie-editor-seo-content {
  margin: 30px auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.seo-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.seo-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.seo-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.25rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s;
}

.seo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.seo-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.seo-card.premium-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-color: #fbbf24;
}

.seo-card.premium-card h3 {
  color: #92400e;
}

.seo-card.pro-tips-card {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #3b82f6;
}

.seo-card.benefits-card {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-color: #10b981;
}

.seo-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: none;
}

.seo-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #475569;
  position: relative;
  padding-left: 0.5rem;
}

.seo-list li:before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: #667eea;
  font-weight: 700;
  font-size: 1.2rem;
}

.seo-list li strong {
  color: #1e293b;
  font-weight: 700;
}

.seo-list.features-list li:before {
  content: "";
}

.seo-list.free-features li:before {
  content: "✓";
  color: #10b981;
}

.seo-list.premium-features li:before {
  content: "⭐";
  color: #fbbf24;
}

.seo-list.pro-tips li:before {
  content: "💡";
  font-size: 1rem;
}

.seo-list.benefits li:before {
  content: "🎁";
  font-size: 1rem;
}

.premium-cta {
  margin-top: 1rem;
  text-align: center;
}

.btn-premium {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  transition: all 0.2s;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Responsive CAPTCHA */
@media (max-width: 768px) {
  .movie-captcha-wrap.compact-captcha {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  
  .captcha-math-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .captcha-input-group {
    width: 100%;
  }
  
  .captcha-input-group input {
    width: 100%;
    max-width: 100%;
  }
}

/* Responsive Pricing Grid */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
  
  .pricing-item {
    padding: 0.75rem 0.375rem;
  }
  
  .price-icon {
    font-size: 1.5rem;
  }
  
  .price-label {
    font-size: 0.8rem;
  }
  
  .price-value {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Responsive SEO Content */
@media (max-width: 768px) {
  .seo-section {
    padding: 1.25rem;
  }
  
  .seo-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
  
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .seo-card {
    padding: 1rem;
  }
  
  .seo-card h3 {
    font-size: 1.05rem;
  }
  
  .seo-list li {
    font-size: 0.9rem;
    margin-bottom: 0.625rem;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-item {
    padding: 0.875rem;
  }
  
  .upload-card-body.compact-body {
    padding: 12px;
  }
  
  .seo-section {
    padding: 1rem;
  }
  
  .seo-card {
    padding: 0.875rem;
  }
}

/* ========================================
   LANDING PAGE CTA SECTION
   ======================================== */
.movie-editor-cta-section {
  max-width: 900px;
  margin: 2rem auto;
}

.cta-card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cta-card.primary-card {
  border-color: #0066cc;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.cta-card.success-card {
  border-color: #28a745;
  background: linear-gradient(135deg, #f0fff4 0%, #fff 100%);
}

.cta-card:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.cta-description {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.quick-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.quick-feature:hover {
  border-color: #0066cc;
  box-shadow: 0 2px 8px rgba(0,102,204,0.1);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.btn-primary.btn-lg {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.btn-primary.btn-lg:hover {
  background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
  box-shadow: 0 6px 20px rgba(0,102,204,0.4);
  transform: translateY(-2px);
}

.btn-secondary.btn-lg {
  background: #6c757d;
  color: #fff;
  border: 2px solid #6c757d;
}

.btn-secondary.btn-lg:hover {
  background: #5a6268;
  border-color: #5a6268;
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.cta-note small {
  display: block;
}

.cta-credits {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
  border: 2px solid #ffc107;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.credits-label {
  font-size: 1rem;
  color: #856404;
  font-weight: 500;
}

.credits-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ff6b00;
}

.credits-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #0066cc;
  transition: all 0.2s ease;
}

.credits-link:hover {
  background: #0066cc;
  color: #fff;
}

/* Pricing Section Updates */
.pricing-info-card {
  margin-bottom: 3rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 1.1rem;
  color: #666;
}

.price-desc {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.25rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
}

.pricing-note p {
  margin: 0;
  font-size: 1.05rem;
  color: #333;
}

/* SEO Content Sections */
.seo-intro,
.seo-how-it-works,
.seo-features-detailed,
.seo-pricing-comparison,
.seo-use-cases,
.seo-pro-tips,
.seo-why-choose,
.seo-final-cta {
  margin-bottom: 3rem;
}

.seo-intro h2,
.seo-how-it-works h2,
.seo-features-detailed h2,
.seo-pricing-comparison h2,
.seo-use-cases h2,
.seo-pro-tips h2,
.seo-why-choose h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Steps Container */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.step-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,102,204,0.3);
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: justify;
}

/* Features Grid Detailed */
.features-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-detail-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-detail-card:hover {
  box-shadow: 0 4px 20px rgba(0,102,204,0.15);
  transform: translateY(-5px);
}

.feature-icon-large {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-detail-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.feature-detail-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

/* Comparison Container */
.comparison-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.comparison-column {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border: 2px solid #e0e0e0;
}

.comparison-column.premium-column {
  border-color: #ffc107;
  position: relative;
  overflow: hidden;
}

.comparison-column.premium-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
}

.column-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.column-header.premium-header {
  border-bottom-color: #ffc107;
}

.column-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.column-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #666;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.check-icon,
.star-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.column-note {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.btn-premium-large {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,193,7,0.3);
}

.btn-premium-large:hover {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  box-shadow: 0 6px 20px rgba(255,193,7,0.4);
  transform: translateY(-2px);
  color: #fff;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.use-case-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.use-case-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.use-case-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: center;
}

.use-case-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

/* Pro Tips Container */
.tips-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tip-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid #0066cc;
  transition: all 0.3s ease;
}

.tip-item:hover {
  box-shadow: 0 4px 15px rgba(0,102,204,0.15);
  transform: translateX(5px);
}

.tip-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.tip-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.tip-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  text-align: justify;
}

/* Why Choose Content */
.why-choose-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-left: 4px solid #28a745;
}

.why-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.why-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  text-align: justify;
}

/* Final CTA Box */
.final-cta-box {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  padding: 4rem 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,102,204,0.3);
}

.final-cta-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #fff;
}

.final-cta-box > p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-buttons-large {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 240px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.final-cta-box .btn-primary.btn-xl {
  background: #fff;
  color: #0066cc;
}

.final-cta-box .btn-primary.btn-xl:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.final-cta-box .btn-secondary.btn-xl {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.final-cta-box .btn-secondary.btn-xl:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.cta-benefits-footer {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Responsive Adjustments for Landing Page */
@media (max-width: 768px) {
  .cta-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-card h2 {
    font-size: 1.6rem;
  }
  
  .cta-features-quick {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons,
  .cta-buttons-large {
    flex-direction: column;
  }
  
  .btn-lg,
  .btn-xl {
    width: 100%;
  }
  
  .comparison-container {
    grid-template-columns: 1fr;
  }
  
  .features-grid-detailed,
  .use-cases-grid,
  .tips-container {
    grid-template-columns: 1fr;
  }
  
  .steps-container .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    align-self: center;
  }
  
  .final-cta-box {
    padding: 2.5rem 1.5rem;
  }
  
  .final-cta-box h2 {
    font-size: 1.8rem;
  }
}
