/* Toonz Powered by Telegael - Partnership Section */

.toonz-partnership-wrapper {
    width: 100%;
    padding: 120px 0;
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
}

.pt-container {
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.pt-content-side {
    flex: 0 0 45%;
}

.pt-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    display: block;
}

.pt-title {
    font-size: 84px;
    font-family: 'Georgia', serif;
    /* Editorial serif look */
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.pt-plus {
    color: #E87722;
    margin-left: 5px;
}

.pt-title-line {
    width: 80px;
    height: 2px;
    background: #E87722;
    margin-bottom: 40px;
}

.pt-headline {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 30px;
    color: #222;
}

.pt-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 60px;
}

/* Stats Grid */
.pt-stats-grid {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pt-stat-item {
    flex: 1;
    padding: 0 40px;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.pt-stat-item:last-child {
    border-right: none;
}

.pt-stat-item:first-child {
    padding-left: 0;
}

.pt-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.pt-title-icon {
    width: 50px;
    height: 50px;
    position: relative;
    top: -30px;
}

.pt-title-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pt-stat-custom-img {
    width: 53px;
    height: 32px;
    object-fit: contain;
}

.pt-stat-label-top,
.pt-stat-label-bot {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    line-height: 1.4;
}

.pt-stat-label-top {
    margin-bottom: 5px;
}

.pt-stat-label-bot {
    margin-top: 5px;
}

.pt-stat-val {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
}

/* CTA */
.pt-cta-area {
    position: relative;
    display: inline-block;
}

.pt-cta-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #E87722;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.pt-cta-arrow {
    transition: transform 0.4s ease;
}

.pt-cta-link:hover .pt-cta-arrow {
    transform: translateX(10px);
}

.pt-cta-underline {
    width: 100%;
    height: 1px;
    background: rgba(232, 119, 34, 0.3);
    margin-top: 5px;
}

/* Right Side: Visuals */
.pt-visual-side {
    flex: 0 0 55%;
    position: relative;
    padding-bottom: 50px;
}

.pt-image-main {
    width: 90%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.pt-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1s ease;
}

.pt-image-overlay {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 8px solid #fff;
    z-index: 5;
}

.pt-image-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

/* Interactions */
.pt-visual-side:hover .pt-image-main img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .pt-container {
        flex-direction: column;
        gap: 60px;
    }

    .pt-content-side,
    .pt-visual-side {
        flex: 0 0 100%;
    }
}