@font-face {
    font-family: "Circe";
    src: url("./font/Circe-Thin.woff2") format("woff2"),
        url("./font/Circe-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circe";
    src: url("./font/Circe-Light.woff2") format("woff2"),
        url("./font/Circe-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circe";
    src: url("./font/Circe-Regular.woff2") format("woff2"),
        url("./font/Circe-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circe";
    src: url("./font/Circe-Bold.woff2") format("woff2"),
        url("./font/Circe-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Circe";
    src: url("./font/Circe-ExtraBold.woff2") format("woff2"),
        url("./font/Circe-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    /* ---------------------------------- color --------------------------------- */
    --brown: #c57b63;
    --dark-blue: #004a65;



    /* -------------------------------- tipografy ------------------------------- */
    --primary-ff: "Circe", Arial, sans-serif;

    /* ----------------------------------font-size-------------------------- */




}


/* Scrooling */
html {
    scroll-behavior: smooth;
    overflow-y: auto;
    overflow-x: clip !important;
}

body {
    margin: 0 auto;
    font-family: var(--primary-ff) !important;
    overflow: hidden !important;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

/* обнуляем дефолтные маркеры у всех маркированных списков */
/* form */
button,
input,
select,
textarea {
    margin: 0;
}

img {
    width: 100%;
}

.container {
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.row {
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* HEADER */

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    overflow-x: clip;
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.header-row {
    /* border: 1px solid red; */
    padding: 10px 0px 0px 0px;
    overflow-x: clip;
}

.top-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 0;

}

.brand-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-mark__img {
    width: 80px;
    max-width: 100%;
    margin-bottom: 10px;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header-container.is-scrolled {
    background-color: #ffffff;
}

.header-container.is-scrolled .brand-mark__img {
    display: none;
}

.header-container.is-scrolled .header-row {
    align-items: center;
    padding: 8px 0px;
}

.header-container.is-scrolled .brand-mark__title {
    font-size: 18px;
}

.header-container.is-scrolled .brand-mark__subtitle {
    font-size: 12px;
}

.brand-mark__title {
    color: var(--dark-blue);
    font-size: 21px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-mark__subtitle {
    margin-top: 2px;
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--dark-blue);
    font-family: var(--primary-ff);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.menu-toggle__icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.32rem;
}

.menu-toggle__icon span {
    display: block;
    width: 1.8rem;
    height: 0.18rem;
    border-radius: 1rem;
    background-color: var(--brown);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.language-switcher__link {
    color: var(--brown);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;

}

.language-switcher__link.is-active {
    color: var(--dark-blue);
    cursor: default;
}

.header-row>.col-12.col-md-4.col-lg-4:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-block {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.contact-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-contact-block {
    display: flex;
}

.contact-icons-toggle {
    display: none;
    border: 0;
    padding: 0;
    background: transparent;
}

.contact-call-link {
    display: none;
}

.contact-call-link img {
    width: 32px;
    height: 32px;
    display: block;
}

.contact-icons-toggle img {
    width: 32px;
    height: 32px;
    display: block;
}

.contact-icons__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.2s ease;
}

.contact-icons__link:hover {
    filter: brightness(1.17);
}

.contact-icons__link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.contact-icons__link--phone:hover {
    filter: none;
}

.contact-phones {
    display: flex !important;
    flex-direction: column;
    
    align-items: flex-end;
    text-align: right;
}

.contact-phones__hint {
    color: var(--brown);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-phones a {
    color: var(--dark-blue);
    font-size: calc((100vw - 320px) / (1920 - 320) * (22 - 16) + 16px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.01em;
}



/* MENU */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(48, 78, 93, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.menu-overlay.is-visible {
    opacity: 1;
}

.menu-drawer {
    position: fixed;
    top: 70px;
    left: 5rem;
    width: min(370px, calc(100dvw - 2rem));
    max-width: calc(100dvw - 1rem);
    z-index: 100;
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
    background: #ffffff;
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.menu-drawer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-drawer__list li+li {
    border-top: 1px solid #e6e6e6;
}

.menu-drawer__list a {
    display: block;
    padding: 10px 20px 10px 28px;
    color: var(--dark-blue);
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    background-color: #ffffff;
}

.menu-drawer__list a:hover {
    background-color: #f5f9fb;
}

body.menu-open {
    overflow: hidden !important;
}

body.request-modal-open {
    overflow: hidden !important;
}

/* REQUEST MODAL */
.request-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.request-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 89, 93, 0.62);
    backdrop-filter: blur(2px);
}

.request-modal__dialog {
    position: relative;
    width: min(100%, 500px);
    border-radius: 24px 0px 24px 24px;
    background: #f3e7cb;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.request-modal__title {
    margin: 0;
    padding: 28px 30px 22px;
    background: #ffffff;
    color: var(--dark-blue);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.request-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    border: none;
    background: transparent;
    color: var(--brown);
    font-size: 56px;
    line-height: 0.8;
    cursor: pointer;
}

.request-modal__form {
    padding: 26px 30px 30px;
}

.request-modal--success .request-modal__form {
    display: none;
}

.request-modal__success {
    margin: 0;
    padding: 24px 30px 30px;
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.request-modal__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.request-modal__field + .request-modal__field {
    margin-top: 18px;
}

.request-modal__label {
    color: var(--dark-blue);
    font-size: 20px;
    line-height: 1;
}

.request-modal__label--strong {
    font-weight: 700;
}

.request-modal__label--thin {
    font-weight: 300;
}

.request-modal__input {
    width: 100%;
    border: 1.5px solid #87a5ad;
    border-radius: 8px;
    background: #f8f0db;
    padding: 12px 16px;
    color: var(--dark-blue);
    font-family: var(--primary-ff);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.request-modal__input:focus {
    outline: none;
    border-color: #6e8f99;
}

.request-modal__input--textarea {
    resize: vertical;
    min-height: 58px;
}

.request-modal__submit {
    margin-top: 22px;
    width: auto;
    min-width: 300px;
}



@media (max-width: 768px) {
    .request-modal__dialog {
        width: min(100%, 560px);
    }

    .request-modal__title {
        font-size: 24px;
        padding: 18px 18px 14px;
    }

    .request-modal__close {
        font-size: 38px;
        top: 10px;
        right: 12px;
    }

    .request-modal__form {
        padding: 16px;
    }

    .request-modal__success {
        padding: 16px;
        font-size: 20px;
    }

    .request-modal__label {
        font-size: 18px;
    }

    .request-modal__input {
        font-size: 16px;
        padding: 9px 12px;
    }

    .request-modal__field + .request-modal__field {
        margin-top: 12px;
    }

    .request-modal__submit {
        margin-top: 16px !important;
        min-width: 230px;
        padding: 11px 40px 11px 14px;
        font-size: 13px;
    }
}

@media (max-width: 568px) {
    .request-modal {
        padding: 12px;
    }

    .request-modal__dialog {
        border-radius: 16px;
    }

    .request-modal__title {
        font-size: 20px;
        padding: 14px 14px 12px;
    }

    .request-modal__close {
        font-size: 32px;
        top: 8px;
        right: 8px;
    }

    .request-modal__form {
        padding: 12px;
    }

    .request-modal__success {
        padding: 12px;
        font-size: 16px;
    }

    .request-modal__label {
        font-size: 16px;
    }

    .request-modal__input {
        font-size: 14px;
        padding: 8px 10px;
        border-radius: 6px;
    }

    .request-modal__input--textarea {
        min-height: 68px;
    }

    .request-modal__field + .request-modal__field {
        margin-top: 9px;
    }

    .request-modal__submit {
        margin-top: 12px;
        min-width: 200px;
        padding: 10px 34px 10px 12px;
        font-size: 12px;
    }
}



/* INTRO */
.intro-container {
    position: relative;
    isolation: isolate;
    background-image: url("./img/intro.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 74, 101, 0.92) 0%,
            rgba(0, 74, 101, 0.68) 14%,
            rgba(0, 74, 101, 0.34) 32%,
            rgba(0, 74, 101, 0.16) 46%,
            rgba(0, 74, 101, 0.06) 60%,
            rgba(0, 74, 101, 0) 70%,
            rgba(0, 74, 101, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.intro-row {}

.intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-top: 100px;
}

.intro-title {
    font-size: 45px;
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;

}

.intro-title span {
    font-weight: 400;
}

.intro-subtitle {
    font-size: 30px;
    color: white;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-top: 20px;
}

.intro-icons-zone {
    display: flex;

    justify-content: center;
    gap: 20px;
    margin-top: 100px;
}

.intro-icons-zone__item {
    width: 24%;
    text-align: center;
}

.intro-icons-zone__item img {
    width: 148px;
    height: 138px;

    object-fit: contain;
}

/* Визуально выравниваем более "тяжелые" по форме иконки */
.intro-icons-zone__item:nth-child(2) img {
    width: 116px;
    height: 138px;
}

.intro-icons-zone__item:nth-child(3) img {
    width: 112px;
    height: 138px;
}

.intro-icons-zone__item:nth-child(4) img {
    width: 110px;
    height: 138px;
}

.intro-icons-zone__item p {
    width: 220px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: white;
    margin-top: 15px;
}

.intro-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    padding: 20px 84px 20px 52px;
    border-radius: 999px;
    border: 2px solid var(--brown);
    background-color: #f4f5f7;
    color: var(--dark-blue);
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.intro-button::after {
    content: "→";
    position: absolute;
    right: 36px;
    top: 50%;
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%) rotate(-35deg);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.intro-button:hover {
    background-color: var(--brown);
    border-color: var(--brown);
    color: #ffffff;
}

.intro-button:hover::after {
    transform: translateY(-50%) rotate(0deg);
}


/* Services */
.services-container {
    background-image: url("./img/services.jpg"), linear-gradient(to right, #fdefd2 50%, #abc8c6 50%);
    background-position: right bottom, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
}

.services-row {
    max-width: 1400px !important;

}

.services-col {
    padding: 70px 90px 68px;
}

.services-title {
    color: var(--dark-blue);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.services-title--left {
    max-width: 500px;
    font-size: clamp(34px, 2.2vw, 30px);
    line-height: 1.05;
    font-weight: 300;

}

.services-title--right {
    font-size: clamp(44px, 2.8vw, 64px);
    line-height: 1;
}

.services-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-list--left {
    margin-top: 42px;
}

.services-list--right {
    margin-top: 38px;
}

.services-item {
    position: relative;
}

.services-item--left {
    padding: 12px 18px 12px 48px;
    border-radius: 4px;
    color: #a66354;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.01em;
    transition: none;
}

.services-item--left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 20px;
    height: 20px;
    border: 2px solid #6ba7b8;
    border-radius: 50%;
    transform: translateY(-50%);
}

.services-item--left::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 23px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #c57b63;
    border-bottom: 2px solid #c57b63;
    transform: translateY(-65%) rotate(-45deg);
}

.services-item--left:hover {
    background-color: #ffffff;
    color: var(--dark-blue);
}

.services-item--left+.services-item--left {
    margin-top: 10px;
}

.services-item--right {
    padding: 12px 18px 12px 48px;
    color: var(--dark-blue);
    font-size: clamp(22px, 1.2vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    border-radius: 4px;
    transition: none;
}

.services-item--right::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 20px;
    height: 20px;
    border: 2px solid #6ba7b8;
    border-radius: 50%;
    transform: translateY(-50%);
}

.services-item--right::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 23px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--dark-blue);
    border-right: 2px solid var(--dark-blue);
    transform: translateY(-50%) rotate(45deg);
}

.services-item--right+.services-item--right {
    margin-top: 0px;
}

.services-item--right:hover {
    background-color: #ffffff;
}


.services-cta-wrap {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.services-cta-btn {

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 68px 18px 25px;
    border: 2px solid var(--dark-blue);
    border-radius: 999px;
    background-color: var(--dark-blue);
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.services-cta-btn__label {
    line-height: 1;
}

.services-cta-btn::after {
    content: "\2192\FE0E";
    position: absolute;
    right: 24px;
    top: 50%;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%) rotate(-35deg);
    transform-origin: center;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.services-cta-btn:hover {
    background-color: #ffffff;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.services-cta-btn:hover::after {
    transform: translateY(-50%) rotate(0deg);
}


/* HOW IT WORKS */
.how-it-works-container {
    background: linear-gradient(to bottom, #ffffff, #fdefd2);
    overflow-x: clip;
    padding-top: 50px;
    padding-bottom: 50px;
}

.how-it-works-row {
justify-content: center;
}



.how-it-works-description {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--dark-blue);

    text-align: center;
}

.how-it-works-description span {
    font-weight: 300;
}

/* Картка «досвід» (кремовий фон, круг з іконками) */
.how-it-works-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 1.25rem 1rem 1rem;
    /* background-color: #fff9e6; */
    border-radius: 16px;
    text-align: center;
    gap: 0.75rem;
    margin-top: 20px;
}

.how-it-works-card__icon-ring {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 156px);
    aspect-ratio: 1;
    padding: 0.4rem;
    background-color: #e1e9f1;
    border-radius: 50%;
    overflow: visible;
    transition: background-color 0.18s ease;
}



.how-it-works-card__icon-img {
    position: absolute;
    left: -8%;
    bottom: -5%;
    display: block;
    width: 94%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transform: none;
    transition: filter 0.18s ease, transform 0.18s ease;
    filter: brightness(0) saturate(100%) invert(58%) sepia(25%) saturate(910%) hue-rotate(336deg) brightness(96%) contrast(86%);
}

.how-it-works-card__icon-img-smaler {
    position: absolute;
    left: -6%;
    bottom: -4%;
    width: 78%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transform: none;
    transition: filter 0.18s ease, transform 0.18s ease;
    filter: brightness(0) saturate(100%) invert(58%) sepia(25%) saturate(910%) hue-rotate(336deg) brightness(96%) contrast(86%);
}

.how-it-works-card:hover .how-it-works-card__icon-ring,
.how-it-works-card:focus-within .how-it-works-card__icon-ring {
    background-color: #e8d8ae;
}

.how-it-works-card:hover .how-it-works-card__icon-img,
.how-it-works-card:hover .how-it-works-card__icon-img-smaler,
.how-it-works-card:focus-within .how-it-works-card__icon-img,
.how-it-works-card:focus-within .how-it-works-card__icon-img-smaler {
    filter: brightness(0) saturate(100%) invert(21%) sepia(34%) saturate(1702%) hue-rotate(163deg) brightness(94%) contrast(97%);
    transform: scale(1.03);
}

.how-it-works-item-description {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #005e7a;
}

.how-it-works-card__arrow {
    display: block;
    width: auto;
    max-width: 100px;
    height: auto;
    margin-top: 0.15rem;
    object-fit: contain;
}

/* TASKS — викуп проблемної нерухомості */
.tasks-container {
    background-image: url("./img/building.jpg");
    background-position: left bottom;
    background-repeat: no-repeat;

    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow-x: clip;
}

.tasks-row {
    max-width: 1400px !important;
}

.tasks-col {
    padding-left: 90px;
    padding-right: 90px;
}

.tasks-col--visual {
    display: flex;
    flex-direction: column;
}

.tasks-title {
    margin: 0 0 28px;
    font-size: clamp(40px, 3.6vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.01em;
    color: var(--dark-blue);
}

.tasks-title__line {
    display: block;
}

.tasks-title__accent {
    color: var(--brown);
}

.tasks-visual {
    margin-top: auto;
    overflow: hidden;
    border-radius: 4px;
}

.tasks-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(52vh, 480px);
    object-fit: cover;
    object-position: center bottom;
}

.tasks-content-wrap {
    position: relative;
    padding-right: 100px;
    min-height: 200px;
}

.tasks-list {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.tasks-item {
    position: relative;
    padding: 10px 12px 10px 48px;
}

.tasks-item + .tasks-item {
    margin-top: 6px;
}

.tasks-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 20px;
    height: 20px;
    border: 2px solid #6ba7b8;
    border-radius: 50%;
    transform: translateY(-50%);
}

.tasks-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 23px;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--brown);
    border-bottom: 2px solid var(--brown);
    transform: translateY(-65%) rotate(-45deg);
}

.tasks-item__link {
    display: inline;
    color: var(--dark-blue) !important;
    font-size: clamp(18px, 1.15vw, 22px);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.tasks-item__link:hover {
    color: var(--brown) !important;
}

.tasks-scribble {
    position: absolute;
    right: 18px;
    bottom: 54px;
    width: 190px;
    height: 190px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.tasks-scribble__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tasks-scribble__svg {
    width: 100%;
    height: 100%;
}

.tasks-cta-wrap {
    margin-top: 36px;
    text-align: right;
    position: relative;
    z-index: 2;
}

.tasks-cta-wrap .services-cta-btn {
    position: relative;
    display: inline-flex;
}

/* Process */
.process-container {
    padding-top: 60px;
    margin-bottom: 150px;
    background: url(./img/city-left.jpg) left bottom no-repeat, url(./img/city-right.jpg) right bottom no-repeat;
    background-color: #004a65;
}

.process-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
}

.process-header {
    margin-bottom: 28px;
}

.process-header__title {
    margin: 0;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fdefd2;
    line-height: 1.15;
}

.process-header__subtitle {
    margin: 10px 0 0;
    font-size: clamp(16px, 2.5vw, 25px);
    font-weight: 300;
    color: #c7ad8d;
}

.process-diagram {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    min-height: 120px;
    padding-bottom: 4px;
}

.process-diagram::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 220%;
    width: clamp(378px, 59vw, 537px);
    height: clamp(378px, 59vw, 537px);
    border: 2px solid #3b7580;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.75;
    z-index: 0;
}

.process-arrow {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border: none;
    border-radius: 0;
    pointer-events: none;
    z-index: 2;
}

.process-arrow::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -2px;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    transform: rotate(45deg);
}

.process-arrow--12 {
    left: 27.4%;
    top: 86%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -4%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 72.6%;
    top: 86%;
    transform: rotate(50deg);
}

.process-diagram__arc {
    display: block;
    width: 100%;
    height: auto;
    max-height: 200px;
    pointer-events: none;
}

.process-detail {
    position: absolute;
    left: 50%;
    top: 134%;
    transform: translate(-50%, -50%);
    width: min(88%, 400px);
    margin: 0;
    padding: 0 8px;
    font-size: clamp(14px, 1.9vw, 18px);
    font-weight: 300;
    line-height: 1.45;
    text-align: center;
    color: #fdefd2;
    pointer-events: none;
    z-index: 1;
}

.process-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 17vw, 118px);
    height: clamp(80px, 17vw, 118px);
    padding: 8px;
    border: 1.5px solid #3b7580;
    border-radius: 50%;
    background-color: #3b7580;
    color: #fdefd2;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}

.process-step:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: 3px;
}

.process-step:hover,
.process-step.is-active {
    background-color: var(--brown);
    border-color: var(--brown);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.process-step__num {
    font-size: clamp(13px, 2.2vw, 17px);
    font-weight: 700;
    line-height: 1;
}

.process-step__label {
    margin-top: 4px;
    font-size: clamp(15px, 2.8vw, 22px);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
}

.process-step--1 {
    left: 21.8%;
    top: 146%;
}

.process-step--2 {
    left: 36%;
    top: 36%;
}

.process-step--3 {
    left: 63%;
    top: 36%;
}

.process-step--4 {
    left: 78.2%;
    top: 146%;
}

.process-consult {
    margin: 0 auto;
    width: 70%;
    margin-top: 0px;
    padding: 28px 22px 26px;
    border-radius: 28px;
    background-color: var(--brown);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(50%);
}

.process-consult__title {
    margin: 0 0 22px;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 400;
    color: #fdefd2;
}

.process-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.process-field__label {
    font-size: 15px;
    font-weight: 300;
    color: #fdefd2;
}

.process-field__input {
    width: 100%;
    padding: 6px 0 10px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 0;
    background: transparent;
    color: #fdefd2;
    font-family: var(--primary-ff);
    font-size: 17px;
    font-weight: 300;
}

.process-field__input:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.process-field__input::placeholder {
    color: #fdefd2;
}

.process-consult__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
}

.process-form-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px 14px 32px;
    border: 2px solid var(--dark-blue);
    border-radius: 999px;
    background-color: var(--dark-blue);
    color: #fdefd2;
    font-family: var(--primary-ff);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.process-form-submit:hover {
    background-color: #ffffff;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.process-consult__social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.process-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: background-color 0.2s ease;
}

.process-social-link:hover {
    background: rgba(255, 255, 255, 0.28);
}

.process-social-link img {
    display: block;
    filter: brightness(0) invert(1);
    width: 30px;
}

.process-consult__success-message {
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 400;
}

/* TEAM */
.team-container {
    background: linear-gradient(to bottom, #ffffff 0%, #fdefd2 100%);
    padding-top: 56px;
    padding-bottom: 72px;
    overflow: hidden;
    z-index: 1000 !important;
}

.team-row {
    max-width: 1400px !important;
}

.team-title {
    margin-bottom: 28px;
    color: var(--dark-blue);
    font-size: clamp(32px, 2.5vw, 46px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.team-card {
    width: 100%;
    min-height: 460px;
    border-radius: 24px;
    background-color: #f7f7f8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-card__photo {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(180deg, #d8dde2 0%, #bcc7d1 100%);
}

.team-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 12px 14px 14px;
}

.team-card__content::before {
    content: "";
    position: absolute;
    top: -56px;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(to bottom, rgba(247, 247, 248, 0) 0%, #f7f7f8 78%);
    pointer-events: none;
}

.team-card__name {
    color: var(--dark-blue);
    font-size: clamp(16px, 1.15vw, 21px);
    font-weight: 700;
    line-height: 1.05;
}

.team-card__role {
    margin-top: 2px;
    color: var(--brown);
    font-size: clamp(14px, 0.95vw, 18px);
    font-weight: 300;
    line-height: 1.05;
}

.team-card__text {
    margin-top: 6px;
    color: #5a7891;
    font-size: clamp(12px, 0.78vw, 15px);
    font-weight: 300;
    line-height: 1.15;
}

.team-indicators {
    position: static !important;
    margin-top: 24px;
    margin-bottom: 0;
    gap: 10px;
}

.team-indicators [data-bs-target] {
    width: 9px !important;
    height: 9px !important;
    border-radius: 50%;
    border: 0;
    background-color: #b99a86 !important;
    opacity: 0.35;
}

.team-indicators .active {
    opacity: 1;
}

#teamCarouselDesktop,
#teamCarouselMobile {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

#teamCarouselDesktop.is-dragging,
#teamCarouselMobile.is-dragging {
    cursor: grabbing;
}

/* FAQ */
.faq-container {
    background: #f7f7f7;
    padding-top: 70px;
    padding-bottom: 70px;
}

.faq-row {
    max-width: 1400px !important;
    align-items: flex-start;
}

.faq-col {
    padding-left: 90px;
    padding-right: 90px;
}

.faq-title {
    color: var(--dark-blue);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #d3d8dd;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border: 0;
    background: transparent;
    text-align: left;
    color: #3a6173;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--dark-blue);
}

.faq-question__icon {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.faq-question__icon::before,
.faq-question__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #7a97a4;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.faq-question__icon::before {
    width: 18px;
    height: 1.5px;
}

.faq-question__icon::after {
    width: 1.5px;
    height: 18px;
}

.faq-question__text {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.faq-item.is-open .faq-question {
    color: var(--dark-blue);
}

.faq-item.is-open .faq-question__icon::before,
.faq-item.is-open .faq-question__icon::after {
    background-color: var(--dark-blue);
}

.faq-item.is-open .faq-question__icon::after {
    opacity: 0;
}

.faq-answer {
    padding: 0 0 16px 42px;
}

.faq-answer p {
    margin: 0;
    color: var(--brown);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.faq-col--visual {
    position: relative;
    padding-top: 8px;
}

.faq-visual-card {
    width: min(100%, 430px);
    height: 380px;
    margin-left: auto;
    position: relative;
    overflow: visible;
    border-radius: 24px;
    background: #90abac;
    --faq-head-offset: 34px;
}

.faq-visual-card img {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: auto;
    max-width: 100%;
    height: calc(100% + var(--faq-head-offset));
    transform: translateX(-50%);
    object-fit: contain;
    object-position: bottom center;
    z-index: 1;
}

.faq-cta-wrap {
    width: min(100%, 430px);
    margin: -20px 0 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-cta-btn {
    min-width: 300px;
}

/* TESTIMONIALS */
.testimonials-container {
    background: url(./img/cityl.gif) left bottom no-repeat, url(./img/cityr.gif) right bottom no-repeat;
    background-color: #e3ccb8;
    padding-top: 70px;
    padding-bottom: 70px;
}

.testimonials-row {
    max-width: 1400px !important;
}

.testimonials-title {
    margin-bottom: 22px;
    color: var(--dark-blue);
    font-size: clamp(32px, 2.5vw, 46px);
    font-weight: 300;
    line-height: 1;
    text-align: center;
}

.testimonials-owl-carousel .owl-stage {
    display: flex;
}

.testimonials-owl-carousel .owl-item {
    display: flex;
}

.testimonials-owl-carousel .owl-dots {
    margin-top: 24px;
}

.testimonials-owl-carousel .owl-dot span {
    background: rgba(165, 99, 84, 0.45) !important;
}

.testimonials-owl-carousel .owl-dot.active span,
.testimonials-owl-carousel .owl-dot:hover span {
    background: #a66354 !important;
}

.testimonial-card {
    width: 100%;
    min-height: 320px;
    padding: 28px 24px 24px;
    border-radius: 24px;
    background-color: #f4f5f7;
    display: flex;
    flex-direction: column;
    
}

.testimonial-card__icon {
    width: 40px !important;
    height: 32px;
   
}

.testimonial-card__author {
    margin-top: 26px;
    color: #bd8473;
    font-size: 25px;
    font-weight: 300;
    line-height: 1.05;
}

.testimonial-card__text {
    margin-top: 18px;
    color: #2e6f8f;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.22;
}

/* SCROLL TEXT */
.scroll-text-container {
    padding-top: 56px;
    padding-bottom: 56px;
}

.scroll-text-box {
    margin: 0 auto;
    width: 70%;
    height: 520px;
    overflow-y: auto;
    padding: 10px 10px;
    background-color: transparent;
    color: var(--dark-blue);
}

.scroll-text-box::-webkit-scrollbar {
    width: 8px;
}

.scroll-text-box::-webkit-scrollbar-track {
    background: #f4f4f4;
    border-radius: 999px;
}

.scroll-text-box::-webkit-scrollbar-thumb {
    background-color: var(--brown);
    border-radius: 999px;
}

.scroll-text-title {
    margin: 0 0 20px;
    color: var(--dark-blue);
    font-size: 30px;
    line-height: 1.12;
}

.scroll-text-box h3 {
    margin: 26px 0 12px;
    color: var(--dark-blue);
    font-size: 24px;
    line-height: 1.15;
}

.scroll-text-box p {
    margin: 0 0 18px;
    color: var(--dark-blue);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}

/* CONTACTS */
.contacts-container {
    padding-top: 48px;
    padding-bottom: 64px;
}

.contacts-row {
    max-width: 1400px !important;
}

.contacts-card {
    width: min(100%, 1200px);
    margin: 0 auto;
    border-radius: 28px;
    overflow: visible;
    background: #8aa2a2;
}

.contacts-top {
    position: relative;
    min-height: 270px;
    padding: 24px 36px 18px 320px;
    border-radius: 28px 28px 0 0;
}

.contacts-visual {
    position: absolute;
    left: 24px;
    bottom: 0;
    width: 250px;
    height: 320px;
}

.contacts-visual__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

.contacts-content {
    color: #ffffff;
}

.contacts-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.contacts-subtitle {
    margin-top: 8px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
}

.contacts-action-row {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contacts-meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contacts-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contacts-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.2s ease;
}

.contacts-social a:hover {
    filter: brightness(1.15);
}

.contacts-social img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}

.contacts-social img:hover {
    opacity: 0.6;
}

.contacts-phones {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.contacts-phones a {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.01em;
}

.contacts-phones__hint {
    margin-top: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}

.contacts-cta-btn {
    white-space: nowrap;
    color: #fdefd2;
}

.contacts-map-wrap {
    width: 100%;
    height: 260px;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
}

.contacts-map {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    padding: 24px 0 18px;
    background-color: #ffffff;
    text-align: center;
}

.site-footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-footer__social-link img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.site-footer__copyright {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.2;
    color: #0000009f;
}

.site-footer__policy-link {
    color: inherit;
    text-decoration: underline !important;
}

















































@media (min-width: 992px) and (max-width: 1299.98px) {
    .header-row {
        padding-top: 8px;
    }

    .top-bar {
        gap: 1.25rem;
    }

    .brand-mark__img {
        width: 68px;
        margin-bottom: 6px;
    }

    .brand-mark__title {
        font-size: 19px;
    }

    .brand-mark__subtitle {
        font-size: 13px;
    }

    .contact-icons {
        gap: 10px;
    }

    .contact-icons__link img {
        width: 28px;
        height: 28px;
    }

    .contact-phones a {
        font-size: clamp(17px, 1.55vw, 20px);
    }

    .intro-content {
        margin-top: 78px;
    }

    .intro-title {
        font-size: clamp(34px, 3.2vw, 40px);
        line-height: 1.02;
    }

    .intro-subtitle {
        margin-top: 16px;
        font-size: clamp(24px, 2.2vw, 28px);
    }

    .intro-icons-zone {
        margin-top: 64px;
        gap: 12px;
    }

    .intro-icons-zone__item {
        width: 24%;
    }

    .intro-icons-zone__item img {
        width: 106px;
        height: 96px;
    }

    .intro-icons-zone__item:nth-child(2) img,
    .intro-icons-zone__item:nth-child(3) img,
    .intro-icons-zone__item:nth-child(4) img {
        width: 94px;
        height: 96px;
    }

    .intro-icons-zone__item p {
        width: min(100%, 200px);
        margin: 10px auto 0;
        font-size: clamp(14px, 1.2vw, 16px);
        line-height: 1.25;
    }

    .intro-button {
        margin-top: 26px;
        padding: 16px 72px 16px 44px;
        font-size: clamp(20px, 1.8vw, 24px);
    }

    .intro-button::after {
        right: 28px;
        font-size: 32px;
    }

    .services-col {
        padding: 56px 54px 60px;
    }

    .services-title--left {
        font-size: clamp(28px, 2.5vw, 34px);
    }

    .services-title--right {
        font-size: clamp(34px, 3.2vw, 46px);
    }

    .services-item--left {
        font-size: 16px;
    }

    .services-item--right {
        font-size: clamp(17px, 1.35vw, 20px);
    }

    .services-cta-btn {
        padding: 16px 58px 16px 22px;
        font-size: 19px;
    }

    .tasks-col,
    .faq-col {
        padding-left: 54px;
        padding-right: 54px;
    }

    .tasks-title {
        font-size: clamp(42px, 3.3vw, 56px);
    }

    .tasks-content-wrap {
        padding-right: 24px;
    }

    .tasks-item__link {
        font-size: clamp(18px, 1.4vw, 20px);
    }

    .process-container {
        margin-bottom: 130px;
    }

    .process-step {
        width: clamp(88px, 8.4vw, 104px);
        height: clamp(88px, 8.4vw, 104px);
    }

    .process-detail {
        width: min(86%, 360px);
        font-size: 16px;
    }

    .process-consult {
        width: min(82%, 920px);
    }

    .faq-title {
        font-size: clamp(34px, 3vw, 40px);
    }

    .faq-question__text {
        font-size: clamp(20px, 1.85vw, 24px);
    }

    .faq-answer p {
        font-size: clamp(17px, 1.55vw, 20px);
    }

    .faq-visual-card {
        width: min(100%, 390px);
        height: 340px;
    }

    .faq-cta-btn {
        min-width: 270px;
    }

    .testimonial-card {
        min-height: 290px;
        padding: 22px 18px;
    }

    .testimonial-card__author {
        font-size: 22px;
    }

    .testimonial-card__text {
        font-size: 18px;
    }

    .scroll-text-box {
        width: min(86%, 980px);
    }

    .contacts-card {
        width: min(100%, 1080px);
    }

    .contacts-top {
        min-height: 246px;
        padding: 22px 26px 16px 262px;
    }

    .contacts-visual {
        left: 16px;
        width: 222px;
        height: 292px;
    }

    .contacts-title {
        font-size: clamp(30px, 2.7vw, 34px);
    }

    .contacts-subtitle {
        font-size: clamp(22px, 1.95vw, 25px);
    }

    .contacts-action-row {
        margin-top: 20px;
        gap: 14px;
    }

    .contacts-meta {
        gap: 16px;
    }

    .contacts-social {
        gap: 10px;
    }

    .contacts-phones a {
        font-size: clamp(20px, 1.8vw, 23px);
    }

    .contacts-phones__hint {
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .header-container {
        padding: 6px 0;
    }

    .header-row {
        padding: 0;
        align-items: center;
    }

    .top-bar {
        gap: 0.9rem;
    }

    .menu-toggle {
        gap: 0.45rem;
        font-size: 12px;
    }

    .menu-toggle__icon span {
        width: 1.5rem;
        height: 0.14rem;
    }

    .language-switcher__link {
        font-size: 12px;
    }

    .brand-mark__img {
        width: 60px;
        margin-bottom: 2px;
    }

    .brand-mark__title {
        font-size: 17px;
    }

    .brand-mark__subtitle {
        font-size: 12px;
        letter-spacing: 0.16em;
    }

    .contact-block {
        gap: 10px;
    }

    .contact-icons {
        display: none;
    }

    .contact-call-link,
    .contact-icons-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    .contact-call-link img,
    .contact-icons-toggle img {
        width: 26px;
        height: 26px;
    }

    .contact-icons.is-open {
        display: flex;
        position: fixed;
        top: 82px;
        right: 12px;
        z-index: 120;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    }

    .contact-icons__link img {
        width: 28px;
        height: 28px;
    }

    .contact-phones {
        display: none !important;
    }

    .menu-drawer {
        top: 4.6rem;
        left: 1rem;
        width: min(350px, calc(100dvw - 2rem));
    }

    .intro-container {
        align-items: flex-start;
        min-height: 100vh;
        height: auto;
        padding-top: 106px;
        padding-bottom: 36px;
    }

    .intro-content {
        margin-top: 0;
    }

    .intro-title {
        font-size: clamp(31px, 5vw, 40px);
        line-height: 1.03;
    }

    .intro-subtitle {
        margin-top: 14px;
        font-size: clamp(21px, 3.2vw, 28px);
    }

    .intro-icons-zone {
        margin-top: 40px;
        gap: 18px 12px;
        flex-wrap: wrap;
    }

    .intro-icons-zone__item {
        width: calc(50% - 8px);
    }

    .intro-icons-zone__item img {
        width: 76px;
        height: 76px;
    }

    .intro-icons-zone__item:nth-child(2) img,
    .intro-icons-zone__item:nth-child(3) img,
    .intro-icons-zone__item:nth-child(4) img {
        width: 74px;
        height: 76px;
    }

    .intro-icons-zone__item p {
        width: min(100%, 250px);
        margin: 10px auto 0;
        font-size: clamp(14px, 1.85vw, 16px);
        line-height: 1.25;
    }

    .intro-button {
        width: min(100%, 460px);
        margin-top: 30px;
        padding: 12px 52px 12px 26px;
        font-size: clamp(16px, 2.5vw, 22px);
    }

    .intro-button::after {
        right: 18px;
        font-size: 30px;
    }

    .services-container {
        background-color: #fdefd2;
        background-image: none;
    }

    .services-col {
        padding: 40px 30px;
    }

    .services-col--right {
        background-color: #abc8c6;
    }

    .services-title--left {
        max-width: 100%;
        font-size: clamp(26px, 3.4vw, 34px);
        line-height: 1.12;
    }

    .services-title--right {
        font-size: clamp(30px, 4.2vw, 42px);
        line-height: 1.02;
    }

    .services-list--left,
    .services-list--right {
        margin-top: 24px;
    }

    .services-item--left,
    .services-item--right {
        padding: 9px 0 9px 32px;
        line-height: 1.25;
    }

    .services-item--left {
        font-size: clamp(16px, 2.05vw, 18px);
    }

    .services-item--right {
        font-size: clamp(17px, 2.15vw, 20px);
    }

    .services-item--left::before,
    .services-item--right::before {
        left: 0;
        width: 18px;
        height: 18px;
    }

    .services-item--left::after {
        left: 7px;
    }

    .services-item--right::after {
        left: 6px;
        width: 7px;
        height: 7px;
    }

    .services-cta-wrap {
        bottom: -22px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .services-cta-btn {
        width: min(82%, 420px);
        padding: 14px 48px 14px 14px;
        font-size: clamp(14px, 2.05vw, 18px);
    }

    .services-cta-btn::after {
        right: 16px;
        font-size: 30px;
    }

    .how-it-works-container {
        padding-top: 42px;
        padding-bottom: 46px;
    }

    .how-it-works-description {
        margin-top: 16px;
        font-size: clamp(28px, 4vw, 34px);
    }

    .how-it-works-card {
        max-width: 290px;
        padding: 0.6rem;
        gap: 0.55rem;
    }

    .how-it-works-card__icon-ring {
        width: min(100%, 132px);
    }

    .how-it-works-item-description {
        font-size: clamp(15px, 2vw, 17px);
        line-height: 1.08;
    }

    .tasks-container {
        padding-top: 36px;
        padding-bottom: 58px;
        background-size: 250px;
    }

    .tasks-col {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tasks-title {
        margin-bottom: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        font-size: clamp(30px, 4.8vw, 46px);
        font-weight: 300;
    }

    .tasks-title__accent {
        font-weight: 700;
    }

    .tasks-content-wrap {
        padding-right: 8px;
    }

    .tasks-item {
        padding: 8px 12px 8px 38px;
    }

    .tasks-item::before {
        left: 6px;
        width: 18px;
        height: 18px;
    }

    .tasks-item::after {
        left: 13px;
    }

    .tasks-item__link {
        font-size: clamp(16px, 2vw, 19px);
    }

    .tasks-cta-wrap {
        margin-top: 24px;
        text-align: center;
    }

    .tasks-cta-wrap .services-cta-btn {
        width: min(90%, 420px);
    }

    .process-container {
        padding-top: 52px;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 108px;
        background-size: 230px;
    }

    .process-inner {
        padding-left: 8px;
        padding-right: 8px;
    }

    .process-diagram::before {
        top: 76%;
        width: clamp(317px, 65.1vw, 458px);
        height: clamp(317px, 65.1vw, 458px);
    }

    .process-header__title {
        font-size: clamp(24px, 3.9vw, 34px);
    }

    .process-header__subtitle {
        font-size: clamp(18px, 2.8vw, 24px);
    }

    .process-detail {
        top: 112%;
        width: min(90%, 330px);
        font-size: clamp(14px, 1.8vw, 16px);
    }

    .process-step {
        width: clamp(72px, 10.8vw, 94px);
        height: clamp(72px, 10.8vw, 94px);
    }

    .process-step--1 {
        left: 16%;
        top: 124%;
    }

    .process-step--2 {
        left: 32%;
        top: 24%;
    }

    .process-step--3 {
        left: 68%;
        top: 24%;
    }

    .process-step--4 {
        left: 84%;
        top: 124%;
    }

    .process-arrow--12 {
        left: 21%;
        top: 72%;
    }

    .process-arrow--23 {
        top: 14%;
    }

    .process-arrow--34 {
        left: 79%;
        top: 72%;
    }

    .process-consult {
        width: min(96%, 720px);
        padding: 16px 14px 18px;
        transform: translateY(34%);
        border-radius: 24px;
    }

    .process-consult__title {
        margin-bottom: 14px;
        font-size: clamp(18px, 2.8vw, 24px);
    }

    .process-field {
        gap: 2px;
    }

    .process-field__label {
        font-size: 14px;
    }

    .process-field__input {
        padding: 4px 0 8px;
        font-size: 15px;
    }

    .process-consult__actions {
        margin-top: 16px;
        gap: 12px;
        justify-content: center;
    }

    .process-form-submit {
        padding: 12px 24px 12px 26px;
        font-size: 14px;
    }

    .team-container {
        padding-top: 44px;
        padding-bottom: 54px;
    }

    .team-title {
        margin-bottom: 18px;
        font-size: clamp(32px, 4.8vw, 40px);
    }

    .team-card {
        min-height: 430px;
    }

    .team-card__photo {
        height: 300px;
    }

    .team-card__name {
        font-size: 19px;
    }

    .team-card__role {
        font-size: 16px;
    }

    .team-card__text {
        font-size: 14px;
        line-height: 1.2;
    }

    .faq-container {
        padding-top: 42px;
        padding-bottom: 50px;
    }

    .faq-col {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-title {
        margin-bottom: 16px;
        font-size: clamp(30px, 4.6vw, 38px);
    }

    .faq-question {
        gap: 12px;
        padding: 11px 0;
    }

    .faq-question__text {
        font-size: clamp(18px, 2.6vw, 22px);
    }

    .faq-answer {
        padding: 0 0 12px 30px;
    }

    .faq-answer p {
        font-size: clamp(16px, 2.1vw, 18px);
    }

    .faq-col--visual {
        margin-top: 22px;
        padding-top: 0;
    }

    .faq-visual-card {
        width: min(100%, 520px);
        height: 430px;
        margin: 0 auto;
    }

    .faq-cta-wrap {
        width: min(100%, 520px);
        margin: -20px auto 0;
    }

    .faq-cta-btn {
        min-width: unset;
        width: min(82%, 420px);
    }

    .testimonials-container {
        padding-top: 48px;
        padding-bottom: 50px;
    }

    .testimonials-title {
        margin-bottom: 18px;
        font-size: clamp(32px, 4.8vw, 40px);
    }

    .testimonial-card {
        min-height: 270px;
        padding: 18px 12px 14px;
    }

    .testimonial-card__author {
        margin-top: 16px;
        font-size: clamp(19px, 2.8vw, 22px);
    }

    .testimonial-card__text {
        margin-top: 12px;
        font-size: clamp(16px, 2.2vw, 18px);
    }

    .scroll-text-container {
        padding-top: 42px;
        padding-bottom: 44px;
    }

    .scroll-text-box {
        width: min(94%, 820px);
        height: 380px;
        padding: 14px 14px;
    }

    .scroll-text-title {
        font-size: clamp(24px, 3.9vw, 30px);
    }

    .scroll-text-box h3 {
        font-size: clamp(19px, 2.9vw, 24px);
    }

    .scroll-text-box p {
        font-size: clamp(16px, 2.2vw, 19px);
    }

    .contacts-container {
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .contacts-card {
        width: min(100%, 920px);
        overflow: hidden;
    }

    .contacts-top {
        min-height: 0;
        padding: 18px 16px 0;
        display: flex;
        flex-direction: column;
        border-radius: 0;
    }

    .contacts-visual {
        position: static;
        order: 2;
        margin: 14px auto 0;
        width: 240px;
        height: 280px;
    }

    .contacts-content {
        order: 1;
    }

    .contacts-title {
        font-size: clamp(27px, 4vw, 33px);
    }

    .contacts-subtitle {
        margin-top: 6px;
        font-size: clamp(21px, 3vw, 25px);
    }

    .contacts-action-row {
        margin-top: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contacts-meta {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contacts-social img {
        width: 34px;
        height: 34px;
    }

    .contacts-phones {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .contacts-phones a {
        font-size: clamp(21px, 3.2vw, 24px);
    }

    .contacts-phones__hint {
        font-size: 14px;
    }

    .contacts-cta-btn {
        width: min(82%, 420px);
        margin: 0 auto;
    }

    .contacts-map-wrap {
        height: 320px;
        border-radius: 0;
    }
}

@media (max-width: 568px) {

    .header-container {
        padding: 5px;
    }

    /* HEADER */
    .top-bar {
        padding: 0px 0px 0px 0px;
        gap: 1.3rem;
    }

    .menu-toggle,

    .header-row {
        /* border: 1px solid red; */
        padding: 0px 0px 0px 0px;
    }

    .header-container.is-scrolled .header-row {
        align-items: center;
        padding: 0px 0px 0px 0px;
    }

    .top-bar {
        display: flex;
        align-items: center;
        gap: 0.75rem;

    }

    .brand-mark {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .brand-mark__img {
        width: 70px;
        max-width: 100%;
        margin-bottom: 0px;
    }

    .brand-mark__title {
        color: var(--dark-blue);
        font-size: 21px;
        font-weight: 400;
        line-height: 0.9;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-top: 10px;
    }

    .brand-mark__subtitle {

        margin-top: 2px;
        color: var(--dark-blue);
        font-size: 14px;
        font-weight: 300;
        line-height: 1;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }

    .mobile-contact-block {
        display: flex;
     }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        border: 0;
        padding: 0;
        background: transparent;
        color: var(--dark-blue);
        font-family: var(--primary-ff);
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
    }

    .menu-toggle__icon {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.32rem;
    }

    .menu-toggle__icon span {
        display: block;
        width: 1.8rem;
        height: 0.18rem;
        border-radius: 1rem;
        background-color: var(--brown);
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
        transform: translateY(0.5rem) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
        transform: translateY(-0.5rem) rotate(-45deg);
    }

    .language-switcher {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .language-switcher__link {
        color: var(--brown);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.03em;

    }

    .language-switcher__link.is-active {
        color: var(--dark-blue);
        cursor: default;
    }

    .header-row>.col-12.col-md-4.col-lg-4:last-child {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .contact-block {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-end;
        gap: 16px;
    }

    .contact-icons {
        display: none;
        align-items: center;
        gap: 14px;
    }

    .contact-icons-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        box-shadow: none;
        cursor: pointer;
    }

    .contact-call-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        box-shadow: none;
    }

    .contact-icons.is-open {
        display: flex;
        position: fixed;
        top: 88px;
        right: 8px;
        z-index: 120;
        flex-direction: column;
        gap: 10px;
        padding: 12px 10px;
        border-radius: 20px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    }

    .contact-icons__link--phone {
        display: none;
    }

    .contact-icons__link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: filter 0.2s ease;
    }

    .contact-icons__link:hover {
        filter: brightness(1.17);
    }

    .contact-icons__link img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        display: block;
    }

    .contact-icons__link--phone:hover {
        filter: none;
    }

    .contact-phones {
        display: none !important;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .contact-phones__hint {
        color: var(--brown);
        font-size: 10px;
        font-weight: 400;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .contact-phones a {
        color: var(--dark-blue);
        font-size: calc((100vw - 320px) / (1920 - 320) * (22 - 16) + 16px);
        font-weight: 700;
        line-height: 0.95;
        letter-spacing: 0.01em;
    }

    .menu-drawer {
        top: 4.5rem;
        left: 0.5rem;
    }

/* INTRO */
.intro-container {
    position: relative;
    isolation: isolate;
    background-image: url("./img/intro.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.intro-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 74, 101, 0.92) 0%,
            rgba(0, 74, 101, 0.68) 14%,
            rgba(0, 74, 101, 0.34) 32%,
            rgba(0, 74, 101, 0.16) 46%,
            rgba(0, 74, 101, 0.06) 60%,
            rgba(0, 74, 101, 0) 70%,
            rgba(0, 74, 101, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.intro-row {
    padding-top: 200px;
}

.intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-top: 0px;
}

.intro-title {
    font-size: 25px;
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;

}

.intro-title span {
    font-weight: 400;
}

.intro-subtitle {
    font-size: 20px;
    color: white;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-top: 15px;
}

.intro-icons-zone {
    display: flex;
flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.intro-icons-zone__item {
    width: 46%;
    text-align: center;
}

.intro-icons-zone__item img {
    width: 50px;
    height: 50px;

    object-fit: contain;
}

/* Визуально выравниваем более "тяжелые" по форме иконки */
.intro-icons-zone__item:nth-child(2) img {
    width: 50px;
    height: 50px;
}

.intro-icons-zone__item:nth-child(3) img {
    width: 50px;
    height: 50px;
}

.intro-icons-zone__item:nth-child(4) img {
    width: 50px;
    height: 50px;
}

.intro-icons-zone__item p {
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: white;
    margin-top: 15px;
}

.intro-button {
    margin: 0 auto;
    width: 80%;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding: 10px 40px 10px 40px;
    border-radius: 999px;
    border: 2px solid var(--brown);
    background-color: #f4f5f7;
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.intro-button::after {
    content: "→";
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 35px;
    line-height: 1;
    transform: translateY(-50%) rotate(-35deg);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.intro-button:hover {
    border-color: #004a65;
}

.intro-button:hover::after {
    transform: translateY(-50%) rotate(0deg);
}

/* Services */
.services-container {
    background-color: #fdefd2;
    background-image: none;
    overflow-x: clip;
}

.services-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: clip;
}

.services-col {
    padding: 36px 20px;
}

.services-col--right {
    background-color: #abc8c6;
}

.services-title--left {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.2;
}

.services-title--right {
    font-size: 30px;
    line-height: 1.02;
}

.services-list--left {
    margin-top: 20px;
}

.services-list--right {
    margin-top: 22px;
}

.services-item--left {
    padding: 7px 0 7px 30px;
    border-radius: 0;
    font-size: 16px;
    line-height: 1.25;
}

.services-item--left::before {
    left: 0;
    width: 18px;
    height: 18px;
}

.services-item--left::after {
    left: 7px;
}

.services-item--left+.services-item--left {
    margin-top: 9px;
}

.services-item--right {
    padding: 7px 0 7px 30px;
    font-size: 19px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.services-item--right::before {
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
}

.services-item--right::after {
    top: 50%;
    left: 6px;
    width: 7px;
    height: 7px;
    transform: translateY(-50%) rotate(45deg);
}

.services-item--right+.services-item--right {
    margin-top: 16px;
}

.services-cta-wrap {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
}

.services-cta-btn {

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(70%, 420px);
    padding: 15px 42px 15px 15px;
    border: 2px solid var(--dark-blue);
    border-radius: 999px;
    background-color: var(--dark-blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.services-cta-btn__label {
    line-height: 1;
}

.services-cta-btn::after {
    right: 14px;
    font-size: 28px;
}

.services-cta-btn:hover {
    background-color: #ffffff;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}


/* HOW IT WORKS */
.how-it-works-container {
    background: linear-gradient(to bottom, #ffffff, #fdefd2);
    overflow-x: clip;
    padding-top: 50px;
    padding-bottom: 50px;
}

.how-it-works-row {
justify-content: flex-start;
}



.how-it-works-description {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--dark-blue);
margin-top: 20px;
    text-align: center;
}

.how-it-works-description span {
    font-weight: 300;
}

/* Картка «досвід» (кремовий фон, круг з іконками) */
.how-it-works-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 5px;
    /* background-color: #fff9e6; */
    border-radius: 16px;
    text-align: center;
    gap: 0.75rem;
    margin-top: 20px;
}

.how-it-works-card__icon-ring {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    aspect-ratio: 1;
    padding: 0.3rem;
    background-color: #e1e9f1;
    border-radius: 50%;
    overflow: visible;
}



.how-it-works-card__icon-img {
    display: block;
    left: -9%;
    bottom: -6%;
    width: 98%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transform: none;
}

.how-it-works-card__icon-img-smaler {
    left: -7%;
    bottom: -5%;
    width: 82%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transform: none;
}

.how-it-works-item-description {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: var(--dark-blue);
}

.how-it-works-card__arrow {
    display: block;
    width: auto;
    max-width: 100px;
    height: auto;
    margin-top: 0.15rem;
    object-fit: contain;
}

/* TASKS — mobile */
.tasks-container {
    padding-top: 36px;
    padding-bottom: 200px;
    background-size: 200px;
}

.tasks-col {
    padding-left: 0px;
    padding-right: 0px;
}

.tasks-title {
    margin-bottom: 0px;
    font-size: 25px;
    display: flex;
    gap: 10px;
    font-weight: 300;
}


.tasks-title__accent {
    font-weight: 700;
}


.tasks-content-wrap {
    padding-right: 0;
}

.tasks-scribble {
    right: 10px;
    bottom: 66px;
    top: auto;
    width: 116px;
    height: 116px;
    opacity: 0.88;
}

.tasks-cta-wrap {
    margin-top: 28px;
    text-align: center;
}

.tasks-cta-wrap .services-cta-btn {
    width: min(100%, 420px);
}

.tasks-item {
    position: relative;
    padding: 5px 12px 5px 48px;
}


/* Process */
.process-container {
    padding-top: 60px;
    margin-bottom: 100px;
    background: url(./img/city-left.jpg) left bottom no-repeat, url(./img/city-right.jpg) right bottom no-repeat;
    background-size: 200px;
    background-color: #004a65;
    padding-left: 0px;
    padding-right: 0px;
}

.process-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.process-header {
    margin-bottom: 28px;
}

.process-header__title {
    margin: 0;
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fdefd2;
    line-height: 1.15;
}

.process-header__subtitle {
    margin: 10px 0 0;
    font-size: 22px;
    font-weight: 300;
    color: #c7ad8d;
}

.process-diagram {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    min-height: 120px;
    padding-bottom: 4px;
}

.process-diagram::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 120%;
    width: clamp(255px, 81vw, 343px);
    height: clamp(255px, 81vw, 343px);
    border: 1.8px solid #3b7580;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.75;
    z-index: 0;
}

.process-arrow {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border: none;
    border-radius: 0;
    pointer-events: none;
}

.process-arrow::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -2px;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    transform: rotate(45deg);
}

.process-arrow--12 {
    left: 20%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: 10%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 80%;
    top: 66%;
    transform: rotate(50deg);
}

.process-diagram__arc {
    display: block;
    width: 100%;
    height: auto;
    max-height: 200px;
    pointer-events: none;
}

.process-detail {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    width: 240px;
    margin: 0;
    padding: 0 8px;
    font-size: clamp(14px, 1.9vw, 18px);
    font-weight: 300;
    line-height: 1.45;
    text-align: center;
    color: #fdefd2;
    pointer-events: none;
    z-index: 1;
}

.process-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 17vw, 118px);
    height: clamp(80px, 17vw, 118px);
    padding: 8px;
    border: 1.5px solid #3b7580;
    border-radius: 50%;
    background-color: #3b7580;
    color: #fdefd2;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 2;
}

.process-step:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: 3px;
}

.process-step:hover,
.process-step.is-active {
    background-color: var(--brown);
    border-color: var(--brown);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.process-step__num {
    font-size: clamp(18px, 3.5vw, 26px);
    font-weight: 700;
    line-height: 1;
}

.process-step__label {
    margin-top: 4px;
    font-size: clamp(11px, 2vw, 15px);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
}

.process-step--1 {
    left: 15%;
    top: 120%;
}

.process-step--2 {
    left: 30%;
    top: 18%;
}

.process-step--3 {
    left: 70%;
    top: 18%;
}

.process-step--4 {
    left: 85%;
    top: 120%;
}

.process-consult {
    margin: 0 auto;
    width: 100%;
    margin-top: 0px;
    padding: 18px 8px 18px 8px;
    border-radius: 30px;
    background-color: var(--brown);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(30%);
}

.process-consult__title {
    margin: 0 0 12px;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 400;
    color: #fdefd2;
}

.process-field {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
}

.process-field__label {
    font-size: 15px;
    font-weight: 300;
    color: #fdefd2;
}

.process-field__input {
    width: 100%;
    padding: 6px 0 6px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 0;
    background: transparent;
    color: #fdefd2;
    font-family: var(--primary-ff);
    font-size: 15px;
    font-weight: 300;
}

.process-field__input:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.process-field__input::placeholder {
    color: #fdefd2;
}

.process-consult__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
    padding-left: 10px;
    padding-right: 10px;
}

.process-form-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px 14px 32px;
    border: 2px solid var(--dark-blue);
    border-radius: 999px;
    background-color: var(--dark-blue);
    color: #fdefd2;
    font-family: var(--primary-ff);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.process-form-submit:hover {
    background-color: #ffffff;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.process-consult__social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.process-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: background-color 0.2s ease;
}

.process-social-link:hover {
    background: rgba(255, 255, 255, 0.28);
}

.process-social-link img {
    display: block;
    filter: brightness(0) invert(1);
    width: 30px;
}

/* TEAM */
.team-container {
    padding-top: 40px;
    padding-bottom: 50px;
}

.team-title {
    margin-bottom: 20px;
    font-size: 38px;
}

.team-card,
.team-card--mobile {
    min-height: 480px;
    border-radius: 22px;
}

.team-card__photo {
    height: 340px;
}

.team-card__content {
    padding: 16px 13px 13px;
}

.team-card__content::before {
    top: -74px;
    height: 86px;
    background: linear-gradient(to bottom, rgba(247, 247, 248, 0) 0%, #f7f7f8 82%);
}

.team-card__name {
    font-size: 20px;
}

.team-card__role {
    margin-top: 2px;
    font-size: 18px;
}

.team-card__text {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.12;
}

.team-indicators {
    margin-top: 18px;
    margin-bottom: 18px;
}

.faq-container {
    padding-top: 38px;
    padding-bottom: 48px;
}

.faq-col {
    padding-left: 0;
    padding-right: 0;
}

.faq-title {
    font-size: 35px;
    margin-bottom: 16px;
}

.faq-question {
    gap: 12px;
    padding: 10px 0;
}

.faq-question__icon {
    width: 20px;
    height: 20px;
}

.faq-question__icon::before {
    width: 14px;
}

.faq-question__icon::after {
    height: 14px;
}

.faq-question__text {
    font-size: 20px;
    line-height: 1.12;
}

.faq-answer {
    padding: 0 0 12px 32px;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.25;
}

.faq-col--visual {
    margin-top: 22px;
    padding-top: 0;
}

.faq-visual-card {
    width: 100%;
    max-width: 100%;
    height: 520px;
    margin-left: 0;
    position: relative;
    overflow: visible;
    border-radius: 28px;
    --faq-head-offset: 30px;
}

.faq-cta-wrap {
    width: 100%;
    margin: -22px 0 0;
}

.faq-cta-btn {
    width: min(86%, 420px);
    min-width: unset;
}

.testimonials-container {
    padding-top: 48px;
    padding-bottom: 50px;
}

.testimonials-title {
    margin-bottom: 16px;
    font-size: 35px;
}

.testimonials-owl-carousel .owl-dots {
    margin-top: 16px;
}

.testimonial-card {
    min-height: 250px;
    padding: 15px 10px 10px;
    border-radius: 22px;
}

.testimonial-card__icon {
    width: 34px;
    height: 28px;
}

.testimonial-card__author {
    margin-top: 20px;
    font-size: 20px;
}

.testimonial-card__text {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.18;
}

    .contacts-container {
        padding-top: 34px;
        padding-bottom: 40px;
  
    }

    .contacts-card {
        border-radius: 28px;
        width: 100%;

        overflow: hidden;
    }

    .contacts-top {
        min-height: 0;
        padding: 18px 16px 0;
        display: flex;
        flex-direction: column;
        border-radius: 0;
    }

    .contacts-visual {
        position: static;
        order: 2;
        margin: 14px auto 0;
        width: 220px;
        height: 260px;
    }

    .contacts-content {
        order: 1;
    }

    .contacts-title {
        font-size: 25px;
    }

    .contacts-subtitle {
        margin-top: 6px;
        font-size: 20px;
        line-height: 1.05;
    }

    .contacts-action-row {
        margin-top: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .contacts-meta {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contacts-social img {
        width: 35px;
        height: 35px;
    }

    .contacts-phones {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .contacts-phones a {
        font-size: 22px;
    }

    .contacts-phones__hint {
        font-size: 15px;
    }

    .contacts-cta-btn {
        margin: 0 auto;
        width: 80%;
    }

    .contacts-map-wrap {
        height: 350px;
        border-radius: 0;
    }

}

@media (min-width: 576px) and (max-width: 1000px) {
    .intro-content {
        margin-top: clamp(72px, 9vw, 110px);
    }
}

@media (min-width: 576px) and (max-width: 1299.98px) {
    .tasks-container {
        background-size: clamp(210px, 24vw, 340px);
        background-position: left bottom -24px;
    }

    .tasks-content-wrap {
        padding-left: clamp(14px, 1.9vw, 30px);
        padding-right: clamp(6px, 1.6vw, 18px);
    }

    .tasks-item {
        padding: 8px 10px 8px 38px;
    }

    .tasks-item::before {
        left: 8px;
    }

    .tasks-item::after {
        left: 15px;
    }

    .tasks-scribble {
        right: clamp(8px, 2.8vw, 28px);
        bottom: clamp(42px, 5.2vw, 70px);
        width: clamp(128px, 16vw, 176px);
        height: clamp(128px, 16vw, 176px);
    }

    .how-it-works-container {
        padding-top: 34px;
        padding-bottom: 30px;
    }

    .how-it-works-description {
        font-size: clamp(25px, 3.1vw, 34px);
        line-height: 1.02;
    }

    .how-it-works-card {
        margin-top: 8px;
        padding: 0.35rem 0.35rem 0.3rem;
        gap: 0.45rem;
    }

    .how-it-works-card__icon-ring {
        width: clamp(86px, 9.2vw, 118px);
        padding: 0.32rem;
    }

    .how-it-works-card__icon-img {
        left: -9%;
        bottom: -6%;
        width: 96%;
    }

    .how-it-works-card__icon-img-smaler {
        left: -7%;
        bottom: -5%;
        width: 80%;
    }

    .how-it-works-item-description {
        font-size: clamp(14px, 1.5vw, 18px);
        line-height: 1.06;
    }

    .how-it-works-card__arrow {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .contact-block {
        gap: 8px;
    }

    .contact-icons {
        gap: 8px;
    }

    .contact-icons__link img {
        width: 24px;
        height: 24px;
    }

    .contact-phones__hint {
        font-size: 9px;
    }

    .contact-phones a {
        font-size: 16px;
        line-height: 1;
    }
}

@media (min-width: 992px) and (max-width: 1299.98px) {
    .how-it-works-card__arrow {
        display: block !important;
        width: auto;
        max-width: 100px;
    }
}



@media (max-width: 992px) {
    .scroll-text-box {
        height: 420px;
        padding: 16px 18px;
    }

    .scroll-text-title {
        font-size: 32px;
    }

    .scroll-text-box h3 {
        font-size: 24px;
    }

    .scroll-text-box p {
        font-size: 20px;
        line-height: 1.35;
    }

    .process-diagram::before {
  
    }
}

@media (max-width: 576px) {
    .scroll-text-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .scroll-text-box {
        width: 100%;
        height: 360px;
        padding: 14px 12px;
    }

    .scroll-text-title {
        margin-bottom: 14px;
        font-size: 24px;
    }

    .scroll-text-box h3 {
        margin: 20px 0 10px;
        font-size: 19px;
    }

    .scroll-text-box p {
        margin-bottom: 14px;
        font-size: 16px;
        line-height: 1.45;
    }
}

@media (max-height: 820px) {
    .intro-container {
        align-items: flex-start;
        min-height: 100vh;
        height: auto;
        padding-top: 100px;
        padding-bottom: 24px;
    }

    .intro-title {
        font-size: 38px;
        line-height: 1.05;
    }

    .intro-subtitle {
        margin-top: 12px;
        font-size: 24px;
    }

    .intro-icons-zone {
        margin-top: 44px;
        gap: 16px;
    }

    .intro-icons-zone__item img {
        width: 108px;
        height: 98px;
    }

    .intro-icons-zone__item:nth-child(2) img,
    .intro-icons-zone__item:nth-child(3) img,
    .intro-icons-zone__item:nth-child(4) img {
        width: 102px;
        height: 98px;
    }

    .intro-icons-zone__item p {
        width: 190px;
        font-size: 15px;
        line-height: 1.3;
        margin-top: 10px;
    }
}

@media (max-width: 389px) {
    .header-container {
        padding: 4px 6px;
    }

    .top-bar {
        gap: 0.55rem;
    }

    .brand-mark__img {
        width: 62px;
    }

    .brand-mark__title {
        font-size: 18px;
        margin-top: 6px;
    }

    .brand-mark__subtitle {
        font-size: 12px;
    }

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

    .intro-row {
        padding-top: 132px;
    }

    .intro-title {
        font-size: 22px;
        line-height: 1.05;
        letter-spacing: 0.02em;
    }

    .intro-subtitle {
        margin-top: 10px;
        font-size: 16px;
    }

    .intro-icons-zone {
        margin-top: 28px;
        gap: 16px 10px;
        align-items: stretch;
    }

    .intro-icons-zone__item {
        width: calc(50% - 6px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .intro-icons-zone__item img,
    .intro-icons-zone__item:nth-child(2) img,
    .intro-icons-zone__item:nth-child(3) img,
    .intro-icons-zone__item:nth-child(4) img {
        width: 44px;
        height: 44px;
    }

    .intro-icons-zone__item p {
        width: 100%;
        max-width: 142px;
        min-height: 52px;
        font-size: 12px;
        line-height: 1.16;
        margin-top: 10px;
        text-align: center;
    }

    .intro-button {
        width: 88%;
        margin-top: 30px;
        padding: 9px 34px 9px 24px;
        font-size: 15px;
    }

    .intro-button::after {
        right: 12px;
        font-size: 28px;
    }
}



@media (max-width: 767px) {
    .site-footer {
        padding: 18px 0 14px;
    }

    .site-footer__social {
        gap: 12px;
    }

    .site-footer__social-link img {
        width: 40px;
        height: 40px;
    }

    .site-footer__copyright {
        margin-top: 12px;
        font-size: 12px;
    }
}


@media (max-width: 993px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 600px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    
.process-arrow--12 {
    left: 22%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -4%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 78%;
    top: 66%;
    transform: rotate(50deg);
}

}

@media (max-width: 900px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 600px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    
.process-arrow--12 {
    left: 21%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -4%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 79%;
    top: 66%;
    transform: rotate(50deg);
}

}

@media (max-width: 875px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 600px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    
.process-arrow--12 {
    left: 20%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -3%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 80%;
    top: 66%;
    transform: rotate(50deg);
}

}

@media (max-width: 845px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 600px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    
.process-arrow--12 {
    left: 19%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -3%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 81%;
    top: 66%;
    transform: rotate(50deg);
}

}

@media (max-width: 820px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 600px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    
.process-arrow--12 {
    left: 18%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -3%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 82%;
    top: 66%;
    transform: rotate(50deg);
}

}

@media (max-width: 820px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 600px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }
}

@media (max-width: 775px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 530px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    
.process-arrow--12 {
    left: 17%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -3%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 83%;
    top: 66%;
    transform: rotate(50deg);
}

}


@media (max-width: 577px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 420px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    
.process-arrow--12 {
    left: 18%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -3%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 82%;
    top: 66%;
    transform: rotate(50deg);
}

}

@media (max-width: 540px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 400px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    
.process-arrow--12 {
    left: 18%;
    top: 66%;
    transform: rotate(-50deg);
}

.process-arrow--23 {
    left: 50%;
    top: -3%;
    transform: rotate(0deg);
}

.process-arrow--34 {
    left: 82%;
    top: 66%;
    transform: rotate(50deg);
}

}

@media (max-width: 510px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 380px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    


}

@media (max-width: 430px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 320px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    


}

@media (max-width: 414px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 310px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    


}

@media (max-width: 390px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 290px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    


}

@media (max-width: 375px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 280px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    


}

@media (max-width: 325px) {
    .process-diagram::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 144%;
        width: 240px;
        height: 350px;
        border: 2px solid #3b7580;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0.75;
        z-index: 0;
    }

    


}


/* policy */

.intro-container--policy {
    position: relative;
    isolation: isolate;
    padding-top: 240px;
    padding-bottom: 80px;
    display: block;
    min-height: auto;
}

.policy-content {
    max-width: 1100px;
    margin: 0 auto;
}

.policy-content__title {
    margin: 0 0 28px;
    color: var(--dark-blue);
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-family: "Noah", sans-serif;
    font-weight: 700;
}

.policy-content p {
    margin: 0 0 22px;
    color: var(--dark-blue);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
}

.policy-content ul {
    margin: 0 0 28px;
    padding-left: 1.35rem;
    color: var(--dark-blue);
    font-weight: 300;
}

.policy-content li {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .intro-container--policy {
        padding-top: 120px;
        padding-bottom: 64px;
    }
}

@media (max-width: 576px) {
    .intro-container--policy {
        padding-top: 200px;
        padding-bottom: 48px;
    }

    .policy-content__title {
        margin-bottom: 20px;
    }

    .policy-content p {
        margin-bottom: 16px;
    }
}
