/* Vacancy Montazhnik Landing Page Styles */
/* Color scheme: #1a365d (blue), #ff6b35 (orange), #f7fafc (bg) */

:root {
    --primary-blue: #1a365d;
    --primary-orange: #ff6b35;
    --bg-light: #f7fafc;
    --text-dark: #2d3748;
    --text-gray: #718096;
    --success-green: #48bb78;
    --card-shadow: 0 4px 20px rgba(26, 54, 93, 0.1);
}

.vacancy-landing {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.vacancy-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5282 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/vacancy/hero-pattern.svg') repeat;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 48px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.cta-button.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0%, 100% { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 8px 50px rgba(255, 107, 53, 0.6); }
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-benefits span {
    font-size: 16px;
    opacity: 0.9;
}

.vacancy-counter {
    margin-top: 24px;
    background: rgba(255, 107, 53, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.live-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Why Now Section */
.why-now-section {
    padding: 80px 0;
    background: white;
}

.why-now-section h2,
.benefits-section h2,
.requirements-section h2,
.trust-section h2,
.workday-section h2,
.testimonials-section h2,
.faq-section h2,
.form-section h2,
.cities-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-blue);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.why-card {
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.why-card p {
    color: var(--text-gray);
    margin: 0;
}

.why-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 54, 93, 0.15);
}

.benefit-card.highlight {
    background: linear-gradient(135deg, var(--primary-blue), #2c5282);
    color: white;
}

.benefit-card.highlight h3 {
    color: white;
}

.benefit-card.highlight ul li {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-gray);
}

.benefit-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.benefit-card.highlight ul li::before {
    color: #68d391;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.req-yes, .req-no {
    padding: 32px;
    border-radius: 16px;
}

.req-yes {
    background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
}

.req-no {
    background: linear-gradient(135deg, #fed7d7, #feb2b2);
}

.req-yes h3, .req-no h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.req-yes ul, .req-no ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-yes ul li, .req-no ul li {
    padding: 10px 0;
    font-size: 16px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--primary-blue);
    color: white;
}

.trust-section h2 {
    color: white;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
}

.timeline-text {
    font-size: 14px;
    opacity: 0.9;
    text-align: center;
}

.timeline-item.highlight {
    background: rgba(255, 107, 53, 0.2);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--primary-orange);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Workday Section */
.workday-section {
    padding: 80px 0;
    background: white;
}

.workday-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.workday-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    position: relative;
}

.workday-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 24px;
    background: var(--primary-blue);
    opacity: 0.2;
}

.workday-item:last-child::before {
    display: none;
}

.workday-time {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    min-width: 80px;
}

.workday-text {
    font-size: 16px;
}

.workday-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.testimonial-avatar {
    font-size: 48px;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5282 100%);
}

.form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h2 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 28px;
}

.form-header p {
    color: var(--text-gray);
    margin: 0;
}

.form-bonus {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #f59e0b;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #92400e;
    margin-top: 16px;
    font-weight: 500;
}

.vacancy-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.phone-input {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.phone-input:focus-within {
    border-color: var(--primary-orange);
}

.phone-prefix {
    padding: 14px 16px;
    background: var(--bg-light);
    font-weight: 500;
    color: var(--text-gray);
    border-right: 1px solid #e2e8f0;
}

.phone-input input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 16px;
}

.phone-input input:focus {
    outline: none;
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-orange);
}

.submit-button {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 16px;
}

.form-privacy a {
    color: var(--primary-orange);
}

.form-success {
    text-align: center;
    padding: 32px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.form-success h3 {
    color: var(--success-green);
    font-size: 24px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-gray);
}

.alternative-contacts {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.alternative-contacts p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.contact-btn.viber {
    background: #7360f2;
    color: white;
}

.contact-btn.email {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* Cities Section */
.cities-section {
    padding: 60px 0;
    background: white;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.city-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-card:hover {
    background: var(--primary-blue);
    color: white;
}

.city-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.city-card:hover .city-name {
    color: white;
}

.city-address {
    font-size: 12px;
    color: var(--text-gray);
}

.city-card:hover .city-address {
    color: rgba(255, 255, 255, 0.8);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.sticky-cta-button {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* Live Notification */
.live-notification {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
    z-index: 90;
}

.live-notification.show {
    transform: translateX(0);
}

.notification-icon {
    font-size: 24px;
}

.notification-text {
    font-size: 14px;
    color: var(--text-dark);
}

/* Exit Popup */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: white;
    padding: 48px;
    border-radius: 24px;
    max-width: 450px;
    text-align: center;
    position: relative;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
}

.exit-popup-content h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.exit-popup-content p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.exit-popup-btn {
    background: var(--primary-orange);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 32px;
    }
    
    .why-cards,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-wrapper {
        padding: 32px 24px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sticky-mobile-cta {
        display: block;
    }
    
    .live-notification {
        left: 10px;
        right: 10px;
        bottom: 80px;
    }
    
    /* Add padding for sticky CTA */
    .vacancy-landing {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 26px;
    }
    
    .why-now-section h2,
    .benefits-section h2,
    .requirements-section h2,
    .trust-section h2,
    .workday-section h2,
    .testimonials-section h2,
    .faq-section h2,
    .form-section h2,
    .cities-section h2 {
        font-size: 28px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* SEO Content Section */
.seo-content-section {
    padding: 60px 0;
    background: white;
}

.seo-article {
    max-width: 800px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
    line-height: 1.3;
}

.seo-article h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 32px 0 16px;
}

.seo-article p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.seo-article ul {
    margin: 16px 0 24px 24px;
    padding: 0;
}

.seo-article ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.seo-article ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.seo-article strong {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .seo-article h2 {
        font-size: 24px;
    }
    
    .seo-article h3 {
        font-size: 18px;
    }
}

/* Vacancy Modal Styles */
.vacancy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.vacancy-modal.show {
    display: flex;
}

.vacancy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.vacancy-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.vacancy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vacancy-modal-close:hover {
    background: #e2e8f0;
    color: #334155;
}

.vacancy-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.vacancy-modal-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 8px;
}

.vacancy-modal-header p {
    color: var(--text-gray);
    margin: 0;
    font-size: 16px;
}

.vacancy-modal-form .form-group {
    margin-bottom: 20px;
}

.vacancy-modal-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.vacancy-modal-form input[type=tel] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 18px;
    transition: border-color 0.3s;
    text-align: center;
    letter-spacing: 1px;
}

.vacancy-modal-form input[type=tel]:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.vacancy-modal-form .checkbox-group {
    margin: 16px 0;
}

.vacancy-modal-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
}

.vacancy-modal-form .checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-orange);
}

.vacancy-modal-submit {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.vacancy-modal-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.45);
}

.vacancy-modal-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 16px;
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 48px 40px;
}

.success-content .success-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 12px;
}

.success-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 0 28px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .vacancy-modal-content {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .vacancy-modal-header h3 {
        font-size: 22px;
    }
    
    .vacancy-modal-form input[type=tel] {
        font-size: 16px;
        padding: 14px 16px;
    }
}

/* Form input wrap fix */
.form-input-wrap {
    width: 100%;
}

.form-input-wrap input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input-wrap input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO SECTION - YouTube Embed with Lazy Loading
   SEO Optimized (08.12.2025)
   ═══════════════════════════════════════════════════════════════ */
.video-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
}

.video-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
}

.video-section .video-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.video-wrapper {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.3);
}

/* YouTube Facade for lazy loading */
.youtube-facade {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.youtube-facade:hover {
    transform: scale(1.02);
}

.youtube-facade:hover .play-button svg {
    transform: scale(1.1);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.play-button svg {
    transition: transform 0.2s ease;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.youtube-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.youtube-iframe.hidden {
    display: none;
}

.youtube-facade.hidden {
    display: none;
}

/* Video Benefits */
.video-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.video-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #2d3748;
}

.video-benefit .benefit-check {
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 640px) {
    .video-section {
        padding: 40px 0;
    }
    
    .video-section h2 {
        font-size: 24px;
        padding: 0 16px;
    }
    
    .video-section .video-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .video-wrapper {
        margin: 0 16px;
        border-radius: 12px;
    }
    
    .video-benefits {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* SEO Area text - альтернативні назви міст (Аккерман тощо) */
.hero-seo-area {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 640px) {
    .hero-seo-area {
        font-size: 12px;
    }
}

/* Exit popup form styles (08.12.2025) */
.exit-popup-form {
    margin-top: 20px;
}

.exit-phone-input {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.exit-phone-input .phone-prefix {
    color: #666;
    font-weight: 500;
    padding-right: 8px;
    border-right: 1px solid #ddd;
    margin-right: 8px;
}

.exit-phone-input input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
}

.exit-phone-input input::placeholder {
    color: #999;
}

/* ========================================
   STICKY VACANCY CTA WITH URGENCY (08.12.2025)
   ======================================== */

.sticky-vacancy-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    /* transform: translateY(100%); - прибрано, кнопка одразу видима */
    /* animation: slideUpSticky 0.5s ease forwards; */
    /* animation-delay: 2s; */
}

@keyframes slideUpSticky {
    to {
        transform: translateY(0);
    }
}

.sticky-cta-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sticky-cta-urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.urgency-icon {
    font-size: 18px;
    animation: flashUrgency 1s ease-in-out infinite;
}

@keyframes flashUrgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.urgency-text {
    color: rgba(255, 255, 255, 0.9);
}

.urgency-text strong {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 700;
}

.sticky-vacancy-cta .sticky-cta-button {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.sticky-vacancy-cta .sticky-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .sticky-vacancy-cta {
        padding: 10px 15px;
    }
    
    .sticky-cta-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .sticky-cta-urgency {
        font-size: 13px;
    }
    
    .sticky-vacancy-cta .sticky-cta-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Hide old sticky mobile cta */
.sticky-mobile-cta {
    display: none !important;
}

/* Add bottom padding to page for sticky CTA */
body {
    padding-bottom: 80px;
}

@media (max-width: 640px) {
    body {
        padding-bottom: 100px;
    }
}

/* Simple phone input without prefix (08.12.2025) */
.exit-phone-wrapper input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    background: #fff;
}

.exit-phone-wrapper input::placeholder {
    color: #999;
}

/* FORCE sticky button visible (08.12.2025) */
.sticky-vacancy-cta {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
}

/* ========================================
   ЯСКРАВА ЛИПКА КНОПКА ВАКАНСІЙ (08.12.2025)
   Зелений колір - відрізняється від червоної кнопки підключення
   ======================================== */

.sticky-vacancy-cta {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%) !important;
    box-shadow: 0 -4px 30px rgba(16, 185, 129, 0.5), 0 0 20px rgba(52, 211, 153, 0.3) !important;
    border-top: 2px solid #6ee7b7 !important;
}

.sticky-cta-urgency {
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
}

.urgency-text strong {
    color: #fef08a !important;
    text-shadow: 0 0 10px rgba(254, 240, 138, 0.5);
    font-size: 20px !important;
}

.urgency-icon {
    color: #fef08a !important;
    font-size: 22px !important;
    text-shadow: 0 0 10px rgba(254, 240, 138, 0.8);
}

.sticky-vacancy-cta .sticky-cta-button {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5), 0 0 15px rgba(245, 158, 11, 0.3) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #fef08a !important;
    animation: pulseGlow 2s ease-in-out infinite !important;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5), 0 0 15px rgba(245, 158, 11, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(251, 191, 36, 0.7), 0 0 25px rgba(245, 158, 11, 0.5);
        transform: scale(1.02);
    }
}

.sticky-vacancy-cta .sticky-cta-button:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 30px rgba(251, 191, 36, 0.7), 0 0 30px rgba(245, 158, 11, 0.5) !important;
}

/* Mobile: ще яскравіше */
@media (max-width: 640px) {
    .sticky-vacancy-cta {
        padding: 12px 15px !important;
    }
    
    .sticky-vacancy-cta .sticky-cta-button {
        font-size: 15px !important;
        padding: 16px 24px !important;
    }
}

/* SEO Content Section (14.12.2025) */
.seo-content-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.seo-intro {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #3b82f6;
}

.seo-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

.seo-block {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.seo-booking {
    border-left: 4px solid #10b981;
}

.seo-housing {
    border-left: 4px solid #f59e0b;
}

.seo-vacancy {
    border-left: 4px solid #6366f1;
}

.seo-block h2 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.seo-block h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 15px;
}

.seo-block p:last-child {
    margin-bottom: 0;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.seo-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.seo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.seo-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.seo-cta p {
    color: white;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.seo-cta p strong {
    color: #fbbf24;
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 40px 0;
    }
    .seo-intro, .seo-block, .seo-cta {
        padding: 20px;
    }
    .seo-block h2 {
        font-size: 20px;
    }
    .seo-block h3 {
        font-size: 18px;
    }
}
