/* CWP Box - Proces Współpracy Styles */
/* Reset i podstawowe style */
.cwp-box-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cwp-box-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Header Section */
.cwp-box-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cwp-box-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.cwp-box-logo-text {
    display: inline-block;
    background: linear-gradient(to bottom, #7f31ff 0%, #4279f1 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cwp-box-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.cwp-box-subtitle {
    font-size: 20px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
}

/* Process Box */
.cwp-box-process-box {
    background-color: #f8f9fa;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pionowa linia łącząca kroki */
.cwp-box-process-box::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 80px;
    bottom: 80px;
    width: 2px;
    background: linear-gradient(to bottom, #e0e0e0, #d0d0d0);
    z-index: 1;
}

.cwp-box-process-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
}

.cwp-box-process-item:last-child {
    margin-bottom: 0;
}

/* Step Pills */
.cwp-box-step-pill {
    background: linear-gradient(to bottom, #7f31ff 0%, #4279f1 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 220px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(127, 49, 255, 0.3);
    position: relative;
}

.cwp-box-step-number {
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: none;
    padding: 0;
    border-radius: 0;
    min-width: auto;
    text-align: center;
}

.cwp-box-step-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    margin-left: 8px;
}

/* Step Descriptions */
.cwp-box-step-description {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.7;
    padding-top: 8px;
    flex: 1;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cwp-box-container {
        padding: 20px 15px;
    }
    
    .cwp-box-title {
        font-size: 36px;
    }
    
    .cwp-box-subtitle {
        font-size: 18px;
    }
    
    .cwp-box-process-box {
        padding: 40px 25px;
    }
    
    .cwp-box-process-box::before {
        left: 60px;
        top: 60px;
        bottom: 60px;
    }
    
    .cwp-box-process-item {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    
    .cwp-box-step-pill {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .cwp-box-step-description {
        padding-top: 0;
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cwp-box-title {
        font-size: 28px;
    }
    
    .cwp-subtitle {
        font-size: 16px;
    }
    
    .cwp-box-process-box {
        padding: 30px 20px;
    }
    
    .cwp-box-process-box::before {
        left: 50px;
        top: 50px;
        bottom: 50px;
    }
    
    .cwp-box-step-pill {
        padding: 6px 12px;
    }
    
    .cwp-box-step-number {
        font-size: 14px;
    }
    
    .cwp-box-step-title {
        font-size: 12px;
    }
    
    .cwp-box-step-description {
        font-size: 14px;
    }
}

/* Hover effects */
.cwp-box-step-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 49, 255, 0.4);
    transition: all 0.3s ease;
}

.cwp-box-process-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* WordPress Admin Compatibility */
.wp-admin .cwp-box-container {
    max-width: none;
    padding: 20px;
}

.wp-admin .cwp-box-title {
    font-size: 32px;
}

.wp-admin .cwp-box-subtitle {
    font-size: 16px;
}
