/* COMMON STYLES */
:root {
    --white: #ffffff;
    --black: #17201f;
    --ink: #17201f;
    --muted: #64726f;
    --line: #dbe6e3;
    --soft: #f3f8f6;
    --soft-strong: #eaf4f1;
    --panel: #ffffff;
    --accent: #0f766e;
    --accent-dark: #0b4d48;
    --accent-soft: #dff2ee;
    --warning: #e2a84f;
    --footer: #102c2a;
    --shadow: 0 22px 70px rgba(18, 46, 43, .13);
    --small-shadow: 0 12px 32px rgba(18, 46, 43, .09);
    --bounce-transition: .35s cubic-bezier(.17, .67, .3, 1.18);
    --slow-transition: .75s cubic-bezier(.2, .6, 0, 1);
}

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

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

img {
    display: block;
    max-width: 100%;
}

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

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

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Work Sans", "Rubik", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(15, 118, 110, .045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 118, 110, .045) 1px, transparent 1px),
        var(--soft);
    background-size: 42px 42px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 10%, rgba(226, 168, 79, .18), transparent 25%),
        linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .62) 42%, rgba(243, 248, 246, .9) 100%);
    z-index: -1;
}

.mob {
    display: none;
}

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

.title {
    font-weight: 700;
    font-size: 56px;
    line-height: 108%;
    color: var(--ink);
}

.description {
    font-weight: 400;
    font-size: 18px;
    line-height: 165%;
    color: var(--muted);
}

.logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--accent-dark);
}

.logo::before {
    content: "";
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid rgba(15, 118, 110, .28);
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 17px, var(--accent) 17px, var(--accent) 21px, transparent 21px),
        linear-gradient(0deg, transparent 17px, var(--accent) 17px, var(--accent) 21px, transparent 21px),
        var(--accent-soft);
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .7);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 8px;
    padding: 15px 24px;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible,
.accordion-header:focus-visible,
.modal__close:focus-visible,
.numCredit:focus-visible {
    outline: 3px solid rgba(226, 168, 79, .42);
    outline-offset: 3px;
}

.btn-main {
    color: var(--white);
    background: var(--accent);
    box-shadow: 0 16px 34px rgba(15, 118, 110, .24);
}

.btn-main:hover {
    color: var(--white);
    background: var(--accent-dark);
    box-shadow: 0 20px 42px rgba(15, 118, 110, .28);
}

.btn-white {
    color: var(--accent-dark);
    background-color: var(--white);
    border-color: rgba(255, 255, 255, .55);
    margin-bottom: 24px;
}

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

/* header */
.header {
    position: sticky;
    top: 0;
    z-index: 3;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .78);
    border-bottom: 1px solid rgba(15, 118, 110, .1);
}

.header .container {
    padding-top: 18px;
    padding-bottom: 18px;
}

/* main */
.main {
    position: relative;
}

.main::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    height: 565px;
    background:
        radial-gradient(circle at 86% 24%, rgba(226, 168, 79, .22), transparent 26%),
        linear-gradient(135deg, rgba(223, 242, 238, .96), rgba(255, 255, 255, .84) 55%, rgba(226, 168, 79, .13));
    border-bottom: 1px solid rgba(15, 118, 110, .11);
    z-index: -1;
}

.main .container {
    min-height: 625px;
    padding-top: 56px;
    padding-bottom: 88px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    align-items: center;
    gap: 72px;
}

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

.main-info::before,
.parcels-info::before,
.delivery-info::before {
    content: "";
    display: inline-flex;
    align-items: center;
    width: 74px;
    height: 8px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0 46px, var(--warning) 46px 100%);
}

.main-title {
    margin-bottom: 26px;
    max-width: 780px;
}

.main-description {
    max-width: 640px;
    margin-bottom: 34px;
    font-size: 20px;
}

.main-image {
    position: relative;
    min-height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.main-image::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(15, 118, 110, .18);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(15, 118, 110, .07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 118, 110, .07) 1px, transparent 1px),
        rgba(255, 255, 255, .82);
    background-size: 26px 26px;
    box-shadow: var(--shadow);
}

.main-image::after {
    content: "";
    position: absolute;
    right: 38px;
    bottom: 26px;
    width: 118px;
    height: 10px;
    border-radius: 999px;
    background: var(--warning);
}

.main-image img {
    position: relative;
    z-index: 1;
    width: min(100%, 610px);
    max-height: 445px;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(18, 46, 43, .14));
}

/* parcels */
.parcels {
    position: relative;
    background: var(--white);
}

.parcels::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(243, 248, 246, .72), rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.parcels .container {
    position: relative;
    padding-top: 108px;
    padding-bottom: 112px;
    display: grid;
    grid-template-columns: minmax(310px, 470px) minmax(0, 1fr);
    align-items: center;
    gap: 76px;
}

.parcels-info {
    max-width: 690px;
}

.parcels-info::before {
    background: linear-gradient(90deg, var(--accent-dark) 0 46px, var(--warning) 46px 100%);
}

.parcels-image {
    position: relative;
    max-width: 470px;
    margin-left: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--small-shadow);
}

.parcels-image::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 32px;
    bottom: 32px;
    width: 8px;
    border-radius: 999px;
    background: var(--warning);
}

.parcels-image img {
    width: 100%;
}

.parcels-title {
    margin-bottom: 26px;
}

.parcels-description {
    max-width: 650px;
}

/* partners */
.partners {
    background:
        linear-gradient(180deg, var(--soft-strong), var(--soft));
    border-top: 1px solid rgba(15, 118, 110, .08);
    border-bottom: 1px solid rgba(15, 118, 110, .08);
}

.partners .container {
    padding-top: 98px;
    padding-bottom: 108px;
}

.partners-title {
    max-width: 870px;
    margin-bottom: 46px;
}

.partners-items {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.partner-item {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 30px rgba(18, 46, 43, .06);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, .34);
    background: var(--white);
    box-shadow: var(--small-shadow);
}

.partner-item img {
    max-height: 66px;
    width: 100%;
    object-fit: contain;
}

/* delivery */
.delivery {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(16, 44, 42, .98), rgba(15, 77, 72, .9)),
        url("../img/lab-bg.svg") center / cover no-repeat;
}

.delivery::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    pointer-events: none;
}

.delivery::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 168, 79, .7), transparent);
}

.delivery .container {
    position: relative;
    padding-top: 116px;
    padding-bottom: 116px;
}

.delivery-info {
    max-width: 650px;
    margin-left: auto;
    margin-right: 0;
}

.delivery-info::before {
    background: linear-gradient(90deg, var(--white) 0 46px, var(--warning) 46px 100%);
}

.delivery-title {
    color: var(--white);
    margin-bottom: 28px;
}

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

/* faq */
.faq {
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 64%, var(--soft) 100%);
}

.faq .container {
    padding-top: 108px;
    padding-bottom: 116px;
}

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

.accordion {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .72);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(18, 46, 43, .06);
}

.accordion-item {
    padding-bottom: 0;
    border-bottom: 1px solid var(--line);
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--line);
}

.accordion-header {
    width: 100%;
    min-height: 90px;
    padding: 28px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-weight: 700;
    font-size: 22px;
    line-height: 135%;
    color: var(--ink);
    transition: color .25s ease;
}

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

.arrow {
    min-width: 34px;
    width: 34px;
    height: 34px;
    margin-left: 0;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.arrow path {
    fill: var(--accent-dark);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    background-color: var(--white);
    color: var(--muted);
    font-size: 18px;
    line-height: 165%;
}

.accordion-content p {
    max-width: 980px;
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 0;
}

.accordion-item.active .accordion-content {
    max-height: 780px;
    padding-bottom: 28px;
}

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

.accordion-item.active .arrow {
    transform: rotate(180deg);
    border-color: rgba(15, 118, 110, .32);
    background: var(--accent-soft);
}

.accordion-item.active .arrow path {
    fill: var(--accent);
}

.questions {
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(18, 46, 43, .05);
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
}

.questions a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

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

/* footer */
.footer {
    padding: 70px 0 38px 0;
    background-color: var(--footer);
    color: var(--white);
}

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

.footer-top .logo {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-top .logo::before {
    border-color: rgba(255, 255, 255, .22);
    background:
        linear-gradient(90deg, transparent 17px, var(--white) 17px, var(--white) 21px, transparent 21px),
        linear-gradient(0deg, transparent 17px, var(--white) 17px, var(--white) 21px, transparent 21px),
        rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .08);
}

.footer-logo-text {
    max-width: 320px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, .72);
}

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

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

.footer-info svg path,
.footer-info svg rect {
    fill: var(--warning);
}

.footer-phone-number svg path {
    fill: none;
    stroke: var(--warning);
}

.footer-info-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, .78);
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    margin-top: 82px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: rgba(255, 255, 255, .64);
}

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

.footer-rights p {
    margin: 0;
}

.footer-offer {
    cursor: pointer;
    color: rgba(255, 255, 255, .84);
    transition: color .25s ease;
}

.footer-offer:hover {
    color: var(--warning);
}

/* modal */
.modal {
    position: relative;
    z-index: 1000;
}

.modal.is-open {
    z-index: 1000;
}

.modal__overlay {
    background: rgba(8, 24, 23, .72);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.modal__container {
    position: relative;
    z-index: 1001;
    border-radius: 8px;
    padding: 44px;
    border: 1px solid rgba(15, 118, 110, .2);
    box-shadow: 0 28px 90px rgba(8, 24, 23, .34);
}

.modal__header {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.modal__title {
    font-weight: 700;
    font-size: 38px;
    line-height: 112%;
    color: var(--ink);
}

.modal__close {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.modal__close::before {
    font-weight: 700;
    font-size: 24px;
    color: var(--accent-dark);
}

.modal__descr {
    color: var(--muted);
    font-size: 18px;
    line-height: 155%;
}

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

.modal__form-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--ink);
}

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

.modal__form-label {
    line-height: 140%;
}

.modal__form-label a,
.modal__form-label p {
    line-height: 140%;
}

.modal__btn {
    background-color: var(--accent);
    color: var(--white);
    margin: 0 auto;
}

.modal__btn:hover {
    color: var(--white);
    background: var(--accent-dark);
}

.modal__form-card {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.modal__link {
    display: inline-block;
    color: var(--accent);
    cursor: pointer;
    text-decoration: underline;
    transition: all var(--bounce-transition);
    margin: 0;
    font-weight: 700;
}

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

.numCredit {
    min-height: 56px;
    border-radius: 8px !important;
    border-color: var(--line) !important;
    background: var(--soft);
    color: var(--ink);
    font-size: 16px !important;
}

.numCredit:focus {
    border-color: var(--accent) !important;
    background: var(--white);
}

#offer .modal__container {
    max-width: 82%;
    max-height: 90%;
}

#offer .modal__header {
    align-items: flex-start;
}

#offer .modal__body {
    color: #2c3937;
    font-size: 16px;
    line-height: 160%;
}

#offer .modal__body p {
    margin-bottom: 14px;
}
