/* AI CTA Section Styling */

.toonz-ai-cta-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Simple parallax */
    background-color: #000;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}


.acta-container {
    padding: 0 3%;
    position: relative;
    z-index: 10;
}

.acta-content {
    max-width: 800px;
}

.acta-accent-line {
    width: 40px;
    height: 4px;
    background: #F87510;
    margin-bottom: 25px;
}

.acta-headline {
    font-size: 90px;
    font-weight: 950;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #fff;
}

.acta-headline .accent {
    color: #F87510;
}

.acta-description {
    font-size: 22px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 600px;
}

/* --- Buttons --- */
.acta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 20;
}

.acta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    opacity: 1;
    /* Ensure visible */
}

.acta-btn:hover {
    border-color: #F87510;
    background: rgba(248, 117, 16, 0.05);
}

.acta-btn-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.acta-btn-icon svg {
    width: 18px;
    height: 18px;
}

/* --- Responsiveness --- */
@media (max-width: 1200px) {
    .acta-headline {
        font-size: 65px;
    }
}

@media (max-width: 768px) {
    .toonz-ai-cta-wrapper {
        min-height: auto;
        padding: 80px 0;
    }

    .acta-headline {
        font-size: 45px;
    }

    .acta-description {
        font-size: 18px;
    }

    .acta-buttons {
        flex-direction: column;
    }

    .acta-btn {
        width: 100%;
        justify-content: center;
    }
}