.windows-client-section {
    background: var(--wfs-darker);
    padding: 100px 20px;
}

.privacy-banner {
    background: linear-gradient(135deg, rgba(0, 204, 136, 0.1) 0%, rgba(0, 204, 136, 0.05) 100%);
    border: 2px solid var(--wfs-success);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.privacy-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.privacy-content h3 {
    color: var(--wfs-success);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.privacy-content p {
    color: var(--wfs-white);
    line-height: 1.8;
    font-size: 1.05rem;
}

.privacy-content strong {
    color: var(--wfs-success);
}

.client-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.client-info h3 {
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.client-info > p {
    color: var(--wfs-light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.protection-types h4 {
    color: var(--wfs-yellow);
    margin-bottom: 20px;
}

.protection-list {
    list-style: none;
}

.protection-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(229, 199, 56, 0.05);
}

.protection-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.protection-list strong {
    display: block;
    color: var(--wfs-white);
    margin-bottom: 5px;
}

.protection-list p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
}

.client-visual {
    position: relative;
}

.windows-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    min-height: 400px;
    position: relative;
}

.notification-popup {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    position: absolute;
    top: 30px;
    right: 30px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.notification-icon {
    width: 20px;
    height: 20px;
}

.notification-header span {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.attack-blocked {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blocked-icon {
    font-size: 2rem;
}

.attack-blocked strong {
    display: block;
    color: #333;
    font-size: 0.95rem;
}

.attack-blocked small {
    color: #666;
    font-size: 0.85rem;
}

.client-stats-widget {
    background: rgba(229, 199, 56, 0.05);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    max-width: 250px;
}

.client-stats-widget h5 {
    color: var(--wfs-yellow);
    margin-bottom: 15px;
}

.widget-stats {
    display: flex;
    gap: 20px;
}

.widget-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wfs-white);
}

.stat-text {
    display: block;
    font-size: 0.75rem;
    color: var(--wfs-light-gray);
    margin-top: 5px;
}

.how-it-works {
    margin: 80px 0;
    text-align: center;
}

.how-it-works h3 {
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 0 1 200px;
    padding: 30px 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(229, 199, 56, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--wfs-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: var(--wfs-white);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
}

.process-arrow {
    color: var(--wfs-yellow);
    font-size: 2rem;
    flex-shrink: 0;
}

.email-protection {
    background: rgba(229, 199, 56, 0.03);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    margin: 60px 0;
}

.email-protection h3 {
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.email-protection > p {
    color: var(--wfs-white);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.email-protection strong {
    color: var(--wfs-yellow);
}

.privacy-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.explanation-card {
    padding: 30px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 15px;
    text-align: center;
}

.explanation-card h4 {
    color: var(--wfs-yellow);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.explanation-card p {
    color: var(--wfs-light-gray);
    line-height: 1.6;
}

.privacy-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(229, 199, 56, 0.05);
    border-left: 3px solid var(--wfs-yellow);
    border-radius: 5px;
}

.privacy-note p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
    font-style: italic;
}

.privacy-comparison {
    margin: 80px 0;
}

.privacy-comparison h3 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: 20px;
}

.comparison-card.other-solutions {
    background: rgba(255, 51, 102, 0.05);
    border: 2px solid rgba(255, 51, 102, 0.3);
}

.comparison-card.wf-solution {
    background: rgba(0, 204, 136, 0.05);
    border: 2px solid rgba(0, 204, 136, 0.3);
}

.comparison-card h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.other-solutions h4 {
    color: var(--wfs-danger);
}

.wf-solution h4 {
    color: var(--wfs-success);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 10px 0;
    color: var(--wfs-light-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card li:last-child {
    border-bottom: none;
}

.client-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit {
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(229, 199, 56, 0.05);
    text-align: center;
}

.benefit h4 {
    color: var(--wfs-success);
    margin-bottom: 10px;
}

.benefit p {
    color: var(--wfs-light-gray);
}

@media (max-width: 1024px) {
    .client-overview {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .privacy-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .email-protection {
        padding: 40px 20px;
    }
}
