

/* Start:/assets/css/hero.css?17805543571435*/
/* Hero section CTA buttons */
.hero-btn-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.hero-btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 12px 24px 10px;
    height: 42px;
    border: 1px solid #ffffff;
    border-radius: 48px;
    background: transparent;
    color: #ffffff;
    font-family: Muller, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.hero-btn__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

html {
    scroll-behavior: smooth;
}

#applications {
    scroll-margin-top: 120px;
}

/* На мобильном заголовок находится на белом фоне — тёмные кнопки */
@media (max-width: 1279px) {
    .hero-btn {
        border-color: #061d40;
        color: #061d40;
    }

    .hero-btn:hover {
        background-color: rgba(6, 29, 64, 0.08);
        color: #061d40;
    }
}

/* End */


/* Start:/assets/css/vykup-section.css?178090082021512*/
/* Section 2 — Почему Marinepoint (yacht sales page) */

.section-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
    box-sizing: border-box;
    width: 100%;
}

.section-2__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 890px;
    width: 100%;
}

.section-2__title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #061D40;
    margin: 0;
}

.section-2__subtitle {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #4F555D;
    margin: 0;
    max-width: 586px;
}

.section-2__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.section-2__card {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 32px 24px;
    flex: 1 1 calc(25% - 12px);
    min-height: 241px;
    background-color: #F5F6F8;
    box-sizing: border-box;
}

.section-2__card-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #061D40;
}

.section-2__card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-2__card-title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #131313;
}

.section-2__card-desc {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #4F555D;
    margin: 0;
}

@media (max-width: 1024px) {
    .section-2__card {
        flex: 1 1 calc(50% - 8px);
    }
}

@media (max-width: 600px) {
    .section-2 {
        gap: 20px;
    }

    .section-2__grid {
        gap: 8px;
    }

    .section-2__card {
        flex: 1 1 100%;
        padding: 40px;
    }

    .section-2__title {
        font-size: 28px;
    }

    .section-2__subtitle {
        font-size: 15px;
        line-height: 140%;
    }
}

/* ─── Section 3 — Какие яхты мы рассматриваем? ─── */

.section-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
    box-sizing: border-box;
    width: 100%;
    background-color: #F5F6F8;
}

.section-3__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 890px;
    width: 100%;
}

.section-3__title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #061D40;
    margin: 0;
}

.section-3__subtitle {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #4F555D;
    margin: 0;
    max-width: 664px;
}

.section-3__cards {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.section-3__card {
    position: relative;
    flex: 1 1 calc(50% - 8px);
    height: 441px;
    overflow: hidden;
}

.section-3__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-3__card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(6, 29, 64, 0.5);
}

.section-3__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 71px 32px;
}

.section-3__card-title {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.section-3__card-desc {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.section-3__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px 10px;
    height: 42px;
    border: 1px solid #FFFFFF;
    border-radius: 48px;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.section-3__card-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .section-3 {
        gap: 24px;
    }

    .section-3__cards {
        flex-direction: column;
        gap: 24px;
    }

    .section-3__card {
        flex: none;
        width: 100%;
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        overflow: visible;
    }

    .section-3__card-img {
        position: static;
        width: 100%;
        height: 227px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .section-3__card-overlay {
        display: none;
    }

    .section-3__card-content {
        position: static;
        padding: 16px 0 0;
        gap: 16px;
        align-items: center;
    }

    .section-3__card-title {
        font-size: 20px;
        color: #061D40;
    }

    .section-3__card-desc {
        font-size: 15px;
        line-height: 140%;
        color: #4F555D;
    }

    .section-3__card-btn {
        border-color: #061D40;
        color: #061D40;
    }

    .section-3__card-btn:hover {
        background-color: rgba(6, 29, 64, 0.08);
    }

    .section-3__title {
        font-size: 28px;
    }

    .section-3__subtitle {
        font-size: 15px;
        line-height: 140%;
    }
}

/* ─── Section 4 — 4 шага к реализации ─── */

.section-4 {
    padding-top: 64px;
    padding-bottom: 64px;
    box-sizing: border-box;
    width: 100%;
    background-color: #FFFFFF;
}

.section-4__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin: 0 auto;
    width: 100%;
}

.section-4__title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #061D40;
    margin: 0;
}

.section-4__grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}

.section-4__step {
    flex: 1 1 0;
    padding: 64px 32px;
    box-sizing: border-box;
}

.section-4__step + .section-4__step {
    border-left: 1px solid rgba(6, 29, 64, 0.08);
}

.section-4__step-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.section-4__step-num {
    font-family: 'Muller', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(6, 29, 64, 0.5);
}

.section-4__step-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-4__step-title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #061D40;
}

.section-4__step-desc {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #4F555D;
    margin: 0;
}

@media (max-width: 1024px) {
    .section-4__grid {
        flex-wrap: wrap;
    }

    .section-4__step {
        flex: 1 1 calc(50% - 1px);
        border-left: none;
    }

    .section-4__step:nth-child(2) {
        border-left: 1px solid rgba(6, 29, 64, 0.08);
    }

    .section-4__step:nth-child(3) {
        border-top: 1px solid rgba(6, 29, 64, 0.08);
    }

    .section-4__step:nth-child(4) {
        border-top: 1px solid rgba(6, 29, 64, 0.08);
        border-left: 1px solid rgba(6, 29, 64, 0.08);
    }
}

/* ─── Section 5 — Безопасность и приватность ─── */

.section-5 {
    position: relative;
    height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-5__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-5__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(6, 29, 64, 0.5);
}

.section-5__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1344px;
    width: 100%;
    padding: 0 48px;
    box-sizing: border-box;
}

.section-5__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 664px;
    width: 100%;
}

.section-5__title {
    font-family: 'Muller', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.section-5__text {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

@media (max-width: 768px) {
    .section-5 {
        padding: 64px 16px;
    }

    .section-5__container {
        padding: 0;
    }

    .section-5__title {
        font-size: 20px;
    }
}

/* ─── Section 7 — Реализованные сделки ─── */

.section-7 {
    padding-top: 64px;
    padding-bottom: 64px;
    box-sizing: border-box;
    width: 100%;
    background-color: #F5F6F8;
}

.section-7__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.section-7__title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #061D40;
    margin: 0;
}

.section-7__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.section-7__items {
    overflow: visible;
    width: 100%;
}

.section-7__track {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.section-7__card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    background-color: #F5F6F8;
}

.section-7__card-images {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.section-7__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-7__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.section-7__dot {
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    display: block;
    transition: background-color 0.2s;
}

.section-7__dot--active {
    background-color: #FFFFFF;
}

.section-7__card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.section-7__card-title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #131313;
}

.section-7__card-divider {
    border: none;
    border-top: 1px solid #E3E6EA;
    margin: 0;
}

.section-7__card-desc {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #4F555D;
    margin: 0;
}

@media (max-width: 900px) {
    .section-7__card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .section-7__title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .section-4__grid {
        flex-direction: column;
    }

    .section-4__step {
        flex: none;
        width: 100%;
        border-left: none !important;
        border-top: none;
    }

    .section-4__step + .section-4__step {
        border-top: 1px solid rgba(6, 29, 64, 0.08);
    }

    .section-4__title {
        font-size: 24px;
    }
}

/* ---- Section 8: FAQ ---- */
.section-8 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 48px;
    background: #ffffff;
}

.section-8__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 890px;
}

.section-8__title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #061D40;
    margin: 0;
}

.section-8__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.section-8__item {
    display: grid;
    grid-template-rows: auto 0fr;
    background: #F5F6F8;
    padding: 24px;
    cursor: pointer;
    user-select: none;
    transition: grid-template-rows 0.35s ease;
}

.section-8__item--active {
    grid-template-rows: auto 1fr;
}

.section-8__item-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-8__question {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #061D40;
    flex: 1;
}

.section-8__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 60px;
    border: none;
    cursor: pointer;
    padding: 0;
}

.section-8__btn svg {
    transition: transform 0.3s ease;
}

.section-8__item--active .section-8__btn svg {
    transform: rotate(180deg);
}

.section-8__answer {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #4F555D;
    margin: 0;
    overflow: hidden;
    min-height: 0;
}

.section-8__item--active .section-8__answer {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .section-8__title {
        font-size: 28px;
    }
}

/* ---- Section 9: Form with background ---- */
.section-9 {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-9__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-9__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.section-9__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 29, 64, 0.5);
    z-index: 1;
}

.section-9__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding-top: 48px;
    padding-bottom: 48px;
}

.section-9__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 664px;
    text-align: center;
}

.section-9__title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.section-9__subtitle {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0;
}

.section-9__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.section-9__fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 648px;
}

.section-9__row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.section-9__input {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #CBD0D7;
    padding: 10px 16px;
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4F555D;
    outline: none;
    min-width: 0;
    appearance: none;
}

.section-9__input::placeholder {
    color: rgba(79, 85, 93, 0.6);
}

.section-9__agreement {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.section-9__checkbox {
    display: none;
}

.section-9__checkbox-custom {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    background: transparent;
    display: inline-block;
    transition: background 0.2s;
}

.section-9__checkbox:checked ~ .section-9__checkbox-custom {
    background: rgba(255, 255, 255, 0.85);
}

.section-9__agreement-text {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #FFFFFF;
}

.section-9__agreement-link {
    color: #FFFFFF;
    text-decoration: underline;
}

.section-9__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px 10px;
    height: 42px;
    border: 1px solid #FFFFFF;
    border-radius: 48px;
    background: transparent;
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.2s;
}

.section-9__btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .section-9__title {
        font-size: 24px;
    }

    .section-9__row {
        flex-direction: column;
    }

    .section-9__fields {
        max-width: 100%;
    }
}
/* ─── Section 7 — Реализованные сделки ─── */

.section-7 {
    padding-top: 64px;
    padding-bottom: 64px;
    box-sizing: border-box;
    width: 100%;
    background-color: #F5F6F8;
}

.section-7__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.section-7__title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #061D40;
    margin: 0;
}

.section-7__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.section-7__items {
    overflow: hidden;
    width: 100%;
}

.section-7__track {
    display: flex;
    flex-direction: row;
    gap: 16px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.section-7__card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    background-color: #F5F6F8;
}

.section-7__card-images {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.section-7__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-7__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.section-7__dot {
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    display: block;
    transition: background-color 0.2s;
}

.section-7__dot--active {
    background-color: #FFFFFF;
}

.section-7__card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.section-7__card-title {
    font-family: 'Muller', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #131313;
}

.section-7__card-divider {
    border: none;
    border-top: 1px solid #E3E6EA;
    margin: 0;
}

.section-7__card-desc {
    font-family: 'Muller-Trial', 'Muller', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #4F555D;
    margin: 0;
}

.section-7__arrows {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.section-7__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #061D40;
    transition: opacity 0.2s;
}

.section-7__arrow--disabled {
    color: rgba(79, 85, 93, 0.6);
    cursor: default;
}

.section-7__arrow:not(.section-7__arrow--disabled):hover {
    opacity: 0.6;
}

@media (max-width: 900px) {
    .section-7__card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .section-7__title {
        font-size: 24px;
    }
}
/* End */
/* /assets/css/hero.css?17805543571435 */
/* /assets/css/vykup-section.css?178090082021512 */
