html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}

.reveal-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #0E0E0E;
    background-color: #F3F5F9;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    transition: .25s ease;
}

.btn:focus,
button:focus,
input:focus {
    box-shadow: none !important;
    outline: none;
}

/* =========================
   TOPBAR
========================= */

.topbar {
    padding: 10px 0;
    background: #4F038A;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar__address {
    font-weight: 500;
    opacity: 0.95;
    white-space: nowrap;
}

.topbar__contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    min-width: 0;
}

.topbar__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.topbar__link:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* =========================
   HEADER
========================= */

.header {
    position: relative;
    z-index: 100;
    width: 100%;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    transition: padding .3s ease, box-shadow .3s ease, background .3s ease;
}

.header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(14, 14, 14, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #0E0E0E;
    min-width: 220px;
}

.header__logo:hover {
    color: #0E0E0E;
}

.header__logo-image {
    display: block;
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.header__logo-text {
    font-size: 12px;
    line-height: 1.35;
    color: #5f6368;
    font-weight: 500;
    max-width: 180px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__nav-link {
    position: relative;
    color: #0E0E0E;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #4F038A;
    transition: width .25s ease;
}

.header__nav-link:hover {
    color: #4F038A;
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #0E0E0E;
    font-weight: 700;
    white-space: nowrap;
}

.header__phone:hover {
    color: #4F038A;
}

.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid #4F038A;
    border-radius: 999px;
    background: #4F038A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.header__cta:hover {
    background: #3e026d;
    border-color: #3e026d;
    color: #ffffff;
}

.header__burger {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(79, 3, 138, 0.18);
    border-radius: 50%;
    background: #ffffff;
    padding: 0;
    flex-shrink: 0;
}

.header__burger span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #4F038A;
    transform: translateX(-50%);
    transition: .25s ease;
}

.header__burger span:nth-child(1) {
    top: 16px;
}

.header__burger span:nth-child(2) {
    top: 22px;
}

.header__burger span:nth-child(3) {
    top: 28px;
}

.header-holder {
    position: relative;
}

.header-holder.is-fixed {
    min-height: var(--header-height, 84px);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(14, 14, 14, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__dialog {
    margin-left: auto;
    width: min(100%, 360px);
    height: 100%;
    background: #ffffff;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open .mobile-menu__dialog {
    transform: translateX(0);
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-menu__title {
    font-size: 20px;
    font-weight: 800;
    color: #0E0E0E;
}

.mobile-menu__close {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(79, 3, 138, 0.16);
    border-radius: 50%;
    background: #ffffff;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #4F038A;
}

.mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__link {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: #0E0E0E;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(14, 14, 14, 0.06);
}

.mobile-menu__link:hover {
    color: #4F038A;
}

.mobile-menu__bottom {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-menu__phone,
.mobile-menu__email {
    text-decoration: none;
    color: #0E0E0E;
    font-weight: 700;
}

.mobile-menu__phone:hover,
.mobile-menu__email:hover {
    color: #4F038A;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    90deg,
                    rgba(14, 14, 14, 0.72) 0%,
                    rgba(14, 14, 14, 0.56) 35%,
                    rgba(14, 14, 14, 0.28) 100%
            );
}

.hero-slide__container {
    position: relative;
    z-index: 2;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-bottom: 80px;
}

.hero__content {
    max-width: 760px;
    color: #ffffff;
}

.hero__subtitle {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0 0 22px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero__text {
    max-width: 620px;
    margin: 0 0 34px;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 30px;
    border: 1px solid #4F038A;
    border-radius: 999px;
    background: #4F038A;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 18px 40px rgba(79, 3, 138, 0.28);
}

.hero__btn:hover {
    background: #3e026d;
    border-color: #3e026d;
    color: #ffffff;
}

.hero__controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero__nav {
    position: absolute;
    top: 50%;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: .25s ease;
    pointer-events: auto;
}

.hero__nav:hover {
    background: rgba(79, 3, 138, 0.92);
    border-color: rgba(79, 3, 138, 0.92);
}

.hero__nav--prev {
    left: 28px;
}

.hero__nav--next {
    right: 28px;
}

.hero__nav span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.hero__nav--prev span {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.hero__nav--next span {
    transform: translate(-65%, -50%) rotate(45deg);
}

.hero__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 38px !important;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.hero__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.15);
}

/* =========================
   MODAL
========================= */

.request-modal__content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
}

.request-modal__header,
.request-modal__body {
    padding: 24px;
}

.request-modal__title {
    font-size: 28px;
    font-weight: 800;
    color: #0E0E0E;
}

.request-modal__text {
    margin-bottom: 18px;
    color: #5f6368;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199.98px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: inline-block;
    }

    .hero__nav {
        width: 56px;
        height: 56px;
    }

    .hero__nav--prev {
        left: 16px;
    }

    .hero__nav--next {
        right: 16px;
    }
}

@media (max-width: 991.98px) {
    .topbar {
        padding: 8px 0;
        font-size: 13px;
    }

    .topbar__inner {
        align-items: center;
        justify-content: center;
    }

    .topbar__address {
        display: none;
    }

    .topbar__contacts {
        width: 100%;
        justify-content: center;
        gap: 16px;
        flex-wrap: nowrap;
    }

    .header {
        padding: 14px 0;
    }

    .header__logo {
        min-width: auto;
        max-width: 220px;
    }

    .header__logo-title {
        font-size: 22px;
    }

    .header__logo-text {
        font-size: 11px;
    }

    .header__cta {
        min-height: 44px;
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero-slide__container {
        min-height: 90vh;
        padding-top: 40px;
        padding-bottom: 90px;
    }

    .hero__content {
        max-width: 100%;

    }

    .hero__text {
        max-width: 100%;
        font-size: 16px;
    }

    .hero__nav {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .topbar__contacts {
        gap: 12px;
    }

    .topbar__link {
        font-size: 12px;
    }

    .header__inner {
        gap: 14px;
    }

    .header__actions {
        gap: 10px;
    }

    .header__cta {
        display: none;
    }

    .hero-slide__container {
        min-height: 88vh;
        align-items: center;
        padding-bottom: 100px;
    }

    .hero__subtitle {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero__title {
        margin-bottom: 16px;
        line-height: 1.08;
    }

    .hero__text {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.55;
    }

    .hero__btn {
        width: 100%;
        min-height: 54px;
        padding: 14px 20px;
        font-size: 14px;
    }

    .hero__nav {
        top: auto;
        bottom: 24px;
        transform: none;
        width: 46px;
        height: 46px;
    }

    .hero__nav--prev {
        left: 16px;
    }

    .hero__nav--next {
        left: 72px;
        right: auto;
    }

    .hero__pagination {
        bottom: 40px !important;
        justify-content: flex-end;
        padding-right: 16px;
    }
}

@media (max-width: 575.98px) {
    .topbar__address {
        font-size: 12px;
    }

    .topbar__link {
        font-size: 13px;
    }

    .header__logo-title {
        font-size: 20px;
    }

    @media (max-width: 575.98px) {
        .header__logo-image {
            max-height: 42px;
        }
    }

    .header__logo-text {
        display: none;
    }

    .header__burger {
        width: 42px;
        height: 42px;
    }

    .hero-slide::before {
        background:
                linear-gradient(
                        180deg,
                        rgba(14, 14, 14, 0.58) 0%,
                        rgba(14, 14, 14, 0.45) 32%,
                        rgba(14, 14, 14, 0.74) 100%
                );
    }

    .hero-slide__container {
        padding-bottom: 92px;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__text {
        font-size: 14px;
    }
}

/* =========================
   ABOUT
========================= */

.about {
    position: relative;
    padding: 110px 0;
    background: #F3F5F9;
}

.about__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 40px;
    align-items: start;
}

.about__content {
    max-width: 760px;
}

.about__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(79, 3, 138, 0.08);
    color: #4F038A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about__title {
    margin: 0 0 22px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0E0E0E;
}

.about__text {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.75;
    color: #4f5560;
}

.about__text:last-child {
    margin-bottom: 0;
}

.about__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-card {
    min-height: 190px;
    padding: 26px 22px;
    border: 1px solid rgba(79, 3, 138, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(14, 14, 14, 0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(14, 14, 14, 0.08);
}

.about-card__value {
    margin-bottom: 14px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #4F038A;
}

.about-card__label {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    color: #0E0E0E;
}

@media (max-width: 1199.98px) {
    .about {
        padding: 96px 0;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__content {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .about {
        padding: 78px 0;
    }

    .about__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .about__title {
        margin-bottom: 18px;
        line-height: 1.1;
    }

    .about__text {
        font-size: 15px;
        line-height: 1.7;
    }

    .about__cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-card {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .about-card__value {
        margin-bottom: 10px;
    }

    .about-card__label {
        font-size: 14px;
    }
}

/* =========================
   SOLUTIONS
========================= */

.solutions {
    position: relative;
    padding: 110px 0;
    background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url("/web/images/landing/backgrounds/1.png") center/cover no-repeat;
}


.solutions__head {
    max-width: 100%;
    margin: 0 auto 48px;
    text-align: left;
}

.solutions__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(130, 11, 225, 0.5);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solutions__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #F0F0F0;
}

.solutions__text {
    margin: 0 auto;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.75;
    color: #ffffff;
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.solution-card {
    position: relative;
    min-height: 260px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(79, 3, 138, 0.08);
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7fd 100%);
    box-shadow: 0 18px 40px rgba(14, 14, 14, 0.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(14, 14, 14, 0.08);
    border-color: rgba(79, 3, 138, 0.16);
}

.solution-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 54px;
    margin-bottom: 22px;
    padding: 0 14px;
    border-radius: 999px;
    background: #4F038A;
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.solution-card__title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #0E0E0E;
}

.solution-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4f5560;
}

@media (max-width: 1199.98px) {
    .solutions {
        padding: 96px 0;
    }

    .solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .solutions {
        padding: 78px 0;
    }

    .solutions__head {
        margin-bottom: 34px;
        text-align: left;
    }

    .solutions__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .solutions__title {
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .solutions__text {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
    }

    .solutions__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .solution-card {
        min-height: auto;
        padding: 22px 18px 20px;
        border-radius: 20px;
    }

    .solution-card__number {
        min-width: 46px;
        height: 46px;
        margin-bottom: 18px;
        font-size: 14px;
    }

    .solution-card__title {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .solution-card__text {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================
   PROFILES
========================= */

.profiles {
    position: relative;
    padding: 110px 0;
    background: #F3F5F9;
}

.profiles__head {
    max-width: 860px;
    margin-bottom: 42px;
}

.profiles__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(79, 3, 138, 0.08);
    color: #4F038A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profiles__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0E0E0E;
}

.profiles__text {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #4f5560;
}

.profiles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.profile-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 26px 22px 24px;
    border: 1px solid rgba(79, 3, 138, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(14, 14, 14, 0.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(14, 14, 14, 0.08);
    border-color: rgba(79, 3, 138, 0.16);
}

.profile-card__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 70px;
    margin-bottom: 20px;
}

.profile-card__logo img {
    display: block;
    max-width: 160px;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.profile-card__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #0E0E0E;
}

.profile-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4f5560;
}

@media (max-width: 1199.98px) {
    .profiles {
        padding: 96px 0;
    }

    .profiles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .profiles {
        padding: 78px 0;
    }

    .profiles__head {
        margin-bottom: 32px;
    }

    .profiles__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .profiles__title {
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .profiles__text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .profiles__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .profile-card {
        padding: 22px 18px 20px;
        border-radius: 20px;
    }

    .profile-card__logo {
        height: 58px;
        margin-bottom: 16px;
    }

    .profile-card__logo img {
        max-width: 140px;
        max-height: 46px;
    }

    .profile-card__title {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .profile-card__text {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================
   ADVANTAGES
========================= */

.advantages {
    position: relative;
    padding: 110px 0;
    background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url("/web/images/landing/backgrounds/2.png") center/cover no-repeat;
}

.advantages__head {
    max-width: 860px;
    margin-bottom: 42px;
}

.advantages__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(130, 11, 225, 0.5);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.advantages__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #F0F0F0;
}

.advantages__text {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #F0F0F0;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.advantage-card {
    min-height: 250px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(79, 3, 138, 0.08);
    border-radius: 26px;
    background: #F3F5F9;
    box-shadow: 0 18px 40px rgba(14, 14, 14, 0.03);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(14, 14, 14, 0.06);
    border-color: rgba(79, 3, 138, 0.16);
}

.advantage-card--accent {
    background: linear-gradient(180deg, #4F038A 0%, #6420a0 100%);
    border-color: transparent;
}

.advantage-card--accent .advantage-card__number,
.advantage-card--accent .advantage-card__title,
.advantage-card--accent .advantage-card__text {
    color: #ffffff;
}

.advantage-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;

    border-radius: 16px;
    background: rgba(79, 3, 138, 0.08);

    color: #4F038A;
}
.advantage-card__icon2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    background: rgba(79, 3, 138, 0.08);
    color: #ffffff;
}

.advantage-card:hover .advantage-card__icon {
    background: #4F038A;
    color: #ffffff;
    transition: .25s ease;
}

.advantage-card__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}


.advantage-card__icon2 svg {
    width: 26px;
    height: 26px;
    display: block;
}

.advantage-card--accent .advantage-card__number {
    background: rgba(255, 255, 255, 0.14);
}

.advantage-card__title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #0E0E0E;
}

.advantage-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4f5560;
}

@media (max-width: 1199.98px) {
    .advantages {
        padding: 96px 0;
    }

    .advantages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .advantages {
        padding: 78px 0;
    }

    .advantages__head {
        margin-bottom: 32px;
    }

    .advantages__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .advantages__title {
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .advantages__text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .advantage-card {
        min-height: auto;
        padding: 22px 18px 20px;
        border-radius: 20px;
    }

    .advantage-card__number {
        min-width: 46px;
        height: 46px;
        margin-bottom: 18px;
        font-size: 14px;
    }

    .advantage-card__title {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .advantage-card__text {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================
   WORKFLOW
========================= */

.workflow {
    position: relative;
    padding: 110px 0;
    background: #F3F5F9;
}

.workflow__head {
    max-width: 860px;
    margin-bottom: 46px;
}

.workflow__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(79, 3, 138, 0.08);
    color: #4F038A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workflow__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0E0E0E;
}

.workflow__text {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #4f5560;
}

.workflow__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: 8px;
}

.workflow__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 1px;
    background: linear-gradient(
            180deg,
            rgba(79, 3, 138, 0.10) 0%,
            rgba(79, 3, 138, 0.26) 50%,
            rgba(79, 3, 138, 0.10) 100%
    );
}

.workflow-step {
    position: relative;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 0 0 28px;
}

.workflow-step:last-child {
    padding-bottom: 0;
}

.workflow-step__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
}

.workflow-step__dot {
    position: relative;
    z-index: 2;
    width: 18px;
    height: 18px;
    margin-left: -10px;
    border: 4px solid #F3F5F9;
    border-radius: 50%;
    background: #4F038A;
    box-shadow: 0 0 0 6px rgba(79, 3, 138, 0.10);
    flex-shrink: 0;
}

.workflow-step__number {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4F038A;
}

.workflow-step__content {
    padding: 26px 28px;
    border: 1px solid rgba(79, 3, 138, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(14, 14, 14, 0.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.workflow-step__content:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(14, 14, 14, 0.07);
    border-color: rgba(79, 3, 138, 0.16);
}

.workflow-step__title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 800;
    color: #0E0E0E;
}

.workflow-step__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #4f5560;
}

@media (max-width: 1199.98px) {
    .workflow {
        padding: 96px 0;
    }

    .workflow-step {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 22px;
    }

    .workflow__timeline::before {
        /*left: 95px;*/
    }

    .workflow-step__dot {
        margin-left: -9px;
    }
}

@media (max-width: 767.98px) {
    .workflow {
        padding: 78px 0;
    }

    .workflow__head {
        margin-bottom: 32px;
    }

    .workflow__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .workflow__title {
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .workflow__text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .workflow__timeline {
        margin-left: 0;
    }

    .workflow__timeline::before {
        left: 12px;
    }

    .workflow-step {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 18px;
        padding-left: 34px;
    }

    .workflow-step__meta {
        gap: 8px;
        padding-top: 0;
    }

    .workflow-step__dot {
        position: absolute;
        top: 4px;
        left: -28px;
        margin-left: 0;
        width: 14px;
        height: 14px;
        border-width: 3px;
        box-shadow: 0 0 0 4px rgba(79, 3, 138, 0.10);
    }

    .workflow-step__number {
        font-size: 11px;
    }

    .workflow-step__content {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .workflow-step__title {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .workflow-step__text {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================
   GALLERY
========================= */

.gallery {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
}

.gallery__head {
    max-width: 860px;
    margin-bottom: 42px;
}

.gallery__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(79, 3, 138, 0.08);
    color: #4F038A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0E0E0E;
}

.gallery__text {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #4f5560;
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    text-decoration: none;
    background: #e9edf4;
    box-shadow: 0 18px 40px rgba(14, 14, 14, 0.05);
}

.gallery-card--large {
    grid-row: span 2;
}

.gallery-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(14, 14, 14, 0.06) 0%,
            rgba(14, 14, 14, 0.18) 34%,
            rgba(14, 14, 14, 0.68) 100%
    );
    transition: opacity .3s ease;
}

.gallery-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px 22px 22px;
    color: #ffffff;
}

.gallery-card__label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-card__title {
    display: block;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.lightbox.is-open {
    display: block;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(6px);
}

.lightbox__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}


.gallery-card:hover .gallery-card__image {
    transform: scale(1.06);
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 0.92;
}

@media (max-width: 1199.98px) {
    .gallery {
        padding: 96px 0;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 260px;
    }

    .gallery-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 767.98px) {
    .gallery {
        padding: 78px 0;
    }

    .gallery__head {
        margin-bottom: 32px;
    }

    .gallery__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .gallery__title {
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .gallery__text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 16px;
    }

    .gallery-card,
    .gallery-card--large {
        grid-column: auto;
        grid-row: auto;
        border-radius: 20px;
    }

    .gallery-card__content {
        padding: 20px 18px 18px;
    }

    .gallery-card__label {
        margin-bottom: 10px;
        padding: 7px 10px;
        font-size: 10px;
    }

    .gallery-card__title {
        font-size: 19px;
        line-height: 1.28;
    }
}

.gallery__more {
    display: none;
    margin-top: 20px;
}

.gallery__more.is-open {
    display: block;
}

.gallery__grid--more {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
}

.gallery__actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.gallery__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border: 1px solid rgba(79, 3, 138, 0.14);
    border-radius: 999px;
    background: #ffffff;
    color: #4F038A;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: .25s ease;
    box-shadow: 0 12px 30px rgba(14, 14, 14, 0.04);
}

.gallery__toggle:hover {
    background: #4F038A;
    border-color: #4F038A;
    color: #ffffff;
}

@media (max-width: 1199.98px) {
    .gallery__grid--more {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 240px;
    }
}

@media (max-width: 767.98px) {
    .gallery__more {
        margin-top: 16px;
    }

    .gallery__grid--more {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 16px;
    }

    .gallery__actions {
        margin-top: 22px;
    }

    .gallery__toggle {
        width: 100%;
        min-height: 50px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* =========================
   PRICING
========================= */

.pricing {
    position: relative;
    padding: 110px 0;
    background: #F3F5F9;
}

.pricing__head {
    max-width: 860px;
    margin-bottom: 42px;
}

.pricing__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(79, 3, 138, 0.08);
    color: #4F038A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0E0E0E;
}

.pricing__text {
    max-width: 760px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #4f5560;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px 24px;
    border: 1px solid rgba(79, 3, 138, 0.08);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(14, 14, 14, 0.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(14, 14, 14, 0.08);
    border-color: rgba(79, 3, 138, 0.16);
}

.pricing-card--accent {
    background: linear-gradient(180deg, #4F038A 0%, #6420a0 100%);
    border-color: transparent;
}

.pricing-card--accent .pricing-card__label,
.pricing-card--accent .pricing-card__price,
.pricing-card--accent .pricing-card__title,
.pricing-card--accent .pricing-card__text,
.pricing-card--accent .pricing-card__list li {
    color: #ffffff;
}

.pricing-card__top {
    margin-bottom: 18px;
}

.pricing-card__label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(79, 3, 138, 0.08);
    color: #4F038A;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-card--accent .pricing-card__label {
    background: rgba(255, 255, 255, 0.12);
}

.pricing-card__price {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0E0E0E;
}

.pricing-card__title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #0E0E0E;
}

.pricing-card__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #4f5560;
}

.pricing-card__list {
    margin: auto 0 0;
    padding-left: 18px;
}

.pricing-card__list li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #4f5560;
}

.pricing-card__list li:last-child {
    margin-bottom: 0;
}

.pricing__bottom {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    margin-top: 28px;
}

.pricing-note,
.pricing-cta {
    height: 100%;
    padding: 28px 24px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(14, 14, 14, 0.04);
}

.pricing-note__title,
.pricing-cta__title {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #0E0E0E;
}

.pricing-note__text,
.pricing-cta__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4f5560;
}

.pricing-cta {
    background: linear-gradient(180deg, #4F038A 0%, #6420a0 100%);
}

.pricing-cta__title,
.pricing-cta__text {
    color: #ffffff;
}

.pricing-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 22px;
    padding: 14px 28px;
    border: 1px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
    color: #4F038A;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: .25s ease;
}

.pricing-cta__button:hover {
    background: transparent;
    color: #ffffff;
}

@media (max-width: 1399.98px) {
    .pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .pricing {
        padding: 96px 0;
    }

    .pricing__bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .pricing {
        padding: 78px 0;
    }

    .pricing__head {
        margin-bottom: 32px;
    }

    .pricing__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .pricing__title {
        margin-bottom: 16px;
        line-height: 1.1;
    }

    .pricing__text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card,
    .pricing-note,
    .pricing-cta {
        padding: 22px 18px 20px;
        border-radius: 20px;
    }

    .pricing-card__price {
        font-size: 24px;
    }

    .pricing-card__title,
    .pricing-note__title,
    .pricing-cta__title {
        font-size: 20px;
    }

    .pricing-card__text,
    .pricing-note__text,
    .pricing-cta__text,
    .pricing-card__list li {
        font-size: 14px;
        line-height: 1.65;
    }

    .pricing-cta__button {
        width: 100%;
        min-height: 50px;
        margin-top: 18px;
        padding: 12px 18px;
    }
}

/* =========================
   CTA
========================= */

.cta {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #4F038A 0%, #6420a0 100%);
    color: #ffffff;
}

.cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 28px;
    align-items: stretch;
}

.cta__content {
    padding: 18px 0;
}

.cta__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.cta__text {
    max-width: 640px;
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.cta__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 700px;
}

.cta__item {
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.cta__item-title {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    color: #ffffff;
}

.cta__item-text {
    display: block;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
}

.cta__form-wrap {
    height: 100%;
}

.cta-form {
    height: 100%;
    padding: 28px 24px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(14, 14, 14, 0.16);
}

.cta-form__group {
    margin-bottom: 16px;
}

.cta-form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    color: #0E0E0E;
}

.cta-form__input,
.cta-form__textarea {
    width: 100%;
    border: 1px solid rgba(14, 14, 14, 0.08);
    border-radius: 16px;
    background: #F8F9FC;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #0E0E0E;
    transition: border-color .25s ease, background .25s ease;
}

.cta-form__input:focus,
.cta-form__textarea:focus {
    border-color: rgba(79, 3, 138, 0.28);
    background: #ffffff;
}

.cta-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.cta-form__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin-top: 8px;
    padding: 14px 24px;
    border: 1px solid #4F038A;
    border-radius: 999px;
    background: #4F038A;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: .25s ease;
}

.cta-form__button:hover {
    background: #3e026d;
    border-color: #3e026d;
    color: #ffffff;
}

.cta-form__note {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: #6c7480;
}

@media (max-width: 1199.98px) {
    .cta {
        padding: 96px 0;
    }

    .cta__inner {
        grid-template-columns: 1fr;
    }

    .cta__content {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .cta {
        padding: 78px 0;
    }

    .cta__eyebrow {
        margin-bottom: 14px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .cta__title {
        margin-bottom: 16px;
        line-height: 1.08;
    }

    .cta__text {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .cta__items {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cta__item {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .cta__item-title {
        font-size: 16px;
    }

    .cta__item-text {
        font-size: 13px;
    }

    .cta-form {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .cta-form__input,
    .cta-form__textarea {
        padding: 13px 14px;
        border-radius: 14px;
        font-size: 14px;
    }

    .cta-form__button {
        min-height: 52px;
        font-size: 14px;
    }
}

/* =========================
   FOOTER
========================= */

.footer {
    position: relative;
    padding: 72px 0 28px;
    background: #0E0E0E;
    color: #ffffff;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 1fr));
    gap: 28px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 420px;
}

.footer__logo {
    display: inline-flex;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer__logo-image {
    display: block;
    max-height: 54px;
    width: auto;
    object-fit: contain;
}

.footer__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

.footer__title {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
    color: #ffffff;
}

.footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list li:last-child {
    margin-bottom: 0;
}

.footer__link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.footer__link:hover {
    color: #ffffff;
}

.footer__link--button {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.footer__muted {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.56);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
}

.footer__copy {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.54);
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__bottom-link {
    color: rgba(255, 255, 255, 0.54);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
}

.footer__bottom-link:hover {
    color: #ffffff;
}

@media (max-width: 1199.98px) {
    .footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer__brand {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 58px 0 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 28px;
    }

    .footer__logo {
        margin-bottom: 16px;
    }

    .footer__logo-image {
        max-height: 46px;
    }

    .footer__text {
        font-size: 14px;
        line-height: 1.65;
    }

    .footer__title {
        margin-bottom: 14px;
        font-size: 15px;
    }

    .footer__link,
    .footer__muted {
        font-size: 13px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 20px;
    }

    .footer__copy,
    .footer__bottom-link {
        font-size: 12px;
    }
}

/* =========================
   COOKIE CONSENT
========================= */

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 9999;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(14,14,14,0.15);
}

.cookie-consent__text {
    font-size: 10px;
    line-height: 1.6;
    color: #5f6368;
}

.cookie-consent__text a {
    color: #4F038A;
    text-decoration: none;
    font-weight: 600;
}

.cookie-consent__button {
    border: none;
    border-radius: 999px;
    background: #4F038A;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent__button:hover {
    background: #3d026c;
}

@media (max-width: 768px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-consent__text {
        font-size: 10px;
    }
    .cookie-consent__button {

        font-size: 10px;

    }
}

/* =========================
   LOGIN PAGE
========================= */

.login-page {
    padding: 120px 0;
    background: #F3F5F9;
}

.login-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 42px 38px 36px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(14,14,14,0.08);
}

.login-card__header {
    margin-bottom: 28px;
}

.login-card__title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 800;
    color: #0E0E0E;
}

.login-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #5a606b;
}

/* form */

.login-form__label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #3b3f46;
}

.login-form__input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #d7dce3;
    font-size: 15px;
    transition: border .2s ease, box-shadow .2s ease;
}

.login-form__input:focus {
    outline: none;
    border-color: #4F038A;
    box-shadow: 0 0 0 3px rgba(79,3,138,0.08);
}

.login-form__error {
    margin-top: 4px;
    font-size: 12px;
    color: #e54848;
}

.login-form__checkbox {
    margin-top: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.login-form__checkbox input {
    margin-right: 6px;
}

/* button */

.login-form__actions {
    margin-top: 12px;
}

.login-form__submit {
    width: 100%;
    height: 50px;
    border-radius: 999px;
    background: #4F038A;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.login-form__submit:hover {
    background: #3f0270;
}

/* =========================
   PRIVACY POLICY
========================= */

.policy-page {
    padding: 80px 0;
}

.policy-page h1 {
    margin-bottom: 30px;
}

.policy-page h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.policy-page p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.policy-page ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* =========================
   REQUEST MODAL
========================= */

.request-modal .modal-dialog {
    max-width: 560px;
    padding: 16px;
}

.request-modal .modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(14, 14, 14, 0.18);
}

.request-modal .modal-header {
    position: relative;
    padding: 28px 28px 0;
    border-bottom: 0;
}

.request-modal .btn-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    margin: 0;
    border: 1px solid rgba(79, 3, 138, 0.12);
    border-radius: 50%;
    background-color: #ffffff;
    background-size: 14px;
    box-shadow: none;
    opacity: 1;
    transition: .25s ease;
}

.request-modal .btn-close:hover {
    background-color: #f7f2fc;
    border-color: rgba(79, 3, 138, 0.24);
    transform: rotate(90deg);
}

.request-modal__content {
    position: relative;
}

.request-modal__header {
    display: block;
}

.request-modal__title {
    max-width: 420px;
    margin: 0;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0E0E0E;
}

.request-modal__body {
    padding: 18px 28px 28px;
}

.request-modal__text {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6368;
}

.request-modal__form {
    display: block;
}

.request-modal__form .form-control {
    min-height: 58px;
    border: 1px solid rgba(14, 14, 14, 0.08);
    border-radius: 18px;
    background: #F8F9FC;
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #0E0E0E;
    box-shadow: none;
    transition: .25s ease;
}

.request-modal__form .form-control::placeholder {
    color: #97a0ad;
}

.request-modal__form .form-control:focus {
    border-color: rgba(79, 3, 138, 0.28);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 3, 138, 0.06);
}

.request-modal__form .btn {
    min-height: 56px;
    border: 1px solid #4F038A;
    border-radius: 999px;
    background: #4F038A;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: .25s ease;
}

.request-modal__form .btn:hover {
    background: #3e026d;
    border-color: #3e026d;
    color: #ffffff;
}

.request-modal__note {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: #7a8391;
}

.request-modal .modal-backdrop,
.modal-backdrop.show {
    background: rgba(14, 14, 14, 0.65);
    backdrop-filter: blur(4px);
}

.request-modal .alert,
.request-modal__form .alert {
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.55;
}




/* =========================
   REQUEST MODAL RESPONSIVE
========================= */

@media (max-width: 767.98px) {
    .request-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
        min-height: 100%;
        padding: 12px;
        display: flex;
        align-items: center;
    }

    .request-modal .modal-content {
        border-radius: 22px;
    }

    .request-modal .modal-header {
        padding: 24px 20px 0;
    }

    .request-modal .btn-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        background-size: 12px;
    }

    .request-modal__title {
        max-width: 280px;
        font-size: 28px;
        line-height: 1.1;
    }

    .request-modal__body {
        padding: 16px 20px 22px;
    }

    .request-modal__text {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.65;
    }

    .request-modal__form .form-control {
        min-height: 52px;
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 14px;
    }

    .request-modal__form .btn {
        min-height: 52px;
        font-size: 14px;
    }
}

/* =========================
   FORM MESSAGES
========================= */

.form-message {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.form-message--success {
    background: rgba(79, 3, 138, 0.08);
    border: 1px solid rgba(79, 3, 138, 0.14);
    color: #4F038A;
}

.form-message--error {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.18);
    color: #dc3545;
}

/* =========================
   BUTTON LOADER
========================= */

.cta-form__button,
.request-modal__form .btn {
    position: relative;
}

.cta-form__button.is-loading,
.request-modal__form .btn.is-loading {
    pointer-events: none;
    opacity: 0.92;
}

.cta-form__button.is-loading .btn-text,
.request-modal__form .btn.is-loading .btn-text {
    display: inline-flex;
    align-items: center;
}

.btn-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: buttonSpin .75s linear infinite;
    vertical-align: middle;
}

@keyframes buttonSpin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================
   ERROR PAGE
========================= */

.error-page {
    padding: 120px 0;
    background: #F3F5F9;
}

.error-page__card {
    max-width: 760px;
    margin: 0 auto;
    padding: 44px 38px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(14, 14, 14, 0.08);
    text-align: center;
}

.error-page__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(79, 3, 138, 0.08);
    color: #4F038A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.error-page__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0E0E0E;
}

.error-page__text {
    max-width: 620px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #5a606b;
}

.error-page__actions {
    margin-top: 28px;
}

.error-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #4F038A;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: .25s ease;
}

.error-page__btn:hover {
    background: #3d026b;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .error-page {
        padding: 90px 0;
    }

    .error-page__card {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .error-page__text {
        font-size: 15px;
        line-height: 1.7;
    }

    .error-page__btn {
        width: 100%;
    }
}