.container {
    max-width: 1200px;
    padding: 0;
}

/* === ШАПКА === */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo a {
    display: flex;
    align-items: center;
}

.header__logo img {
    width: 170px;
    height: auto;
}

.header__nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 0;
    flex-direction: row;
    margin-right: 40px;
}

.header__nav-list {
    display: flex;
    gap: 20px;
}

.header__button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.header__button-link {
    display: flex;
    align-items: center;
    justify-content: center;
}




/* === БУРГЕР-МЕНЮ === */
.header__mobile-nav {
    display: none;
}

.lang__mobile {
    display: none;
}









/* === ОСНОВНОЙ КОНТЕНТ === */
.main {
    flex-direction: column;
}


.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 500px;
    width: 100%;
    background-color: #f0f0f0;
}

.btn--primary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 200px;
    background-color: #3c70d8;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* === ПРЕИМУЩЕСТВА === */
#benefits {
    padding: 80px 0;
    background: white;
}

#benefits .section__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#benefits h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

#benefits .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 40px;
}

#benefits .card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

#benefits .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3c70d8;
}

#benefits .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(60, 112, 216, 0.15);
}

#benefits .card h3 {
    color: #3c70d8;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

#benefits .card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}




/* === СПЕЦИАЛИСТЫ === */
#team {
    min-height: 600px;
    padding: 60px 0;
    background-color: #f8f9fa;
}

#team .section__content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

#team h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
}

#team .team__card {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#team .team__card-content {
    flex: 1;
}

#team .team__card-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

#team .team__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}







/* === ВРЕМЕННАЯ ШКАЛА === */
#process {
    padding: 80px 0;
    background: white;
}

#process .section__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

#process h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: 80px;
    width: 3px;
    background: #3c70d8;
    border-radius: 2px;
    z-index: 1;
}

.timeline__item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__number {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 50px;
    height: 50px;
    background: #3c70d8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(60, 112, 216, 0.4);
    z-index: 3;
    border: 3px solid white;
}

.timeline__content {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline__content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(60, 112, 216, 0.15);
}

.timeline__content h3 {
    color: #3c70d8;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline__content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

/* === ГАРАНТИЯ === */
#guarantee {
    padding: 80px 0;
    background: white;
}

#guarantee .section__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

#guarantee h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.guarantee__content {
    background: white;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3c70d8;
}

.guarantee__content p {
    color: #333;
    line-height: 1.8;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
}

/* === ФОРМА ОБРАТНОЙ СВЯЗИ === */
#cta {
    padding: 80px 0;
    background: white;
}

#cta .section__content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

#cta h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.contact-form {
    background: white;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3c70d8;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #3c70d8;
    box-shadow: 0 0 0 3px rgba(60, 112, 216, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    margin-top: 10px;
    height: 55px;
    font-size: 18px;
    font-weight: 600;
}

.form-hint {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.form-error {
    background: #fee;
    color: #c33;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #fcc;
}

.form-success {
    background: #efe;
    color: #363;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #cfc;
}

/* === FAQ === */
#faq {
    padding: 80px 0;
    background: white;
}

#faq .section__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

#faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.faq__content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq__item {
    border-bottom: 1px solid #f0f0f0;
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__question {
    padding: 25px 30px;
    background: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: background-color 0.3s ease;
    list-style: none;
}

.faq__question:hover {
    background-color: #f5f5f5;
}

.faq__question::before {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #3c70d8;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::before {
    transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
    padding: 0 30px 25px 30px;
    background: white;
}

.faq__answer p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}