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

body {
    font-family: Arial, sans-serif;
    color: #1a1a1a;
    background: #f5f7fa;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__logo {
    width: 150px;
}

.header__nav {
    display: flex;
    gap: 20px;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__contact-btn {
    background: #1e9bd7;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.header__lang-switch {
    display: flex;
    gap: 6px;
    font-size: 14px;
}

.header__lang {
    opacity: 0.5;
    cursor: pointer;
}

.header__lang--active {
    opacity: 1;
    font-weight: bold;
}

/* HERO */

.hero {
    padding: 60px 20px;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__content {
    flex: 1;
}

.hero__subtitle {
    color: #1e9bd7;
    margin-bottom: 16px;
    font-weight: bold;
}
.hero__subtitle>img {
    width: 28px;
    margin-right: 7px;
}

.hero__title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero__title-accent {
    color: #1e9bd7;
}

.features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features__item {
    display: flex;
}
.features__item>p {
    font-size: 15px;
}
.features__item>img {
    width: 28px;
    margin-right: 15px;
}

.hero__cta-btn>img {
    width: 40px;
    background: white;
    padding: 7px;
    border-radius: 5px;
    margin-left: 10px;
}
.hero__cta-btn {
    background: #1e9bd7;
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* HERO VISUAL */

.hero__visual {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.hero__image {
    width: 560px;
    height: 520px;
    background: rgba(250, 248, 246);
    border-radius: 30px;
    margin: 0 auto;
}

.hero-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 260px;
}

.hero-card--top {
    top: 0;
    right: 0;
}

.hero-card--middle {
    top: 180px;
    left: 0;
}

.hero-card--small {
    bottom: 0;
    right: 40px;
    text-align: center;
}

.hero-card__header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #cbd5e1;
}

.hero-card__name {
    font-weight: bold;
    margin-bottom: 4px;
}

.hero-card__meta {
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-card__title {
    font-weight: bold;
    margin-bottom: 12px;
}

.hero-card__rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 12px;
}

.hero-card__row {
    display: flex;
    justify-content: space-between;
}

.hero-card__row--total {
    font-weight: bold;
}

.hero-card__btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #1e9bd7;
    color: #fff;
    cursor: pointer;
}

.hero-card__small-amount {
    font-size: 22px;
    font-weight: bold;
}

.hero-card__small-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.hero-card__status {
    display: inline-block;
    padding: 6px 10px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 20px;
    font-size: 12px;
}

/* ADAPTIVE */

@media (max-width: 1024px) {
    .hero__container {
        flex-direction: column;
    }

    .hero__visual {
        width: 100%;
        min-height: 600px;
    }

    .hero-card--top,
    .hero-card--middle,
    .hero-card--small {
        position: relative;
        margin: 20px auto 0;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

@media (max-width: 600px) {
    .header__nav {
        display: none;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__image--phone {
        width: 200px;
        height: 400px;
    }
}
/* ================= TRUST ================= */

.trust {
    background: #ffffff;
    padding: 30px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
    min-width: 220px;
}

.trust__icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.trust__text {
    font-size: 18px;
    font-weight: 600;
}

/* ================= STEPS ================= */

.steps {
    padding: 80px 20px;
    background: #f5f7fa;
}

.steps__container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps__header {
    margin-bottom: 50px;
}

.steps__title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
}

.steps__title-accent {
    color: #1e9bd7;
}

.steps__subtitle {
    font-size: 18px;
    color: #444;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.steps__grid > * {
    grid-column: span 2;
}

.steps__grid > *:nth-child(4) {
    grid-column: 2 / span 2;
}
.steps__grid > *:nth-child(5) {
    grid-column: 4 / span 2;
}


.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.step-card__image-wrapper {
    background: #eaf8ff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
}

.step-card__image {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.step-card__text {
    font-size: 18px;
    font-weight: 600;
}

/* ================= ADAPTIVE ================= */



@media (max-width: 1024px) {
    .steps__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    /* фикс ширина карточек */
    .steps__grid > * {
        flex: 0 0 320px; /* ширина карточки */
        max-width: 320px;
    }

    .steps__title {
        font-size: 34px;
    }

    .trust__container {
        justify-content: center;
    }
}


@media (max-width: 600px) {
    .steps__grid {
        gap: 20px;
    }

    .steps__grid > * {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .trust__text {
        font-size: 16px;
    }

    .step-card__image {
        height: 180px;
    }
}




/* ================= CALCULATOR ================= */

.calculator {
    padding: 80px 0;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.calculator__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.calculator__left,
.calculator__right {
    flex: 1;
}

/* ===== LEFT SIDE ===== */

.calculator__main-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
}

.calculator__main-title span {
    color: #0ea5d9;
}

.calculator__row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.calculator__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin: 18px 0 8px;
}

.calculator__input {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 16px;
    transition: .2s;
}

.calculator__input:focus {
    border-color: #0ea5d9;
    box-shadow: 0 0 0 3px rgba(14,165,217,.15);
    outline: none;
}

/* ===== BUTTON ===== */

.calculator__submit {
    margin-top: 28px;
    width: 100%;
    background: #0ea5d9;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: .2s;
}

.calculator__submit:hover {
    background: #0284c7;
}

.calculator__submit-icon {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator__submit-icon img {
    width: 18px;
}

/* ===== RIGHT CALCULATOR CARD ===== */

.calculator__right {
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%);
    padding: 32px;
    border-radius: 20px;
}

.calculator__calc-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 26px;
}

/* ===== RANGE BLOCK ===== */

.calculator__range-block {
    background: #fff;
    padding: 18px 20px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.calculator__range-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
}

.calculator__range-header strong {
    color: #0ea5d9;
    font-size: 18px;
}

/* ===== RANGE STYLE ===== */

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(to right, #0ea5d9 0%, #0ea5d9 0%, #dbeafe 0%, #dbeafe 100%);
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0ea5d9;
    cursor: pointer;
    box-shadow: 0 0 0 5px rgba(14,165,217,.2);
}

input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0ea5d9;
    cursor: pointer;
}

/* ===== RESULTS ===== */

.calculator__result-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fff;
    border-radius: 12px;
    margin-top: 12px;
    font-size: 15px;
}

.calculator__result-row strong {
    font-weight: 700;
}

.calculator__result-row--total {
    font-size: 17px;
    background: #e0f2fe;
}

.calculator__note {
    font-size: 13px;
    margin-top: 16px;
    color: #475569;
}

.form__field--phone .iti {
    width: 100%;
}

.form__field--phone .iti__flag-container {
    border-radius: 8px 0 0 8px;
}

.form__input--phone {
    padding-left: 90px; /* место под код страны */
}

.iti input {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 14px 16px 14px 90px;
    font-size: 16px;
    width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent;
    padding-left: 14px;
}

.form__input--error {
    border-color: #ef4444;
}


@media (max-width: 1024px) {

    .header__container {
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero__container {
        flex-direction: column;
        text-align: center;
    }

    .hero__visual {
        min-height: auto;
    }

    .hero__image {
        width: 100%;
        max-width: 420px;
        height: auto;
    }

    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator__container {
        flex-direction: column;
    }

    .calculator__right {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .header__nav {
        display: none;
    }

    .hero {
        padding: 40px 16px;
    }

    .hero__title {
        font-size: 30px;
    }

    .features__item {
        align-items: flex-start;
        text-align: left;
    }

    .trust__container {
        flex-direction: column;
        gap: 16px;
    }

    .steps {
        padding: 50px 16px;
    }

    .steps__grid {
        grid-template-columns: 1fr;
    }

    .step-card__image {
        height: 180px;
    }

    .calculator {
        padding: 50px 16px;
    }

    .calculator__row {
        flex-direction: column;
    }

    .calculator__main-title {
        font-size: 26px;
    }

    .calculator__calc-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {

    .hero__title {
        font-size: 24px;
    }

    .hero__cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero__image {
        max-width: 100%;
        border-radius: 20px;
    }

    .calculator__submit {
        font-size: 16px;
        padding: 16px;
    }

    .calculator__submit-icon {
        width: 36px;
        height: 36px;
    }

    .calculator__range-header {
        flex-direction: column;
        gap: 6px;
    }

    .calculator__result-row {
        flex-direction: column;
        gap: 4px;
        font-size: 14px;
    }
}


.hero__cta-btn,
.header__contact-btn,
.calculator__submit,
.hero-card__btn {
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero__cta-btn:hover,
.header__contact-btn:hover,
.calculator__submit:hover,
.hero-card__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

.hero__cta-btn:active,
.calculator__submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.step-card {
    transition: transform .4s ease, box-shadow .4s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

/* задержки появления */
.steps__card:nth-child(1) { transition-delay: .1s; }
.steps__card:nth-child(2) { transition-delay: .2s; }
.steps__card:nth-child(3) { transition-delay: .3s; }
.steps__card:nth-child(4) { transition-delay: .4s; }
.steps__card:nth-child(5) { transition-delay: .5s; }

.hero__image {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

.calculator__input,
.iti input {
    transition: box-shadow .2s ease, border-color .2s ease;
}

.calculator__input:focus,
.iti input:focus {
    box-shadow: 0 0 0 4px rgba(14,165,217,.15);
}

/* базовое состояние до появления */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

/* когда блок в зоне видимости */
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= REVIEWS SECTION ================= */

/* ================= SECTION ================= */

.reviews-section {
    padding: 100px 20px;
    background: #f8fafc;
    overflow: hidden;
}

.container,
.w-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* ================= BANNER ================= */

.banner-wrap {
    position: relative;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-radius: 28px;
    padding: 60px;
    margin-bottom: 90px;
    overflow: hidden;
}

.banner-wrap .h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.banner-text {
    max-width: 560px;
    font-size: 18px;
    margin-bottom: 28px;
    color: #334155;
}

/* ================= BUTTON ================= */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 26px;
    background: #1e9bd7;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.button-text {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.button-icon {
    width: 22px;
    height: 22px;
    display: flex;
}

.button:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,.15);
}

/* ================= FLOATING IMAGES ================= */

.banner-img {
    position: absolute;
    animation: float 7s ease-in-out infinite;
}

.banner-img._1 {
    right: 40px;
    bottom: -10px;
    width: 220px;
}

.banner-img._2 {
    top: -20px;
    right: 160px;
    width: 160px;
    animation-delay: 2s;
}

/* ================= HEADING ================= */

.heading-block {
    text-align: center;
    margin-bottom: 50px;
}

.heading-block .h2 {
    font-size: 36px;
}

.green-span {
    color: #1e9bd7;
}

/* ================= REVIEWS ================= */

.reviews-wrap {
    width: 100%;
    overflow: hidden;
}

.reviews-block {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

/* ================= CARD ================= */

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    width: calc(33.333% - 19px);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .3s ease, box-shadow .3s ease, opacity .6s ease;
    opacity: 0;
    transform: translateY(40px);
}

.review-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* ================= PERSON ================= */

.review-card-p-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card-person-wrap {
    font-weight: 600;
}

.review-card-person-city {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

.review-card-stars img {
    width: 110px;
}

/* ================= FLOAT ANIMATION ================= */

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
    .review-card {
        width: calc(50% - 14px);
    }

    .banner-wrap {
        padding: 40px;
    }
}

/* ================= MOBILE FIX ================= */

@media (max-width: 640px) {

    .reviews-wrap {
        overflow: hidden;
        width: 100%;
    }

    .reviews-block {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding: 10px 16px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .reviews-block::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
        width: auto;
    }

    .banner-wrap {
        padding: 30px 24px;
    }

    .banner-img {
        display: none;
    }
}


/* ================= FAQ SECTION ================= */

.blue-back {
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%);
    padding: 100px 20px;
}

.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ================= ACCORDION ================= */

.faq-accord {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}

.faq-accord:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,.1);
}

.faq-accord-top {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-accord-top-heading {
    font-size: 18px;
    font-weight: 600;
}

.faq-accord-top-icon {
    width: 24px;
    height: 24px;
    display: flex;
    transition: transform .35s ease;
}

.faq-accord.active .faq-accord-top-icon {
    transform: rotate(180deg);
}

/* ================= DROPDOWN ================= */

.faq-accord-bottom {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease, padding .3s ease;
    padding: 0 26px;
}

.faq-accord.active .faq-accord-bottom {
    padding: 0 26px 22px 26px;
}

.faq-accord-bottom-text {
    color: #475569;
    line-height: 1.6;
    font-size: 15px;
}

/* ================= ANIMATION ON SCROLL ================= */

.faq-accord {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

.faq-accord.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MOBILE ================= */

@media (max-width: 640px) {
    .blue-back {
        padding: 70px 16px;
    }

    .faq-accord-top {
        padding: 18px 18px;
    }

    .faq-accord-top-heading {
        font-size: 16px;
    }

    .faq-accord-bottom-text {
        font-size: 14px;
    }
}





/* ================= FOOTER ================= */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 20px 40px;
    font-size: 14px;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}

.footer a:hover {
    color: #ffffff;
}

/* CONTAINER */

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TOP NAV ===== */

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-top-link-list {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-top-link {
    font-weight: 500;
    opacity: .85;
}

.footer-top-link:hover {
    opacity: 1;
}

.footer-logo {
    width: 160px;
    height: 42px;
    background: url('./assets/logo-white.svg') center/contain no-repeat;
}

/* BACK TO TOP */

.footer-up-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    transition: all .25s ease;
}

.footer-up-link:hover {
    background: #1e293b;
    border-color: #334155;
}

.footer-up-icon {
    width: 18px;
    height: 18px;
    transform: rotate(-90deg);
}

/* ===== MIDDLE SMALL ROW ===== */

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-link {
    opacity: .8;
}

.footer-bottom-link:hover {
    opacity: 1;
}

.footer-credits {
    font-weight: 600;
    color: #ffffff;
}

/* ===== LEGAL BLOCK ===== */

.footer-middle-second {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 40px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.footer-middle-second-left-block-heading {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.grey-regular-span {
    color: #94a3b8;
    font-weight: 400;
}

.footer-middle-second-center {
    font-size: 13px;
    color: #94a3b8;
}

.footer-middle-second-right {
    text-align: right;
}

/* ===== BOTTOM STRIP ===== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 25px;
    flex-wrap: wrap;
}

.footer-pay-wrap {
    height: 28px;
}

.footer-bottom-side.right {
    text-align: right;
    font-size: 13px;
    color: #94a3b8;
}

.footer-bottom-side.right img {
    margin-top: 8px;
    height: 28px;
}

/* ================= ADAPTIVE ================= */

@media (max-width: 1024px) {
    .footer-middle-second {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-middle-second-right {
        text-align: left;
    }
}

@media (max-width: 640px) {

    .footer {
        padding: 60px 16px 30px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-top-link-list {
        justify-content: center;
    }

    .footer-logo {
        margin: 10px 0;
    }

    .footer-up-link {
        margin-top: 10px;
    }

    .footer-middle {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-side.right {
        text-align: center;
    }
}
