/* COMMON STYLES */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --paper: #f5f7fb;
    --surface: #ffffff;
    --ink: #121416;
    --graphite: #26313d;
    --muted: #66717d;
    --line: #dce3eb;
    --accent: #ff7a1a;
    --accent-strong: #e55f00;
    --green: #0c8f73;
    --green-soft: #e6f5f0;
    --shadow: 0 24px 70px rgba(18, 20, 22, .12);
    --soft-shadow: 0 14px 35px rgba(18, 20, 22, .08);
    --bounce-transition: .35s cubic-bezier(.17,.67,.3,1.33);
    --slow-transition: .75s cubic-bezier(.2, .6, 0, 1);
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Mont", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

img {
    max-width: 100%;
}

li {
    position: relative;
    list-style: none;
    z-index: 1;
}

.mob {
    display: none;
}

.container {
    max-width: 1240px;
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}

.title {
    max-width: 1040px;
    font-weight: 900;
    font-size: 72px;
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
}

.description {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.55;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    color: var(--white);
    letter-spacing: 0;
}

.logo::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, var(--accent) 0 48%, transparent 48% 100%),
        linear-gradient(135deg, transparent 0 50%, var(--green) 50% 100%);
    box-shadow: 0 10px 24px rgba(255, 122, 26, .28);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border: 0;
    border-radius: 16px;
    padding: 16px 26px;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: var(--white);
    background: var(--accent);
    box-shadow: 0 14px 28px rgba(255, 122, 26, .24);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
    color: var(--white);
    background: var(--accent-strong);
    box-shadow: 0 18px 34px rgba(229, 95, 0, .28);
    transform: translateY(-2px);
}

/* header */
.header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 5;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 34px;
    padding-bottom: 34px;
}

.header .logo {
    color: var(--white);
}

/* main */
.main {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: var(--white);
    background: #121416;
}

.main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 20, 22, .98) 0%, rgba(18, 20, 22, .94) 24%, rgba(18, 20, 22, .78) 42%, rgba(18, 20, 22, .55) 58%, rgba(18, 20, 22, .32) 74%, rgba(18, 20, 22, .14) 90%, rgba(18, 20, 22, .08) 100%),
        url("../img/6.jpg") right center / cover no-repeat;
}

.main .container {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding-top: 128px;
    padding-bottom: 86px;
}

.main-info {
    max-width: 790px;
}

.main-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.advantage {
    max-width: max-content;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.35;
    color: var(--graphite);
    background: var(--green-soft);
    border: 1px solid rgba(12, 143, 115, .2);
}

.main .advantage {
    color: var(--white);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .2);
}

.main-title {
    margin-bottom: 22px;
}

.main-description {
    max-width: 690px;
    margin-bottom: 32px;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.35;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
}

.btn-main {
    min-width: 230px;
}

/* slider */
.slider {
    position: relative;
    z-index: 2;
}

.main + .slider {
    margin-top: -74px;
    padding-bottom: 38px;
}

.swiper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.myGallery {
    padding-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
}

.myGallery .swiper-slide {
    width: 380px;
    max-width: 380px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--soft-shadow);
}

.myGallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.myPartners {
    padding-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
    padding-bottom: 8px;
}

.myPartners .swiper-slide {
    width: 250px;
    max-width: 250px;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 12px 26px rgba(18, 20, 22, .05);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.myPartners .swiper-slide:hover {
    border-color: rgba(255, 122, 26, .35);
    box-shadow: var(--soft-shadow);
    transform: translateY(-4px);
}

.myPartners .swiper-slide img {
    display: block;
    width: auto;
    max-width: 76%;
    max-height: 56px;
    object-fit: contain;
    transition: opacity .2s ease;
}

.myPartners .swiper-slide .hover {
    display: none;
}

.myPartners .swiper-slide:hover .hover {
    display: block;
}

.myPartners .swiper-slide:hover img:last-child {
    display: none;
}

.swiper-pagination-bullet {
    background: var(--accent);
}

/* partners */
.partners {
    padding-top: 112px;
    padding-bottom: 114px;
    background: var(--paper);
}

.partners .container {
    display: block;
}

.partners-title {
    margin-top: 18px;
    margin-bottom: 58px;
}

.partners-items {
    display: flex;
    justify-content: center;
    gap: 56px;
}

/* faq */
.faq {
    padding-top: 112px;
    padding-bottom: 112px;
    background: var(--white);
}

.faq .container {
    display: block;
}

.faq-title {
    margin-bottom: 48px;
}

.accordion {
    display: grid;
    gap: 14px;
}

.accordion-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(18, 20, 22, .04);
    overflow: hidden;
}

.accordion-header {
    min-height: 96px;
    padding: 28px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.3;
}

.accordion-header:focus {
    outline: none;
}

.arrow {
    min-width: 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--paper);
    transition: transform .3s ease, background .3s ease;
}

.arrow svg {
    width: 22px;
    height: 22px;
}

.arrow path {
    stroke: var(--ink);
    transition: stroke .3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
}

.accordion-content p {
    margin-bottom: 0;
}

.accordion-item.active .accordion-content {
    max-height: 520px;
    padding: 0 30px 30px;
}

.accordion-item.active .accordion-header {
    color: var(--green);
}

.accordion-item.active .arrow {
    background: var(--green-soft);
    transform: rotate(45deg);
}

.accordion-item.active .arrow path {
    stroke: var(--green);
}

.questions {
    margin-top: 24px;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.35;
    color: var(--graphite);
}

.questions a {
    color: var(--accent);
}

.questions a:hover {
    color: var(--accent-strong);
}

/* delivery */
.delivery {
    position: relative;
    overflow: hidden;
    padding-top: 118px;
    padding-bottom: 118px;
    color: var(--white);
    background: #18342e;
}

.delivery::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(24, 52, 46, 1) 0%, rgba(24, 52, 46, .98) 42%, rgba(24, 52, 46, .84) 58%, rgba(24, 52, 46, .45) 76%, rgba(24, 52, 46, .18) 100%),
        url("../img/10.jpg") right center / cover no-repeat;
}

.delivery .container {
    position: relative;
    z-index: 1;
}

.delivery-info {
    max-width: 980px;
}

.delivery-title {
    max-width: 920px;
    margin-bottom: 28px;
}

.delivery .btn {
    margin-bottom: 24px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.delivery .btn:hover {
    color: var(--white);
    background: var(--accent);
}

.delivery-description {
    max-width: 720px;
    color: rgba(255, 255, 255, .78);
}

/* footer */
.footer {
    padding-top: 68px;
    padding-bottom: 40px;
    background: var(--ink);
    color: var(--white);
}

.footer .container {
    display: block;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 56px;
}

.footer-top .logo {
    font-size: 30px;
    margin-bottom: 18px;
}

.footer-logo-text {
    max-width: 310px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .68);
}

.footer-info {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info svg {
    min-width: 24px;
}

.footer-info-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .78);
}

.footer-info-text a {
    color: rgba(255, 255, 255, .78);
}

.footer-info-text a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 86px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 16px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .5);
}

.footer-rights {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-rights p {
    margin: 0;
}

.footer-offer {
    cursor: pointer;
    transition: color .25s ease, transform .25s ease;
}

.footer-offer:hover {
    color: var(--white);
    transform: translateY(-1px);
}

/* modal */
.modal.is-open {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.modal__overlay {
    background: rgba(18, 20, 22, .74);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.modal__container {
    border-radius: 22px;
    padding: 42px;
    max-height: calc(100vh - 40px);
    box-shadow: var(--shadow);
}

.modal__header {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.modal__title {
    font-weight: 900;
    font-size: 38px;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: 0;
}

.modal__close {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--paper);
}

.modal__close::before {
    color: var(--ink);
    font-weight: 900;
    font-size: 24px;
}

.modal__descr {
    color: var(--muted);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.5;
}

.modal__form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.modal__form-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.modal__form-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    margin-right: 10px;
    accent-color: var(--green);
}

.modal__form-label {
    line-height: 1.25;
    font-weight: 300;
    color: var(--graphite);
}

.modal__form-label a {
    line-height: 1;
}

.modal__btn {
    min-width: 230px;
    margin: 0 auto;
    background: var(--green);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(12, 143, 115, .22);
}

.modal__btn:hover {
    background: #08765f;
}

.modal__form-card,
.numCredit {
    width: 100%;
    height: 56px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    outline: none;
}

.modal__form-card:focus,
.numCredit:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(12, 143, 115, .1);
}

.modal__link {
    display: inline-block;
    margin: 0;
    color: var(--accent);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .25s ease, transform .25s ease;
}

.modal__link:hover {
    color: var(--accent-strong);
    transform: translateY(-1px);
}

#offer .modal__container {
    max-width: min(980px, calc(100vw - 40px));
    max-height: 90%;
}

#offer .modal__body {
    padding-right: 10px;
}

#offer .modal__body p {
    margin-bottom: 12px;
    color: var(--graphite);
    font-weight: 300;
    line-height: 1.55;
}

#offer .modal__body p:last-child {
    margin-bottom: 0;
}
