/* Toonz IP Final CTA - Collaborative Studio Styles */

.toonz-ip-final-cta-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
}

.ifc-bg-master {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ifc-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    /* Slight scale start for smooth zoom */
}


.ifc-hologram-glow {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(179, 121, 55, 0.15) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

.ifc-ambient-leak {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 121, 55, 0.05) 0%, transparent 40%);
    z-index: 4;
    pointer-events: none;
}

/* Layout */
.ifc-container {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
    padding: 100px 5%;
}

.ifc-main-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

/* Left Editorial */
.ifc-content-left {
    flex: 0 0 55%;
}

.ifc-title {
    font-size: 95px;
    line-height: 1;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.ifc-title .accent-gold {
    font-weight: 500;
}

.ifc-line {
    width: 40px;
    height: 1px;
    margin-bottom: 40px;
    opacity: 0.6;
}

.ifc-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 60px;
    font-weight: 300;
}

/* CTA Button - Elegant Link Style */
.ifc-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(179, 121, 55, 0.4);
    padding: 15px 30px;
    border-radius: 4px;
}

.ifc-cta-arrow {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ifc-cta:hover {
    background: rgba(179, 121, 55, 0.1);
    border-color: #B37937;
    transform: translateX(5px);
}

.ifc-cta:hover .ifc-cta-arrow {
    transform: translateX(8px);
}

/* Animations (Classes for GSAP) */
.ifc-title,
.ifc-line,
.ifc-desc,
.ifc-cta {
    will-change: transform, opacity;
}

/* Responsive */
@media (max-width: 1400px) {
    .ifc-title {
        font-size: 70px;
    }
}

@media (max-width: 1024px) {
    .ifc-main-layout {
        flex-direction: column;
        gap: 60px;
    }

    .ifc-content-left {
        width: 100%;
    }

    .ifc-icon-wall {
        text-align: left;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .ifc-icon-item {
        justify-content: flex-start;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .ifc-title {
        font-size: 50px;
    }

    .ifc-container {
        padding: 80px 5%;
    }
}