/* Extracted from negotiator.php */

/* ═══════════════════════════════════════════════
   VACANCY NEGOTIATOR — CYBERPUNK LANDING CSS
   Westelecom Ukraine — 12.02.2026
   Стиль: Драйвовий киберпанк (впевнений, одеський)
   ═══════════════════════════════════════════════ */

/* === BASE === */
.vac-page {
    background: linear-gradient(180deg, #050810 0%, #0a0f1e 50%, #0c1020 100%);
    color: #e2e8f0;
    font-family: 'Inter', 'Roboto', -apple-system, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}
.vac-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HERO === */
.vac-hero {
    position: relative;
    padding: 100px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(255,107,0,0.04) 0%, transparent 50%);
}
.vac-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,212,255,0.02) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(0,212,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.vac-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 100px;
    color: #00d4ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0,212,255,0.1); }
    50% { box-shadow: 0 0 25px rgba(0,212,255,0.25); }
}
.vac-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.vac-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #00d4ff;
    font-weight: 600;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.vac-hero-desc {
    font-size: 20px;
    color: #94a3b8;
    margin: 0 0 12px;
    max-width: 700px;
}
.vac-hero-salary {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    padding: 12px 28px;
    border-radius: 12px;
    margin: 20px 0 32px;
}
.vac-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.vac-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #00d4ff, #0088cc);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}
.vac-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,212,255,0.35);
    color: #fff;
    text-decoration: none;
}
.vac-btn-tg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(0,136,204,0.1);
    border: 2px solid #0088cc;
    color: #00d4ff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}
.vac-btn-tg:hover {
    background: rgba(0,136,204,0.2);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.vac-btn-tg svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* === SECTIONS === */
.vac-section {
    padding: 80px 0;
    position: relative;
}
.vac-section:nth-child(even) {
    background: rgba(0,212,255,0.015);
}
.vac-section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    position: relative;
    padding-left: 20px;
}
.vac-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #00d4ff, #0066aa);
    border-radius: 2px;
}
.vac-section-desc {
    font-size: 18px;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 0 40px;
}

/* === SAFETY CARDS === */
.vac-safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.vac-safety-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,212,255,0.1);
    border-radius: 16px;
    transition: all 0.3s;
}
.vac-safety-card:hover {
    border-color: rgba(0,212,255,0.3);
    background: rgba(0,212,255,0.04);
    transform: translateY(-2px);
}
.vac-safety-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,212,255,0.1);
    border-radius: 12px;
}
.vac-safety-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00d4ff;
    fill: none;
    stroke-width: 2;
}
.vac-safety-text {
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.5;
}

/* === TASKS === */
.vac-tasks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.vac-task-item {
    padding: 28px 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,212,255,0.08);
    border-left: 4px solid #00d4ff;
    border-radius: 0 16px 16px 0;
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.7;
    transition: all 0.3s;
}
.vac-task-item:hover {
    border-left-color: #22c55e;
    background: rgba(0,212,255,0.03);
}
.vac-task-item strong {
    color: #00d4ff;
}

/* === WHY GRID === */
.vac-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.vac-why-card {
    padding: 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,212,255,0.08);
    border-radius: 16px;
    transition: all 0.3s;
}
.vac-why-card:hover {
    border-color: rgba(0,212,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.vac-why-title {
    font-size: 22px;
    font-weight: 700;
    color: #00d4ff;
    margin: 0 0 12px;
}
.vac-why-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
}

/* === FAQ === */
.vac-faq-list { margin-top: 32px; }
.vac-faq-item {
    border-bottom: 1px solid rgba(0,212,255,0.1);
}
.vac-faq-question {
    padding: 20px 48px 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.vac-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #00d4ff;
    transition: transform 0.3s;
}
.vac-faq-item.active .vac-faq-question::after {
    content: '−';
}
.vac-faq-question:hover { color: #00d4ff; }
.vac-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.vac-faq-item.active .vac-faq-answer {
    max-height: 500px;
}
.vac-faq-answer-content {
    padding: 0 0 20px;
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
}

/* === CTA === */
.vac-cta {
    text-align: center;
    padding: 80px 0 100px;
    background: radial-gradient(ellipse at center, rgba(0,212,255,0.05) 0%, transparent 70%);
}
.vac-cta-text {
    font-size: 20px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.vac-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.vac-cta-note {
    font-size: 14px;
    color: #64748b;
    margin-top: 16px;
}

/* === INLINE FORM === */
.vac-inline-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 20px;
    text-align: left;
}
.vac-inline-form h3 {
    font-size: 22px;
    color: #fff;
    margin: 0 0 24px;
    text-align: center;
}
.vac-form-group {
    margin-bottom: 16px;
}
.vac-form-label {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 6px;
    font-weight: 500;
}
.vac-form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s;
    outline: none;
    box-sizing: border-box;
}
.vac-form-input:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.vac-form-input::placeholder { color: #475569; }
.vac-form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff, #0088cc);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}
.vac-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,212,255,0.3);
}
.vac-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.vac-form-or {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #64748b;
}
.vac-form-tg-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(0,136,204,0.3);
    border-radius: 10px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.vac-form-tg-link:hover {
    background: rgba(0,136,204,0.1);
    color: #fff;
    text-decoration: none;
}
.vac-form-tg-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.vac-form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.vac-form-success.active { display: block; }
.vac-form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(34,197,94,0.15);
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #22c55e;
}
.vac-form-success-text {
    font-size: 18px;
    color: #e2e8f0;
    font-weight: 600;
}

/* === FLOATING TG BUTTON (mobile) === */
.vac-float-tg {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0088cc, #00aaee);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,136,204,0.4);
    align-items: center;
    gap: 8px;
    animation: floatPulse 2s ease-in-out infinite;
}
.vac-float-tg svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,136,204,0.4); }
    50% { box-shadow: 0 4px 35px rgba(0,136,204,0.6); }
}

/* === STICKY BADGE === */
.vac-sticky-badge {
    position: fixed;
    top: -60px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(10,15,30,0.95);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 0 0 12px 12px;
    color: #00d4ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: top 0.4s;
    backdrop-filter: blur(10px);
}
.vac-sticky-badge.visible { top: 0; }
.vac-sticky-badge svg {
    width: 18px;
    height: 18px;
    fill: #00d4ff;
    stroke: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .vac-hero { padding: 80px 0 60px; min-height: auto; }
    .vac-hero-desc { font-size: 17px; }
    .vac-hero-salary { font-size: 18px; padding: 10px 20px; }
    .vac-hero-btns { flex-direction: column; }
    .vac-btn-primary, .vac-btn-tg { width: 100%; justify-content: center; text-align: center; }
    .vac-safety-grid { grid-template-columns: 1fr; }
    .vac-why-grid { grid-template-columns: 1fr; }
    .vac-section { padding: 50px 0; }
    .vac-inline-form { padding: 24px; margin: 0 10px; }
    .vac-cta-btns { flex-direction: column; align-items: center; }
    .vac-float-tg { display: flex; }
}
@media (max-width: 480px) {
    .vac-hero-title { font-size: 28px; }
    .vac-hero-subtitle { font-size: 16px; }
    .vac-section-title { font-size: 22px; }
}
