@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #020205;
  --bg-card: rgba(15, 15, 25, 0.7);
  --primary: #ecc94b;
  /* Cambiado a dorado/amarillo estilo Artlist */
  --primary-glow: rgba(236, 201, 75, 0.4);
  --secondary: #d69e2e;
  --secondary-glow: rgba(214, 158, 46, 0.3);
  --accent: #ec4899;
  --text-main: #ffffff;
  --text-dim: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --glass: blur(16px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== TOAST NOTIFICATIONS ===== */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
  pointer-events: none;
}

.toast {
  background: rgba(15, 15, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: var(--text-main);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: slideInRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: all;
}

.toast i {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.toast-message {
  flex: 1;
  line-height: 1.4;
}

.toast.success {
  border-color: rgba(0, 255, 136, 0.3);
}

.toast.success i {
  color: #00ff88;
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.3);
}

.toast.error i {
  color: #ef4444;
}

.toast.warning {
  border-color: rgba(245, 158, 11, 0.3);
}

.toast.warning i {
  color: #f59e0b;
}

.toast.info {
  border-color: rgba(59, 130, 246, 0.3);
}

.toast.info i {
  color: #3b82f6;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(400px);
  }
}

.toast.removing {
  animation: slideOutRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 640px) {
  #toast-container {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .toast {
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
  }
}

/* HERO SECTION CINEMÁTICA - BENTO GRID */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-dark);
  /* Fondo negro profundo */
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  margin-top: -80px;
  /* Para que quede debajo del nav */
  padding-top: 80px;
  overflow: hidden;
}

/* Destellos Neón en Intersecciones */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 0 0, rgba(139, 92, 246, 0.8) 1.5px, transparent 2px);
  background-size: 60px 60px;
  background-position: center;
  z-index: 1;
  animation: bentoPulse 4s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes bentoPulse {
  0% {
    opacity: 0.1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }

  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Viñeta para difuminar los bordes del grid y darle profundidad */
  background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 85%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.btn-yellow-large {
  background: linear-gradient(90deg, #f6e05e 0%, #d69e2e 100%);
  color: #1a202c;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(214, 158, 46, 0.4);
  transition: all 0.3s ease;
}

.btn-yellow-large:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(214, 158, 46, 0.6);
}

.btn-yellow {
  background: linear-gradient(90deg, #f6e05e 0%, #d69e2e 100%);
  color: #1a202c;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  filter: brightness(1.1);
}

/* Glass Navbar - Transparente */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.main-nav.scrolled {
  background: rgba(2, 2, 5, 0.9);
  backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-logo span {
  color: var(--primary);
}

/* Main Layout */
.dashboard-container {
  padding: 2rem 5%;
}

.card {
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Form Styles */
.input-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  display: block;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  color: white;
  font-weight: 500;
  transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  outline: none;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 0.75rem;
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

/* NAVEGACIÓN Y TABS */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-item {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
  color: white;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid var(--primary);
}

.tab-content {
  display: none;
  padding: 2rem 5%;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GRIDS ESPECÍFICOS */
.studio-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 1200px) {
  .studio-grid {
    grid-template-columns: 1fr;
  }
}

/* Video Input Table */
.video-input-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-header, .video-row {
  display: grid;
  grid-template-columns: 40px 5.0fr 1.4fr 1.4fr 70px 60px 60px 70px;
  gap: 15px;
  align-items: center;
}

.col-select select {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  padding: 0.5rem;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}

.table-header {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  padding: 0 1rem 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.video-row {
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.video-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.col-num {
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

.video-row input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  padding: 0.6rem 0.8rem;
}

.video-row input:focus {
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.3);
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 3rem auto;
}

.config-welcome {
  text-align: center;
  margin-top: 2rem;
}

.config-welcome h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.config-welcome p {
  color: var(--text-dim);
}

.setup-info ol {
  padding-left: 1.5rem;
  color: var(--text-dim);
}

.setup-info li {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.btn-generate-all {
  width: 100%;
}

@media (max-width: 1000px) {

  .studio-grid,
  .config-grid {
    grid-template-columns: 1fr;
  }
}

/* Grid Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-item {
  background: var(--bg-card);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.video-item:hover {
  transform: scale(1.02);
  border-color: var(--secondary);
}

.video-preview {
  aspect-ratio: 16/9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.status-pending {
  color: #fbbf24;
  border: 1px solid #fbbf24;
}

.status-done {
  color: #34d399;
  border: 1px solid #34d399;
}

.video-info {
  padding: 1rem;
}

.video-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Master Prompts */
.prompt-chip {
  display: inline-block;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prompt-chip:hover {
  background: var(--primary);
  color: white;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

/* How it works */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

@media (max-width: 800px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}

/* ====== SECCIÓN EJEMPLOS ====== */
.examples-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10,10,20,1) 50%, var(--bg-dark) 100%);
}

.examples-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.examples-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00ff88;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.examples-title {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.examples-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
  font-weight: 300;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  gap: 1.5rem;
  text-align: left;
  justify-content: center;
}

.example-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.example-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.example-card:hover .example-overlay {
  opacity: 0;
}

.example-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  background: #000;
  overflow: hidden;
}

.example-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.example-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: opacity 0.3s ease;
}

.example-overlay i {
  font-size: 3rem;
  color: white;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.4));
}

.example-info {
  padding: 1rem 1.25rem;
}

.example-prompt {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.example-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(236,201,75,0.08);
  border: 1px solid rgba(236,201,75,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }
  .examples-title {
    font-size: 2rem;
  }
}

/* Badge de Créditos en el Nav */
.nav-credits-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFD700;
  animation: fadeIn 0.4s ease-out;
}

/* ============================================================
   LANDING PAGE — index.html styles
   ============================================================ */

/* Override btn-primary for anchor tags (landing page CTAs) */
a.btn-primary {
  background: #ecc94b;
  color: #000;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  width: auto;
  box-shadow: none;
}
a.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
a.btn-primary.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(2,2,5,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-center { display: flex; gap: 2rem; }
.nav-center a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-center a:hover { color: #fff; }
.nav-cta {
  background: #ecc94b;
  color: #000;
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(236,201,75,0.08) 0%, transparent 60%);
}
.hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.hero-tag {
  display: inline-block;
  background: rgba(236,201,75,0.12);
  border: 1px solid rgba(236,201,75,0.3);
  color: #ecc94b;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}
.highlight { color: #ecc94b; }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.hero-proof .divider { opacity: 0.4; }

/* COMPARE */
.compare { padding: 6rem 2rem; background: rgba(255,255,255,0.02); }
.compare-inner { max-width: 960px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ecc94b;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 3rem;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2rem;
}
.compare-col.good { border-color: rgba(236,201,75,0.2); }
.compare-header { margin-bottom: 1.5rem; }
.compare-tag {
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bad-tag { background: rgba(239,68,68,0.12); color: #f87171; }
.good-tag { background: rgba(236,201,75,0.12); color: #ecc94b; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.compare-col li { display: flex; gap: 0.75rem; align-items: flex-start; }
.compare-col li strong { display: block; font-weight: 700; margin-bottom: 0.2rem; }
.compare-col li p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.5; margin: 0; }
.x-icon { color: #f87171; font-weight: 700; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.check-icon { color: #ecc94b; font-weight: 700; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* METRICS */
.metrics {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.metrics-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.metric { text-align: center; padding: 1.5rem 3rem; flex: 1; min-width: 180px; }
.metric-num {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: #ecc94b;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.metric-num span { font-size: 2.5rem; }
.metric-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.4; }
.metric-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
@media (max-width: 600px) { .metric-divider { display: none; } .metric { padding: 1.5rem 1rem; } }

/* PROCESS */
.process { padding: 6rem 2rem; }
.process-inner { max-width: 960px; margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
}
.step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.step p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* VIDEO TYPES */
.video-types { padding: 6rem 2rem; background: rgba(255,255,255,0.02); }
.video-types-inner { max-width: 960px; margin: 0 auto; }
.type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.type-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  overflow: hidden;
}
.type-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.type-visual.aero { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.type-visual.walk { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.type-visual.render { background: linear-gradient(135deg, #240f0f, #3d1515, #6b0000); }
.type-card h4 { font-size: 1.1rem; font-weight: 700; padding: 1.25rem 1.5rem 0.4rem; }
.type-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; padding: 0 1.5rem 1.5rem; margin: 0; }

/* TESTIMONIAL */
.testimonial { padding: 6rem 2rem; text-align: center; }
.testimonial-inner { max-width: 640px; margin: 0 auto; }
.testimonial blockquote {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial cite { color: rgba(255,255,255,0.4); font-size: 0.9rem; font-style: normal; }

/* PRICING */
.pricing { padding: 6rem 2rem; }
.pricing-inner { max-width: 960px; margin: 0 auto; }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.plan {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-featured { border-color: rgba(236,201,75,0.35); background: rgba(236,201,75,0.04); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #ecc94b;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-top { margin-bottom: 1.5rem; }
.plan h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.plan-sub { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 1rem; margin-top: 0.2rem; }
.plan-price { font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; }
.plan-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex: 1;
}
.plan-features li { color: rgba(255,255,255,0.7); font-size: 0.9rem; padding-left: 1.25rem; position: relative; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; color: #ecc94b; font-weight: 700; }
.plan-cta {
  display: block;
  text-align: center;
  background: #ecc94b;
  color: #000;
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.plan-cta:hover { opacity: 0.85; }
.pricing-note { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* FAQ */
.faq { padding: 6rem 2rem; background: rgba(255,255,255,0.02); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.faq-item { padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.faq-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* FINAL CTA */
.final-cta {
  padding: 7rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(236,201,75,0.07) 0%, transparent 60%);
}
.final-cta-inner { max-width: 560px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1rem;
}
.final-cta p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.6; }
.final-note { color: rgba(255,255,255,0.35); font-size: 0.85rem; margin-top: 1.25rem; }

/* FOOTER */
.footer { padding: 3rem 2rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-brand strong { font-size: 1.2rem; font-weight: 800; display: block; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.82rem; margin: 0; }