/* Animatics Page - Premium Design System */
:root {
    --primary: #f59e0b;
    --primary-light: #fbbf24;
    --secondary: #6366f1;
    --dark: #0f172a;
    --darker: #020617;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

#animatics-page-wrapper {
    background-color: var(--darker);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

#animatics-page-wrapper h1,
#animatics-page-wrapper h2,
#animatics-page-wrapper h3 {
    text-transform: none !important;
}

.gradient-quaternary {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

/* Hero Section */
.anim-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    padding: 120px 0 80px;
}

.anim-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.anim-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.anim-btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white !important;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.anim-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
}

.anim-hero video {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Intro Section */
.anim-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: var(--dark);
    margin: 60px 0;
    border-radius: 40px;
    overflow: hidden;
    margin-left: 5%;
    margin-right: 5%;
    border: 1px solid var(--glass-border);
}

.anim-intro-img {
    background-size: cover;
    background-position: center;
    position: relative;
}

.anim-intro-text {
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.anim-intro-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: #e2e8f0;
}

/* Do Section */
.anim-do-section {
    padding: 120px 0;
}

.anim-do-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.anim-do-img video, .anim-do-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
}

.anim-do-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
    font-weight: 800;
    margin-bottom: 24px;
}

.anim-do-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Offer Section */
.anim-offer-section {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.anim-offer-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}

.anim-offer-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 80px;
}

.anim-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 120px;
    align-items: center;
}

.anim-split-row.reverse {
    direction: rtl;
}

.anim-split-row.reverse > * {
    direction: ltr;
}

.anim-split-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}

.anim-split-visual:hover {
    transform: scale(1.02);
}

.anim-split-visual img {
    width: 100%;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.anim-split-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.anim-split-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.anim-feature-list {
    list-style: none;
    padding: 0;
}

.anim-feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.anim-feature-list li::before {
    content: "→";
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

/* CTA Section */
.anim-cta {
    padding: 120px 0;
    text-align: center;
}

.anim-cta .container {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(239, 44, 44, 0.05) 100%);
    padding: 80px 40px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    max-width: 1100px;
    margin: 0 auto;
}

.anim-cta h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Decorative Elements */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 20%;
    left: -50px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .anim-hero .content-grid, .anim-do-container, .anim-split-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .anim-hero p, .anim-do-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .anim-intro {
        grid-template-columns: 1fr;
    }

    .anim-split-row {
        gap: 40px;
    }
}