/* ============================================
   ARTBEAST AI VIDEO GENERATOR — V2 STYLESHEET
   Enhanced design, optimized performance
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #000000;
  --bg-secondary: #171717;
  --bg-card: rgba(23, 23, 23, 0.35);
  --bg-card-solid: #111111;
  --bg-card-hover: #222222;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-dim: #C7C7C7;
  --accent-yellow: #FFDA2A;
  --accent-yellow-hover: #ffe566;
  --accent-yellow-dark: #b29a1d;
  --accent-green: #10b981;
  --border-subtle: rgba(255, 255, 255, 0.145);
  --border-card: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 40px;
  --radius-full: 50px;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Sora', 'Inter', system-ui, sans-serif;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --header-height: 64px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background-color: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1280px) { .container { padding: 0; } }

/* ---------- Section Spacing ---------- */
.page-sections { display: flex; flex-direction: column; gap: 120px; padding-bottom: 40px; }
@media (max-width: 767px) { .page-sections { gap: 80px; } }

/* ---------- Section Typography ---------- */
.section-title { font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.75rem, 4vw, 3.5rem); line-height: 1.1; letter-spacing: -0.03em; }
.section-desc { font-size: 1rem; font-weight: 400; color: var(--text-secondary); line-height: 1.6; }
@media (min-width: 768px) { .section-desc { font-size: 1.125rem; } }

/* ---------- CTA Button (Glass) ---------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0 40px; height: 48px; border-radius: var(--radius-full);
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  color: var(--bg-secondary); white-space: nowrap; position: relative; overflow: hidden;
  transition: box-shadow var(--transition-base), filter var(--transition-base), transform var(--transition-base);
  background: radial-gradient(ellipse at 50% 110%, var(--accent-yellow) 33%, rgba(255,218,42,0.8) 66%, rgba(255,218,42,0) 100%);
  box-shadow: 0 1px 12px -5px rgba(255,237,154,1) inset, -5px -7px 3px -6px rgba(255,255,140,0.9) inset, 5px 7px 3px -6px rgba(255,255,255,1) inset;
  backdrop-filter: saturate(1.5) blur(2px);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 0.5px;
  background: linear-gradient(110.26deg, rgba(255,218,42,0.5) 4.24%, rgba(255,255,255,0) 64.28%), linear-gradient(0deg, rgba(58,58,57,0.6), rgba(255,218,42,0.6));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor; z-index: -1;
}
.btn-primary:hover {
  box-shadow: 0 1px 12px -5px rgba(255,237,154,1) inset, -5px -7px 3px -6px rgba(255,255,140,0.9) inset, 5px 7px 3px -6px rgba(255,255,255,1) inset, 0px 2px 24px 0px rgba(255,218,42,0.7);
  filter: contrast(1.05) brightness(1.05) hue-rotate(-10deg); transform: translateY(-1px);
}
.btn-primary-sm { height: 36px; padding: 0 24px; font-size: 0.875rem; }
.btn-primary-lg { height: 56px; padding: 0 48px; font-size: 1.125rem; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1200; height: var(--header-height); display: flex; align-items: center; padding: 0 24px; transition: background var(--transition-base), backdrop-filter var(--transition-base); }
.site-header.scrolled { background: rgba(0,0,0,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-card); }
.header-blur { position: absolute; top: 0; left: 0; width: 100%; height: var(--header-height); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); mask-image: linear-gradient(to bottom, rgba(23,23,23,1), rgba(23,23,23,1) 50%, rgba(23,23,23,0)); -webkit-mask-image: linear-gradient(to bottom, rgba(23,23,23,1), rgba(23,23,23,1) 50%, rgba(23,23,23,0)); z-index: 10; }
.header-gradient { position: absolute; top: 0; left: 0; width: 100%; height: var(--header-height); background: linear-gradient(0deg, transparent, rgba(0,0,0,0.8)); z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--container-max); margin: 0 auto; position: relative; z-index: 20; }
.header-left { display: flex; align-items: center; gap: 48px; }
.logo { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; }
.logo svg { height: 18px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 8px 14px; font-size: 0.875rem; font-weight: 400; color: var(--text-secondary); transition: color var(--transition-base); white-space: nowrap; border-radius: var(--radius-sm); }
.nav-link:hover { color: var(--text-primary); }
.nav-link .chevron { width: 10px; height: 10px; transition: transform var(--transition-base); }
.nav-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }
.nav-list-divider { padding: 0 4px; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-text-link { font-size: 0.875rem; font-weight: 400; color: var(--text-secondary); padding: 8px; transition: color var(--transition-base); }
.header-text-link:hover { color: var(--text-primary); }

/* Mobile header */
.mobile-header { display: none; }
.hamburger { padding: 8px; color: white; }
.hamburger svg { width: 24px; height: 24px; }

@media (max-width: 1023px) {
  .site-header { display: none; }
  .mobile-header { display: flex; position: fixed; top: 0; left: 0; right: 0; z-index: 1200; height: 56px; align-items: center; padding: 0 16px; }
  .mobile-header .header-blur, .mobile-header .header-gradient { height: 56px; }
  .mobile-header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; position: relative; z-index: 20; }
  .mobile-header-actions { display: flex; align-items: center; gap: 12px; }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay { position: fixed; inset: 0; z-index: 1300; background: rgba(0,0,0,0.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); display: flex; flex-direction: column; padding: 80px 24px 40px; transform: translateX(100%); transition: transform 350ms ease; }
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-close { position: absolute; top: 16px; right: 16px; color: white; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: none; border: none; cursor: pointer; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 24px; }
.mobile-nav-list a { font-size: 1.25rem; font-weight: 400; color: rgba(255,255,255,0.8); transition: color 200ms; }
.mobile-nav-list a:hover { color: white; }

/* ---------- HERO SECTION ---------- */
.hero { position: relative; width: 100%; min-height: 85vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-video-wrapper { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video { width: 100%; height: 100%; object-fit: cover; animation: heroSlowZoom 16s ease-in-out infinite; }
@keyframes heroSlowZoom { 0% { transform: scale(1.0); } 50% { transform: scale(1.06); } 100% { transform: scale(1.0); } }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.7) 100%); }
.hero-breadcrumb { position: absolute; top: calc(var(--header-height) + 12px); left: 0; right: 0; z-index: 20; padding: 0 24px; }
.breadcrumb-list { display: flex; gap: 4px; }
.breadcrumb-list a, .breadcrumb-list span { font-size: 0.875rem; color: var(--text-muted); }
.breadcrumb-list .current { color: var(--text-primary); }
.hero-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 32px; padding: 0 24px; padding-top: calc(var(--header-height) + 40px); max-width: 820px; margin: 0 auto; text-align: center; }
@media (min-width: 768px) { .hero-content { padding-top: 0; gap: 40px; } }
.hero-text { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.hero-title { font-family: var(--font-heading); font-weight: 300; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.05; letter-spacing: -0.04em; }
.hero-desc { font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--text-dim); max-width: 640px; }
@media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }

/* Prompt bar */
.prompt-bar { width: 100%; max-width: 680px; position: relative; display: flex; flex-direction: column; gap: 16px; padding: 14px 8px 14px 16px; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 0 0 0.6px var(--border-subtle); }
@media (min-width: 768px) { .prompt-bar { flex-direction: row; align-items: center; border-radius: 44px; padding: 6px 6px 6px 32px; gap: 8px; } }
.prompt-bar-bg { position: absolute; inset: 0; background: rgba(17,17,17,0.7); backdrop-filter: saturate(1.5) blur(12px); -webkit-backdrop-filter: saturate(1.5) blur(12px); z-index: 0; }
.prompt-input { position: relative; z-index: 20; flex: 1; background: transparent; border: none; outline: none; color: var(--text-primary); font-family: var(--font-sans); font-size: 1rem; resize: none; min-width: 0; }
.prompt-input::placeholder { color: var(--text-muted); }
.prompt-bar .btn-primary { position: relative; z-index: 20; flex-shrink: 0; }
.sparkle-icon { width: 15px; height: 15px; }

/* ---------- MODELS SECTION ---------- */
.models-section { padding: 0; }
.models-header { text-align: center; display: flex; flex-direction: column; gap: 12px; margin-bottom: 56px; }
.model-viewer { display: flex; gap: 0; position: relative; }
.model-sidebar { position: relative; z-index: 20; width: 50%; min-width: 480px; padding: 18px; overflow: hidden; border-radius: var(--radius-md); box-shadow: 0 0 0 0.6px var(--border-subtle); }
.model-sidebar-bg { position: absolute; inset: 0; background: rgba(23,23,23,0.35); backdrop-filter: saturate(1.5) blur(8px); -webkit-backdrop-filter: saturate(1.5) blur(8px); z-index: 0; }
.model-sidebar-inner { position: relative; z-index: 10; display: flex; gap: 16px; height: 100%; }
.model-nav { display: flex; flex-direction: column; gap: 8px; min-width: 152px; padding-right: 10px; padding-top: 16px; border-right: 1px solid rgba(255,255,255,0.12); flex-shrink: 0; flex-grow: 1; }
.model-nav-title { font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
.model-list { display: flex; flex-direction: column; gap: 10px; max-height: 340px; overflow-y: auto; padding-left: 14px; padding-right: 8px; }
.model-list::-webkit-scrollbar { width: 3px; }
.model-list::-webkit-scrollbar-track { background: transparent; }
.model-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.model-item { display: flex; align-items: center; gap: 8px; cursor: pointer; text-align: left; padding: 6px 0; transition: all 200ms; }
.model-item img { width: 20px; height: 20px; flex-shrink: 0; border-radius: 4px; }
.model-item .model-name { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); white-space: nowrap; transition: color 200ms; }
.model-item:hover .model-name { color: var(--text-secondary); }
.model-item.active .model-name { color: var(--text-primary); }
.model-badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 100px; background: rgba(255,218,42,0.12); color: var(--accent-yellow); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; flex-shrink: 0; }
.model-detail { flex: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 16px 0; }
.model-detail-title { font-size: 1.375rem; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.02em; }
.model-detail-desc { font-size: 0.9375rem; font-weight: 400; color: var(--text-secondary); margin-bottom: 6px; line-height: 1.6; }
.model-detail-link { text-decoration: underline; text-underline-offset: 3px; font-size: 0.9375rem; color: var(--accent-yellow); transition: opacity var(--transition-base); }
.model-detail-link:hover { opacity: 0.8; }
.model-detail .btn-primary { margin-top: auto; align-self: flex-start; }
.model-preview { flex: 1; position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.model-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); transition: transform 600ms ease; }
.model-preview:hover img { transform: scale(1.03); }

@media (max-width: 1023px) {
  .model-viewer { flex-direction: column; gap: 24px; }
  .model-sidebar { width: 100%; min-width: unset; }
  .model-sidebar-inner { flex-direction: column; }
  .model-nav { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-right: 0; padding-bottom: 16px; }
  .model-list { flex-direction: row; flex-wrap: wrap; max-height: 200px; padding-left: 0; }
}

/* ---------- HOW TO SECTION ---------- */
.howto-section { padding: 0; }
.howto-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.howto-header-text { display: flex; flex-direction: column; gap: 12px; max-width: 60%; }
.howto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1023px) {
  .howto-grid { grid-template-columns: 1fr; gap: 48px; }
  .howto-header-text { max-width: 100%; }
  .howto-header { flex-direction: column; gap: 24px; align-items: flex-start; }
}
.howto-card { display: flex; flex-direction: column; gap: 24px; }
.howto-card-header { display: flex; gap: 16px; align-items: flex-start; }
.howto-step-number { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-yellow); color: var(--bg-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.howto-card-content { display: flex; flex-direction: column; gap: 8px; }
.howto-card-title { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.howto-card-desc { font-size: 0.9375rem; font-weight: 400; color: var(--text-secondary); line-height: 1.6; }
.howto-card-image { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.howto-card-image img { width: 100%; height: auto; border-radius: var(--radius-md); transition: transform var(--transition-slow); }
.howto-card:hover .howto-card-image img { transform: scale(1.03); }

/* ---------- PRICING SECTION (Official Style) ---------- */
.pricing-section { padding: 0; }
.pricing-header { text-align: center; margin-bottom: 32px; }
.pricing-header .section-desc { margin-top: 12px; }

/* Models logo bar */
.pricing-models-bar {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.pricing-model-logo {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; color: var(--text-secondary); font-weight: 400;
}
.pricing-model-logo img { width: 20px; height: 20px; border-radius: 4px; }

/* Toggle */
.pricing-toggle { display: flex; justify-content: center; margin-bottom: 48px; }
.pricing-toggle-inner {
  display: flex; align-items: center; gap: 12px;
  background: none; border: none; padding: 0;
}
.toggle-btn {
  padding: 0; border-radius: 0;
  font-size: 0.9375rem; font-weight: 500;
  transition: all var(--transition-base); color: var(--text-muted);
  background: none;
}
.toggle-btn.active { color: var(--text-primary); }

/* Toggle switch */
.toggle-switch {
  width: 44px; height: 24px; border-radius: 12px;
  background: #333; position: relative; cursor: pointer;
  transition: background var(--transition-base);
}
.toggle-switch.active { background: var(--accent-green); }
.toggle-switch-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: white; position: absolute; top: 3px; left: 3px;
  transition: transform var(--transition-base);
}
.toggle-switch.active .toggle-switch-thumb { transform: translateX(20px); }

.toggle-save-badge {
  font-size: 0.6875rem; font-weight: 700; padding: 3px 8px;
  border-radius: var(--radius-full); background: var(--accent-green);
  color: white; text-transform: uppercase; letter-spacing: 0.3px;
}

/* Pricing Grid 3-column */
.pricing-grid-3 {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
@media (max-width: 1023px) { .pricing-grid-3 { grid-template-columns: 1fr; max-width: 480px; } }

/* Pricing Card */
.pricing-card {
  position: relative; background: var(--bg-card-solid);
  border: 1px solid var(--border-card); border-radius: var(--radius-lg);
  padding: 32px; transition: all var(--transition-base); overflow: hidden;
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: rgba(255,255,255,0.15); }

/* Featured card */
.pricing-card.featured { border-color: rgba(255,218,42,0.25); }
.pricing-card.featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0.06; background: radial-gradient(ellipse at 50% 0%, var(--accent-yellow), transparent 70%);
  pointer-events: none;
}

/* Best Value tag */
.best-value-tag {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent-yellow); color: var(--bg-primary);
  font-size: 0.75rem; font-weight: 700; padding: 4px 20px;
  border-radius: 0 0 12px 12px; letter-spacing: 0.3px;
}

/* Enterprise card */
.pricing-card.enterprise { border-color: rgba(255,255,255,0.08); }
.enterprise-desc {
  font-size: 0.9375rem; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 24px; min-height: 80px;
}
.enterprise-credits {
  font-size: 1.125rem; font-weight: 600; margin-bottom: 24px;
  padding: 16px 0; color: var(--text-primary);
}

/* Enterprise CTA button */
.btn-enterprise {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 48px; border-radius: var(--radius-full);
  font-size: 1rem; font-weight: 600; color: var(--bg-primary);
  background: radial-gradient(ellipse at 50% 110%, #e0e0e0 33%, rgba(200,200,200,0.8) 66%, rgba(180,180,180,0) 100%);
  box-shadow: 0 1px 8px -3px rgba(200,200,200,0.6) inset, -3px -5px 3px -4px rgba(255,255,255,0.7) inset, 3px 5px 3px -4px rgba(255,255,255,0.9) inset;
  transition: all var(--transition-base); margin-bottom: 24px;
}
.btn-enterprise:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 1px 8px -3px rgba(200,200,200,0.6) inset, -3px -5px 3px -4px rgba(255,255,255,0.7) inset, 3px 5px 3px -4px rgba(255,255,255,0.9) inset, 0 4px 16px rgba(255,255,255,0.15); }

/* Enterprise business features */
.enterprise-business { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-card); }
.enterprise-business h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 12px; }
.enterprise-business ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.enterprise-business li { font-size: 0.8125rem; color: var(--text-secondary); padding-left: 16px; position: relative; }
.enterprise-business li::before { content: "•"; position: absolute; left: 0; color: var(--text-muted); }
.enterprise-learn { font-size: 0.875rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Plan name */
.pricing-plan-name { font-size: 1.25rem; font-weight: 600; margin-bottom: 20px; letter-spacing: -0.02em; }

/* Old price */
.pricing-old-price { color: var(--text-muted); text-decoration: line-through; font-size: 0.875rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; min-height: 20px; }

/* Amount */
.pricing-amount { display: flex; align-items: flex-end; margin-bottom: 2px; }
.pricing-currency { font-size: 1.5rem; font-weight: 500; line-height: 1; padding-bottom: 6px; }
.pricing-integer { font-size: 3.5rem; font-weight: 700; line-height: 1; margin-left: 2px; }
.pricing-decimal-group { display: flex; flex-direction: column; font-size: 0.875rem; margin-left: 4px; padding-bottom: 4px; }
.pricing-period { color: var(--text-muted); }
.pricing-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 20px; margin-top: 2px; }

/* Credits selector */
.credits-label { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 8px; }
.credits-discount { color: var(--accent-green); font-weight: 600; font-size: 0.75rem; }
.credits-selector {
  background: var(--bg-primary); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); margin-bottom: 20px; overflow: hidden;
}
.credits-selector.pro { border-color: rgba(255,218,42,0.2); }
.credits-selected {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; cursor: pointer; transition: background var(--transition-base);
}
.credits-selected:hover { background: rgba(255,255,255,0.04); }
.credits-amount { font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.credits-breakdown { font-size: 0.6875rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; }
.credits-selected svg { color: var(--text-muted); flex-shrink: 0; }

/* Pricing CTA */
.pricing-btn { width: 100%; margin-bottom: 20px; }

/* Features list */
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.875rem; color: var(--text-primary); line-height: 1.4;
}
.pricing-features li svg { flex-shrink: 0; margin-top: 1px; }
.feature-new {
  background: var(--accent-yellow); color: var(--bg-primary);
  font-size: 0.5625rem; font-weight: 800; padding: 1px 5px;
  border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px;
  margin-left: 4px; vertical-align: middle;
}
.feature-team { color: var(--text-secondary); }
.feature-sub { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 2px; line-height: 1.4; }

/* Price animation */
.price-animate { transition: all 0.25s ease; }
.price-hide { opacity: 0; transform: translateY(8px); }

/* ---------- FAQ SECTION ---------- */
.faq-section { padding: 0; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-top: 1px solid rgba(255,255,255,0.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 1rem; font-weight: 400; text-align: left; color: var(--text-primary); transition: color var(--transition-base); }
.faq-question:hover { color: var(--text-secondary); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 300ms ease; color: var(--text-secondary); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 400ms ease, padding 300ms ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }
.faq-help { margin-top: 24px; font-size: 0.9375rem; font-weight: 600; text-align: center; }
.faq-help a { text-decoration: underline; text-underline-offset: 3px; color: var(--accent-yellow); }

/* ---------- FOOTER (Simplified) ---------- */
.site-footer { margin-top: 80px; padding: 60px 0 40px; background: var(--bg-primary); }
/* Footer brand block */
.footer-brand { max-width: 560px; margin-bottom: 48px; }
.footer-brand .logo svg { height: 24px; width: auto; }
.footer-brand-tagline { font-size: 1.125rem; font-weight: 600; color: rgba(255,255,255,0.4); margin-top: 12px; margin-bottom: 12px; }
.footer-brand-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.3); line-height: 1.7; }

.footer-simple {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px;
}
.footer-legal-col, .footer-connect-col { display: flex; flex-direction: column; }
.footer-col-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; }
.footer-col-list { display: flex; flex-direction: column; gap: 8px; }
.footer-col-list a { font-size: 0.8125rem; color: var(--text-secondary); transition: color var(--transition-base); }
.footer-col-list a:hover { color: var(--text-primary); }
.footer-connect-col { align-items: flex-end; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); transition: all var(--transition-base);
}
.social-links a:hover { background: rgba(255,255,255,0.2); }
.social-links a img { width: 16px; height: 16px; opacity: 0.7; transition: all var(--transition-base); }
.social-links a:hover img { opacity: 1; }

.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copyright { font-size: 0.8125rem; color: var(--text-muted); }

@media (max-width: 767px) {
  .footer-simple { flex-direction: column; gap: 40px; }
  .footer-connect-col { align-items: flex-start; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: rgba(0,0,0,0.97); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0; transform: translateY(0); transition: transform 400ms ease;
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-banner-inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 16px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.cookie-text h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 4px; }
.cookie-text p { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.5; max-width: 860px; }
.cookie-text a { color: var(--accent-yellow); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { flex-shrink: 0; }
.cookie-accept {
  padding: 10px 24px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm); font-size: 0.8125rem; font-weight: 600;
  color: white; background: transparent; cursor: pointer;
  transition: all var(--transition-base); letter-spacing: 0.5px;
}
.cookie-accept:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.cookie-details-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 24px; font-size: 0.6875rem; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.5px;
  border-top: 1px solid rgba(255,255,255,0.06); cursor: pointer;
  max-width: var(--container-max); margin: 0 auto;
  transition: color var(--transition-base);
}
.cookie-details-toggle:hover { color: var(--text-primary); }
.cookie-details-toggle svg { width: 12px; height: 12px; }

@media (max-width: 767px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Misc ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.arrow-right { width: 15px; height: 12px; }

/* ---------- Legal Pages ---------- */
.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-header { position: sticky; top: 0; z-index: 100; background: rgba(0,0,0,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-card); padding: 16px 24px; }
.legal-header-inner { max-width: var(--container-max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.legal-header .logo { font-size: 1.125rem; }
.legal-back { font-size: 0.875rem; color: var(--text-secondary); transition: color var(--transition-base); }
.legal-back:hover { color: var(--text-primary); }
.legal-content { max-width: 800px; margin: 0 auto; padding: 64px 24px 80px; flex: 1; }
.legal-content h1 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 600; margin-bottom: 32px; letter-spacing: -0.03em; }
.legal-content h2 { font-size: 1.5rem; font-weight: 600; margin-top: 48px; margin-bottom: 16px; }
.legal-content h3 { font-size: 1.125rem; font-weight: 600; margin-top: 32px; margin-bottom: 12px; }
.legal-content p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content li { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.legal-content a { color: var(--accent-yellow); text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px; text-align: center; }
.legal-footer p { font-size: 0.8125rem; color: var(--text-muted); }
