/* ==========================================================================
   AUTOVIDEO STUDIO — PREMIUM DARK THEME
   File: theme.css
   Author: Antigravity Design & Engineering
   Description: Premium, Vercel-like dark mode theme for Flask/Jinja app.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ===== TOKENS & CSS CUSTOM PROPERTIES ===== */
:root {
  /* Font Families */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Color Palette - Dark Cinematic Mode */
  --bg-main: #08080a;
  --bg-panel: rgba(18, 18, 24, 0.7);
  --bg-surface: #121218;
  --bg-overlay: #1b1b26;
  --bg-active: #222232;
  
  /* Primary Crimson / Red Accents */
  --accent: #ef4444;
  --accent-hover: #f87171;
  --accent-soft: rgba(239, 68, 68, 0.12);
  --accent-rgb: 239, 68, 68;
  --accent-gradient: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  --accent-gradient-hover: linear-gradient(135deg, #f87171 0%, #fb923c 100%);
  
  /* Text Tiers */
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --text-accent: #fca5a5;

  /* Border Tiers */
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-default: rgba(255, 255, 255, 0.08);
  --border-active: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(239, 68, 68, 0.3);
  --border-accent-focus: rgba(239, 68, 68, 0.6);

  /* Semantic Colors */
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.1);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.1);
  --info: #3b82f6;
  --info-bg: rgba(59, 130, 246, 0.1);

  /* Shadow Tiers */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.85);
  --shadow-accent: 0 0 24px rgba(239, 68, 68, 0.15);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}/* ===== GLOBAL RESETS & BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}::-webkit-scrollbar-track {
  background: var(--bg-main);
}::-webkit-scrollbar-thumb {
  background: var(--border-active);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-main);
}::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}/* Selection Color */
::selection {
  background-color: var(--accent);
  color: #fff;
}/* Focus Visible Accessibility styling */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}/* Links default styling */
a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}a:hover {
  color: var(--accent-hover);
}/* Animations Definitions */
@keyframes fadeIn {
  from { opacity: 0; }to { opacity: 1; }}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }to {
    opacity: 1;
    transform: translateY(0);
  }}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }50% { background-position: 100% 50%; }100% { background-position: 0% 50%; }}

@keyframes pulseBorder {
  0%, 100% { border-color: var(--border-accent); box-shadow: none; }50% { border-color: var(--accent); box-shadow: var(--shadow-accent); }}

/* Staggered page load entrance for panels */
.workspace .panel, .pay-card, .fcard, .card {
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}.workspace .panel:nth-child(1) { animation-delay: 0.05s; }.workspace .panel:nth-child(2) { animation-delay: 0.1s; }.workspace .panel:nth-child(3) { animation-delay: 0.15s; }.workspace .panel:nth-child(4) { animation-delay: 0.2s; }/* Respect User Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
    transform: none !important;
  }}

/* ===== TYPOGRAPHY & BRAND ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
}/* ===== HEADER & NAVIGATION ===== */
.mainhead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-default);
  width: 100%;
  box-shadow: var(--shadow-sm);
}.mh-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
}.mh-brand {
  display: flex;
  flex-direction: column;
}.mh-brand h1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}.mh-brand h1 span {
  font-weight: 800;
}.mh-brand p {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}.mh-links {
  display: flex;
  align-items: center;
  gap: 20px;
}.mh-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}.mh-links a:hover, .mh-links a.active {
  color: var(--text-primary);
  background: var(--bg-overlay);
}.mh-plan {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}.mh-row2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 10px 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}.mh-tabs {
  display: flex;
  gap: 8px;
  width: 100%;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
  overflow-x: auto;
}/* Hide scrollbar for header tabs */
.mh-tabs::-webkit-scrollbar {
  display: none;
}.mode-tab {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}.mode-tab:hover {
  color: var(--text-primary);
  background: var(--bg-overlay);
}.mode-tab.active {
  color: var(--text-primary);
  background: var(--bg-active);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}.ai-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent-gradient);
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}/* ===== HERO BAND ===== */
.hero-band {
  text-align: center;
  padding: 48px 24px 32px 24px;
  max-width: 800px;
  margin: 0 auto;
}.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--border-default);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}.hero-pill span.new-tag {
  color: #fff;
  background: var(--accent);
  padding: 1px 6px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 10px;
}.hero-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1.15;
}.hero-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}/* ===== WORKSPACE & PANELS ===== */
.workspace {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 64px 24px;
  align-items: start;
}/* Desktop-first fallback or simple layout reset */
@media (max-width: 1024px) {
  .workspace {
    grid-template-columns: 1fr;
  }}

.panel {
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}.panel:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-lg);
}.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}.panel-head h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
}/* ===== FORM FIELDS & INPUTS ===== */
.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}.field:last-of-type {
  margin-bottom: 24px;
}.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}/* Inputs styling */
.field input[type=text], .field textarea, .field select, .field input[type=file] {
  background: rgba(8, 8, 10, 0.6);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  width: 100%;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}.field input[type=text]:hover, .field textarea:hover, .field select:hover {
  border-color: var(--border-active);
}.field input[type=text]:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), inset 0 2px 4px rgba(0,0,0,0.3);
  background: #08080a;
}.field textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}/* Custom Styled Dropdowns / Selects */
.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}/* Checkbox Style override */
.field input[type=checkbox] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
  border-radius: 4px;
  margin-right: 8px;
}/* Custom range inputs */
.field input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-overlay);
  border-radius: var(--radius-sm);
  outline: none;
  margin: 10px 0;
}.field input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: var(--bg-overlay);
  border-radius: var(--radius-sm);
}.field input[type=range]::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  margin-top: -6px;
  -webkit-appearance: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.1s ease, background-color 0.1s ease;
}.field input[type=range]::-webkit-slider-thumb:hover {
  background: var(--accent-hover);
  transform: scale(1.15);
}.hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}/* ===== BUTTONS ===== */
button, .btn {
  font-family: var(--font-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 600;
  text-decoration: none;
}/* Big action button - red gradient */
.render-btn {
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  width: 100%;
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(239, 68, 68, 0.4);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}.render-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(239, 68, 68, 0.3);
}.render-btn:active {
  transform: translateY(1px) scale(0.99);
}.render-btn:disabled {
  background: var(--border-active);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}/* Sub tabs inside panels */
.rmode-tab {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  margin-right: 6px;
}.rmode-tab:hover {
  background: var(--bg-overlay);
  color: var(--text-primary);
}.rmode-tab.active {
  background: var(--accent-soft);
  color: var(--text-accent);
  border-color: var(--accent);
}/* Custom default actions buttons */
.dl-btn {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}.dl-btn:hover {
  background: rgba(16, 185, 129, 0.25);
  color: #fff;
  border-color: var(--success);
}.del-btn {
  background: var(--error-bg);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}.del-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-hover);
}table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}thead {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-default);
}thead th {
  padding: 12px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 700;
}tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
  transition: background 0.2s ease;
}tbody tr:last-child {
  border-bottom: none;
}tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}tbody td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-primary);
  vertical-align: middle;
}/* Badges / Chips */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}.badge.done {
  background: var(--success-bg);
  color: var(--success);
}.badge.error {
  background: var(--error-bg);
  color: var(--error);
}.badge.processing {
  background: var(--warning-bg);
  color: var(--warning);
  animation: pulseBorder 2s infinite ease-in-out;
}.badge.queued {
  background: var(--bg-overlay);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}/* ===== PREVIEW & MONITOR ===== */
.monitor {
  background: #000;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}.monitor-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}.canvas-frame {
  background: #040406;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9);
  min-height: 240px;
}/* Ensure stages scale correctly */
.canvas-frame canvas {
  max-width: 100%;
  height: auto;
  display: block;
}.preview-sticky {
  position: sticky;
  top: 110px;
  z-index: 50;
}/* ===== OVERLAYS, TOASTS & MODALS ===== */
/* Toasts */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(18, 18, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 380px;
}/* Modal video styling */
#previewVideo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-md);
  background: #000;
  display: block;
}/* ===== OTHER PAGES ===== */

/* 2. AUTH PAGES (login.html, register.html) */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(circle at top, rgba(239, 68, 68, 0.08) 0%, transparent 60%);
}.auth-card .field {
  text-align: left;
}/* 3. ADMIN PAGE (admin.html) */
.admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
}/* 4. DASHBOARD (dashboard.html) */
.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}.planbar {
  background: var(--bg-panel);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}.fcard {
  background: var(--bg-panel);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}.fcard h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}.fcard .limit-table {
  width: 100%;
  margin-bottom: 16px;
}.fcard .limit-table tr {
  border-bottom: 1px solid var(--border-subtle);
}.fcard .limit-table tr:last-child {
  border-bottom: none;
}.fcard .limit-table td {
  padding: 8px 0;
  font-size: 13px;
}.fcard .limit-table td.val {
  text-align: right;
  font-weight: 600;
}.up {
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}.up:hover {
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}/* 5. PRICING PAGE (pricing.html) */
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}.card {
  background: var(--bg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
}.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-lg);
}/* Highlighted Pro Card */
.card.pro {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}.card.pro::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}.card.business {
  border-color: var(--border-active);
}#custom.card {
  background: linear-gradient(180deg, var(--bg-panel) 0%, rgba(239, 68, 68, 0.03) 100%);
}.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}.card .desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.4;
}.price {
  font-size: 44px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}.price span.period {
  font-size: 14px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
}.speed-tag {
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}.feature-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}.feature-list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}.feature-list li::before {
  content: '✓';
  color: var(--accent-hover);
  font-weight: 800;
}.cta {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-top: auto;
  border: 1px solid var(--border-default);
  background: var(--bg-overlay);
  color: var(--text-primary);
}.cta:hover {
  background: var(--text-primary);
  color: var(--bg-main);
  border-color: var(--text-primary);
}.card.pro .cta {
  background: var(--accent-gradient);
  border: none;
  color: #fff;
}.card.pro .cta:hover {
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
  transform: translateY(-1px);
}/* 6. PAYMENT / CONTACT (payment.html, contact.html) */
.pay-container {
  max-width: 600px;
  margin: 64px auto;
  padding: 0 24px;
}.pay-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}.pay-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}.method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-overlay);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}.method:hover {
  border-color: var(--border-active);
}.method.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}.method input[type=radio] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}.step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}/* WhatsApp support button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  width: 100%;
  margin-top: 16px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}.btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}/* Responsive Scaling Overrides for Smaller Devices (<= 480px) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }.mh-row1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
  }.mh-links {
    width: 100%;
    justify-content: space-between;
  }.mh-row2 {
    padding: 0 16px 10px 16px;
  }.hero-band {
    padding: 32px 16px 20px 16px;
  }.hero-title {
    font-size: 26px;
  }.hero-sub {
    font-size: 14px;
  }.workspace {
    padding: 0 16px 40px 16px;
    gap: 16px;
  }.panel {
    padding: 16px;
  }.card {
    padding: 24px 16px;
  }.price {
    font-size: 34px;
  }.pay-card {
    padding: 20px;
  }
}
