/* Toonz Distribution Ecosystem - Cinematic Dark Design */
.toonz-distribution-eco-wrapper {
    position: relative;
    width: 100%;
    padding: 120px 0;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

.dec-container {
    margin: 0 auto;
    padding: 0 4%;
}

.dec-main-layout {
    display: block;
    max-width: 800px;
    margin: 0;
}

/* --- Left: Editorial Column --- */
.dec-tag {
    font-size: 14px;
    font-weight: 700;
    color: #b37937;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.dec-title {
    font-size: 72px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.dec-title .accent-gold {
    color: #b37937;
}

.dec-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin-bottom: 40px;
}

.dec-accent-sub {
    font-size: 16px;
    color: #b37937;
    margin-bottom: 30px;
}

.dec-service-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px 0px;
    margin-bottom: 50px;
    width: 600px;
}

.dec-sg-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dec-sg-icon {
    width: 24px;
    height: 24px;
    color: #b37937;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dec-sg-icon img {
    height: 100%;
    width: auto;

}

.dec-sg-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.dec-footer-note {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    max-width: 500px;
}

/* CTA Button Upgrade */
.dec-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 18px 35px;
    background: transparent;
    border: 1px solid rgba(179, 121, 55, 0.4);
    border-radius: 4px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Elegant Hover Glow & Outline Builder */
.dec-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(179, 121, 55, 0.15) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

/* Thin Gold Outline Animation */
.dec-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    border: 1px solid #b37937;
    opacity: 0;
    transform: scale(1.05, 1.15);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: -1;
}

.dec-cta:hover {
    color: #b37937;
    box-shadow: 0 0 30px rgba(179, 121, 55, 0.1);
    border-color: rgba(179, 121, 55, 0);
    /* Hide original structural border */
}

.dec-cta:hover::before {
    opacity: 1;
}

.dec-cta:hover::after {
    opacity: 1;
    transform: scale(1);
}

.dec-cta-arrow {
    width: 40px;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.dec-cta:hover .dec-cta-arrow {
    transform: translateX(12px);
}


/* Responsiveness */
@media (max-width: 1200px) {
    .dec-title {
        font-size: 56px;
    }
}