* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0f2e 0%, #1a1a4e 40%, #2d1b69 100%);
    min-height: 100vh;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6c63ff, #3fc1c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.header-tag {
    background: rgba(108, 99, 255, 0.2);
    border: 1px solid rgba(108, 99, 255, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #a5a0ff;
}

/* Hero */
.hero {
    text-align: center;
    padding: 40px 0 50px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #6c63ff, #3fc1c9);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(108, 99, 255, 0.3);
}

.subtitle {
    font-size: 1.3rem;
    color: #3fc1c9;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.05rem;
    color: #b0b0c8;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Section */
.section {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #6c63ff, #3fc1c9);
    border-radius: 2px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(108, 99, 255, 0.1);
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.benefit-desc {
    font-size: 0.85rem;
    color: #9090b0;
    line-height: 1.5;
}

/* Positions */
.positions {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.position-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: rgba(108, 99, 255, 0.4);
    background: rgba(108, 99, 255, 0.08);
}

.position-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.position-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.position-tag {
    background: rgba(63, 193, 201, 0.15);
    color: #3fc1c9;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(63, 193, 201, 0.3);
}

.position-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    color: #9090b0;
    font-size: 0.9rem;
}

.salary {
    color: #6c63ff;
    font-weight: 700;
    font-size: 1rem;
}

.position-req {
    list-style: none;
    padding: 0;
}

.position-req li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #b0b0c8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.position-req li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3fc1c9;
    font-weight: 700;
}

/* Process */
.process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 140px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c63ff, #3fc1c9);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 12px;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.step-desc {
    font-size: 0.85rem;
    color: #9090b0;
}

.process-arrow {
    font-size: 1.5rem;
    color: #6c63ff;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(63, 193, 201, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.cta-desc {
    color: #b0b0c8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-icon {
    width: 22px;
    height: 22px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.telegram-btn {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    box-shadow: 0 5px 25px rgba(42, 171, 238, 0.35);
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(42, 171, 238, 0.5);
}

.response-time {
    color: #7070a0;
    font-size: 0.85rem;
}

/* Notice */
.notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 14px;
    margin-bottom: 40px;
}

.notice-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-text {
    font-size: 0.9rem;
    color: #c0c0d8;
    line-height: 1.7;
}

.notice-text strong {
    color: #ffc107;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #5050708c;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-arrow {
        display: none;
    }

    .process {
        flex-direction: column;
        gap: 12px;
    }

    .process-step {
        width: 100%;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .title {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .position-details {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .cta-section {
        padding: 30px 18px;
    }
}
