* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

button {
    background: none;
    padding: 0;
    border: none;
    outline: none;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #222;
}

/* Buttons */
.button a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.button--primary {
    color: white;
}

.button--primary a {
    background-color: #ff4800;
}

.button--primary a:hover {
    background-color: rgba(255, 72, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 113, 0, 0.3);
}

.button--secondary {
    color: rgb(255, 72, 0);
}

.button--secondary a {
    background-color: transparent;
    border: 2px solid rgb(255, 72, 0);
}

.button--secondary a:hover {
    background-color: rgb(255, 72, 0);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 113, 0, 0.3);
}

.button--large a {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.button a {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header__logo {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    position: relative;
}

.header__logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__nav {
    display: flex;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header__menu-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__menu-link:hover {
    color: rgb(255, 72, 0);
}

.header__button a {
    padding: 10px 20px;
}

.header__burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.header__burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.hero__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
}

.hero__image {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #ccc;
}

.hero__image img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.statistics__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.statistics__item {
    text-align: center;
}

.statistics__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(255, 72, 0);
    margin-bottom: 0.5rem;
}

.statistics__icon {
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 0.9rem;
    color: #666;
}

/* New Info Section */
.info-section {
    padding: 80px 0;
    background-color: #fff;
}

.info-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-section__text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.info-section__image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Vacancies Section */
.vacancies {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vacancies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.vacancy-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vacancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vacancy-card__image {
    height: 180px;
    overflow: hidden;
    margin: 0px 0px 10px 0px;
}

.vacancy-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vacancy-card:hover .vacancy-card__image img {
    transform: scale(1.05);
}

.vacancy-card__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vacancy-card__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #222;
    padding: 0px 10px;
}

.vacancy-card__salary {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgb(255, 72, 0);
    margin-bottom: 1rem;
    padding: 0px 10px;
}

.vacancy-card__description {
    margin-bottom: 1rem;
    color: #666;
    flex-grow: 1;
    padding: 0px 10px;
}

.vacancy-card__skills {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    padding: 0px 10px;
}

.vacancy-card__button a {
    margin-top: auto;
    width: 100%;
    display: inline-block;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: white;
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.how-it-works__step {
    text-align: center;
    padding: 2rem;
}

.how-it-works__number {
    width: 60px;
    height: 60px;
    background-color: rgb(255, 72, 0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.how-it-works__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222;
}

.how-it-works__text {
    color: #666;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.advantages__item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantages__item.span-two {
    grid-column: span 2;
}

.advantages__item:hover {
    transform: translateY(-5px);
}

.advantages__icon {
    margin-bottom: 1.5rem;
}

.advantages__title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222;
}

.advantages__text {
    color: #666;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: white;
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.reviews__item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reviews__text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.reviews__author {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.reviews__name {
    font-weight: 700;
    color: #222;
}

.reviews__position {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq__items {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq__question {
    background-color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq__question svg {
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question svg {
    transform: rotate(45deg);
}

.faq__answer {
    background-color: white;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(255, 72, 0) 0%, rgba(255, 72, 0, 0.6) 100%);
    color: white;
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__button a {
    background-color: white;
    color: rgb(255, 72, 0);
}

.cta__button a:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Telegram Section */
.telegram {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.telegram__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.telegram__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.telegram__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.telegram__features {
    margin-bottom: 2rem;
}

.telegram__feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.telegram__feature svg {
    margin-right: 1rem;
    flex-shrink: 0;
}

.telegram__image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #222;
    color: white;
    padding: 3rem 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    position: relative;
}

.footer__logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: rgb(255, 72, 0);
}

.footer__copyright {
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 1120px) {
    .header__nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        border-bottom: 1px solid #000;
        z-index: 999;
    }

    .header__nav.active {
        display: block;
    }

    .header__inner {
        justify-content: flex-start;
    }

    .header__button {
        margin: 0px 20px;
        flex: 1 1 auto;
        text-align: right;
    }

    .header__button a {
        display: inline-block;
    }

    .header__menu {
        display: block;
    }
    
    .header__burger {
        display: flex;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero__inner,
    .telegram__inner,
    .info-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .statistics__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works__steps {
        grid-template-columns: 1fr;
    }
    
    .footer__inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .vacancies__grid {
        grid-template-columns: 1fr;
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
    }

    .advantages__item.span-two {
        grid-column: span 1;
    }
    
    .reviews__slider {
        grid-template-columns: 1fr;
    }
    
    .statistics__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {
    .header__inner {
        justify-content: space-between;
    }
    .header__button {
        display: none;
    }
}

/* Alternative Color Scheme - Blue */
.color-scheme-blue {
    --primary-color: #007bff;
    --primary-hover: #0069d9;
}

.color-scheme-blue .button--primary a {
    background-color: var(--primary-color);
}

.color-scheme-blue .button--primary a:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.color-scheme-blue .button--secondary a {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.color-scheme-blue .button--secondary a:hover {
    background-color: var(--primary-color);
}

.color-scheme-blue .statistics__number,
.color-scheme-blue .advantages__icon path,
.color-scheme-blue .faq__question svg path,
.color-scheme-blue .telegram__feature svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.color-scheme-blue .cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
}

/* Alternative Color Scheme - Green */
.color-scheme-green {
    --primary-color: #28a745;
    --primary-hover: #218838;
}

.color-scheme-green .button--primary a {
    background-color: var(--primary-color);
}

.color-scheme-green .button--primary a:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.color-scheme-green .button--secondary a {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.color-scheme-green .button--secondary a:hover {
    background-color: var(--primary-color);
}

.color-scheme-green .statistics__number,
.color-scheme-green .advantages__icon path,
.color-scheme-green .faq__question svg path,
.color-scheme-green .telegram__feature svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.color-scheme-green .cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
}
