/* CSS Variables */
:root {
  --color-dark: #0C0C0C;
  --color-aqua: #5AF0E1;
  --color-cobalt: #3E5CF3;
  --color-white: #F9FAFB;
  --color-grey: #E5E7EB;
  --color-grey-dark: #9CA3AF;
  
  --gradient-brand: linear-gradient(135deg, #5AF0E1 0%, #3E5CF3 100%);
  --gradient-glow: radial-gradient(circle at center, rgba(90, 240, 225, 0.1) 0%, transparent 70%);
  
  --shadow-glow: 0 0 20px rgba(90, 240, 225, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  
  --border-radius: 12px;
  --border-radius-large: 20px;
  
  --font-primary: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-dark);
  font-family: var(--font-primary);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }
  
  .hero {
    padding-top: 20px;
    margin-top: 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary, .btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(90, 240, 225, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-aqua);
}

.btn-secondary:hover {
  background: var(--color-aqua);
  color: var(--color-dark);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .nav {
    position: relative;
    background: rgba(12, 12, 12, 0.95);
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 0 20px;
  display: flex !important;
  align-items: center;
  height: 70px;
  min-height: 70px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-icon {
  width: 32px;
  height: 32px;
}

.nav-brand {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-nav-dropdown {
  display: none;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

/* Ensure proper button visibility - Desktop */
@media (min-width: 769px) {
  .mobile-only,
  .hero-download-section .mobile-only,
  button.mobile-only,
  #heroDownloadBtnMobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  .desktop-only,
  .hero-download-section .desktop-only,
  button.desktop-only,
  #heroDownloadBtn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Ensure proper button visibility - Mobile */
@media (max-width: 768px) {
  .desktop-only,
  .hero-download-section .desktop-only,
  button.desktop-only,
  #heroDownloadBtn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  .mobile-only,
  .hero-download-section .mobile-only,
  button.mobile-only,
  #heroDownloadBtnMobile {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.nav-link {
  color: var(--color-grey);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-aqua);
}

.nav-cta {
  background: var(--gradient-brand);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Ensure nav button styling */
.nav-container .btn-glass {
  font-family: var(--font-primary) !important;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  justify-content: center !important;
}

/* Specific styling for nav login button */
#navLoginBtn {
  flex-shrink: 0;
  min-width: 100px;
  padding: 16px 16px !important;
}


/* Hero Section */
.hero {
  padding: 70px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  z-index: 2;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.hero-text-section {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-grey);
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 300;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 240, 225, 0.1);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: 24px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-aqua);
}

.badge-icon {
  font-size: 16px;
}

/* Hero Value Props */
.hero-value-props {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

.value-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 240, 225, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(90, 240, 225, 0.2);
}

.value-arrow {
  font-size: 20px;
  color: var(--color-aqua);
  font-weight: bold;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-watch-demo {
  padding: 14px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-grey);
  font-weight: 500;
}

.trust-icon {
  font-size: 16px;
}

/* Hero Visual Demo */
.hero-visual-demo {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-text-input,
.demo-video-preview {
  flex: 1;
  min-width: 280px;
}

.demo-label {
  font-size: 14px;
  color: var(--color-grey);
  margin-bottom: 12px;
  font-weight: 500;
}

.demo-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  font-style: italic;
}

.demo-arrow {
  color: var(--color-aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.video-placeholder {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.play-button {
  width: 60px;
  height: 60px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 16px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
}

/* Try It Out Section */
.hero-try-it-out {
  width: 100%;
  max-width: 500px;
  margin: 40px auto 0;
}

.try-it-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(90, 240, 225, 0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.try-it-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.input-group {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.url-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--color-white);
  font-size: 15px;
  font-family: var(--font-primary);
  transition: all 0.2s ease;
}

.url-input:focus {
  outline: none;
  border-color: var(--color-aqua);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(90, 240, 225, 0.1);
}

.url-input::placeholder {
  color: var(--color-grey-dark);
}

.btn-generate {
  padding: 14px 20px;
  background: var(--gradient-brand);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.btn-generate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(90, 240, 225, 0.4);
}

.btn-generate:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}


/* Video Gallery */
.hero-video-gallery {
  width: 100vw;
  margin: 40px 0 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.gallery-header {
  text-align: center;
  margin-bottom: 24px;
}

.gallery-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 8px;
}

.gallery-subtitle {
  font-size: 14px;
  color: var(--color-grey);
  margin: 0;
}

.gallery-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-scroll {
  display: flex;
  gap: 16px;
  padding: 20px 40px 20px 40px;
  padding-right: 60px;
  overflow-x: auto;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  will-change: scroll-position;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-scroll::after {
  content: '';
  flex-shrink: 0;
  width: 40px;
  height: 1px;
}

.video-card {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 240, 225, 0.3);
  box-shadow: 0 8px 25px rgba(90, 240, 225, 0.15);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumbnail video,
.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumbnail video {
  pointer-events: none;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(90, 240, 225, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  opacity: 0;
  transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.brand-logo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.video-info {
  padding: 16px;
}

.brand-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-aqua);
  margin-bottom: 4px;
}

.video-title {
  font-size: 13px;
  color: var(--color-grey);
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Social Proof */
.hero-social-proof {
  margin-top: 60px;
  width: 100%;
}

.social-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Video Prompt Interface */
.video-prompt-interface {
  margin-bottom: 40px;
}

.prompt-container {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.prompt-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 240, 225, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prompt-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(90, 240, 225, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.prompt-container:focus-within {
    border-color: rgba(90, 240, 225, 0.4);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(90, 240, 225, 0.3);
    transform: translateY(-1px);
}

.prompt-container:focus-within::before {
    opacity: 1;
}

.prompt-container:focus-within::after {
    opacity: 1;
}

.prompt-textarea {
    width: 100%;
    min-height: 80px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    resize: none;
    outline: none;
    padding: 0;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.prompt-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    transition: color 0.3s ease;
}

.prompt-textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.2);
}


.prompt-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Custom Glass CTA Button */
.btn-glass, button.btn-glass, a.btn-glass {
    background: rgba(90, 240, 225, 0.15) !important;
    border: 1px solid rgba(90, 240, 225, 0.3) !important;
    border-radius: 12px !important;
    padding: 12px 24px !important;
    color: var(--color-white) !important;
    font-family: var(--font-primary) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 
        0 4px 16px rgba(90, 240, 225, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(90, 240, 225, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-glass:hover, button.btn-glass:hover, a.btn-glass:hover {
    background: rgba(90, 240, 225, 0.25) !important;
    border-color: rgba(90, 240, 225, 0.5) !important;
    box-shadow: 
        0 8px 24px rgba(90, 240, 225, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-2px) !important;
}

.btn-glass:hover::before, button.btn-glass:hover::before, a.btn-glass:hover::before {
    left: 100%;
}

.btn-glass:active, button.btn-glass:active, a.btn-glass:active {
    transform: translateY(0) !important;
    box-shadow: 
        0 4px 12px rgba(90, 240, 225, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}

.btn-glass svg {
    transition: transform 0.3s ease;
}

.btn-glass:hover svg {
    transform: translateY(-1px);
}


/* Example Prompts */
.example-prompts {
  text-align: center;
}

.example-prompt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 0;
}

.example-prompt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: var(--color-grey);
  line-height: 1.4;
  backdrop-filter: blur(5px);
}

.example-prompt:hover {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-white);
}






/* Hero Download Section */
.hero-download-section {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Hero Visual Elements */
.hero-visual-elements {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--color-grey);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-download-large {
  padding: 18px 40px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  border-radius: 14px !important;
  box-shadow: 
    0 8px 32px rgba(90, 240, 225, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}

.btn-download-large:hover {
  transform: translateY(-3px) !important;
  box-shadow: 
    0 12px 40px rgba(90, 240, 225, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}

.download-meta {
  color: var(--color-grey);
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.badge {
  background: rgba(90, 240, 225, 0.1);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--color-aqua);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(90, 240, 225, 0.15);
  border-color: var(--color-aqua);
  transform: translateY(-2px);
}


/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-demo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}





.result-card {
  background: rgba(90, 240, 225, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.result-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.result-icon {
  font-size: 20px;
}

.result-title {
  font-weight: 600;
  color: var(--color-white);
}

.result-content p {
  color: var(--color-grey);
  font-size: 14px;
  line-height: 1.5;
}

.inline-result {
  margin-top: 14px;
  background: rgba(90, 240, 225, 0.06);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
}

.inline-result-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.inline-result-title {
  font-size: 14px;
  font-weight: 600;
}

.inline-result-text {
  color: var(--color-grey);
  font-size: 13px;
}

/* progress bar removed per updated design */

.chip-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(90, 240, 225, 0.2);
  color: var(--color-white);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.video-progress {
  margin-top: 14px;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.video-progress-fill {
  height: 100%;
  width: 35%;
  background: var(--gradient-brand);
  animation: progressPulse 3.2s ease-in-out infinite;
}

@keyframes progressPulse {
  0% { width: 20%; opacity: 0.8; }
  50% { width: 80%; opacity: 1; }
  100% { width: 35%; opacity: 0.9; }
}


@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.05); }
}

/* Problem Section */
.problem {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(90, 240, 225, 0.02) 0%, rgba(62, 92, 243, 0.02) 100%);
}

.problem-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.problem-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.problem-description {
  font-size: 18px;
  color: var(--color-grey);
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.step-content {
  width: 100%;
  max-width: 280px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.step-description {
  color: var(--color-grey);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

/* Features */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(90, 240, 225, 0.02) 0%, rgba(62, 92, 243, 0.02) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(90, 240, 225, 0.05);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 240, 225, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.feature-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.feature-description {
  color: var(--color-grey);
  line-height: 1.6;
}

/* Why Mac Section */
.why-mac {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(62, 92, 243, 0.02) 0%, rgba(90, 240, 225, 0.02) 100%);
}

/* Use Cases Section */
.use-cases {
  padding: 100px 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.use-case-card {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.use-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 240, 225, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.use-case-card.featured {
  background: linear-gradient(135deg, rgba(90, 240, 225, 0.08) 0%, rgba(62, 92, 243, 0.08) 100%);
  border: 2px solid rgba(90, 240, 225, 0.25);
  position: relative;
}

.use-case-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.use-case-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.use-case-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.use-case-description {
  color: var(--color-grey);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* Integrations */
.integrations {
  padding: 100px 0;
}

.integrations-subtitle {
  text-align: center;
  color: var(--color-grey);
  font-size: 20px;
  margin-bottom: 60px;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 40px;
  align-items: center;
}

.integration-item {
  text-align: center;
  padding: 20px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.integration-item:hover {
  background: rgba(90, 240, 225, 0.05);
  transform: translateY(-5px);
}

.integration-logo {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.integration-name {
  font-size: 14px;
  color: var(--color-grey);
  font-weight: 500;
}

/* Enterprise Pricing Section */
.enterprise-pricing {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(62, 92, 243, 0.1) 0%, rgba(90, 240, 225, 0.05) 100%);
  position: relative;
}

.enterprise-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(62, 92, 243, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(90, 240, 225, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.enterprise-pricing-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.enterprise-pricing-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-white);
}

.enterprise-pricing-subtitle {
  font-size: 1.1rem;
  color: var(--color-grey-dark);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.enterprise-pricing-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 240, 225, 0.3);
  background: rgba(90, 240, 225, 0.05);
}

.benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--color-aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(90, 240, 225, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(90, 240, 225, 0.2);
}

.benefit-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.benefit-text p {
  font-size: 14px;
  color: var(--color-grey-dark);
  line-height: 1.5;
}

.enterprise-pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-enterprise {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gradient-brand);
  color: var(--color-white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.btn-enterprise:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(90, 240, 225, 0.4);
}

.enterprise-note {
  font-size: 14px;
  color: var(--color-grey-dark);
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .enterprise-pricing {
    padding: 60px 0;
  }
  
  .enterprise-pricing-title {
    font-size: 2rem;
  }
  
  .enterprise-pricing-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .enterprise-pricing-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-item {
    padding: 20px;
  }
  
  .btn-enterprise {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 40px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta .btn-primary {
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta .btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.cta .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* CTA button specific styling */
.cta .btn-glass {
  background: var(--color-white) !important;
  color: var(--color-dark) !important;
  border: none !important;
  font-weight: 600 !important;
}

.cta .btn-glass:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

.btn-secondary-cta {
  background: transparent !important;
  border: 2px solid var(--color-white) !important;
  color: var(--color-white) !important;
}

.btn-secondary-cta:hover {
  background: var(--color-white) !important;
  color: var(--color-dark) !important;
}

.cta-requirements {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 20px 0 0 0;
  text-align: center;
}

/* Footer */
.footer {
  background: #000;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(90, 240, 225, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  width: 24px;
  height: 24px;
}

.footer-brand-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  color: var(--color-grey);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-aqua);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(90, 240, 225, 0.1);
}

.footer-copyright {
  color: var(--color-grey-dark);
  font-size: 14px;
}

/* Wave Ripple Animation */
@keyframes waveRipple {
    0% {
        transform: translateX(-100%);
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.wave-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(90, 240, 225, 0.3), transparent);
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.wave-ripple.animating {
    animation: waveRipple 2.5s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    max-width: 600px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .step-content {
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .integrations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    min-height: 60px;
    padding: 12px 20px;
    gap: 16px;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(90, 240, 225, 0.1);
    z-index: 1000;
  }
  
  .nav-logo {
    flex-shrink: 0;
  }
  
  .nav-links {
    display: none;
  }
  
  /* Mobile Dropdown Styles */
  .mobile-nav-dropdown {
    position: relative;
    display: block;
  }
  
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(90, 240, 225, 0.1);
    border: 1px solid rgba(90, 240, 225, 0.3);
    border-radius: 8px;
    color: var(--color-aqua);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .mobile-nav-toggle:hover {
    background: rgba(90, 240, 225, 0.2);
    border-color: rgba(90, 240, 225, 0.5);
    transform: translateY(-1px);
  }
  
  .mobile-nav-toggle.active {
    background: rgba(90, 240, 225, 0.2);
    border-color: var(--color-aqua);
  }
  
  .nav-toggle-text {
    font-weight: 500;
  }
  
  .nav-toggle-icon {
    transition: transform 0.3s ease;
  }
  
  .mobile-nav-toggle.active .nav-toggle-icon {
    transform: rotate(180deg);
  }
  
  .mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 80px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
  }
  
  .mobile-nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
  }
  
  .mobile-nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .mobile-nav-link {
    display: block;
    padding: 20px 30px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: 12px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.02);
  }
  
  .mobile-nav-link:hover {
    color: var(--color-aqua);
    background: rgba(90, 240, 225, 0.15);
    border-left-color: var(--color-aqua);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 240, 225, 0.2);
  }
  
  .mobile-nav-link:active {
    background: rgba(90, 240, 225, 0.2);
    transform: scale(0.95);
  }
  
  
  
  .nav-container #navLoginBtn {
    display: none !important;
  }
  
  .btn-glass#navLoginBtn {
    display: none !important;
  }
  
  
  .nav-link {
    padding: 8px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--color-grey);
    text-decoration: none;
    border-radius: 6px;
    margin: 0 2px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .nav-link:hover {
    color: var(--color-aqua);
    background: rgba(90, 240, 225, 0.1);
  }
  
  .nav-link:active {
    background: rgba(90, 240, 225, 0.15);
    transform: scale(0.95);
  }
  
  .hero {
    padding: 60px 0 40px;
    min-height: auto;
  }
  
  .hero-container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-text-section {
    max-width: 100%;
    margin: 0;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  
  .hero-download-section {
    margin-bottom: 40px;
  }
  
  .hero-visual-elements {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 16px;
    margin: 0;
  }
  
  /* New hero elements mobile */
  .hero-value-props {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    margin: 24px 0;
  }
  
  .value-arrow {
    transform: rotate(90deg);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-indicators {
    gap: 16px;
  }
  
  .hero-visual-demo {
    padding: 20px;
    margin: 40px auto 0;
  }
  
  .demo-container {
    flex-direction: column;
    gap: 16px;
  }
  
  .demo-text-input,
  .demo-video-preview {
    min-width: 100%;
  }
  
  .social-proof-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 16px;
  }
  
  /* Try it out mobile */
  .try-it-container {
    padding: 20px 16px;
  }
  
  .input-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-generate {
    width: 100%;
    min-width: auto;
  }
  
  /* Video gallery mobile */
  .hero-video-gallery {
    margin: 30px auto 0;
    max-width: 100%;
  }
  
  .gallery-title {
    font-size: 16px;
  }
  
  .gallery-subtitle {
    font-size: 13px;
  }
  
  .gallery-scroll {
    padding: 16px 20px 16px 20px;
    padding-right: 40px;
    gap: 12px;
  }
  
  .video-card {
    width: 220px;
  }
  
  .video-info {
    padding: 12px;
  }
  
  .brand-name {
    font-size: 13px;
  }
  
  .video-title {
    font-size: 12px;
  }
  
  .stat-item {
    padding: 16px 8px;
    text-align: center;
  }
  
  .stat-number {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 11px;
    line-height: 1.3;
  }
  
  
  .btn-download-large {
    padding: 16px 24px !important;
    font-size: 16px !important;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    text-align: center;
  }
  
  .download-meta {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .app-badges {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    justify-content: center;
  }
  
  .badge {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .problem-title {
    font-size: 28px;
    white-space: normal;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cta-buttons .btn-glass {
    width: 100%;
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-container {
    position: sticky;
    top: 0;
    padding: 12px 16px;
    gap: 12px;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(90, 240, 225, 0.1);
    z-index: 1000;
  }
  
  .nav-logo .nav-brand {
    font-size: 18px;
  }
  
  .nav-logo .nav-icon {
    width: 28px;
    height: 28px;
  }
  
  
  .nav-container #navLoginBtn {
    display: none !important;
  }
  
  .btn-glass#navLoginBtn {
    display: none !important;
  }
  
  .mobile-nav-toggle {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .mobile-nav-link {
    padding: 18px 25px;
    font-size: 16px;
    max-width: 280px;
  }
  
  .hero {
    padding: 40px 0 30px;
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .hero-content {
    gap: 28px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0;
  }
  
  .stat-item {
    padding: 12px 8px;
  }
  
  /* New hero elements small mobile */
  .hero-value-props {
    padding: 12px;
    margin: 20px 0;
  }
  
  .value-prop {
    font-size: 12px;
  }
  
  .value-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .trust-indicators {
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .trust-item {
    font-size: 12px;
  }
  
  .hero-visual-demo {
    padding: 16px;
    margin: 30px auto 0;
  }
  
  .demo-text {
    font-size: 12px;
    padding: 12px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .social-proof-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0;
  }
  
  /* Try it out small mobile */
  .try-it-container {
    padding: 16px 12px;
  }
  
  .url-input {
    font-size: 14px;
    padding: 12px 14px;
  }
  
  .btn-generate {
    font-size: 14px;
    padding: 12px 18px;
  }
  
  /* Video gallery small mobile */
  .hero-video-gallery {
    margin: 24px auto 0;
    max-width: 100%;
  }
  
  .gallery-title {
    font-size: 15px;
  }
  
  .gallery-subtitle {
    font-size: 12px;
  }
  
  .gallery-scroll {
    padding: 12px 16px 12px 16px;
    padding-right: 30px;
    gap: 10px;
  }
  
  .video-card {
    width: 180px;
  }
  
  .video-info {
    padding: 10px;
  }
  
  .brand-name {
    font-size: 12px;
  }
  
  .video-title {
    font-size: 11px;
  }
  
  .stat-number {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 10px;
    line-height: 1.2;
  }
  
  .btn-download-large {
    padding: 14px 20px !important;
    font-size: 14px !important;
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
  
  .download-meta {
    font-size: 12px;
    margin-bottom: 16px;
  }
  
  .app-badges {
    flex-direction: column;
    gap: 8px;
  }
  
  .badge {
    padding: 8px 12px;
    font-size: 11px;
  }
  
  .problem-title {
    font-size: 20px;
    line-height: 1.3;
    white-space: normal;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .cta-title {
    font-size: 22px;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .app-window {
    border-radius: 8px;
  }
  
  .window-content {
    padding: 30px 20px;
  }
}

/* Authentication Modal Styles */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.auth-modal.show {
  opacity: 1;
  visibility: visible;
}

.auth-modal-content {
  background: var(--color-dark);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius-large);
  max-width: 480px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.auth-modal.show .auth-modal-content {
  transform: scale(1) translateY(0);
}

.auth-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 28px 24px 28px;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
}

.auth-modal-header h3 {
  color: var(--color-aqua);
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.close-auth-modal {
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-auth-modal:hover {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
}

.auth-modal-body {
  padding: 32px 32px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group label {
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
}

.form-group input {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 16px 18px;
  color: var(--color-white);
  font-size: 16px;
  transition: all 0.2s ease;
  min-height: 52px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-aqua);
  box-shadow: 0 0 0 3px rgba(90, 240, 225, 0.1);
}

.form-group input::placeholder {
  color: var(--color-grey-dark);
}

/* Form validation states */
.form-group input:invalid {
  border-color: rgba(239, 68, 68, 0.5);
}

.form-group input:invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.error input {
  border-color: #ef4444;
}

.form-group.error label {
  color: #ef4444;
}

.form-group .error-message {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.btn-auth-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius);
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  margin-top: 12px;
}

.btn-auth-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-auth-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-auth-secondary {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: var(--border-radius);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-auth-secondary:hover {
  background: rgba(90, 240, 225, 0.2);
  border-color: var(--color-aqua);
}

.auth-switch {
  text-align: center;
  color: var(--color-grey);
  margin: 32px 0 0 0;
  line-height: 1.5;
}

.auth-switch a {
  color: var(--color-aqua);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.auth-switch a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.auth-forgot {
  text-align: center;
  margin: 20px 0 0 0;
}

.auth-forgot a {
  color: var(--color-grey-dark);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.auth-forgot a:hover {
  color: var(--color-aqua);
}

.auth-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.auth-success h4 {
  color: var(--color-aqua);
  margin-bottom: 12px;
  font-size: 20px;
}

.auth-success p {
  color: var(--color-grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

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

/* Error Messages */
.auth-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  color: #ef4444;
  font-size: 14px;
  margin-bottom: 16px;
}

.auth-success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  color: #10b981;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Mobile Responsive for Auth Modal */
@media (max-width: 768px) {
  .auth-modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .auth-modal-header,
  .auth-modal-body {
    padding: 24px 20px;
  }
  
  .auth-form {
    gap: 44px;
  }
  
  .form-group {
    gap: 14px;
    margin-bottom: 14px;
  }
}

/* Video Completion Modal Styles */
.video-completion-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-completion-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-completion-content {
  background: var(--color-dark);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius-large);
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-completion-modal.show .video-completion-content {
  transform: scale(1) translateY(0);
}

.video-completion-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 32px 24px 32px;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
  position: relative;
}

.video-completion-header h2 {
  color: var(--color-aqua);
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 600;
}

.video-completion-header p {
  color: var(--color-grey);
  margin: 0;
  font-size: 16px;
}

.close-completion-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-completion-modal:hover {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
}

.video-completion-body {
  padding: 32px;
}

.video-preview-container {
  margin-bottom: 32px;
}

.video-preview {
  width: 100%;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-preview video {
  max-width: 100%;
  max-height: 400px;
  border-radius: var(--border-radius);
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.play-button {
  font-size: 48px;
  color: var(--color-aqua);
}

.video-placeholder p {
  color: var(--color-white);
  font-size: 18px;
  margin: 0;
}

.video-placeholder small {
  color: var(--color-grey);
  font-size: 14px;
}

.video-completion-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-completion-actions .btn-primary,
.video-completion-actions .btn-secondary,
.video-completion-actions .btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.video-completion-actions .btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
}

.video-completion-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.video-completion-actions .btn-secondary {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
  border: 1px solid rgba(90, 240, 225, 0.3);
}

.video-completion-actions .btn-secondary:hover {
  background: rgba(90, 240, 225, 0.2);
  border-color: var(--color-aqua);
}

.video-completion-actions .btn-outline {
  background: transparent;
  color: var(--color-aqua);
  border: 1px solid rgba(90, 240, 225, 0.3);
}

.video-completion-actions .btn-outline:hover {
  background: rgba(90, 240, 225, 0.1);
  border-color: var(--color-aqua);
}

/* Responsive design for video completion modal */
@media (max-width: 768px) {
  .video-completion-content {
    width: 95%;
    margin: 20px;
  }
  
  .video-completion-header,
  .video-completion-body {
    padding: 24px 20px;
  }
  
  .video-completion-actions {
    flex-direction: column;
  }
  
  .video-completion-actions .btn-primary,
  .video-completion-actions .btn-secondary,
  .video-completion-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* Video Generation Screen Styles */
.video-generation-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark);
  z-index: 1000;
  overflow-y: auto;
  display: none;
}

.video-generation-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Enhanced Header */
.video-generation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.credit-balance {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(90, 240, 225, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(90, 240, 225, 0.3);
}

.credit-icon {
  font-size: 1.2rem;
}

.credit-amount {
  font-weight: 600;
  color: var(--color-aqua);
}

.btn-buy-credits {
  background: var(--color-aqua);
  color: var(--color-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-buy-credits:hover {
  background: #4dd4c7;
  transform: translateY(-1px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-info {
  color: var(--color-grey);
  font-size: 0.9rem;
}

.btn-signout {
  background: transparent;
  color: var(--color-grey);
  border: 1px solid var(--color-grey);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-signout:hover {
  background: var(--color-grey);
  color: var(--color-dark);
}

/* Main Content Area */
.video-generation-main {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Tab Navigation */
.creation-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--color-grey);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.tab-btn.active {
  background: var(--color-aqua);
  color: var(--color-dark);
}

.tab-icon {
  font-size: 1.1rem;
}

/* Tab Content */
.tab-content {
  min-height: 500px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Creation Interface */
.creation-interface {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.creation-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

.creation-left {
  min-height: 500px;
}

.creation-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card Components */
.input-card,
.settings-card,
.generate-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.input-card:hover,
.settings-card:hover,
.generate-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.5rem 0;
}

.card-header p {
  color: var(--color-grey);
  margin: 0;
  font-size: 0.9rem;
}

.card-content {
  padding: 1.5rem;
}

/* Form Elements */
.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-aqua);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(90, 240, 225, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.form-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.char-count {
  color: var(--color-grey);
  font-weight: 500;
}

.help-text {
  color: var(--color-grey);
}

/* Settings Grid */
.settings-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.setting-group {
  display: flex;
  flex-direction: column;
}

.setting-group label {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.setting-group select {
  padding: 0.75rem;
  font-size: 0.95rem;
}

/* Generate Button */
.btn-generate-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--color-aqua), #4dd4c7);
  color: var(--color-dark);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(90, 240, 225, 0.3);
  margin-bottom: 1rem;
}

.btn-generate-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(90, 240, 225, 0.4);
}

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

.btn-generate-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--color-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Generation Details */
.generation-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-grey);
  font-size: 0.9rem;
}

.detail-icon {
  font-size: 1rem;
}

.detail-text {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .creation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .creation-right {
    order: -1;
  }
}

@media (max-width: 768px) {
  .creation-interface {
    padding: 0 0.5rem;
  }
  
  .card-header,
  .card-content {
    padding: 1rem;
  }
  
  .creation-grid {
    gap: 1rem;
  }
}

.generation-info p {
  margin: 0.25rem 0;
}

/* Projects Interface */
.projects-interface {
  max-width: 1000px;
  margin: 0 auto;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.projects-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
  border-radius: 8px;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: var(--color-grey);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.filter-btn.active {
  background: var(--color-aqua);
  color: var(--color-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Templates Interface */
.templates-interface {
  max-width: 1000px;
  margin: 0 auto;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.template-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.template-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.template-preview {
  margin-bottom: 1rem;
}

.template-thumbnail {
  width: 80px;
  height: 80px;
  background: var(--color-aqua);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.template-card h4 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.template-card p {
  color: var(--color-grey);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.btn-template {
  background: var(--color-aqua);
  color: var(--color-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-template:hover {
  background: #4dd4c7;
  transform: translateY(-1px);
}

/* Settings Interface */
.settings-interface {
  max-width: 600px;
  margin: 0 auto;
}

.settings-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.settings-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.settings-section h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 600;
}


/* Generation Status Styles */
.generation-status {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.status-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.status-text h4 {
  color: var(--color-white);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.status-text p {
  color: var(--color-grey);
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.status-content.success .status-icon {
  color: #4caf50;
}

.status-content.error .status-icon {
  color: #f44336;
}

.btn-download {
  background: var(--color-aqua);
  color: var(--color-dark);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-download:hover {
  background: #4dd4c7;
  transform: translateY(-1px);
}

/* Project Card Styles */
.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.project-preview {
  margin-bottom: 1rem;
}

.project-thumbnail {
  width: 100%;
  height: 120px;
  background: var(--color-aqua);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-dark);
}

.project-info h4 {
  color: var(--color-white);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.project-info p {
  color: var(--color-grey);
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
}

.project-actions {
  display: flex;
  gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-generation-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .header-center {
    order: -1;
  }
  
  .creation-tabs {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1;
    min-width: 120px;
  }
  
  .method-cards {
    grid-template-columns: 1fr;
  }
  
  .customization-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .projects-controls {
    justify-content: space-between;
  }
}

.video-generation-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

/* Header */
.video-generation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: rgba(12, 12, 12, 0.95);
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
  backdrop-filter: blur(10px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  width: 32px;
  height: 32px;
}

.header-brand {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-info {
  color: var(--color-white);
  font-weight: 500;
}

.btn-signout {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--border-radius);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-signout:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

/* Main Content */
.video-generation-content {
  flex: 1;
  display: flex;
  gap: 32px;
  padding: 32px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  min-height: calc(100vh - 80px);
}

/* Progress Section */
.progress-section {
  flex: 1;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: var(--border-radius-large);
  padding: 32px;
}

.progress-header {
  text-align: center;
  margin-bottom: 40px;
}

.progress-header h2 {
  color: var(--color-aqua);
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 600;
}

.progress-header p {
  color: var(--color-grey);
  font-size: 18px;
}

/* Progress Timeline */
.progress-timeline {
  margin-bottom: 40px;
}

.timeline-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
}

.timeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 800px;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  max-width: 180px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.timeline-step.completed .step-number {
  background: #10b981;
  color: white;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.timeline-step.completed .step-number::after {
  content: '✓';
  font-size: 20px;
  font-weight: bold;
}

.timeline-step.active .step-number {
  background: var(--color-aqua);
  color: var(--color-dark);
  box-shadow: 0 0 20px rgba(90, 240, 225, 0.4);
  animation: pulse 2s infinite;
}

.timeline-step.pending .step-number {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-grey);
  border: 2px solid rgba(90, 240, 225, 0.3);
}

.step-content {
  max-width: 160px;
}

.step-content h4 {
  color: var(--color-white);
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
}

.step-content p {
  color: var(--color-grey);
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.timeline-connector {
  flex: 1;
  height: 2px;
  background: rgba(90, 240, 225, 0.2);
  margin: 0 16px;
  position: relative;
  top: -24px;
  z-index: 1;
}

.timeline-connector.completed {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.timeline-connector.active {
  background: var(--color-aqua);
  box-shadow: 0 0 10px rgba(90, 240, 225, 0.3);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 20px rgba(90, 240, 225, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(90, 240, 225, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(90, 240, 225, 0.4);
  }
}

/* Progress Bar */
.progress-bar-container {
  margin-bottom: 24px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(90, 240, 225, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 4px;
  transition: width 0.5s ease;
  width: 0%;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#progressPercent {
  color: var(--color-aqua);
  font-weight: 600;
  font-size: 18px;
}

#progressStatus {
  color: var(--color-grey);
  font-size: 14px;
}

/* Time Estimate */
.time-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-grey);
  font-size: 14px;
}

.time-estimate svg {
  color: var(--color-aqua);
}

/* Result Section */
.result-section {
  flex: 1;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: var(--border-radius-large);
  padding: 32px;
}

.result-header {
  text-align: center;
  margin-bottom: 32px;
}

.result-header h2 {
  color: var(--color-aqua);
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 600;
}

.result-header p {
  color: var(--color-grey);
  font-size: 18px;
}

.video-result-container {
  text-align: center;
}

.video-preview {
  background: #000;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  overflow: hidden;
}

.video-preview video {
  width: 100%;
  height: auto;
  max-height: 400px;
}

.video-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  border: none;
  border-radius: var(--border-radius);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: var(--border-radius);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(90, 240, 225, 0.2);
  border-color: var(--color-aqua);
}




/* Mobile Responsive for Video Generation Screen */
@media (max-width: 1024px) {
  .video-generation-content {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }
  
  
  .progress-section,
  .result-section {
    order: 1;
  }
  
  .video-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .video-generation-header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
  }
  
  .header-right {
    width: 100%;
    justify-content: space-between;
  }
  
  .video-generation-content {
    padding: 16px;
  }
  
  .progress-section,
  .result-section {
    padding: 20px;
  }
  
  .progress-header h2 {
    font-size: 24px;
  }
  
  .result-header h2 {
    font-size: 24px;
  }
  
  .timeline-steps {
    min-width: 600px;
    gap: 8px;
  }
  
  .timeline-step {
    max-width: 120px;
  }
  
  .step-content h4 {
    font-size: 12px;
  }
  
  .step-content p {
    font-size: 10px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Vibe Code Modal Styles */
.vibe-code-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.vibe-code-modal.show {
  opacity: 1;
  visibility: visible;
}

.vibe-code-modal-content {
  background: var(--color-dark);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius-large);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.vibe-code-modal.show .vibe-code-modal-content {
  transform: scale(1) translateY(0);
}

.vibe-code-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 20px 32px;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
}

.vibe-code-modal-header h3 {
  color: var(--color-aqua);
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.close-vibe-code-modal {
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-vibe-code-modal:hover {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
}

.vibe-code-modal-body {
  padding: 32px;
}

.vibe-code-description {
  color: var(--color-grey);
  margin-bottom: 32px;
  font-size: 16px;
  text-align: center;
}

.vibe-code-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vibe-option-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vibe-option-group h4 {
  color: var(--color-white);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.option-btn {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
}

.option-btn:hover {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.05);
  transform: translateY(-2px);
}

.option-btn.selected {
  background: rgba(90, 240, 225, 0.15);
  border-color: var(--color-aqua);
  color: var(--color-aqua);
  box-shadow: 0 0 20px rgba(90, 240, 225, 0.2);
}

.option-icon {
  font-size: 16px;
}

.option-text {
  font-weight: 500;
}

.custom-modification {
  width: 100%;
}

.custom-modification textarea {
  width: 100%;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 16px;
  color: var(--color-white);
  font-size: 14px;
  font-family: var(--font-primary);
  resize: vertical;
  transition: all 0.2s ease;
}

.custom-modification textarea:focus {
  outline: none;
  border-color: var(--color-aqua);
  box-shadow: 0 0 0 3px rgba(90, 240, 225, 0.1);
}

.custom-modification textarea::placeholder {
  color: var(--color-grey-dark);
}

.selected-modifications {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(90, 240, 225, 0.1);
}

.selected-modifications h4 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.modification-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 40px;
  align-items: center;
}

.modification-tag {
  background: rgba(90, 240, 225, 0.15);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: 20px;
  padding: 6px 12px;
  color: var(--color-aqua);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modification-tag .remove-tag {
  background: none;
  border: none;
  color: var(--color-aqua);
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  font-size: 14px;
  transition: color 0.2s ease;
}

.modification-tag .remove-tag:hover {
  color: #ef4444;
}

.no-modifications {
  color: var(--color-grey-dark);
  font-style: italic;
  font-size: 14px;
}

.vibe-code-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(90, 240, 225, 0.1);
}

.vibe-code-actions .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.vibe-code-actions .btn-primary:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Mobile Responsive for Vibe Code Modal */
@media (max-width: 768px) {
  .vibe-code-modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .vibe-code-modal-header,
  .vibe-code-modal-body {
    padding: 20px;
  }
  
  .option-buttons {
    flex-direction: column;
  }
  
  .option-btn {
    min-width: auto;
    width: 100%;
  }
  
  .vibe-code-actions {
    flex-direction: column;
  }
}

/* ============================================
   ONBOARDING MODAL STYLES
   ============================================ */

.onboarding-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.onboarding-modal.show {
  opacity: 1;
  visibility: visible;
}

.onboarding-modal-content {
  background: var(--color-dark);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius-large);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.onboarding-modal.show .onboarding-modal-content {
  transform: scale(1) translateY(0);
}

/* Progress Indicator */
.onboarding-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.progress-step.active {
  opacity: 1;
}

.progress-step.completed {
  opacity: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(90, 240, 225, 0.1);
  border: 2px solid rgba(90, 240, 225, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey);
  font-weight: 600;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: var(--color-aqua);
  border-color: var(--color-aqua);
  color: var(--color-dark);
  box-shadow: 0 0 20px rgba(90, 240, 225, 0.4);
}

.progress-step.completed .step-circle {
  background: #10b981;
  border-color: #10b981;
  color: white;
}

.progress-step.completed .step-circle::before {
  content: '✓';
}

.progress-step span {
  font-size: 12px;
  color: var(--color-grey);
  font-weight: 500;
}

.progress-step.active span {
  color: var(--color-aqua);
}

.progress-line {
  width: 80px;
  height: 2px;
  background: rgba(90, 240, 225, 0.2);
  margin: 0 16px;
  margin-bottom: 28px;
}

/* Onboarding Steps */
.onboarding-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.onboarding-step.active {
  display: block;
}

.onboarding-step h2 {
  color: var(--color-aqua);
  font-size: 32px;
  margin-bottom: 8px;
  text-align: center;
}

.step-description {
  color: var(--color-grey);
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}

/* Style Selection */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.style-card {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.style-card:hover {
  border-color: var(--color-aqua);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(90, 240, 225, 0.2);
}

.style-card.selected {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.1);
  box-shadow: 0 0 30px rgba(90, 240, 225, 0.3);
}

.style-preview {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.modern-preview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modern-preview .preview-bars {
  display: flex;
  gap: 8px;
}

.modern-preview .bar {
  width: 4px;
  height: 60px;
  background: white;
  opacity: 0.8;
  animation: barPulse 1.5s ease-in-out infinite;
}

.modern-preview .bar:nth-child(2) {
  animation-delay: 0.2s;
}

.modern-preview .bar:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes barPulse {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

.bold-preview {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bold-preview .shape {
  width: 40px;
  height: 40px;
  background: white;
  opacity: 0.8;
  position: absolute;
  animation: shapeRotate 3s ease-in-out infinite;
}

.bold-preview .shape:nth-child(1) {
  border-radius: 50%;
  top: 20%;
  left: 20%;
}

.bold-preview .shape:nth-child(2) {
  border-radius: 8px;
  bottom: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

@keyframes shapeRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.elegant-preview {
  background: linear-gradient(135deg, #434343 0%, #000000 100%);
}

.elegant-preview .preview-gradient {
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  border-radius: 8px;
  animation: elegantGlow 2s ease-in-out infinite;
}

@keyframes elegantGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.playful-preview {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.playful-preview .circle {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  position: absolute;
  animation: circleBounce 2s ease-in-out infinite;
}

.playful-preview .circle:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.playful-preview .circle:nth-child(2) {
  top: 50%;
  right: 30%;
  animation-delay: 0.7s;
}

.playful-preview .circle:nth-child(3) {
  bottom: 20%;
  left: 50%;
  animation-delay: 1.4s;
}

@keyframes circleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.style-card h4 {
  color: var(--color-white);
  margin-bottom: 8px;
  font-size: 16px;
}

.style-card p {
  color: var(--color-grey);
  font-size: 13px;
  margin: 0;
}

/* Color Selection */
.color-selection {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.color-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.color-group label {
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.color-picker-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.color-picker-group input[type="color"] {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(90, 240, 225, 0.3);
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
}

.color-picker-group input[type="text"] {
  flex: 1;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 14px 16px;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 14px;
}

.color-presets {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.preset-color {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.preset-color:hover {
  transform: scale(1.1);
  border-color: var(--color-aqua);
}

.color-preview-box {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 24px;
}

.color-preview-box h4 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 14px;
}

.preview-content {
  display: flex;
  gap: 16px;
}

.preview-element {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.preview-element.primary {
  background: var(--color-aqua);
}

.preview-element.accent {
  background: var(--color-cobalt);
}

/* Branding Section */
.branding-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.logo-upload-area {
  background: rgba(26, 26, 26, 0.8);
  border: 2px dashed rgba(90, 240, 225, 0.3);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.logo-upload-area:hover {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.05);
}

.logo-upload-prompt svg {
  color: var(--color-aqua);
  margin-bottom: 16px;
}

.logo-upload-prompt h4 {
  color: var(--color-white);
  margin-bottom: 8px;
  font-size: 18px;
}

.logo-upload-prompt p {
  color: var(--color-grey);
  margin-bottom: 20px;
  font-size: 14px;
}

.btn-upload {
  background: rgba(90, 240, 225, 0.15);
  border: 1px solid rgba(90, 240, 225, 0.3);
  color: var(--color-aqua);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-upload:hover {
  background: rgba(90, 240, 225, 0.25);
  border-color: var(--color-aqua);
}

.logo-preview {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-preview img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

.remove-logo {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.remove-logo:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Details Section */
.details-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.detail-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-group label {
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.duration-options {
  display: flex;
  gap: 12px;
}

.duration-btn {
  flex: 1;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(90, 240, 225, 0.2);
  color: var(--color-white);
  padding: 16px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.duration-btn:hover {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.05);
}

.duration-btn.selected {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.15);
  color: var(--color-aqua);
}

.aspect-ratio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.aspect-card {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aspect-card:hover {
  border-color: var(--color-aqua);
  transform: translateY(-2px);
}

.aspect-card.selected {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.15);
}

.ratio-visual {
  width: 80px;
  height: 60px;
  margin: 0 auto 12px;
  background: rgba(90, 240, 225, 0.2);
  border-radius: 4px;
}

.ratio-visual.landscape {
  width: 80px;
  height: 45px;
}

.ratio-visual.portrait {
  width: 35px;
  height: 60px;
}

.ratio-visual.square {
  width: 60px;
  height: 60px;
}

.aspect-card span {
  display: block;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 4px;
}

.aspect-card small {
  color: var(--color-grey);
  font-size: 12px;
}

#musicStyle {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 14px 16px;
  color: var(--color-white);
  font-size: 14px;
  width: 100%;
}

/* Step Actions */
.step-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(90, 240, 225, 0.1);
}

/* Responsive Onboarding */
@media (max-width: 768px) {
  .onboarding-modal-content {
    padding: 24px;
  }
  
  .style-grid {
    grid-template-columns: 1fr;
  }
  
  .branding-section {
    grid-template-columns: 1fr;
  }
  
  .aspect-ratio-grid {
    grid-template-columns: 1fr;
  }
  
  .onboarding-progress {
    overflow-x: auto;
  }
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */

.user-dashboard {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark);
  z-index: 1000;
  overflow-y: auto;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.dashboard-container {
  min-height: 100vh;
  width: 100%;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: rgba(12, 12, 12, 0.95);
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dashboard-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Create New Section */
.create-new-section {
  width: 100%;
  position: relative;
  z-index: 1;
}

.create-card {
  background: linear-gradient(135deg, rgba(90, 240, 225, 0.1) 0%, rgba(62, 92, 243, 0.1) 100%);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius-large);
  padding: 48px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  isolation: isolate;
}

.create-card:hover {
  border-color: var(--color-aqua);
  box-shadow: 0 8px 32px rgba(90, 240, 225, 0.2);
}

.create-icon {
  margin: 0 auto 24px;
  width: 80px;
  height: 80px;
  background: rgba(90, 240, 225, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-icon svg {
  color: var(--color-aqua);
}

.create-card h2 {
  color: var(--color-aqua);
  font-size: 32px;
  margin-bottom: 8px;
}

.create-card > p {
  color: var(--color-grey);
  font-size: 18px;
  margin-bottom: 32px;
}

.prompt-input-dashboard {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.dashboard-textarea {
  width: 100%;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 16px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 16px;
  resize: vertical;
  min-height: 100px;
}

.dashboard-textarea:focus {
  outline: none;
  border-color: var(--color-aqua);
  box-shadow: 0 0 0 3px rgba(90, 240, 225, 0.1);
}

/* Dashboard Section */
.dashboard-section {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: var(--border-radius-large);
  padding: 32px;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header h3 {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
}

.section-filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(90, 240, 225, 0.2);
  color: var(--color-grey);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--color-aqua);
  color: var(--color-aqua);
}

.filter-btn.active {
  background: rgba(90, 240, 225, 0.15);
  border-color: var(--color-aqua);
  color: var(--color-aqua);
}

.btn-link {
  background: none;
  border: none;
  color: var(--color-aqua);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

.btn-link:hover {
  color: var(--color-white);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.empty-state svg {
  color: var(--color-grey-dark);
  margin-bottom: 24px;
}

.empty-state h4 {
  color: var(--color-white);
  font-size: 20px;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--color-grey);
  font-size: 14px;
}

.project-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  border-color: var(--color-aqua);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(90, 240, 225, 0.2);
}

.project-thumbnail {
  width: 100%;
  height: 160px;
  background: rgba(90, 240, 225, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.project-thumbnail img,
.project-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video thumbnail specific styles */
.project-video-thumbnail {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.project-video-thumbnail:hover {
  transform: scale(1.02);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.3s ease;
  pointer-events: none;
}

.project-thumbnail:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  color: var(--color-white);
  font-size: 16px;
  margin-left: 2px; /* Slight offset to center the triangle */
}

/* Processing thumbnail styles */
.processing-thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-aqua);
  font-size: 14px;
  gap: 12px;
}

.processing-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(90, 240, 225, 0.2);
  border-top: 3px solid var(--color-aqua);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.video-expired-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--color-grey);
}

.expired-icon {
  font-size: 32px;
  margin-bottom: 8px;
  opacity: 0.7;
}

.expired-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   VIDEO EDITOR STYLES
   ============================================ */

.video-editor-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-editor-modal.show {
  opacity: 1;
}

.video-editor-content {
  background: var(--color-dark);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: 20px;
  width: 95%;
  max-width: 1400px;
  height: 90vh;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
}

.video-editor-header h2 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.close-editor {
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-editor:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.video-editor-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Video Preview Panel */
.video-preview-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid rgba(90, 240, 225, 0.1);
}

.video-player {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.video-player video {
  width: 100%;
  height: 100%;
  max-height: 400px;
  border-radius: 8px;
}

.timeline-panel {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.timeline-header span {
  color: var(--color-white);
  font-weight: 500;
}

.timeline-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-grey);
  font-size: 14px;
}

.timeline-controls button {
  background: rgba(90, 240, 225, 0.1);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: 6px;
  color: var(--color-white);
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-controls button:hover {
  background: rgba(90, 240, 225, 0.2);
}

.timeline-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  overflow: visible;
}

.timeline-marker {
  position: absolute;
  top: -4px;
  width: 8px;
  height: 16px;
  background: var(--color-aqua);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-marker:hover {
  background: var(--color-white);
  transform: scale(1.2);
}

/* Edit Panel */
.edit-panel {
  width: 400px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
}

.edit-tabs {
  display: flex;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
}

.edit-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--color-grey);
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.edit-tab.active {
  color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.1);
  border-bottom: 2px solid var(--color-aqua);
}

.edit-tab:hover:not(.active) {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}

.edit-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.edit-pane {
  display: none;
}

.edit-pane.active {
  display: block;
}

.edit-pane h3 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.edit-pane h4 {
  color: var(--color-white);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Text Elements */
.text-elements {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-element-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: 8px;
  padding: 16px;
}

.text-element-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.text-content {
  color: var(--color-white);
  font-weight: 500;
  font-style: italic;
}

.text-timestamp {
  color: var(--color-aqua);
  font-size: 12px;
  background: rgba(90, 240, 225, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.text-element-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.text-edit-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: 6px;
  color: var(--color-white);
  padding: 8px 12px;
  font-size: 14px;
}

.text-edit-input:focus {
  outline: none;
  border-color: var(--color-aqua);
  background: rgba(255, 255, 255, 0.15);
}

.btn-small {
  background: var(--gradient-brand);
  border: none;
  border-radius: 6px;
  color: var(--color-white);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 240, 225, 0.3);
}

/* Color Palette */
.color-palette {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.color-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(90, 240, 225, 0.1);
}

.color-preview {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.color-name {
  color: var(--color-white);
  font-weight: 500;
  flex: 1;
}

.color-edit-input {
  width: 40px;
  height: 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: none;
}

/* Animation Controls */
.animation-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.animation-controls label {
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.animation-controls select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: 6px;
  color: var(--color-white);
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
}

.animation-controls select:focus {
  outline: none;
  border-color: var(--color-aqua);
}

/* Chat Interface */
.chat-messages {
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(90, 240, 225, 0.1);
  position: relative;
  z-index: 1;
}

.user-message,
.ai-message {
  max-width: 80%;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.user-message {
  align-self: flex-end;
}

.user-message .message-content {
  background: var(--gradient-brand);
  color: var(--color-white);
  padding: 12px 16px;
  border-radius: 16px 16px 4px 16px;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.ai-message .message-content {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  border: 1px solid rgba(90, 240, 225, 0.2);
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.chat-input {
  display: flex;
  gap: 8px;
}

.chat-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: 6px;
  color: var(--color-white);
  padding: 12px;
  font-size: 14px;
}

.chat-input input:focus {
  outline: none;
  border-color: var(--color-aqua);
}

.chat-input button {
  background: var(--gradient-brand);
  border: none;
  border-radius: 6px;
  color: var(--color-white);
  padding: 12px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-input button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 240, 225, 0.3);
}

/* Edit Actions */
.edit-actions {
  padding: 20px 24px;
  border-top: 1px solid rgba(90, 240, 225, 0.1);
  display: flex;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 240, 225, 0.3);
}

.btn-primary:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-grey);
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(90, 240, 225, 0.3);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(90, 240, 225, 0.1);
  border-color: var(--color-aqua);
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Loading States */
.loading-text {
  color: var(--color-grey);
  font-style: italic;
  text-align: center;
  padding: 20px;
}

.no-elements {
  color: var(--color-grey);
  text-align: center;
  padding: 20px;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .video-editor-content {
    width: 98%;
    height: 95vh;
  }
  
  .edit-panel {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .video-editor-body {
    flex-direction: column;
  }
  
  .video-preview-panel {
    border-right: none;
    border-bottom: 1px solid rgba(90, 240, 225, 0.1);
  }
  
  .edit-panel {
    width: 100%;
    height: 50vh;
  }
  
  .edit-tabs {
    flex-wrap: wrap;
  }
  
  .edit-tab {
    flex: none;
    min-width: 80px;
  }
}

.project-info h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 8px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-grey);
  font-size: 12px;
}

.project-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.project-status.completed {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.project-status.processing {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

/* Dashboard Stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--color-aqua);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: rgba(90, 240, 225, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-info h4 {
  color: var(--color-aqua);
  font-size: 28px;
  margin-bottom: 4px;
}

.stat-info p {
  color: var(--color-grey);
  font-size: 14px;
  margin: 0;
}

/* Brand Settings Preview */
.brand-settings-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.brand-preview-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-preview-item label {
  color: var(--color-grey);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-preview-item span {
  color: var(--color-white);
  font-size: 16px;
}

.color-swatches {
  display: flex;
  gap: 12px;
}

.swatch {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.logo-thumbnail {
  width: 100px;
  height: 100px;
  background: rgba(90, 240, 225, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-thumbnail span {
  color: var(--color-grey-dark);
  font-size: 12px;
  text-align: center;
  padding: 8px;
}

/* Dashboard Progress Bar */
.dashboard-progress-bar {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 24px;
  margin: 24px 0;
  backdrop-filter: blur(10px);
  animation: slideInFromTop 0.5s ease-out;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.progress-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 16px;
}

.progress-title svg {
  color: var(--color-aqua);
  animation: pulse 2s infinite;
}

.progress-percentage {
  color: var(--color-aqua);
  font-weight: 700;
  font-size: 18px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

.progress-bar-container {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.progress-bar-bg {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: 12px;
  height: 12px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.progress-bar-fill {
  background: linear-gradient(90deg, var(--color-aqua), #00D4AA);
  height: 100%;
  border-radius: 12px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.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;
  z-index: 3;
  pointer-events: none;
}

.progress-bar-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, var(--color-aqua), #00D4AA);
  border-radius: 14px;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.progress-bar-fill.active + .progress-bar-glow {
  opacity: 0.3;
}

.progress-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-grey);
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.progress-dots {
  display: flex;
  gap: 4px;
}

.progress-dots .dot {
  width: 6px;
  height: 6px;
  background: var(--color-aqua);
  border-radius: 50%;
  opacity: 0.3;
  animation: dotPulse 1.5s infinite;
}

.progress-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.progress-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Progress Bar Animations */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

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

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Responsive design for progress bar */
@media (max-width: 768px) {
  .dashboard-progress-bar {
    padding: 20px;
    margin: 20px 0;
  }
  
  .progress-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .progress-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
  .dashboard-content {
    padding: 32px 24px;
  }
  
  .create-card {
    padding: 32px;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .dashboard-header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
  }
  
  .dashboard-content {
    padding: 24px 16px;
  }
  
  .create-card {
    padding: 24px;
  }
  
  .create-card h2 {
    font-size: 24px;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .brand-settings-preview {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Feedback System Styles
   ============================================ */

/* Floating Feedback Button */
.feedback-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-brand);
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(90, 240, 225, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
}

.feedback-float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 30px rgba(90, 240, 225, 0.6);
}

.feedback-float-btn:active {
  transform: scale(0.95);
}

.feedback-float-btn svg {
  width: 28px;
  height: 28px;
}

/* Feedback Modal */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.2s ease;
}

.feedback-modal-content {
  background: var(--color-dark);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius-large);
  max-width: 550px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

.feedback-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feedback-modal-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-aqua);
  margin: 0;
}

.close-feedback-modal {
  background: transparent;
  border: none;
  color: var(--color-grey-dark);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-feedback-modal:hover {
  color: var(--color-aqua);
  transform: rotate(90deg);
}

.feedback-modal-body {
  padding: 24px;
}

.feedback-description {
  color: var(--color-grey-dark);
  margin-bottom: 24px;
  font-size: 14px;
}

.feedback-modal .form-group {
  margin-bottom: 20px;
}

.feedback-modal .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
}

.feedback-modal select,
.feedback-modal input[type="email"],
.feedback-modal textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.feedback-modal select:focus,
.feedback-modal input[type="email"]:focus,
.feedback-modal textarea:focus {
  outline: none;
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.05);
  box-shadow: 0 0 0 3px rgba(90, 240, 225, 0.1);
}

.feedback-modal textarea {
  resize: vertical;
  min-height: 120px;
}

/* Rating Input */
.rating-input {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.rating-star {
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s ease;
  opacity: 0.3;
  filter: grayscale(1);
}

.rating-star:hover,
.rating-star.selected {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.2);
}

.rating-star.selected ~ .rating-star {
  opacity: 0.3;
  filter: grayscale(1);
  transform: scale(1);
}

/* Feedback Actions */
.feedback-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.feedback-actions .btn-primary,
.feedback-actions .btn-secondary {
  flex: 1;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.feedback-actions .btn-primary {
  background: var(--gradient-brand);
  border: none;
  color: white;
}

.feedback-actions .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(90, 240, 225, 0.4);
}

.feedback-actions .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.feedback-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  color: var(--color-white);
}

.feedback-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-aqua);
}

/* Success Message */
.feedback-success {
  text-align: center;
  padding: 40px 20px;
}

.feedback-success .success-icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: scaleIn 0.5s ease;
}

.feedback-success h4 {
  font-size: 24px;
  color: var(--color-aqua);
  margin-bottom: 12px;
}

.feedback-success p {
  color: var(--color-grey-dark);
  margin-bottom: 24px;
}

.feedback-success .btn-primary {
  padding: 12px 32px;
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--border-radius);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feedback-success .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(90, 240, 225, 0.4);
}

/* Loading State */
.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .feedback-float-btn {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  
  .feedback-float-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .feedback-modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .feedback-modal-header {
    padding: 20px 16px 12px;
  }
  
  .feedback-modal-header h3 {
    font-size: 20px;
  }
  
  .feedback-modal-body {
    padding: 16px;
  }
  
  .rating-star {
    font-size: 24px;
  }
  
  .feedback-actions {
    flex-direction: column;
  }
}

/* ============================================ */
/* PRICING SECTION STYLES */
/* ============================================ */

.pricing {
  padding: 120px 0;
  background: var(--color-dark);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(90, 240, 225, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--color-grey-dark);
  margin: -10px auto 60px;
  max-width: 600px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-large);
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(90, 240, 225, 0.3);
  box-shadow: 0 10px 40px rgba(90, 240, 225, 0.15);
}

.pricing-card.popular {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.05);
  box-shadow: 0 10px 40px rgba(90, 240, 225, 0.2);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.08) translateY(-5px);
}

.pricing-card.free-tier {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Pricing Badge */
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-dark);
}

.pricing-card.free-tier .pricing-badge {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

/* Pricing Name & Price */
.pricing-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-white);
  text-align: center;
}

.pricing-price {
  text-align: center;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-description {
  text-align: center;
  color: var(--color-grey-dark);
  font-size: 14px;
  margin-bottom: 24px;
}

/* Credits Display */
.pricing-credits {
  text-align: center;
  padding: 20px;
  background: rgba(90, 240, 225, 0.05);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  border: 1px solid rgba(90, 240, 225, 0.1);
}

.credits-amount {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-aqua);
  margin-bottom: 4px;
}

.credits-videos {
  display: block;
  font-size: 14px;
  color: var(--color-grey-dark);
}

/* Pricing Value */
.pricing-value {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.value-label {
  font-size: 14px;
  color: var(--color-grey-dark);
}

.savings-badge {
  background: rgba(62, 92, 243, 0.2);
  color: var(--color-cobalt);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Pricing Features */
.pricing-features {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--color-grey-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--color-aqua);
}

/* Pricing Buttons */
.btn-pricing {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-pricing-free {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-pricing-free:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-pricing-paid {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
  border: 1px solid var(--color-aqua);
}

.btn-pricing-paid:hover {
  background: var(--color-aqua);
  color: var(--color-dark);
  box-shadow: 0 0 20px rgba(90, 240, 225, 0.4);
}

.btn-pricing-popular {
  background: var(--gradient-brand);
  color: var(--color-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(90, 240, 225, 0.3);
}

.btn-pricing-popular:hover {
  box-shadow: 0 6px 30px rgba(90, 240, 225, 0.5);
  transform: translateY(-2px);
}

/* Pricing FAQ */
.pricing-faq {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-faq h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--color-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(90, 240, 225, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--color-white);
}

.faq-item p {
  font-size: 14px;
  color: var(--color-grey-dark);
  line-height: 1.6;
}

/* ============================================ */
/* CREDIT BALANCE WIDGET (DASHBOARD) */
/* ============================================ */

.credit-balance-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(90, 240, 225, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 10px 16px;
  margin-right: 16px;
}

.credit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(90, 240, 225, 0.1);
  border-radius: 50%;
}

.credit-icon svg {
  color: var(--color-aqua);
}

.credit-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credit-label {
  font-size: 11px;
  color: var(--color-grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.credit-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-aqua);
  line-height: 1;
}

.btn-buy-credits {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-brand);
  color: var(--color-dark);
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-buy-credits:hover {
  box-shadow: 0 4px 16px rgba(90, 240, 225, 0.4);
  transform: translateY(-2px);
}

.btn-buy-credits svg {
  width: 16px;
  height: 16px;
}

/* ============================================ */
/* CREDIT PURCHASE MODAL */
/* ============================================ */

.credit-purchase-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  overflow-y: auto;
  padding: 40px 20px;
}

.credit-purchase-modal-content {
  max-width: 900px;
  max-height: 90vh;
  margin: 0 auto;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-large);
  position: relative;
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.credit-purchase-modal-header {
  padding: 32px 32px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: #1A1A1A;
  z-index: 10;
}

.credit-purchase-modal-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}

.close-credit-purchase-modal {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-credit-purchase-modal:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.credit-purchase-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

/* Custom scrollbar for modal */
.credit-purchase-modal-body::-webkit-scrollbar {
  width: 8px;
}

.credit-purchase-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.credit-purchase-modal-body::-webkit-scrollbar-thumb {
  background: rgba(90, 240, 225, 0.3);
  border-radius: 4px;
}

.credit-purchase-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(90, 240, 225, 0.5);
}

.purchase-description {
  text-align: center;
  color: var(--color-grey-dark);
  font-size: 16px;
  margin-bottom: 24px;
}

.current-balance-display {
  text-align: center;
  padding: 20px;
  background: rgba(90, 240, 225, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 32px;
}

.balance-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.balance-label {
  font-size: 14px;
  color: var(--color-grey-dark);
}

.balance-amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-aqua);
}

.balance-amount.new-balance {
  color: #4ECDC4;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.credit-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.package-loading {
  text-align: center;
  padding: 40px;
  color: var(--color-grey-dark);
  grid-column: 1 / -1;
}

.package-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.package-card:hover {
  border-color: rgba(90, 240, 225, 0.5);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 32px rgba(90, 240, 225, 0.15);
}

.package-card.popular {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.05);
}

.package-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-white);
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-aqua);
  margin-bottom: 12px;
}

.package-credits {
  font-size: 14px;
  color: var(--color-grey-dark);
  margin-bottom: 16px;
}

.package-value {
  font-size: 12px;
  color: var(--color-grey-dark);
  margin-bottom: 20px;
}

.package-btn {
  width: 100%;
  padding: 12px;
  background: rgba(90, 240, 225, 0.1);
  border: 1px solid var(--color-aqua);
  color: var(--color-aqua);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-btn:hover {
  background: var(--color-aqua);
  color: var(--color-dark);
}

.package-card.popular .package-btn {
  background: var(--gradient-brand);
  color: var(--color-dark);
  border: none;
}

.purchase-benefits {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
}

.purchase-benefits h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--color-white);
}

.purchase-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.purchase-benefits li {
  padding: 8px 0;
  color: var(--color-grey-dark);
  font-size: 14px;
  display: flex;
  align-items: center;
}

.purchase-benefits li::before {
  content: '✓';
  color: var(--color-aqua);
  font-weight: bold;
  margin-right: 12px;
  font-size: 16px;
}

/* ============================================ */
/* RESPONSIVE PRICING */
/* ============================================ */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.popular {
    transform: scale(1);
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 80px 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 30px 24px;
  }
  
  .pricing-card.popular {
    grid-column: span 1;
  }
  
  .price-amount {
    font-size: 40px;
  }
  
  .credits-amount {
    font-size: 24px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  /* Credit Widget Mobile */
  .credit-balance-widget {
    padding: 8px 12px;
    gap: 8px;
  }
  
  .credit-icon {
    width: 32px;
    height: 32px;
  }
  
  .credit-amount {
    font-size: 18px;
  }
  
  .btn-buy-credits {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  /* Credit Modal Mobile */
  .credit-purchase-modal-content {
    margin: 20px auto;
  }
  
  .credit-purchase-modal-header {
    padding: 24px 20px 16px;
  }
  
  .credit-purchase-modal-header h3 {
    font-size: 22px;
  }
  
  .credit-purchase-modal-body {
    padding: 20px;
  }
  
  .credit-packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* ACCOUNT PORTAL STYLES */
/* ============================================ */

.account-portal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.portal-welcome {
  text-align: center;
  margin-bottom: 40px;
}

.portal-welcome h1 {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--color-white);
}

.portal-welcome p {
  font-size: 16px;
  color: var(--color-grey-dark);
}

/* Buy Credits Banner (Prominent CTA) */
.buy-credits-banner {
  background: linear-gradient(135deg, rgba(94, 92, 255, 0.1) 0%, rgba(90, 240, 225, 0.1) 100%);
  border: 2px solid rgba(90, 240, 225, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.banner-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.banner-text {
  flex: 1;
}

.banner-text h3 {
  font-size: 24px;
  color: var(--color-white);
  margin: 0 0 8px 0;
}

.banner-text p {
  font-size: 16px;
  color: var(--color-grey-dark);
  margin: 0 0 16px 0;
}

.banner-stats {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--color-grey-dark);
}

.banner-stats strong {
  color: var(--color-primary);
  font-size: 18px;
}

.btn-buy-large {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-buy-large svg {
  flex-shrink: 0;
}

/* Desktop App CTA */
.web-app-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(90, 240, 225, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius-large);
  padding: 32px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.desktop-app-cta:hover {
  border-color: rgba(90, 240, 225, 0.4);
  background: rgba(90, 240, 225, 0.08);
}

.desktop-app-cta .cta-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90, 240, 225, 0.1);
  border-radius: 50%;
}

.desktop-app-cta .cta-icon svg {
  color: var(--color-aqua);
}

.desktop-app-cta .cta-content {
  flex-grow: 1;
}

.desktop-app-cta h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--color-white);
}

.desktop-app-cta p {
  font-size: 14px;
  color: var(--color-grey-dark);
  margin-bottom: 16px;
}

.btn-download-desktop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Account Stats Grid */
.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.stat-card-large {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-large);
  padding: 32px;
  transition: all 0.3s ease;
}

.stat-card-large:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.stat-card-large.primary {
  background: rgba(90, 240, 225, 0.05);
  border-color: rgba(90, 240, 225, 0.3);
}

.stat-card-large.primary:hover {
  border-color: rgba(90, 240, 225, 0.5);
  background: rgba(90, 240, 225, 0.08);
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-icon-large {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.stat-header h3 {
  font-size: 16px;
  color: var(--color-grey-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value-large {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-card-large.primary .stat-value-large {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-subtext {
  font-size: 14px;
  color: var(--color-grey-dark);
  margin-bottom: 20px;
}

.stat-action-btn {
  width: 100%;
  padding: 12px 24px;
  background: var(--gradient-brand);
  color: var(--color-dark);
  border: none;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stat-action-btn:hover {
  box-shadow: 0 4px 20px rgba(90, 240, 225, 0.4);
  transform: translateY(-2px);
}

/* Transaction List */
.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 20px;
  transition: all 0.3s ease;
}

.transaction-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.transaction-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  flex-shrink: 0;
}

.transaction-details {
  flex-grow: 1;
}

.transaction-description {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.transaction-date {
  font-size: 13px;
  color: var(--color-grey-dark);
}

.transaction-amount {
  font-size: 20px;
  font-weight: 700;
}

.transaction-amount.positive {
  color: #4ECDC4;
}

.transaction-amount.negative {
  color: var(--color-grey-dark);
}

.transaction-loading,
.transaction-error {
  text-align: center;
  padding: 40px;
  color: var(--color-grey-dark);
}

.transaction-empty {
  text-align: center;
  padding: 60px 20px;
}

.transaction-empty .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.transaction-empty p {
  color: var(--color-grey-dark);
  margin-bottom: 8px;
}

.transaction-empty .empty-subtext {
  font-size: 14px;
  color: var(--color-grey);
}

/* Help Section */
.help-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
  color: var(--color-white);
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.help-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.help-card:hover {
  border-color: rgba(90, 240, 225, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.help-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.help-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--color-white);
}

.help-card p {
  font-size: 14px;
  color: var(--color-grey-dark);
  line-height: 1.6;
}

.help-card a {
  color: var(--color-aqua);
  text-decoration: none;
  transition: all 0.3s ease;
}

.help-card a:hover {
  text-decoration: underline;
}

/* Mobile Responsive for Account Portal */
@media (max-width: 768px) {
  .account-portal {
    padding: 24px 16px;
  }

  .portal-welcome h1 {
    font-size: 28px;
  }

  .buy-credits-banner {
    padding: 24px;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .banner-text h3 {
    font-size: 20px;
  }

  .banner-stats {
    flex-direction: column;
    gap: 8px;
  }

  .btn-buy-large {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
  }

  .web-app-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .desktop-app-cta .cta-icon {
    width: 64px;
    height: 64px;
  }

  .account-stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-value-large {
    font-size: 36px;
  }

  .help-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PURCHASE TYPE TABS
   ============================================ */

.purchase-type-tabs {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  padding: 0;
}

.purchase-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(90, 240, 225, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.purchase-tab:hover {
  background: rgba(90, 240, 225, 0.1);
  border-color: rgba(90, 240, 225, 0.4);
  transform: translateY(-2px);
}

.purchase-tab.active {
  background: linear-gradient(135deg, rgba(90, 240, 225, 0.15), rgba(151, 90, 240, 0.15));
  border-color: var(--color-aqua);
  box-shadow: 0 4px 20px rgba(90, 240, 225, 0.2);
}

.purchase-tab.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
}

.purchase-tab .tab-icon {
  font-size: 32px;
  line-height: 1;
}

.purchase-tab .tab-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}

.purchase-tab .tab-desc {
  font-size: 13px;
  color: var(--color-grey);
  text-align: center;
  line-height: 1.3;
}

.purchase-tab.active .tab-label {
  color: var(--color-aqua);
}

.purchase-tab.active .tab-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .purchase-type-tabs {
    flex-direction: column;
    gap: 12px;
  }
  
  .purchase-tab {
    padding: 16px 12px;
  }
  
  .purchase-tab .tab-icon {
    font-size: 28px;
  }
  
  .purchase-tab .tab-label {
    font-size: 16px;
  }
  
  .purchase-tab .tab-desc {
    font-size: 12px;
  }
}

/* Subscription badge */
.subscription-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.package-card.subscription {
  border-color: rgba(102, 126, 234, 0.3);
}

.package-card.subscription:hover {
  border-color: rgba(102, 126, 234, 0.6);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

/* Better spacing for purchase benefits section */
.purchase-benefits {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth scrolling behavior */
.credit-purchase-modal-body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* ========================================
   ENTERPRISE PAGE STYLES
   ======================================== */

/* Navigation active state */
.nav-link.active {
  color: var(--color-aqua);
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-aqua);
  border-radius: 1px;
}

/* Enterprise Hero Section */
.enterprise-hero {
  background: linear-gradient(135deg, #0C0C0C 0%, #1a1a1a 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.enterprise-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  opacity: 0.3;
}

.enterprise-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.enterprise-hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.enterprise-hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-grey);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.enterprise-hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-aqua);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enterprise-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.enterprise-hero-note {
  font-size: 0.9rem;
  color: var(--color-grey-dark);
  margin-top: 8px;
}

/* Enterprise Benefits Section */
.enterprise-benefits {
  padding: 100px 0;
  background: var(--color-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-large);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 240, 225, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-white);
}

.benefit-description {
  color: var(--color-grey);
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefit-features {
  list-style: none;
}

.benefit-features li {
  color: var(--color-grey-dark);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  font-size: 0.9rem;
}

.benefit-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-aqua);
  font-weight: 600;
}

/* Enterprise Features Section */
.enterprise-features {
  padding: 100px 0;
  background: linear-gradient(135deg, #0C0C0C 0%, #1a1a1a 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-top: 64px;
}

.feature-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-large);
  padding: 32px;
}

.feature-category-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-white);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  color: var(--color-aqua);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 2px;
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--color-grey-dark);
  line-height: 1.4;
}

/* Customer Success Section */
.customer-success {
  padding: 100px 0;
  background: var(--color-dark);
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.success-story {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-large);
  padding: 32px;
  text-align: center;
}

.story-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 24px;
  font-style: italic;
}

.story-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-aqua);
  opacity: 0.5;
  position: absolute;
  margin-left: -20px;
  margin-top: -10px;
}

.story-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--color-grey-dark);
}


.pricing-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-cta-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-white);
}

.pricing-cta-subtitle {
  font-size: 1.1rem;
  color: var(--color-grey);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.pricing-cta-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.cta-feature-icon {
  font-size: 1.5rem;
}

.cta-feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.cta-feature-text p {
  font-size: 0.9rem;
  color: var(--color-grey-dark);
}

.pricing-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-cta-actions .btn-primary {
  max-width: 300px;
  width: auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Booking Modal */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.booking-modal-content {
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-large);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
}

.close-booking-modal {
  background: none;
  border: none;
  color: var(--color-grey-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.close-booking-modal:hover {
  color: var(--color-white);
}

.booking-modal-body {
  padding: 32px;
}

.booking-description {
  color: var(--color-grey);
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.6;
}

.booking-single-option {
  margin-bottom: 32px;
}

.booking-option-main {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
}

.booking-option-main h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.booking-option-main p {
  font-size: 1rem;
  color: var(--color-grey-dark);
  margin-bottom: 24px;
  line-height: 1.5;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.booking-contact {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-contact p {
  color: var(--color-grey);
  margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .enterprise-hero-title {
    font-size: 2.5rem;
  }
  
  .enterprise-hero-stats {
    flex-direction: column;
    gap: 32px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cta-features {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .pricing-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .booking-option-main {
    padding: 24px;
  }
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* Gallery Main Layout */
.gallery-main {
  min-height: 100vh;
  background: var(--color-dark);
  padding-top: 80px;
}

@media (max-width: 768px) {
  .gallery-main {
    padding-top: 0;
  }
}

/* Gallery Page Header */
.gallery-main .gallery-header {
  padding: 70px 0 60px;
  text-align: center;
}

.gallery-main .gallery-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.gallery-main .gallery-subtitle {
  font-size: 20px;
  color: var(--color-grey);
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 300;
}

/* Demo Notice */
.demo-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  padding: 12px 24px;
  background: rgba(90, 240, 225, 0.1);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.demo-badge {
  background: var(--gradient-brand);
  color: var(--color-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

.demo-text {
  color: var(--color-grey);
}

.demo-link {
  color: var(--color-aqua);
  text-decoration: none;
  font-weight: 600;
}

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

/* Gallery Controls */
.gallery-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  min-width: 300px;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--color-aqua);
  box-shadow: 0 0 0 3px rgba(90, 240, 225, 0.1);
}

.search-icon {
  color: var(--color-grey-dark);
  margin-right: 12px;
  flex-shrink: 0;
}

.search-input {
  background: none;
  border: none;
  outline: none;
  color: var(--color-white);
  font-size: 1rem;
  width: 100%;
}

.search-input::placeholder {
  color: var(--color-grey-dark);
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  color: var(--color-grey);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn:hover {
  background: rgba(90, 240, 225, 0.1);
  border-color: var(--color-aqua);
  color: var(--color-white);
}

.filter-btn.active {
  background: var(--gradient-brand);
  border-color: var(--color-aqua);
  color: var(--color-dark);
  font-weight: 600;
}

/* Gallery Content */
.gallery-content {
  padding: 40px 0 80px;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-grey);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(90, 240, 225, 0.2);
  border-top: 3px solid var(--color-aqua);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-grey);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.empty-state p {
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Video Card */
.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(90, 240, 225, 0.1);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-aqua);
  box-shadow: var(--shadow-glow);
}

/* Video Thumbnail */
.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(90, 240, 225, 0.1) 0%, rgba(62, 92, 243, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(90, 240, 225, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: all 0.3s ease;
}

.play-button svg {
  margin-left: 4px; /* Slight offset for play icon */
}

.video-card:hover .play-button {
  background: var(--color-aqua);
  transform: scale(1.1);
}

/* Video Status */
.video-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-status.completed {
  background: rgba(34, 197, 94, 0.2);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.video-status.processing {
  background: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Video Category */
.video-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(90, 240, 225, 0.2);
  color: var(--color-aqua);
  border: 1px solid rgba(90, 240, 225, 0.3);
  backdrop-filter: blur(10px);
}

/* Video Info */
.video-info {
  padding: 20px;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-white);
  line-height: 1.4;
}

.video-description {
  font-size: 0.9rem;
  color: var(--color-grey);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-grey-dark);
}

.video-date {
  font-weight: 500;
}

.video-duration {
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.load-more-btn {
  background: var(--gradient-brand);
  border: none;
  color: var(--color-dark);
  padding: 12px 32px;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.video-modal-content {
  background: var(--color-dark);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: var(--border-radius-large);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  color: var(--color-aqua);
}

.video-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
}

.video-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-white);
}

.video-modal-header p {
  color: var(--color-grey);
  line-height: 1.5;
}

.video-modal-body {
  padding: 24px;
}

.video-player {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  background: #000;
}

.video-modal-actions {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid rgba(90, 240, 225, 0.1);
}

.video-modal-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Reprompt Modal Styles */
.reprompt-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.reprompt-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reprompt-option:hover {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.05);
}

.reprompt-option.selected {
  border-color: var(--color-aqua);
  background: rgba(90, 240, 225, 0.1);
}

.reprompt-option-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-white);
}

.reprompt-option-description {
  font-size: 0.9rem;
  color: var(--color-grey-dark);
  line-height: 1.4;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-white);
}

.form-textarea {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  color: var(--color-white);
  font-size: 1rem;
  min-height: 100px;
  resize: vertical;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--color-aqua);
  box-shadow: 0 0 0 3px rgba(90, 240, 225, 0.1);
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(90, 240, 225, 0.2);
}

.btn-secondary:hover {
  background: rgba(90, 240, 225, 0.1);
  border-color: var(--color-aqua);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(90, 240, 225, 0.3);
  border-top: 2px solid var(--color-aqua);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hidden {
  display: none !important;
}

.download-btn,
.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.download-btn {
  background: var(--gradient-brand);
  color: var(--color-dark);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.share-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border: 1px solid rgba(90, 240, 225, 0.3);
}

.share-btn:hover {
  background: rgba(90, 240, 225, 0.1);
  border-color: var(--color-aqua);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-main .gallery-header {
    padding: 80px 0 40px;
  }

  .gallery-main .gallery-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .gallery-main .gallery-subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  
  .gallery-controls {
    flex-direction: column;
    gap: 16px;
  }
  
  .search-box {
    min-width: 280px;
  }
  
  .filter-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .video-modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .video-player {
    height: 250px;
  }
  
  .video-modal-footer {
    flex-direction: column;
  }
  
  .download-btn,
  .share-btn {
    justify-content: center;
  }
}

/* Pricing Gate Modal Styles */
.pricing-gate-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pricing-gate-modal.show {
  opacity: 1;
  visibility: visible;
}

.pricing-gate-content {
  background: var(--color-dark);
  border: 1px solid rgba(90, 240, 225, 0.3);
  border-radius: var(--border-radius-large);
  max-width: 1200px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 32px;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.pricing-gate-modal.show .pricing-gate-content {
  transform: scale(1) translateY(0);
}

.pricing-gate-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-gate-header h2 {
  color: var(--color-aqua);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-gate-header p {
  color: var(--color-grey-dark);
  font-size: 18px;
}

.pricing-gate-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-gate-card {
  background: rgba(12, 12, 12, 0.6);
  border: 1px solid rgba(90, 240, 225, 0.2);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-gate-card:hover {
  border-color: var(--color-aqua);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(90, 240, 225, 0.2);
}

.pricing-gate-card.popular {
  border-color: var(--color-aqua);
  box-shadow: 0 8px 24px rgba(90, 240, 225, 0.3);
  transform: scale(1.05);
}

.pricing-gate-card.popular:hover {
  transform: scale(1.05) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: var(--color-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-gate-card .plan-name {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-gate-card .plan-price {
  margin-bottom: 12px;
}

.pricing-gate-card .price-amount {
  color: var(--color-aqua);
  font-size: 48px;
  font-weight: 700;
}

.pricing-gate-card .price-period {
  color: var(--color-grey-dark);
  font-size: 18px;
}

.pricing-gate-card .plan-credits {
  color: var(--color-grey);
  font-size: 16px;
  margin-bottom: 4px;
}

.pricing-gate-card .plan-price-per-credit {
  color: var(--color-grey-dark);
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.pricing-gate-card .plan-savings {
  display: inline-block;
  background: rgba(90, 240, 225, 0.1);
  color: var(--color-aqua);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-gate-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px 0;
  text-align: left;
}

.pricing-gate-card .plan-features li {
  color: var(--color-grey);
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(90, 240, 225, 0.1);
}

.pricing-gate-card .plan-features li:last-child {
  border-bottom: none;
}

.btn-select-plan {
  width: 100%;
  padding: 14px 24px;
  background: rgba(90, 240, 225, 0.1);
  border: 1px solid var(--color-aqua);
  border-radius: var(--border-radius);
  color: var(--color-aqua);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-select-plan:hover {
  background: var(--color-aqua);
  color: var(--color-dark);
  box-shadow: var(--shadow-glow);
}

.btn-select-plan.btn-popular {
  background: var(--gradient-brand);
  border: none;
  color: var(--color-dark);
}

.btn-select-plan.btn-popular:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Mobile Responsive for Pricing Gate Modal */
@media (max-width: 968px) {
  .pricing-gate-plans {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-gate-card.popular {
    transform: scale(1);
  }

  .pricing-gate-card.popular:hover {
    transform: translateY(-4px);
  }

  .pricing-gate-content {
    padding: 32px 20px;
  }

  .pricing-gate-header h2 {
    font-size: 28px;
  }

  .pricing-gate-header p {
    font-size: 16px;
  }
}
