/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 13 2025 | 14:40:36 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
:root {
    --primary-color: #0095FF;
    --primary-color-opacity: rgba(0, 149, 255, 0.11);
    --primary-color-light: #91D0FF;
    --secondary-color: #ffffff;
    --gray-color: #F5F5F5;
    --color-white: #ffffff;
    --color-black: #202020;
}

* {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
}


.container {
    max-width: calc(1265px + 32px);
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.w-full {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 10px 21px;
    border-radius: 25px;
    font-size: 14px;
    line-height: 1.15;
    transition: all ease .3s;
    background-color: var(--primary-color);
    color: var(--color-white);
    text-align: center;

    &.btn--secondary {
        background-color: var(--color-black);
        color: var(--color-white);
    }

    &:hover {
        filter: opacity(70%);
    }
}

.lang-switcher {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.15;
    color: var(--color-black);
    position: relative;
    padding-right: 30px;
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;

    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-73%) rotate(45deg);
        width: 6px;
        height: 6px;
        border-bottom: 2px solid var(--color-black);
        border-right: 2px solid var(--color-black);
        transition: transform .2s ease;
    }
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown.open .lang-switcher::after {
    transform: translateY(-73%) rotate(225deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 110px;
    background: var(--color-white);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 6px;
    display: none;
    z-index: 1000;
}

.lang-dropdown.open .lang-menu {
    display: block;
}

.lang-menu li {
    list-style: none;
}

.lang-menu a {
    display: block;
    padding: 8px 10px;
    color: var(--color-black);
    text-decoration: none;
    border-radius: 6px;
}

.lang-menu a:hover,
.lang-menu a:focus {
    background: var(--gray-color);
}

.header {
    background-color: var(--gray-color);

    .header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav__wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        gap: 39px;
    }

    .header__logo-wrap {
        line-height: 1;
        font-size: 0;
        display: flex;
    }

    .header__nav-list {
        display: flex;
        gap: 6px;
        list-style: none;
        padding: 0;
    }

    .header__nav-link {
        font-size: 16px;
        line-height: 1;
        padding: 10px 20px;
        display: block;
        transition: all ease .3s;
        border-radius: 25px;

        &:hover, .header__nav-link--active, &.active {
            color: var(--primary-color);
            background: var(--primary-color-opacity);
        }
    }

    .header__section {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Hide mobile-only navigation items on desktop/tablet */

    .header__nav-item--mobile-only {
        display: none;
    }

    /* Burger menu button */

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background-color: var(--color-black);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    /* Burger menu active state */

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    /* Tablet adaptation (768px - 1024px) */
    @media (max-width: 1024px) {
        .header__inner {
            flex-wrap: nowrap;
        }

        .nav__wrap {
            width: 100%;
            position: relative;
        }

        .burger-menu {
            display: flex;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .header__nav-list {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--gray-color);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .header__nav-list.active {
            transform: translateX(0);
        }

        .header__nav-link {
            font-size: 18px;
            padding: 12px 24px;
        }

        .header__section {
            gap: 8px;
        }

        .btn {
            font-size: 13px;
            padding: 9px 18px;
        }
    }

    /* Mobile adaptation (max-width: 767px) */
    @media (max-width: 767px) {
        padding: 10px 0;

        .nav__wrap {
            width: 100%;
            position: relative;
            padding: 5px 0;
        }

        .header__logo-wrap {
            align-self: flex-start;
        }

        .burger-menu {
            display: flex;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .header__nav-list {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--gray-color);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
            padding: 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .header__nav-list.active {
            transform: translateX(0);
        }

        .header__nav-item {
            width: auto;
        }

        .header__nav-link {
            font-size: 20px;
            padding: 15px 30px;
            text-align: center;
        }

        /* Show mobile-only items in burger menu */
        .header__nav-item--mobile-only {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        /* Hide desktop header section on mobile */
        .header__section {
            display: none;
        }

        /* Style lang dropdown inside burger menu */
        .header__nav-item--mobile-only .lang-dropdown {
            width: 100%;
            text-align: center;
        }

        .header__nav-item--mobile-only .lang-switcher {
            width: 100%;
            padding: 10px 30px 10px 10px;
            text-align: center;
            justify-content: center;
        }

        /* Style button inside burger menu */
        .header__nav-item--mobile-only .btn {
            width: 100%;
            text-align: center;
            font-size: 14px;
            padding: 12px 20px;
        }
    }

    /* Small mobile (max-width: 480px) */
    @media (max-width: 480px) {
        .header__logo img {
            width: 100px;
            height: 48px;
        }

        .header__nav-link {
            font-size: 14px;
            padding: 10px 15px;
        }

        .btn {
            font-size: 13px;
            padding: 10px 16px;
        }
    }
}


.trust-badge {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    .trust-badge__icon {
        position: relative;
        display: flex;
        align-items: center;

        * {
            transition: stroke ease .3s;
        }
    }

    .trust-badge__text {
        padding: 10px;
        color: #787878;
        font-size: 18px;
        font-weight: 600;
        line-height: 22.5px;
        text-transform: uppercase;
        transition: color ease .3s;
    }

    &:hover {
        .trust-badge__icon svg path {
            stroke: var(--primary-color-light);
        }

        .trust-badge__text {
            color: var(--primary-color-light);
        }
    }
}

.slider-inner {
    display: flex;
    gap: 6%;
    justify-content: space-between;
    background-image: url('./images/hero-bg-image-1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    .slider {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        flex: 1 4 auto;
        max-width: 620px;
        position: relative;
    }

    .slide {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        padding: 80px 40px;
        border-radius: 30px;
    }

    @media (max-width: 1024px) {
        flex-direction: column;

        .slide {
            padding: 40px 0;
        }
    }
}

.hero-banner {
    background-color: var(--gray-color);

    .hero-banner__title {
        margin: 0;
        color: var(--color-black);
        font-size: 48px;
        font-weight: 700;
        line-height: 48.48px;
        word-wrap: break-word;
    }

    .hero-banner__subtitle {
        margin: 0;
        color: #787878;
        font-size: 20px;
        font-weight: 400;
        line-height: 20.20px;
        word-wrap: break-word;
    }

    .button-group {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }

    .btn {
        padding: 15px 30px;
        border-radius: 60px;
        color: var(--color-white);
        font-size: 16px;
        font-weight: 600;
        line-height: 18.40px;
        cursor: pointer;
        @media (max-width: 1024px) {
            width: 100%;
        }
    }

    .slider-control {
        flex: 1 5 auto;
        max-width: 407px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slider-control__list {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        list-style: none;
        padding: 0;
        max-width: 945px;
    }

    .slider-control__item {
        padding: 0;
        width: 100%;
    }

    .slider-control__item-link {
        display: flex;
        gap: 20px;
        justify-content: flex-start;
        align-items: start;
        padding: 16px 20px;
        border-radius: 25px;
        transition: all ease .3s;

        .slider-control__icon-wrap {
            position: relative;
        }

        .slider-control__title {
            margin: 8px 0 0 0;
            color: var(--color-black);
            font-size: 18px;
            font-weight: 600;
            line-height: 1.01;
        }

        .slider-control__text {
            display: none;
        }

        &:hover {
            background: rgba(255, 255, 255, 0.2); /* полупрозрачный фон */
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px); /* для Safari */
        }

        &.active {
            background: rgba(255, 255, 255, 0.2); /* полупрозрачный фон */
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px); /* для Safari */

            .slider-control__title {
                margin-bottom: 15px;
                transition: margin .3s ease;
            }

            .slider-control__text {
                display: block;
            }
        }
    }

    @media (max-width: 1024px) {
        .button-group {
            flex-direction: column;
        }
    }


}

.slider-inner {
    position: relative;
    background-image: none !important;
}

.slider-inner .bg-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}

.slider-inner .bg-layer.is-visible {
    opacity: 1;
}

.slider-inner > .slider, .slider-inner > .slider-control {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .bg-layer {
       display: none;
    }
}


.about-service {
    padding: 56px 0 140px;
    background-color: #fcfcfc;
    background-image: url('https://swing-up.com/wp-content/uploads/2025/10/about-service-bg-2.png'), url('https://swing-up.com/wp-content/uploads/2025/10/about-service-bg-1.png');
    background-repeat: no-repeat;
    background-position: top 45% left 12%, bottom -9% right 34.2%;

    .about-service__wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
        margin-bottom: 75px;
    }

    .about-service__tagline {
        margin: 0;
        align-self: stretch;
        text-align: center;
        color: #606060;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 1.12;
    }

    .about-service__title {
        margin: 0;
        text-align: center;
        color: #454545;
        font-size: 52px;
        font-weight: 700;
        line-height: 52.52px;
        word-wrap: break-word;
    }

    .about-service__title .highlight {
        color: #2986F4;
        font-weight: 700;
    }

    .about-service__description {
        margin: 0;
        text-align: center;
        color: #606060;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        word-wrap: break-word;
    }


    .features-list {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        gap: 16px;
        padding: 0;
        margin: 0;
        list-style: none;
        flex-wrap: wrap;

        @media (max-width: 1024px) {
            flex-direction: column;
        }
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 27px;
        flex: 1 1 calc(33% - 32px);

        min-height: 225px;
        padding: 20px;
        border-radius: 30px;

        background: rgba(235, 235, 235, 0.04);
        outline: 4px solid rgba(229, 231, 235, 0.20);
        outline-offset: -4px;

        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);

        flex-shrink: 0;
    }

    .feature-card__icon {
        position: relative;
    }

    .feature-card__title {
        align-self: stretch;
        margin: 0;
        color: #202020;
        font-size: 26px;
        font-weight: 500;
        line-height: 32.50px;
        word-wrap: break-word;
    }

    .feature-card--highlight {
        background: rgba(41, 134, 244, 0.86);
    }

    .feature-card--highlight .feature-card__title {
        color: white;
    }

    .feature-card__description {
        margin: 0;
        color: #202020;
        font-size: 18px;
        font-weight: 300;
        line-height: 1.25;
        word-wrap: break-word;
    }

    &.about-service--difference {
        background-image: none;

        .feature-card {
            min-height: 250px;

            &.feature-card--highlight {
                .feature-card__description {
                    color: #ffffff;
                }
            }
        }
    }
}

.how-it-works {
    background: #202020;
    padding: 45px 0 114px;

    .cta-section {
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        /*width: 942px;*/
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 45px;
    }

    .cta-section__tagline {
        align-self: stretch;
        text-align: center;
        color: #FEFEFE;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 20px;
        margin: 0;
    }

    .cta-section__title {
        max-width: 100%;
        text-align: center;
        color: #ffffff;
        font-size: 52px;
        font-weight: 700;
        line-height: 52.52px;
        margin: 0;
    }

    .cta-section__title .highlight {
        color: #0095FF;
        font-weight: 700;
    }

    .cta-section__actions {
        display: inline-flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }

    .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 30px;
        border-radius: 60px;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn--primary-glow {
        background: #0095FF;
        box-shadow: 0px 0px 17.3px #0095FF;
        color: white;
        font-size: 16px;
        font-weight: 600;
        line-height: 18.40px;
    }

    .btn--primary-glow:hover {
        filter: opacity(100%);
        transform: translateY(-2px);
        box-shadow: 0px 4px 25px #0095FF;
    }

    .how-it-works__tabs {
        display: flex;
        justify-content: center;
        align-items: stretch;
        padding: 0 0 0 70px;
        margin: 0;
        background-color: #000000;
        border-radius: 30px;
        width: 100%;
    }

    .how-it-works__tabs-list {
        padding: 30px 0 42px;
        list-style: none;
        flex: 0 1 55%;
    }

    .how-it-works__tab-link {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        text-decoration: none;
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        line-height: 48px;

        .how-it-works__number {
            font-size: 26px;
            font-weight: 700;
            line-height: 48px;
            color: #646464;
            width: 58px;
            height: 58px;
            min-width: 0;
            flex: 0 0 58px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .how-it-works__container {
            border-bottom: 1px solid #323232;
            padding-bottom: 10px;
            width: 100%;
        }

        .how-it-works__tab:last-child .how-it-works__container {
            border-bottom: none;
            padding-bottom: 0;
        }

        .how-it-works__title {
            margin: 5px 0 0;
            color: #ffffff;
            font-size: 20px;
            font-weight: 700;
            line-height: 48px;
        }

        .how-it-works__description {
            font-weight: 400;
            font-size: 18px;
            line-height: 32px;
            color: #656565;
            margin: 0;
            display: none;
        }

        &.active {
            .how-it-works__number {
                color: #0095FF;
            }

            .how-it-works__description {
                display: block;
            }
        }
    }

    .how-it-works__widgets {
        flex: 1 0 45%;
    }

    .verification-widget {
        width: 100%;
        padding: 24px 20px 20px;
        border-radius: 30px;
        outline: 1px #282828 solid;
        outline-offset: -1px;
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        height: 100%;
        background: url('https://swing-up.com/wp-content/uploads/2025/10/verification-widget-bg.svg') no-repeat center bottom 35px #282828;

        @media (max-width: 1024px) {
            min-height: 600px;
        }

        .items-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 10px;
            max-width: 100%;
        }

        .verification-item {
            width: 100%;
            padding: 21px 39px;
            background: #3d3d3d;
            border-radius: 20px;
            display: inline-flex;
            justify-content: flex-start;
            align-items: center;
            align-content: center;
            flex-wrap: wrap;
            gap: 22px;
        }

        .icon-circle {
            width: 30px;
            height: 30px;
            padding: 2px;
            border-radius: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 11px;
        }

        .icon-circle--gradient {
            background: linear-gradient(215deg, #00ffa6 0%, #00ce86 100%);
        }

        .icon-circle--solid {
            background: #00ce86;
        }

        .svg-wrapper {
            position: relative;
            /* Для идеального центрирования иконки внутри круга */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .item-text {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
            font-family: 'Inter', sans-serif; /* Добавлен fallback-шрифт */
            font-size: 18px;
            font-weight: 500;
            line-height: 25px;
            word-wrap: break-word;
        }

    }

    .verification-widget-blue {
        background: url('https://swing-up.com/wp-content/uploads/2025/10/europa.svg') no-repeat center bottom 35px #00AAFF;
        width: 100%;

        .items-container {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            gap: 10px;
            flex-wrap: wrap;
        }

        .verification-item {
            width: auto;
            background: #59c8ff;
            padding: 21px 29px;

            &:nth-child(1) {
                padding: 21px 55px 21px 29px;
            }

            &:nth-child(2) {
                padding: 21px 35px;
            }
        }

        .verification-item--time {
            background: #59c8ff;
        }
    }

    .verification-widget-blue--big {
        background: url('https://swing-up.com/wp-content/uploads/2025/10/ok.svg') no-repeat center bottom 35px #00AAFF;
        width: 100%;

        .items-container {
            width: 100%;
            padding: 20px 25px;
        }

        .verification-item--big-blue {
            padding: 21px 29px;
            background: #59c8ff;
        }
    }

    .verification-widget-blue--coin {
        background: url('https://swing-up.com/wp-content/uploads/2025/10/usd-coin.svg') no-repeat center bottom 35px #00AAFF;
        width: 100%;

        .verification-item {
            width: 100%;
        }
    }

    .verification-widget-blue--euro {
        background: url('https://swing-up.com/wp-content/uploads/2025/10/euro-banknotes.svg') no-repeat center bottom 35px #ffffff;
        width: 100%;

        .verification-item {
            width: 100%;
        }
    }

    .verification-widget-blue--image {
        background: #000 url('https://swing-up.com/wp-content/uploads/2025/10/clean-city-streets-prague.jpg') no-repeat center center / cover;
        width: 100%;

        .verification-item {
            width: 100%;
            background-color: #3D3D3D;
        }
    }


    .how-it-works__widgets {
        position: relative;
        min-height: 420px; /* ensures space for absolutely positioned widgets */
    }

    .how-it-works__widgets .verification-widget {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity .4s ease;
    }

    .how-it-works__widgets .verification-widget.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Smoothly reveal the description of the active tab */

    .how-it-works__tab-link .how-it-works__description {
        display: block; /* override earlier rule to allow animation */
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: opacity .3s ease, max-height .3s ease;
    }

    .how-it-works__tab-link.active .how-it-works__description {
        max-height: 200px; /* enough to show full text */
        opacity: 1;
    }

    /* Slider mode for screens < 1024px */

    .how-it-works__slider-wrapper {
        background-color: #000000;
        border-radius: 30px;
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }

    .how-it-works__slides {
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
    }

    .how-it-works__slide {
        display: none;
        flex-direction: column;
        gap: 20px;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .how-it-works__slide.is-active {
        display: flex;
        opacity: 1;
    }

    .how-it-works__slide-title {
        color: #ffffff;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.3;
        margin: 0 0 10px;
        text-align: center;
    }

    .how-it-works__slider-arrows {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .how-it-works__slider-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #282828;
        border: 1px solid #3d3d3d;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        outline: none;
    }

    .how-it-works__slider-arrow:hover {
        background: #3d3d3d;
        border-color: #0095FF;
        transform: scale(1.05);
    }

    .how-it-works__slider-arrow:active {
        transform: scale(0.95);
    }

    .how-it-works__slider-arrow svg {
        width: 24px;
        height: 24px;
    }

    @media (max-width: 1023px) {
        .how-it-works__tabs {
            display: none !important;
        }

        .how-it-works__slider-wrapper {
            display: block !important;
            width: 100%;
            max-width: 550px;
        }
    }

}

.horizontal-slider {
    position: relative;
    /*width: 100%;*/
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 auto;

    .horizontal-slider-wrap {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 18px;
        /*max-width: 100%;*/
    }

    .horizonal-slide {
        width: 308px;
        height: 376px;
        background-size: cover;
        background-position: center;
        border-radius: 40px;
        padding: 220px 40px 0;
        min-width: 0;
        flex: 1 0 308px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;

        &:nth-child(1) {
            background-image: url('https://swing-up.com/wp-content/uploads/2025/10/horizontal-slide-1.png');
        }

        &:nth-child(2) {
            background-image: url('https://swing-up.com/wp-content/uploads/2025/10/horizontal-slide-2.png');
        }

        &:nth-child(3) {
            background-image: url('https://swing-up.com/wp-content/uploads/2025/10/horizontal-slide-3.png');
        }

        &:nth-child(4) {
            background-image: url('https://swing-up.com/wp-content/uploads/2025/10/horizontal-slide-4.png');
        }

        &:nth-child(5) {
            background-image: url('https://swing-up.com/wp-content/uploads/2025/10/horizontal-slide-5.png');
        }

        &:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 37%;
            backdrop-filter: blur(5px);
            border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
            z-index: 1;
        }
    }

    .horizonal-slide__icon-wrap {
        position: relative;
        z-index: 2;
    }

    .horizonal-slide__title {
        color: #ffffff;
        font-size: 30px;
        font-weight: 500;
        line-height: 1.01;
        margin: 0;
        position: relative;
        z-index: 2;
    }

    .horizonal-slider-arrow--prev,
    .horizonal-slider-arrow--next {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        position: absolute;
        backdrop-filter: blur(5px);
        top: 45%;
        left: 0px;
        cursor: pointer;
        transition: transform 0.2s ease;

        &:hover {
            transform: scale(1.03);
        }

        &:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-45%, -50%) rotate(140deg);
            width: 10px;
            height: 10px;
            border-right: 2px solid #ffffff;
            border-bottom: 2px solid #ffffff;
        }
    }

    .horizonal-slider-arrow--next {
        right: 0px;
        left: auto;

        &:after {
            transform: translate(-65%, -50%) rotate(315deg);
        }
    }

}

.why-section {
    background-color: #f4f4f4;
    padding: 60px 0;

    .why-section-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        background-image: url('https://swing-up.com/wp-content/uploads/2025/10/why-section-bg.png');
        background-position: right;
        background-size: 600px;
        background-repeat: no-repeat;

        @media (max-width: 1024px) {
            padding-bottom: 430px;
            background-position: bottom -85px center;
        }
    }


    .why-section__subtitle {
        color: #606060;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.25;
        margin: 0;
        text-transform: uppercase;
    }


    .why-section__title {
        color: #454545;
        font-size: 52px;
        font-weight: 600;
        line-height: 1.01;
        margin: 0;
    }

    .why-section__text {
        color: #606060;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.25;
        margin: 0;
    }

    .why-section__list {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .why-section__item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        width: 100%;

        span {
            font-size: 26px;
            font-weight: 700;
            line-height: 48px;
            color: #202020;
        }

        svg {
            min-width: 24px;
            margin-top: 11px;
        }
    }

    &.why-section--form {
        padding: 73px 0 60px;

        .why-section-wrap {
            background-image: none;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;

            span {
                color: #454545;
                text-transform: uppercase;
            }
        }

        .why-section-wrap {
            gap: 30px;
        }

    }

    .why-section--form-wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        width: 100%;

        @media (max-width: 1024px) {
            flex-direction: column;

            .why-section-wrap {
                padding-bottom: 20px;
                width: 100%;
            }

            .form-wrapper {
                width: 100%;
                max-width: 100%;
            }
        }

    }
}

.review-section {
    position: relative;
    min-height: 600px;
    background: url('https://swing-up.com/wp-content/uploads/2025/10/young-family.png') center/cover;
    color: white;
    padding: 0px 20px;
    display: flex;
    align-items: center;

    .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        align-items: center;
    }

    .left-content {
        padding: 60px 0;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        margin-bottom: 40px;

        span {
            color: #B8B8B8;
        }
    }

    .review-section__title {
        font-size: 52px;
        font-weight: 700;
        line-height: 1.01;
        margin-top: 0;
        margin-bottom: 30px;
        color: #FFFFFF;
    }

    .thumbs-icon {
        width: 20px;
        height: 20px;
    }

    .review-section__subtitle {
        font-size: 16px;
        line-height: 1.01;
        margin-bottom: 30px;
        margin-top: 0;
        color: #B8B8B8;
    }

    .cta-button {
        background: #0ea5e9;
        color: white;
        border: none;
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background: #0284c7;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    }

    .testimonials {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
        overflow: hidden;
        max-height: 600px;
    }

    /* Inner wrapper inserted by VerticalSlider */

    .vs-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
        will-change: transform;
        width: 100%;
    }

    .testimonial-card {
        background: white;
        color: #1e293b;
        padding: 23px 35px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        max-width: 538px;

        &:nth-child(even) {
            margin-left: 50px;
        }

        &:nth-child(odd) {
            margin-right: 50px;
        }
    }

    .testimonial-card:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .testimonial-title {
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 16px;
        margin-top: 0;
        color: #202020;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.25;
        color: #202020;
        margin-top: 0;
        margin-bottom: 16px;
    }

    .testimonial-footer {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .rating {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #00CE86;
        font-weight: 600;
    }

    .star {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .author {
        color: #202020;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 500;
    }

    @media (max-width: 968px) {
        .content-wrapper {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        h1 {
            font-size: 36px;
        }

        .testimonials {
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 640px) {
        .review-section {
            padding: 40px 20px;
        }

        h1 {
            font-size: 32px;
        }

        .testimonial-card {
            padding: 24px;
        }
    }
}

.form-wrapper {
    max-width: 573px;
    width: 100%;
    background: #202020;
    border-radius: 30px;
    padding: 32px 46px;

    .application-form {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .form-title {
        color: white;
        font-size: 28px;
        font-weight: 600;
        line-height: 1.2;
        margin: 0 0 32px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 13px;
    }

    .form-label {
        color: white;
        font-size: 20px;
        font-weight: 400;
        margin-bottom: 11px;
    }

    .form-input {
        background: #2C2C2C;
        border-radius: 20px;
        border: none;
        height: 56px;
        padding: 0 28px;
        color: #D9D9D9;
        font-size: 20px;
        font-family: 'Inter', sans-serif;
        font-weight: 300;
        width: 100%;
    }

    .form-input:focus {
        outline: 2px solid #0095FF;
    }

    .form-input::placeholder {
        color: #D9D9D9;
        font-weight: 300;
    }

    textarea.form-input {
        height: 124px;
        padding-top: 18px; /* Відступ зверху для тексту */
        resize: vertical; /* Дозволяє користувачу змінювати висоту */
    }

    /* Кнопка відправки */

    .form-button {
        background: #0095FF;
        border-radius: 60px;
        padding: 15px 30px;
        color: white;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.15;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease; /* Плавна анімація при наведенні */
        margin-top: 15px;
    }

    .form-button:hover {
        background-color: #007acc; /* Трохи темніший колір при наведенні */
    }

    /* Текст під кнопкою */

    .form-footer {
        font-size: 12px;
        font-weight: 300;
        color: white;
        text-align: center;
        margin-top: 16px;
        margin-bottom: 0;
    }

    .telegram-link {
        color: #0095FF;
        text-decoration: underline;
    }
}

.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 0 75px;


    /* Стилі для заголовка секції */

    .faq-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 23px;
        margin-bottom: 50px;
    }

    .faq-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #454545;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .faq-title {
        color: #0C0B1D;
        font-size: 52px;
        font-weight: 700;
        line-height: 1.1;
        text-align: center;
        max-width: 730px;
        margin: 0;
    }

    /* Контейнер для списку питань */

    .faq-accordion {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* Кожен окремий елемент акордеону (питання + відповідь) */

    .faq-item {
        border-bottom: 1px solid rgba(50, 53, 70, 0.30);
    }

    /* Заголовок питання, який можна натискати */

    .faq-question {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0; /* Додамо відступи для кращого вигляду */
        cursor: pointer;
        list-style: none; /* Прибирає стандартну стрілку/маркер */
    }

    /* Прибирає стандартний маркер для браузерів на WebKit (Chrome, Safari) */

    .faq-question::-webkit-details-marker {
        display: none;
    }

    /* Створення кастомної іконки-стрілки */

    .faq-question::before {
        content: '';
        display: block;
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        background-image: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.625 5.375L19.875 14.625L10.625 23.875" stroke="%23323546" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.3s ease-in-out;
    }

    .faq-question-text {
        color: #0C0B1D;
        font-size: 16px;
        font-weight: 600;
        line-height: 32px;
    }

    /* Стилі для розкритого елемента */

    .faq-item[open] > .faq-question::before {
        transform: rotate(90deg); /* Обертаємо стрілку вниз */
        background-image: url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.625 5.375L19.875 14.625L10.625 23.875" stroke="%230095FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    }

    .faq-item[open] > .faq-question .faq-question-text {
        color: #0095FF; /* Змінюємо колір тексту активного питання */
    }

    /* Контент відповіді */

    .faq-answer {
        /* Smooth accordion animation */
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 42px; /* keep left indent, control bottom padding on open */
        color: #606060;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.25;
        transition: max-height 0.35s ease;

        ul {
            padding: 0 0 0 12px;
            margin: 0 0 5px;
            list-style: none;
        }
    }

    /* Expanded state */

    .faq-item[open] .faq-answer {
        max-height: 1000px; /* large enough for typical content */
        padding-bottom: 24px; /* show bottom spacing when open */
    }

    .faq-answer p {
        margin: 0;
    }

    .faq-answer p + p {
        margin-top: 10px; /* Відступ між параграфами у відповіді */
    }
}

.site-footer {
    background-color: #202020;
    color: white;
    padding: 85px 0 240px;


    .footer-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    /* Ліва колонка (Про компанію) */

    .footer-about {
        flex: 1 1 446px;
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        display: inline-flex;
        align-items: center;
        margin-bottom: 28px;
    }

    .footer-logo img {
        height: 100px;
        width: 203px;
    }

    .footer-description {
        font-size: 18px;
        line-height: 1.25;
        color: white;
        margin: 0 0 14px;
        text-transform: capitalize;
    }

    .footer-copyright {
        font-size: 12px;
        line-height: 1.25;
        color: #454545;
        text-transform: capitalize;
    }

    /* Права частина (Навігація) */

    .footer-nav {
        flex: 1 1 auto; /* Займає більше місця */
        display: flex;
        justify-content: flex-end;
        gap: 25px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .footer-title {
        font-size: 20px;
        font-weight: 500;
        color: white;
        margin: 0;
        text-transform: capitalize;
    }

    .footer-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-list li,
    .footer-list a {
        font-size: 20px;
        color: #454545;
        line-height: 1.25;
        text-transform: capitalize;
        transition: color 0.3s ease;
    }

    .footer-list a:hover {
        color: white;
    }

    .contact-highlight a {
        color: white;
        font-weight: 700;
    }

    .partner-name {
        font-size: 20px;
        font-weight: 700;
        color: white;
        text-transform: capitalize;
    }

    /* Tablet adaptation (768px - 1024px) */
    @media (max-width: 1024px) {
        padding: 60px 0 120px;

        .footer-container {
            flex-direction: column;
            gap: 50px;
        }

        .footer-about {
            max-width: 100%;
            flex: 1 1 auto;
        }

        .footer-logo img {
            height: 85px;
            width: auto;
        }

        .footer-description {
            font-size: 16px;
        }

        .footer-nav {
            gap: 30px;
            justify-content: space-around;
        }

        .footer-title {
            font-size: 18px;
        }

        .footer-list li,
        .footer-list a {
            font-size: 18px;
        }

        .footer-copyright {
            margin-top: 15px;
        }
    }

    /* Mobile adaptation (max-width: 767px) */
    @media (max-width: 767px) {
        padding: 50px 0 80px;

        .footer-container {
            gap: 40px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 70px;
            width: auto;
        }

        .footer-description {
            font-size: 15px;
            margin: 0 0 12px;
        }

        .footer-copyright {
            font-size: 11px;
            margin-top: 12px;
        }

        .footer-nav {
            flex-direction: column;
            gap: 25px;
        }

        .footer-column {
            gap: 12px;
        }

        .footer-title {
            font-size: 17px;
        }

        .footer-list {
            gap: 12px;
        }

        .footer-list li,
        .footer-list a {
            font-size: 16px;
        }

        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .partner-logos img {
            max-width: 120px;
            height: auto;
        }
    }

    /* Small mobile (max-width: 480px) */
    @media (max-width: 480px) {
        padding: 40px 0 60px;

        .footer-container {
            gap: 30px;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
        }

        .footer-description {
            font-size: 14px;
        }

        .footer-copyright {
            font-size: 10px;
        }

        .footer-title {
            font-size: 16px;
        }

        .footer-list li,
        .footer-list a {
            font-size: 15px;
        }

        .footer-nav {
            gap: 20px;
        }

        .partner-logos img {
            max-width: 100px;
        }
    }
}


.progress-container {
    position: absolute;
    top: -4px;
    left: -4px;
}

.progress-circle {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: #ffffff;
    stroke-width: 10;
}

.progress-bar {
    fill: none;
    stroke: #12aeff;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 565.48;
    transition: stroke-dashoffset 0.3s ease;
}

.slider-control__item:nth-child(2) {
    .progress-bar {
        stroke: #FF0242;
    }
}

.slider-control__item:nth-child(3) {
    .progress-bar {
        stroke: #00CE86;
    }
}

/* Анимация запускается при добавлении класса 'active' к родителю */
.active .progress-container .progress-bar {
    animation: fillProgress 5s ease-in-out forwards;
}

@keyframes fillProgress {
    from {
        stroke-dashoffset: 565.48;
    }
    to {
        stroke-dashoffset: 0;
    }
}






