/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
}

/* Шрифты */
/* Unbounded Semibold используется для заголовков */
/* Montserrat Light (300), Regular (400), Medium (500) используется для текста */

/* Правило верхних отступов: каждый элемент имеет margin-top */
/* При увеличении размера элемента выше, элементы ниже сохраняют свои отступы и смещаются вниз */
body > * {
    margin-top: 0;
}

body > * + * {
    margin-top: 0; /* Будет задаваться индивидуально для каждого элемента */
}

/* Мобильная версия (375px) - отступы 10px слева и справа */
body {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Блок Hero */
.hero {
    position: relative;
    width: 100%;
    overflow: visible;
}

/* Анимация появления элементов hero блока */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Обертка для контента */
.content-wrapper {
    position: relative;
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Обертка для логотипа */
.logo-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 10;
    width: 70px;
    height: 26.8px;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

/* 1. Логотип */
.logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
}

.logo-wrapper {
    margin: 40px auto 0;
}

.logo.animate {
    animation: heroFadeInUp 0.6s ease-out 2s forwards;
}

/* 2. Надпись "ПРОЗРАЧНО И ВЫГОДНО" */
.tagline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #121111;
    border: 1px solid #121111;
    border-radius: 100px;
    padding: 5px 20px;
    text-align: center;
    margin: 40px auto 0;
    display: inline-block;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.tagline.animate {
    animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
}

/* 3. Заголовок */
.main-heading {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #121111;
    text-align: center;
    margin: 20px auto 0;
    width: 100%;
    max-width: 355px;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.main-heading.animate {
    animation: heroFadeInUp 0.8s ease-out 0.3s forwards;
}

.main-heading .highlight {
    color: #F7C143;
}

/* 4. Линия */
.divider {
    width: 355px;
    height: 1px;
    background-color: #B6B6B6;
    margin: 20px auto 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.divider.animate {
    animation: heroFadeInUp 0.8s ease-out 0.4s forwards;
}

/* 5. Текст */
.description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #404040;
    text-align: center;
    margin: 20px auto 0;
    width: 100%;
    max-width: 355px;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.description.animate {
    animation: heroFadeInUp 0.8s ease-out 0.5s forwards;
}

/* 6. Кнопки */
.buttons-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 355px;
    margin: 40px auto 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.buttons-wrapper.animate {
    animation: heroFadeInUp 0.8s ease-out 0.6s forwards;
}

.buttons-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
}

.btn-icon {
    width: 60px;
    height: 60px;
    background-color: #F7C143;
    border: none;
    border-bottom: 4px solid #D6A532;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.btn-icon-img {
    width: 18.75px;
    height: 18.75px;
}

.btn-primary {
    flex: 1;
    height: 60px;
    background-color: #F7C143;
    color: #FFFFFF;
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 17px;
    border: none;
    border-bottom: 4px solid #D6A532;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Изображение */
.bg-image {
    width: 993px;
    height: 350px;
    position: relative;
    left: 0px;
    margin-top: 10px;
    margin-left: calc(-50vw + 50%);
    object-fit: cover;
    align-self: flex-start;
    z-index: 0;
    opacity: 0;
    transform: translateY(30px);
}

.bg-image.animate {
    animation: heroFadeInUp 0.8s ease-out 0.7s forwards;
}

/* Блок Преимущества */
.advantages {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -60px;
    background-color: #121111;
    border-radius: 20px;
    min-height: 100px;
    padding-top: 60px;
    padding-bottom: 160px;
    position: relative;
    z-index: 1;
}

.advantages-wrapper {
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Логотип в блоке Преимущества */
.advantages-logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: -20px auto 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.advantages-logo.animate {
    animation: heroFadeInUp 0.8s ease-out 0.1s forwards;
}

/* Плашки в блоке Преимущества */
.advantages-item {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: center;
}

/* 2. Плашка - верхний отступ 20px */
.advantages-item-2 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.advantages-item-2.animate {
    animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
}

/* 3. Плашка - верхний отступ 10px */
.advantages-item-3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.advantages-item-3.animate {
    animation: heroFadeInUp 0.8s ease-out 0.3s forwards;
}

/* 4. Линия - верхний отступ 20px */
.advantages-divider {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.advantages-divider.animate {
    animation: heroFadeInUp 0.8s ease-out 0.4s forwards;
}

/* Группы преимуществ */
.advantages-group {
    position: relative;
    width: 100%;
    max-width: 355px;
    opacity: 0;
    transform: translateY(30px);
}

.advantages-group.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* Цифры в группах */
.advantages-number {
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 200px;
    color: #FFFFFF;
    opacity: 0.02;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    /* Анимация для цифр уже включена в родительский .advantages-group */
}

/* 5. Плашка - верхний отступ 80px */
.advantages-item-5 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* 6. Плашка - верхний отступ 10px */
.advantages-item-6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* 7. Плашка - верхний отступ 80px */
.advantages-item-7 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* 8. Плашка - верхний отступ 10px */
.advantages-item-8 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* 9. Плашка - верхний отступ 80px */
.advantages-item-9 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* 10. Плашка - верхний отступ 10px */
.advantages-item-10 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* 11. Плашка - верхний отступ 80px */
.advantages-item-11 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* 12. Плашка - верхний отступ 10px */
.advantages-item-12 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: left;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Плашки с выравниванием по левому краю */
.advantages-item-left {
    text-align: left;
    align-self: flex-start;
}

/* Линия в блоке Преимущества */
.advantages-divider {
    width: 355px;
    height: 1px;
    background-color: #FFFFFF;
    align-self: center;
}

/* Блок Онлайн-рассчет */
.online-calc {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -40px;
    background-color: #FFFFFF;
    border-radius: 20px;
    min-height: 100px;
    padding-bottom: 160px;
    position: relative;
    z-index: 1;
}

.online-calc-wrapper {
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Логотип в блоке Онлайн-рассчет */
.online-calc-logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: 40px auto 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.online-calc-logo.animate {
    animation: heroFadeInUp 0.8s ease-out 0.1s forwards;
}

/* 2. Плашка заголовка - такие же настройки как .advantages-item-2 */
.online-calc-title {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 355px;
    color: #121111;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.online-calc-title.animate {
    animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
}

.online-calc-title .highlight {
    color: #F7C143;
}

/* 3. Плашка под заголовка - такие же настройки как .advantages-item-3 */
.online-calc-subtitle {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    width: 100%;
    max-width: 355px;
    color: #404040;
    text-align: center;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.online-calc-subtitle.animate {
    animation: heroFadeInUp 0.8s ease-out 0.3s forwards;
}

/* 4. Линия в блоке Онлайн-рассчет */
.online-calc-divider {
    width: 355px;
    height: 1px;
    background-color: #B6B6B6;
    margin: 20px -10px 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.online-calc-divider.animate {
    animation: heroFadeInUp 0.8s ease-out 0.4s forwards;
}

/* Общая группа для всех полей ввода */
.online-calc-fields-group {
    margin-top: 20px;
    width: 100%;
    max-width: 355px;
    opacity: 0;
    transform: translateY(30px);
}

.online-calc-fields-group.animate {
    animation: heroFadeInUp 0.8s ease-out 0.5s forwards;
}

/* Группа поля ввода (надпись + поле) */
.online-calc-field-group {
    margin-top: 20px;
    width: 100%;
    max-width: 355px;
}

.online-calc-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #121111;
    text-align: center;
    margin-bottom: 10px;
}

.online-calc-help {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #8E8E8E;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: underline;
}

/* Контейнер подсказки */
.online-calc-tooltip {
    position: fixed;
    width: 355px;
    background-color: rgba(240, 240, 240, 0.91);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    box-shadow: 0 0 45.7px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0;
    z-index: 1000;
    display: none;
    left: 50%;
    transform: translateX(-50%);
}

.online-calc-tooltip-close {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 13px;
    height: 13px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.online-calc-tooltip-close svg {
    width: 13px;
    height: 13px;
}

.online-calc-tooltip-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #121111;
    text-align: center;
    width: 295px;
    margin: 40px auto 40px;
    line-height: 1.4;
}

/* Анимация для подсказки */
@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes tooltipFadeOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
    }
}

.online-calc-tooltip.active {
    animation: tooltipFadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.online-calc-tooltip.closing {
    animation: tooltipFadeOut 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.online-calc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.online-calc-controls-single {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.online-calc-select-wrapper {
    position: relative;
    width: 335px;
    display: flex;
    align-items: center;
}

.online-calc-select {
    width: 100%;
    height: 40px;
    background-color: #F0F0F0;
    border: none;
    border-radius: 10px;
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #121111;
    text-align: center;
    padding: 0 40px 0 0;
    box-sizing: border-box;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    text-transform: uppercase;
}

.online-calc-select:focus {
    outline: 2px solid #F7C143;
    outline-offset: 0;
}

.online-calc-select option {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #121111;
    text-transform: uppercase;
    background-color: #F0F0F0;
    padding: 10px;
}

.online-calc-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    flex-shrink: 0;
}

.online-calc-input-single {
    width: 100%;
    height: 40px;
    background-color: #F0F0F0;
    border: none;
    border-radius: 10px;
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #121111;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-transform: uppercase;
}

.online-calc-input-single:focus {
    outline: 2px solid #F7C143;
    outline-offset: 0;
}

.online-calc-input-single::placeholder {
    color: #121111;
    opacity: 0.5;
    text-transform: uppercase;
}

.online-calc-btn {
    width: 40px;
    height: 40px;
    background-color: #F7C143;
    border: none;
    border-bottom: 3px solid #D6A532;
    border-radius: 10px;
    color: #FFFFFF;
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.online-calc-btn-plus.shimmer-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

.online-calc-input {
    width: 255px;
    height: 40px;
    background-color: #F0F0F0;
    border: none;
    border-radius: 10px;
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 17px;
    color: #121111;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

.online-calc-input:focus {
    outline: 2px solid #F7C143;
    outline-offset: 0;
}

.online-calc-input::-webkit-inner-spin-button,
.online-calc-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.online-calc-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Группа результатов */
.online-calc-results {
    width: 315px;
    background-color: #121111;
    border-radius: 20px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.online-calc-results.animate {
    animation: heroFadeInUp 0.8s ease-out 0.6s forwards;
}

/* Группа предупреждений (оверлей поверх результатов) */
.online-calc-warnings {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(11px);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    opacity: 1;
    visibility: visible;
    transition: opacity 250ms ease, visibility 250ms ease;
}

.online-calc-warnings.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.online-calc-warnings-arrow-wrap {
    margin-top: 20px;
    transform: translateX(-5px);
}

.online-calc-warnings-arrow {
    margin-top: 0;
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 50px;
    line-height: 1;
    color: #FFFFFF;
    animation: onlineCalcArrowFloat 2.6s ease-in-out infinite;
}

@keyframes onlineCalcArrowFloat {
    0% { transform: rotate(-90deg) translateX(-6px); }
    50% { transform: rotate(-90deg) translateX(6px); }
    100% { transform: rotate(-90deg) translateX(-6px); }
}

.online-calc-warnings-progress {
    margin-top: 20px;
    width: 255px;
    height: 30px;
    border-radius: 1000px;
    background: #F0F0F0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.online-calc-warnings-progress-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0%;
    background: #F7C143;
    transition: width 300ms ease;
    overflow: hidden;
}

.online-calc-warnings-progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

.online-calc-warnings-progress-text {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #121111;
    text-align: center;
}

.online-calc-warnings-text {
    margin-top: 10px;
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}

/* Плашки с метками (1, 4, 7) */
.online-calc-results-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #C4C4C4;
    text-align: center;
}

.online-calc-results-label-1 {
    margin-top: 40px;
}

.online-calc-results-label-2 {
    margin-top: 10px;
}

.online-calc-results-label-3 {
    margin-top: 10px;
}

/* Группы значений (2-3, 5-6, 8-9) */
.online-calc-results-value-group {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 0;
    gap: 10px;
}

.online-calc-results-value {
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 1;
}

.online-calc-results-unit {
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 17px;
    color: #DCDCDC;
    line-height: 1;
}

/* Предупреждение (10) */
.online-calc-results-disclaimer {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #cccccc;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    width: 275px;
}

/* Кнопка после группы результатов */
.online-calc-btn-submit {
    width: 355px;
    margin-top: 40px;
    align-self: center;
    flex: none;
    opacity: 0;
    transform: translateY(30px);
}

.online-calc-btn-submit.animate {
    animation: heroFadeInUp 0.8s ease-out 0.7s forwards;
}

/* Блок Что мы делаем */
.what-we-do {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -40px;
    background-color: #F0F0F0;
    border-radius: 20px;
    min-height: 100px;
    padding-top: 60px;
    padding-bottom: 160px;
    position: relative;
    z-index: 1;
}

.what-we-do-wrapper {
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Логотип в блоке Что мы делаем */
.what-we-do-logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: -20px auto 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.what-we-do-logo.animate {
    animation: heroFadeInUp 0.8s ease-out 0.1s forwards;
}

/* Плашки в блоке Что мы делаем */
.what-we-do-item {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    width: 100%;
    max-width: 355px;
    color: #121111;
    text-align: center;
}

/* 2. Плашка - верхний отступ 20px */
.what-we-do-item-2 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 355px;
    color: #121111;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.what-we-do-item-2.animate {
    animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
}

/* 3. Плашка - верхний отступ 10px */
.what-we-do-item-3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    width: 100%;
    max-width: 355px;
    color: #121111;
    text-align: center;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.what-we-do-item-3.animate {
    animation: heroFadeInUp 0.8s ease-out 0.3s forwards;
}

/* 4. Линия - верхний отступ 20px */
.what-we-do-divider {
    width: 355px;
    height: 1px;
    background-color: #121111;
    margin: 20px -10px 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.what-we-do-divider.animate {
    animation: heroFadeInUp 0.8s ease-out 0.4s forwards;
}

/* Группы Что мы делаем */
.what-we-do-group {
    position: relative;
    width: 100%;
    max-width: 355px;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.what-we-do-group.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* Цифры в группах */
.what-we-do-number {
    font-family: 'Unbounded', Arial, sans-serif;
    font-size: 200px;
    color: #121111;
    opacity: 0.05;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

/* 5. Плашка - верхний отступ 40px */
.what-we-do-item-5 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.what-we-do-item .highlight {
    color: #F7C143;
}

/* 6. Плашка - верхний отступ 10px, нижний 40px */
.what-we-do-item-6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* 7. Плашка - верхний отступ 40px */
.what-we-do-item-7 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* 8. Плашка - верхний отступ 10px, нижний 40px */
.what-we-do-item-8 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* 9. Плашка - верхний отступ 40px */
.what-we-do-item-9 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* 10. Плашка - верхний отступ 10px, нижний 40px */
.what-we-do-item-10 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* 11. Плашка - верхний отступ 40px */
.what-we-do-item-11 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* 12. Плашка - верхний отступ 10px, нижний 40px */
.what-we-do-item-12 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* 13. Плашка - верхний отступ 40px */
.what-we-do-item-13 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* 14. Плашка - верхний отступ 10px, нижний 40px */
.what-we-do-item-14 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* 15. Плашка - верхний отступ 40px */
.what-we-do-item-15 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* 16. Плашка - верхний отступ 10px, нижний 40px */
.what-we-do-item-16 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* 17. Плашка - верхний отступ 40px */
.what-we-do-item-17 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* 18. Плашка - верхний отступ 10px, нижний 40px */
.what-we-do-item-18 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    max-width: 315px;
    color: #121111;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Кнопка в блоке Что мы делаем */
.what-we-do-link {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #121111;
    text-decoration: underline;
    text-align: center;
    margin-top: 40px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.what-we-do-link.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* Блок Вопросы и ответы */
.faq {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -40px;
    background-color: #F0F0F0;
    border-radius: 20px;
    min-height: 100px;
    padding-top: 60px;
    padding-bottom: 160px;
    position: relative;
    z-index: 1;
}

.faq-wrapper {
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Логотип в блоке FAQ */
.faq-logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: -20px auto 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.faq-logo.animate {
    animation: heroFadeInUp 0.8s ease-out 0.1s forwards;
}

/* 2. Плашка заголовка */
.faq-item-2 {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 355px;
    color: #121111;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item-2.animate {
    animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
}

/* Аккордеон */
.faq-accordion {
    width: 100%;
    max-width: 355px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.faq-accordion.animate {
    animation: heroFadeInUp 0.8s ease-out 0.3s forwards;
}

.faq-accordion-item {
    margin-top: 20px;
    width: 100%;
}

.faq-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 355px;
    cursor: pointer;
    position: relative;
}

.faq-accordion-title {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #121111;
    text-align: left;
    flex: 1;
    text-transform: uppercase;
    line-height: 1.4;
    padding-right: 20px;
}

.faq-accordion-arrow {
    flex-shrink: 0;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.faq-accordion-item.active .faq-accordion-arrow {
    transform: rotate(180deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
    margin-top: 0;
    padding-bottom: 0;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 1000px;
    margin-top: 20px;
    padding-bottom: 0;
}

.faq-accordion-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    text-align: left;
    width: 100%;
    max-width: 355px;
    line-height: 1.4;
    padding-bottom: 0;
}

.faq-accordion-button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    text-align: left;
    width: 100%;
    max-width: 355px;
    line-height: 1.4;
    margin-top: 20px;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: block;
}

.faq-accordion-button:hover {
    opacity: 0.8;
}

.faq-accordion-line {
    width: 100%;
    max-width: 355px;
    height: 1px;
    background-color: #121111;
    margin-top: 20px;
    transition: margin-top 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-line {
    margin-top: 40px;
}

/* Блок Наш опыт */
.our-experience {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -40px;
    background-color: #121111;
    border-radius: 20px;
    min-height: 100px;
    padding-bottom: 160px;
    position: relative;
    z-index: 1;
}

.our-experience-wrapper {
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Логотип в блоке Наш опыт */
.our-experience-logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: 40px auto 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.our-experience-logo.animate {
    animation: heroFadeInUp 0.8s ease-out 0.1s forwards;
}

/* 2. Заголовок - такие же настройки как .advantages-item-2 */
.our-experience-title {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 355px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.our-experience-title.animate {
    animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
}

/* 4. Линия - такие же настройки как .advantages-divider */
.our-experience-divider {
    width: 355px;
    height: 1px;
    background-color: #FFFFFF;
    margin: 20px -10px 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.our-experience-divider.animate {
    animation: heroFadeInUp 0.8s ease-out 0.3s forwards;
}

/* Группа keys1 */
.keys1 {
    width: 355px;
    background-color: #F0F0F0;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.keys1.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* а) Квадрат с изображением */
.keys1-image {
    width: 80px;
    height: 80px;
    border-radius: 1000px;
    background-image: url('img/image1.webp');
    background-size: cover;
    background-position: center;
    margin-left: 20px;
    margin-top: 20px;
}

/* б) Надпись "Автосервис" */
.keys1-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
}

/* в) Надпись "Казань" */
.keys1-location {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #121111;
    margin-top: 0;
    margin-left: 20px;
}

/* г) Описание */
.keys1-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.keys1-result-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.keys1-result-list {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.keys1-result-list li {
    margin-top: 5px;
}

.keys1-result-list li:first-child {
    margin-top: 0;
}

/* д) Ссылка "Узнать подробнее" */
.keys1-link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #121111;
    text-decoration: underline;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 40px;
}

/* Группа keys2 */
.keys2 {
    width: 355px;
    background-color: #F0F0F0;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.keys2.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

.keys2-image {
    width: 80px;
    height: 80px;
    border-radius: 1000px;
    background-image: url('img/image2.webp');
    background-size: cover;
    background-position: center;
    margin-left: 20px;
    margin-top: 20px;
}

.keys2-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
}

.keys2-location {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #121111;
    margin-top: 0;
    margin-left: 20px;
}

.keys2-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.keys2-result-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.keys2-result-list {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.keys2-result-list li {
    margin-top: 5px;
}

.keys2-result-list li:first-child {
    margin-top: 0;
}

.keys2-link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #121111;
    text-decoration: underline;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 40px;
}

/* Группа keys3 */
.keys3 {
    width: 355px;
    background-color: #F0F0F0;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.keys3.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

.keys3-image {
    width: 80px;
    height: 80px;
    border-radius: 1000px;
    background-image: url('img/image3.webp');
    background-size: cover;
    background-position: center;
    margin-left: 20px;
    margin-top: 20px;
}

.keys3-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
}

.keys3-location {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #121111;
    margin-top: 0;
    margin-left: 20px;
}

.keys3-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.keys3-result-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.keys3-result-list {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.keys3-result-list li {
    margin-top: 5px;
}

.keys3-result-list li:first-child {
    margin-top: 0;
}

.keys3-link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #121111;
    text-decoration: underline;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 40px;
}

/* Группа keys4 */
.keys4 {
    width: 355px;
    background-color: #F0F0F0;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.keys4.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

.keys4-image {
    width: 80px;
    height: 80px;
    border-radius: 1000px;
    background-image: url('img/image4.webp');
    background-size: cover;
    background-position: center;
    margin-left: 20px;
    margin-top: 20px;
}

.keys4-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
}

.keys4-location {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #121111;
    margin-top: 0;
    margin-left: 20px;
}

.keys4-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.keys4-result-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #121111;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.keys4-result-list {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.keys4-result-list li {
    margin-top: 5px;
}

.keys4-result-list li:first-child {
    margin-top: 0;
}

.keys4-link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #121111;
    text-decoration: underline;
    margin-top: 40px;
    margin-left: 20px;
    margin-bottom: 40px;
}

/* Блок Контакты */
.contacts {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -40px;
    background-color: #FFFFFF;
    border-radius: 20px;
    min-height: 100px;
    position: relative;
    z-index: 1;
}

.contacts-wrapper {
    width: 100%;
    max-width: 355px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Логотип в блоке Контакты */
.contacts-logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: 40px auto 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-logo.animate {
    animation: heroFadeInUp 0.8s ease-out 0.1s forwards;
}

/* 2. Плашка заголовка - такие же настройки как .online-calc-title */
.contacts-title {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 355px;
    color: #121111;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-title.animate {
    animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
}

/* 3. Плашка под заголовка - такие же настройки как .online-calc-subtitle */
.contacts-subtitle {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    width: 100%;
    max-width: 355px;
    color: #404040;
    text-align: center;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-subtitle.animate {
    animation: heroFadeInUp 0.8s ease-out 0.3s forwards;
}

/* 4. Линия - такие же настройки как .online-calc-divider */
.contacts-divider {
    width: 355px;
    height: 1px;
    background-color: #B6B6B6;
    margin: 20px -10px 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-divider.animate {
    animation: heroFadeInUp 0.8s ease-out 0.4s forwards;
}

/* 1, 3, 5. Метки контактов */
.contacts-label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-label.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* 2, 4, 6. Значения контактов */
.contacts-value {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #787878;
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-value.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

.contacts-value-highlight {
    color: #121111;
}

/* Ссылки в блоке контактов */
.contacts-link {
    text-decoration: none;
    display: inline-block;
}

.contacts-link:hover {
    opacity: 0.8;
}

/* 7. Вторая линия */
.contacts-divider-2 {
    width: 355px;
    height: 1px;
    background-color: #B6B6B6;
    margin: 40px -10px 0;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-divider-2.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* 8. Кнопка */
.contacts-btn {
    width: 355px;
    margin-top: 40px;
    align-self: center;
    flex: none;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-btn.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* 9. Реквизиты */
.contacts-requisites {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #121111;
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-requisites.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* 10. Политика конфиденциальности */
.contacts-privacy {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    text-decoration: underline;
    text-align: center;
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-privacy.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

.contacts-privacy:hover {
    opacity: 0.8;
}

/* 11. Изображение */
.contacts-bg-image {
    width: 993px;
    height: 350px;
    position: relative;
    margin-top: -20px;
    margin-right: calc(-50vw + 50%);
    z-index: -1;
    object-fit: cover;
    align-self: flex-end;
    opacity: 0;
    transform: translateY(30px);
}

.contacts-bg-image.animate {
    animation: heroFadeInUp 0.8s ease-out forwards;
}

/* Попап */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.popup-overlay.active {
    display: flex;
}

.popup-container {
    background-color: #121111;
    width: 100%;
    max-width: calc(100% - 20px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

/* Логотип в попапе */
.popup-logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: 40px auto 0;
    align-self: center;
}

/* Заголовок попапа */
.popup-title {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 20px;
    line-height: 1.2;
}

/* Описание попапа */
.popup-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Форма попапа */
.popup-form {
    width: 100%;
    max-width: 315px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

/* Поля ввода */
.popup-input {
    width: 315px;
    height: 60px;
    background-color: #F0F0F0;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #121111;
    padding-left: 20px;
    box-sizing: border-box;
    outline: none;
}

.popup-input::placeholder {
    color: #9C9C9C;
}

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

.popup-input-phone {
    margin-top: 20px;
}

.popup-input-phone.error {
    border: 2px solid #FF0000;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Кнопка отправки */
.popup-submit-btn {
    width: 315px;
    margin-top: 20px;
    flex: none;
}

/* Honeypot (скрытое поле) */
.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Сообщения формы */
.popup-form-message {
    width: 315px;
    margin-top: 12px;
    min-height: 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #F0F0F0;
}

.popup-form-message.is-success { color: #7CFF8C; }
.popup-form-message.is-error { color: #FF6B6B; }
.popup-form-message.is-info { color: #F7C143; }

.popup-submit-btn.is-loading {
    opacity: 0.75;
    pointer-events: none;
}

/* Политика конфиденциальности */
.popup-privacy {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #F0F0F0;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.popup-privacy-link {
    color: #FFFFFF;
    text-decoration: underline;
}

.popup-privacy-link:hover {
    color: #F7C143;
}

/* Класс для открытия попапа */
.open-popup {
    cursor: pointer;
}

/* Страница Политика конфиденциальности */
.politica-page {
    background-color: #FFFFFF;
    padding-left: 0;
    padding-right: 0;
}

.politica-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Логотип на странице политики */
.politica-logo {
    width: 70px;
    height: 26.8px;
    display: block;
    margin: 40px auto 0;
    align-self: center;
    position: relative;
    overflow: hidden;
}

.politica-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

/* Заголовок политики */
.politica-title {
    font-family: 'Unbounded', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #121111;
    text-align: left;
    margin-top: 40px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Текст политики */
.politica-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #121111;
    text-align: left;
    margin-top: 20px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    line-height: 1.6;
}

.politica-text p {
    margin: 0;
}

/* Компьютерная версия (1200px) - отступы 40px слева и справа */
@media (min-width: 1200px) {
    body {
        padding-left: 40px;
        padding-right: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

