/* Первый экран - элегантный минимализм */
.wrapper_first_screen {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Gilroy', 'Arial', sans-serif;
    scroll-margin-top: 100px;
}

.first-screen {
    display: grid;
    grid-template-columns: 45% 38% 17%;
    gap: 0;
    align-items: center;
    width: 100%;
}

/* Левый блок */
.fs-left {
    padding-right: 40px;
}

.overline {
    font-size: 10px;
    font-weight: 400;
    color: #1f1e1e;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.4;
}

h1 {
    font-size: 43px;
    font-weight: 400;
    color: #000;
    line-height: 1.1;
    margin: 0 0 10px 0;
    letter-spacing: -0.8px;
}

h2 {
    font-size: 33px;
    font-weight: 500;
    color: #000000;
    line-height: 1.3;
    margin: 0 0 25px 0;
    font-weight: 400;
}

.span_text_bold {
    font-weight: 500;
}

.span_text_bold2 {
    font-weight: 700;
}



/* Компактная ценовая таблица */
.price-list {
    margin: 20px 0 30px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    align-items: center;
}

.price-item-highlight {
    background: #f8f8f8;
    margin: 0 -10px;
    padding: 8px 10px;
}

.price-label {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.price-value {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    text-align: right;
}

.price-note {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

.price-note-full {
    font-size: 13px;
    color: #2e2e2e;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 15px;
    padding: 12px;
    background: #f8f8f8;
}

/* Кнопки */
.btn {
    display: inline-block;
    background: #e70000;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    position: relative;
}

.btn:hover {
    background: #2c5282;
}

/* Подтекст кнопки */
.btn-subtext {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    letter-spacing: 0.2px;
    line-height: 1.3;
}


/* Центральный блок с фото */
.fs-center {
    padding: 0 20px;
}

.fs-center img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Правый блок с преимуществами */
.fs-right {
    padding-left: 40px;
    text-align: center;
}

.thesis {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.thesis:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.thesis b {
    display: block;
    font-weight: 400;
    color: #000;
    font-size: 14px;
    margin-bottom: 4px;
}

.thesis:not(b) {
    font-size: 13px;
    line-height: 1.4;
    color: #000000;
    font-weight: 400;
}

/* Адаптивность */
@media (max-width: 992px) {
    .first-screen {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fs-left,
    .fs-center,
    .fs-right {
        padding: 0;
    }

    .fs-center {
        order: 2;
    }

    .fs-left {
        order: 1;
    }

    .fs-right {
        order: 3;
    }

    .fs-center img {
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 18px;
    }

    .price-item-highlight {
        margin: 0;
    }

    .fs-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .thesis {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        border-right: 1px solid #eee;
        padding-right: 15px;
    }

    .thesis:nth-child(2n) {
        border-right: none;
        padding-right: 0;
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    .wrapper_first_screen {
        padding: 30px 15px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 17px;
    }

    .fs-center img {
        height: 300px;
    }

    .fs-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .thesis {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 0 0 15px 0;
    }

    .thesis:nth-child(2n) {
        border-bottom: 1px solid #eee;
        padding: 0 0 15px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .btn-subtext {
        font-size: 10px;
        margin-top: 3px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 16px;
    }

    .overline {
        font-size: 9px;
    }

    .fs-center img {
        height: 250px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .btn-subtext {
        font-size: 9px;
        margin-top: 2px;
    }
}

@media (max-width: 360px) {
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .btn-subtext {
        font-size: 8px;
    }
}