.toonz-global-cta {
    position: relative;
    width: 100%;
    margin: 0 !important;
    display: flow-root;
    /* Prevent margin collapse */

    /* Deep space black */
    color: #fff;
    padding: 100px 0 10px;
    overflow: hidden;
}

/* Background Earth */
.gc-bg-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gc-earth-bg {
    position: absolute;
    top: 0;
    right: 0;
    /* Peek from right as per design */
    /* Large scale */
    display: block;
    height: auto;
    transform: translateY(-50%);
    opacity: 1;
    animation: gc-earth-pulse 8s infinite alternate ease-in-out;

}

@keyframes gc-earth-pulse {
    0% {
        opacity: 0.8;
        filter: brightness(0.8) contrast(1.1);
        transform: scale(1);
    }

    100% {
        opacity: 1;
        filter: brightness(1.2) contrast(1.3);
        transform: scale(1.05);
    }
}



/* Container & Grid */
.gc-container {
    position: relative;
    z-index: 10;

    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.gc-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    min-height: 60vh;
}

/* Text Block */
.gc-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.gc-eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    color: #E87722;
    font-weight: 700;
}

.gc-short-line {
    width: 40px;
    height: 1px;
    background: rgba(232, 119, 34, 0.4);
}

.gc-sep-star {
    color: #E87722;
}

.gc-headline {
    font-size: 110px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin: 0 0 40px 0;
    /* Strict margin */
    font-weight: 400;
}


.gc-headline span {
    color: #E87722;
}

.gc-subtext-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
    max-width: 600px;
}

.gc-vert-line {
    width: 40px;
    height: 1px;
    background: #E87722;
}

.gc-subtext {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Buttons */
.gc-btn-group {
    display: flex;
    gap: 25px;
}

.gc-primary-btn {
    background: #E87722;
    color: #fff;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(232, 119, 34, 0.2);
}

.gc-primary-btn:hover {
    background: #FF8C3D;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(232, 119, 34, 0.4);
    letter-spacing: 2px;
}

.gc-secondary-btn {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gc-secondary-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.gc-secondary-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.gc-secondary-btn:hover i {
    transform: scale(1.2) translateX(2px);
}

/* Bottom Strip */
.gc-bottom-strip {
    margin-top: 100px;
}

.gc-strip-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.gc-strip-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gc-strip-part {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.gc-strip-v-sep {
    font-size: 14px;
    opacity: 0.2;
}

/* Responsive */
@media (max-width: 1200px) {
    .gc-headline {
        font-size: 80px;
    }

    .gc-earth-bg {
        width: 800px;
        right: -5%;
    }
}

@media (max-width: 1024px) {
    .gc-content-grid {
        grid-template-columns: 1fr;
    }

    .gc-earth-bg {
        width: 100%;
        right: 0;
        top: 70%;
        transform: none;
        position: relative;
        display: block;
        margin-top: 50px;
    }

    .gc-bg-wrap {
        position: relative;
        height: auto;
        order: 2;
    }

    .gc-overlay {
        background: linear-gradient(to bottom, #000, transparent);
    }

    .toonz-global-cta {
        flex-direction: column;
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .gc-headline {
        font-size: 50px;
    }

    .gc-btn-group {
        flex-direction: column;
    }

    .gc-primary-btn,
    .gc-secondary-btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .gc-strip-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}