/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #09090b;
  --bg-secondary: #0f0f14;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(124, 58, 237, 0.3);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.4);
  --accent-purple: #7c3aed;
  --accent-purple-light: #a78bfa;
  --accent-indigo: #6366f1;
  --accent-green: #4ade80;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.nav-icon:hover {
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.nav-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-grid {
  position: absolute;
  inset: -80px;
  display: flex;
  gap: 14px;
  z-index: 1;
  overflow: hidden;
  transform: rotate(-5deg) scale(1.15);
  transform-origin: center center;
}

/* Each column is a vertical strip of cards scrolling upward */
.hero-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Different scroll speeds + slight individual rotations per column */
.col-speed-1 { animation: colScroll1 18s linear infinite; }
.col-speed-2 { animation: colScroll2 21s linear infinite; margin-top: -80px; }
.col-speed-3 { animation: colScroll3 15s linear infinite; margin-top: -40px; }
.col-speed-4 { animation: colScroll4 24s linear infinite; margin-top: -120px; }
.col-speed-5 { animation: colScroll5 17s linear infinite; margin-top: -60px; }
.col-speed-6 { animation: colScroll6 20s linear infinite; margin-top: -100px; }
.col-speed-7 { animation: colScroll7 16s linear infinite; margin-top: -50px; }

@keyframes colScroll1 {
  0%   { transform: translateY(0) rotate(2deg); }
  100% { transform: translateY(-50%) rotate(2deg); }
}
@keyframes colScroll2 {
  0%   { transform: translateY(-50%) rotate(-1.5deg); }
  100% { transform: translateY(0) rotate(-1.5deg); }
}
@keyframes colScroll3 {
  0%   { transform: translateY(0) rotate(1deg); }
  100% { transform: translateY(-50%) rotate(1deg); }
}
@keyframes colScroll4 {
  0%   { transform: translateY(-50%) rotate(-2deg); }
  100% { transform: translateY(0) rotate(-2deg); }
}
@keyframes colScroll5 {
  0%   { transform: translateY(0) rotate(1.5deg); }
  100% { transform: translateY(-50%) rotate(1.5deg); }
}
@keyframes colScroll6 {
  0%   { transform: translateY(-50%) rotate(-1deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}
@keyframes colScroll7 {
  0%   { transform: translateY(0) rotate(1.8deg); }
  100% { transform: translateY(-50%) rotate(1.8deg); }
}

.hero-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  aspect-ratio: 5 / 8;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card--sm {
  aspect-ratio: 5 / 4;
}

.hero-card--lg {
  aspect-ratio: 4 / 6;
}

.hero-card:hover {
  transform: scale(1.05) rotate(0deg) !important;
  border-color: rgba(255, 255, 255, 0.25);
  z-index: 5;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.hero-card img,
.hero-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-card:hover img,
.hero-card:hover video {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 50% at center 45%, rgba(9, 9, 11, 0.15) 0%, rgba(9, 9, 11, 0.3) 60%, rgba(9, 9, 11, 0.55) 100%),
    linear-gradient(to bottom, rgba(9, 9, 11, 0.02) 0%, rgba(9, 9, 11, 0.2) 60%, rgba(9, 9, 11, 0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  margin-top: 20px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(90px, 18vw, 240px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -6px;
  line-height: 0.85;
  color: var(--text-primary);
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  opacity: 0;
  animation: titleReveal 1.2s var(--ease-out) 0.3s forwards;
}

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

.hero-subtitle {
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--text-primary);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 255, 255, 0.15);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-tertiary);
  font-size: 13px;
  font-style: italic;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.scroll-indicator svg {
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== FILMMAKERS SECTION ===== */
.filmmakers {
  padding: 120px 40px 140px;
  text-align: center;
  position: relative;
}

.filmmakers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
}

.filmmakers-label {
  font-size: 15px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  margin-bottom: 60px;
}

.filmmakers-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.filmmaker-name {
  font-family: var(--font-serif);
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 400;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  line-height: 1.3;
  letter-spacing: -1px;
}

.filmmaker-name:hover,
.filmmaker-name.active {
  color: var(--text-primary);
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.08);
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-subheading {
  font-size: 16px;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 60px;
}

/* ===== AI MODELS SECTION ===== */
.models-section {
  padding: 100px 40px 120px;
  background: var(--bg-secondary);
  position: relative;
}

.models-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

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

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-indigo), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.model-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.08);
}

.model-card:hover::before {
  opacity: 1;
}

.model-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(99, 102, 241, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-light);
  margin-bottom: 20px;
  transition: all 0.4s;
}

.model-card:hover .model-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(99, 102, 241, 0.15));
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.model-name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.model-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.model-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-purple-light);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 100px 40px 120px;
  position: relative;
}

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

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 16 / 11;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOW TO USE SECTION ===== */
.how-to-use {
  padding: 100px 40px 120px;
  position: relative;
}

.how-to-use::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

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

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

.htu-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.htu-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-indigo));
  opacity: 0;
  transition: opacity 0.4s;
}

.htu-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}

.htu-step:hover::before {
  opacity: 1;
}

.htu-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-purple-light);
  opacity: 0.15;
  margin-bottom: 8px;
  letter-spacing: -2px;
  line-height: 1;
}

.htu-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(99, 102, 241, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s;
}

.htu-step:hover .htu-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(99, 102, 241, 0.15));
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
  transform: scale(1.08);
}

.htu-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.htu-step p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 100px 40px 140px;
  background: var(--bg-secondary);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, var(--bg-card) 100%);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--accent-purple), var(--accent-indigo), transparent);
}

.pricing-card.featured:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-indigo));
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.pricing-header {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-name {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -2px;
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-left: 4px;
}

.plan-credits {
  font-size: 14px;
  color: var(--accent-purple-light);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-features li svg {
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  width: 100%;
  padding: 14px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card-hover);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.3s var(--ease-out);
}

.plan-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.plan-cta-featured {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-indigo));
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}

.plan-cta-featured:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c83f5);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
}

/* ===== FOOTER ===== */
.footer {
  padding: 0 40px 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), rgba(59, 130, 246, 0.5), transparent);
}

/* Newsletter Banner */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  margin-top: 60px;
}

.footer-newsletter-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.footer-newsletter-desc {
  font-size: 14px;
  color: var(--text-tertiary);
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.footer-newsletter-input {
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 14px;
  width: 260px;
  outline: none;
  transition: border-color 0.3s;
}

.footer-newsletter-input:focus {
  border-color: rgba(124, 58, 237, 0.5);
}

.footer-newsletter-input::placeholder {
  color: var(--text-tertiary);
}

.footer-newsletter-btn {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

/* Footer Grid */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Brand Column */
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-tertiary);
  transition: all 0.3s;
}

.footer-social:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--text-tertiary);
  padding: 5px 0;
  transition: color 0.2s, transform 0.2s;
}

.footer-link:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== AMBIENT GLOW ELEMENTS ===== */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.pricing::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .hero-card:nth-child(n+13) {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .htu-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0 20px;
  }

  .nav-icon {
    display: none;
  }

  .hero-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    padding: 70px 12px 30px;
  }

  .hero-card:nth-child(n+10) {
    display: none;
  }

  .filmmakers {
    padding: 80px 20px 100px;
  }

  .filmmakers-label {
    margin-bottom: 40px;
  }

  .models-section {
    padding: 60px 20px 80px;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 60px 20px 80px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .how-to-use {
    padding: 60px 20px 80px;
  }

  .pricing {
    padding: 60px 20px 100px;
  }

  .footer {
    padding: 60px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-subheading {
    margin-bottom: 40px;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(124, 58, 237, 0.3);
  color: var(--text-primary);
}
