/* Page-specific styles for `dla-pracodawcow.html`
   Extracted from inline <style> (moved out of <body>) to avoid late style recalculation jank.
   NOTE: aggressive "hide fixed elements / remove dots" rules were intentionally removed as they
   were hiding legitimate UI and causing extra work (MutationObserver + forced style). */

/* Скрываем псевдоэлементы, которые могут создавать точки */
.about::before,
.about::after,
.page-header::before,
.page-header::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
}

.page-header {
    padding: 80px 20px 40px;
    background: linear-gradient(to bottom, rgba(42, 42, 42, 0.95), rgba(47, 47, 47, 0.9));
    text-align: center;
    margin-bottom: 0;
}

.page-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.15);
    animation: titleGlow 4s ease-in-out infinite;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3), 0 0 15px rgba(212, 175, 55, 0.15);
    animation: underlineGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 15px rgba(212, 175, 55, 0.15);
    }
    50% {
        text-shadow: 0 2px 20px rgba(212, 175, 55, 0.25), 0 0 25px rgba(212, 175, 55, 0.1);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.3), 0 0 15px rgba(212, 175, 55, 0.15);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.25);
        opacity: 0.95;
    }
}

.services-grid-employers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 0;
}

.service-card-employer {
    background: var(--section-bg);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.service-card-employer:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-title-employer {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description-employer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: clamp(15px, 1.8vw, 16px);
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: var(--section-bg);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    border-color: var(--accent-color);
    transform: translateX(10px);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    min-width: 80px;
}

.benefit-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.employer-cta {
    margin-top: 50px;
    padding: 40px;
    background: var(--section-bg);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    text-align: center;
}

.employer-cta-text {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

.job-apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--cta-primary) 0%, #1d4ed8 100%);
    color: var(--secondary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

@media (max-width: 768px) {
    .page-header {
        padding: 70px 15px 30px;
    }

    .page-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 20px;
    }

    .page-title::after {
        height: 2px;
        bottom: -10px;
    }

    .about {
        padding-top: 15px !important;
    }

    .services-grid-employers {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-employer {
        padding: 25px 20px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .benefit-number {
        min-width: auto;
    }

    .employer-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

