* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #121215;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* HEADER */
.header {
    background-color: #0a0a0c;
    border-bottom: 1px solid #1f1f23;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
}

.header-tagline {
    color: #10e833;
    font-weight: 600;
    font-size: 14px;
}

/* HERO SECTION */
.hero {
    padding: 60px 0;
    background-image: radial-gradient(circle at top right, #1a1b22, #121215);
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-content {
    flex: 1 1 500px;
}

.badge {
    display: inline-block;
    background: rgba(16, 232, 51, 0.15);
    color: #10e833;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 232, 51, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 900;
}

.subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bullet-icon {
    font-size: 28px;
    background: #1e1e24;
    padding: 10px;
    border-radius: 12px;
}

.hero-bullets strong {
    font-size: 1.1rem;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.hero-bullets p {
    color: #909090;
    font-size: 0.95rem;
}

/* FORM BOX */
.hero-form-box {
    flex: 1 1 350px;
    background: #1a1a20;
    border: 1px solid #2a2a35;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.form-header h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-header p {
    color: #10e833;
    font-weight: 600;
    font-size: 0.9rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #333;
    background: #121215;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    appearance: none;
}

input:focus, select:focus {
    border-color: #10e833;
    background: #16161a;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #10e833;
    pointer-events: none;
    font-size: 12px;
}

.btn-submit {
    margin-top: 10px;
    padding: 18px;
    background: #10e833;
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(16, 232, 51, 0.3);
}

.btn-submit:hover {
    background: #12f537;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 232, 51, 0.4);
}

.form-policy {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
}

.form-policy a {
    color: #888;
    text-decoration: underline;
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 800;
}

/* VACANCIES */
.vacancies {
    padding: 80px 0 40px;
    background-color: #121215;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #1a1a20;
    border: 1px solid #2a2a35;
    padding: 35px;
    border-radius: 16px;
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.card:hover {
    border-color: #10e833;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(16, 232, 51, 0.1);
}

.card-icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.salary {
    color: #10e833;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a35;
}

.card p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* VACANCY DETAILS */
.vacancy-details {
    padding: 20px 0 80px;
    background-color: #121215;
}

.detail-block {
    background: #1e1e24;
    border-left: 4px solid #10e833;
    padding: 30px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    scroll-margin-top: 40px; /* Отступ сверху при плавном скролле */
}

.detail-icon {
    font-size: 40px;
    background: #121215;
    padding: 15px;
    border-radius: 12px;
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.detail-content p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.7;
}

/* STEPS */
.steps {
    padding: 60px 0 100px;
    background-color: #0a0a0c;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-item {
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(16, 232, 51, 0.1);
    color: #10e833;
    border: 2px solid #10e833;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-item p {
    color: #888;
    font-size: 0.95rem;
}

/* FOOTER */
footer {
    background: #050505;
    padding: 30px 0;
    border-top: 1px solid #1f1f23;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #10e833;
}

.copyright {
    color: #444;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-container {
        gap: 30px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .detail-block {
        flex-direction: column;
        gap: 15px;
    }
}
