.pcv2footer_wrapper {
    background: #0f172a;
    padding: 100px 24px 60px;
    font-family: 'Epilogue', sans-serif;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.pcv2footer_wrapper::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pcv2footer_wrapper::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pcv2footer_container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pcv2footer_cta {
    background: linear-gradient(135deg, #0066ff, #6366f1);
    background-size: 200% 200%;
    animation: pcv2-gradient-move 6s ease infinite;
    border-radius: 32px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    box-shadow: 0 30px 60px -15px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.pcv2footer_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" fill-opacity="0.1"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.pcv2footer_cta_content {
    max-width: 500px;
    position: relative;
}

.pcv2footer_cta_title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pcv2footer_cta_desc {
    font-size: 16px;
    opacity: 0.9;
}

.pcv2footer_cta_btn {
    background: #fff;
    color: #0066ff;
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pcv2footer_cta_btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* MAIN GRID */
.pcv2footer_main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.pcv2footer_brand_col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pcv2footer_logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.pcv2footer_logo span {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.pcv2footer_desc {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 400px;
}

.pcv2footer_social {
    display: flex;
    gap: 16px;
}

.pcv2footer_social_link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.pcv2footer_social_link:hover {
    background: #fff;
    color: #0f172a;
    transform: translateY(-6px) rotate(8deg);
}

.pcv2footer_title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    opacity: 0.6;
}

.pcv2footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pcv2footer_link {
    text-decoration: none;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pcv2footer_link:hover {
    color: #fff;
    transform: translateX(8px);
}

/* BOTTOM BAR */
.pcv2footer_bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pcv2footer_copy {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.pcv2footer_legal {
    display: flex;
    gap: 32px;
}

.pcv2footer_legal_link {
    text-decoration: none;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
}

.pcv2footer_legal_link:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .pcv2footer_cta {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 40px;
    }

    .pcv2footer_main {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .pcv2footer_main {
        grid-template-columns: 1fr;
    }

    .pcv2footer_bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}