@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --renk-ana: #0d31bb;
    --renk-metin: #efefef;
    --renk-gri: #2a3a78;
    --renk-bilesen-bg: #051042;
}

.pwc-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 20px;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.pwc-container.pwc-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pwc-content-box {
    display: flex;
    background-color: var(--renk-bilesen-bg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1360px; 
    width: 100%;
    overflow: hidden;
}

.pwc-image-section {
    flex: 1;
    position: relative;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwc-image-section img {
    width: 92%;
    height: 92%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transform: none; 
    transition: transform 0.4s ease-in-out;
}

.pwc-image-section img:hover {
    transform: none; 
}

.pwc-text-section {
    flex: 1.1;
    padding: 30px 40px;
    color: var(--renk-metin);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pwc-text-section > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pwc-is-visible .pwc-text-section > * {
    opacity: 1;
    transform: translateY(0);
}

.pwc-is-visible .pwc-heading { transition-delay: 0.2s; }
.pwc-is-visible .pwc-description { transition-delay: 0.3s; }
.pwc-is-visible .pwc-checklist { transition-delay: 0.4s; }
.pwc-is-visible .pwc-progress-bars { transition-delay: 0.5s; }
.pwc-is-visible .pwc-btn { transition-delay: 0.6s; }

.pwc-tag {
    font-size: 14px;
    font-weight: 600;
    color: var(--renk-ana);
    margin: 0 0 12px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pwc-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px 0;
    color: var(--renk-metin);
}

.pwc-description {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    color: #c5cde2;
}

.pwc-checklist {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    padding: 0;
}

.pwc-checklist-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    color: var(--renk-metin);
}

.pwc-checkmark-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--renk-ana);
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.pwc-checkmark-icon svg {
    fill: #fff;
    width: 14px;
    height: 14px;
}

.pwc-progress-bars {
    margin-bottom: 22px;
}

.pwc-progress-item {
    margin-bottom: 15px;
}

.pwc-progress-item p {
    margin: 0 0 8px 0;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--renk-metin);
}

.pwc-progress-bar {
    height: 10px;
    background-color: var(--renk-gri);
    border-radius: 5px;
    overflow: hidden;
}

.pwc-progress-fill {
    height: 100%;
    background-color: var(--renk-ana);
    border-radius: 5px;
    transition: width 1s ease-in-out;
    width: 0 !important;
}

.pwc-is-visible .pwc-progress-fill.pwc-fill-1 { width: 95% !important; transition-delay: 0.7s; }
.pwc-is-visible .pwc-progress-fill.pwc-fill-2 { width: 92% !important; transition-delay: 0.7s; }

.pwc-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background-color: var(--renk-ana);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(13, 49, 187, 0.25);
    align-self: flex-start;
}

.pwc-mobile-tag-icon { display: none; }

.pwc-btn:hover {
    background-color: #0a259c;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(13, 49, 187, 0.35);
}

.pwc-btn svg {
    margin-left: 12px;
    width: 20px;
    height: 20px;
}

@media (max-width: 900px) {
    .pwc-content-box {
        flex-direction: column;
    }
    .pwc-image-section {
        display: none !important; 
    }
    .pwc-image-section img { 
        transform: none;
        width: 100%;
        height: auto;
    }
    .pwc-text-section {
        padding: 28px 20px;  
        order: 1;
        text-align: center; 
    }
    .pwc-heading {
        font-size: 36px; 
    }
    .pwc-description {
        font-size: 18px; 
    }
    .pwc-tag {
        font-size: 15px; 
    }
    .pwc-mobile-tag-icon {
        display: block;
        width: 56px;
        height: auto;
        margin: 8px auto 12px; 
    }
    .pwc-checklist {
        flex-direction: column;
        gap: 15px;
        align-items: center; 
    }
    .pwc-checklist-item {
        text-align: center;
        font-size: 16px; 
    }
    .pwc-progress-item p {
        justify-content: center; 
        gap: 8px;
        text-align: center;
    }
    .pwc-btn {
        align-self: center; 
    }
}

@media (max-width: 767px) {
    .pwc-container {
        padding-left: 0;
        padding-right: 0;
        padding-top: 28px;   
        padding-bottom: 24px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .pwc-content-box {
        border-radius: 0;
        width: 100%;
    }
}
