/* ==================== ROOT VARIABLES ==================== */
:root {
    --indigo: #4F46E5;
    --indigo-dark: #3730A3;
    --violet: #8B5CF6;
    --violet-light: #A78BFA;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --emerald: #10B981;
    --rose: #F43F5E;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--slate-700); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--slate-900); line-height: 1.2; font-weight: 600; }
h1 { font-size: 3.25rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
}

.gradient-text { background: linear-gradient(135deg, var(--indigo), var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 60px 0; } }

/* ==================== HEADER ==================== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: all 0.3s ease; }
.header.scrolled { border-bottom-color: var(--slate-200); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; max-width: 1200px; margin: 0 auto; }
.logo { height: 40px; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.02); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--slate-900); }
.logo-text span { color: var(--indigo); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link { color: var(--slate-600); font-weight: 500; font-size: 0.95rem; padding: 10px 16px; border-radius: 8px; transition: all 0.3s ease; position: relative; }
.nav-link:hover { color: var(--indigo); background: var(--slate-50); }
.nav-link.active { color: var(--indigo); }
.nav-link.active::after { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--indigo); border-radius: 50%; }
.nav-cta { background: linear-gradient(135deg, var(--indigo), var(--violet)); color: var(--white) !important; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; margin-left: 8px; box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3); transition: all 0.3s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(79, 70, 229, 0.4); }
.mobile-menu-btn { display: none; background: none; border: none; padding: 8px; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--slate-700); transition: all 0.3s ease; }
.mobile-nav { display: none; position: fixed; top: 73px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--slate-200); padding: 16px 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.mobile-nav.open { display: block; animation: slideDown 0.3s ease; }
.mobile-nav a { display: block; padding: 12px 0; color: var(--slate-700); font-weight: 500; border-bottom: 1px solid var(--slate-100); }
@media (max-width: 900px) { .nav { display: none; } .mobile-menu-btn { display: flex; } }

/* ==================== BUTTONS ==================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; border: none; cursor: pointer; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s ease; }
.btn:hover::before { left: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--indigo), var(--violet)); color: var(--white); box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4); }
.btn-secondary { background: var(--white); color: var(--slate-700); border: 2px solid var(--slate-200); }
.btn-secondary:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* ==================== SECTION HEADERS ==================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { display: inline-block; background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.1)); color: var(--indigo); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.15rem; color: var(--slate-500); max-width: 600px; margin: 0 auto; }

/* ==================== PAGE HERO ==================== */
.page-hero { padding: 160px 0 80px; background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -30%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.2rem; color: var(--slate-500); max-width: 600px; margin: 0 auto; }

/* ==================== FORMS ==================== */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-weight: 600; color: var(--slate-700); margin-bottom: 8px; }
.form-label .optional { font-weight: 400; color: var(--slate-400); }
.form-input, .form-textarea, .form-select { width: 100%; padding: 14px 18px; border: 2px solid var(--slate-200); border-radius: 12px; font-size: 1rem; font-family: inherit; transition: all 0.3s ease; background: var(--white); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ==================== PRICING ==================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.pricing-card { background: var(--white); border-radius: 24px; padding: 40px 32px; border: 2px solid var(--slate-200); text-align: center; transition: all 0.4s ease; position: relative; }
.pricing-card:hover { border-color: var(--slate-300); box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-8px); }
.pricing-card.popular { border-color: var(--indigo); box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15); }
.pricing-card.popular:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(79, 70, 229, 0.2); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--slate-900); padding: 6px 20px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.pricing-tier { font-size: 0.8rem; font-weight: 700; color: var(--indigo); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--slate-900); margin-bottom: 8px; }
.pricing-duration { color: var(--slate-500); font-size: 0.95rem; margin-bottom: 24px; }
.pricing-price { margin-bottom: 24px; }
.pricing-price .currency { font-size: 1.5rem; font-weight: 600; color: var(--slate-900); vertical-align: top; }
.pricing-price .amount { font-size: 4rem; font-weight: 700; color: var(--slate-900); line-height: 1; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; color: var(--slate-600); font-size: 0.95rem; }
.pricing-features li svg { width: 20px; height: 20px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }

/* ==================== FAQ ==================== */
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-question { width: 100%; padding: 24px 0; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--slate-900); cursor: pointer; transition: all 0.3s ease; }
.faq-question:hover { color: var(--indigo); }
.faq-question svg { width: 24px; height: 24px; color: var(--slate-400); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 24px; }
.faq-answer p { color: var(--slate-600); line-height: 1.8; }

/* ==================== CONTACT ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h3 { font-size: 1.75rem; margin-bottom: 16px; }
.contact-info > p { color: var(--slate-600); margin-bottom: 32px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--slate-50); border-radius: 16px; border: 1px solid var(--slate-200); transition: all 0.3s ease; }
.contact-method:hover { border-color: var(--indigo); transform: translateX(8px); background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-method svg { width: 28px; height: 28px; flex-shrink: 0; }
.contact-method.email svg { color: var(--indigo); }
.contact-method-text strong { display: block; color: var(--slate-900); margin-bottom: 2px; }
.contact-method-text span { color: var(--slate-500); font-size: 0.9rem; }
.contact-form-card { background: var(--white); padding: 40px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid var(--slate-200); }
.contact-form-card h4 { font-size: 1.25rem; margin-bottom: 24px; }
.form-success { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); border: 1px solid var(--emerald); color: #065F46; padding: 24px; border-radius: 16px; text-align: center; display: none; }
.form-success.visible { display: block; }
.form-success h4 { color: #065F46; margin-bottom: 8px; }

/* ==================== STEPS ==================== */
.steps-container { max-width: 800px; margin: 0 auto; }
.step-item { display: flex; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--slate-200); }
.step-item:last-child { border-bottom: none; }
.step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--indigo), var(--violet)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; flex-shrink: 0; box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3); }
.step-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.step-content p { color: var(--slate-600); line-height: 1.7; }
@media (max-width: 600px) { .step-item { flex-direction: column; gap: 20px; text-align: center; } .step-number { margin: 0 auto; } }

/* ==================== STATS ==================== */
.stats-section { background: linear-gradient(135deg, var(--indigo), var(--violet)); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-item { color: var(--white); }
.stat-number { font-size: 3.5rem; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 1rem; opacity: 0.9; }

/* ==================== FOOTER ==================== */
.footer { background: var(--slate-900); color: var(--slate-400); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-links h5 { color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links a { display: block; color: var(--slate-400); padding: 8px 0; font-size: 0.9rem; transition: all 0.3s ease; }
.footer-links a:hover { color: var(--white); padding-left: 8px; }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--slate-800); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--slate-800); display: flex; align-items: center; justify-content: center; color: var(--slate-400); transition: all 0.3s ease; }
.footer-socials a:hover { background: var(--indigo); color: var(--white); transform: translateY(-3px); }

/* ==================== CHAT WIDGET ==================== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.chat-toggle { width: 60px; height: 60px; background: linear-gradient(135deg, var(--indigo), var(--violet)); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4); transition: all 0.3s ease; border: none; }
.chat-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 35px rgba(79, 70, 229, 0.5); }
.chat-toggle svg { width: 28px; height: 28px; color: var(--white); }
.chat-toggle .close-icon { display: none; }
.chat-widget.open .chat-toggle .chat-icon { display: none; }
.chat-widget.open .chat-toggle .close-icon { display: block; }
.chat-panel { position: absolute; bottom: 80px; right: 0; width: 360px; background: var(--white); border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95); transition: all 0.3s ease; overflow: hidden; }
.chat-widget.open .chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
@media (max-width: 500px) { .chat-panel { width: calc(100vw - 48px); right: -12px; } }
.chat-header { background: linear-gradient(135deg, var(--indigo), var(--violet)); color: var(--white); padding: 20px 24px; }
.chat-header h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.chat-header p { font-size: 0.85rem; opacity: 0.9; }
.chat-body { padding: 24px; }
.chat-form .form-group { margin-bottom: 16px; }
.chat-form .form-input, .chat-form .form-textarea { padding: 12px 14px; font-size: 0.95rem; border-radius: 10px; }
.chat-form .form-textarea { min-height: 80px; }
.chat-form .btn { width: 100%; }

/* ==================== VIDEO EMBED ==================== */
.video-container { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.2); background: var(--slate-900); aspect-ratio: 9/16; max-width: 280px; margin: 0 auto; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ==================== TIER SECTIONS ==================== */
.tier-section { margin-bottom: 80px; }
.tier-header { text-align: center; margin-bottom: 48px; }
.tier-header h3 { font-size: 2rem; margin-bottom: 8px; }
.tier-header p { color: var(--slate-500); font-size: 1.1rem; }
.tier-badge { display: inline-block; padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.tier-badge.studio { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); color: #1E40AF; }
.tier-badge.cinematic { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); color: #5B21B6; }

/* ==================== ANIMATIONS ==================== */
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* AOS-like animations */
[data-aos] { opacity: 0; transition: all 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }

/* ==================== LEGAL PAGES ==================== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--slate-900); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--slate-600); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { color: var(--slate-600); margin-bottom: 16px; padding-left: 24px; line-height: 1.8; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--slate-900); }
.legal-updated { color: var(--slate-500); font-size: 0.9rem; margin-bottom: 32px; }

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
