/* Base styles and layout */
:root {
    --black: #000;
    --white: #fff;
    --title: #0d1321;
    --bg: #f8f9fb;
    --text: #6e737d;
    --accent: #1f7aec;
    --muted: #6b7280;
    --card: #ffffff;
    --btn: #2065e6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'SF Pro Display', Arial, sans-serif;
    color: var(--text);
    line-height: 1.2;
    font-weight: 400;
}

a {
    color: var(--accent);
    text-decoration: none;
}

p {
    margin: 0 0 20px 0;
}

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

.page__content {
    padding-top: 0px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: radial-gradient(83.44% 320.27% at 0 100%, #0055b8 0, #2065e6 .01%, rgba(0, 85, 184, 0) 100%), #0055b8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.site-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
}

.nav {
    flex: 1;
    margin-left: 24px;
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.nav__link {
    color: var(--white);
}

.site-header__left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.burger {
    display: none;
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 4px;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--white);
}

.burger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    opacity: 0;
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9;
}

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

.mobile-menu {
    position: fixed;
    top: 60px;
    right: 0;
    width: 30vw;
    max-width: 420px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 30;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu__title {
    font-weight: 700;
    font-size: 18px;
}

.mobile-menu__list,
.mobile-menu__sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2px;
}

.mobile-menu__item {
    display: grid;
    gap: 10px;
}

.mobile-menu__toggle {
    position: relative;
    width: 100%;
    font-size: 16px;
    border: none;
    color: var(--text);
    background: transparent;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
}

.mobile-menu__item--has-children .mobile-menu__toggle::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.mobile-menu__item--has-children.is-open .mobile-menu__toggle::before {
    transform: translateY(-50%) rotate(-135deg);
}

.mobile-menu__sublist {
    display: none;
    padding-left: 8px;
}

.mobile-menu__item.is-open .mobile-menu__sublist {
    display: grid;
}

.mobile-menu__item a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--text);
}

.mobile-menu__sublist li a {
    font-size: 14px;
}

.mobile-menu__footer {
    margin-top: auto;
    display: grid;
    gap: 12px;
}

.mobile-menu__footer span {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #6e737d;
}

.mobile-menu__phone {
    font-weight: 600;
    color: var(--text);
}

body.is-menu-open {
    overflow: hidden;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--white);
}

.lang-switcher__link {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.lang-switcher__link.is-active {
    color: var(--white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.button--ghost {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.header-actions {
    width: 385px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.header-actions__phone {
    color: var(--white);
    font-weight: 400;
    
}

.header-user_btn img {
    display: block;
    width: 20px;
}

.header-user_btn {
    height: 40px;
    width: 100%;
    max-width: 155px;
    border: 1px solid #fff;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 5px 16px 5px 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    text-decoration: none;
    color: #fff;
}

.section {
    padding: 48px 24px;
}

.section__header {
    margin-bottom: 40px;
}

.section-title {
    color: var(--title);
    margin: 0 0 40px;
    font-size: 28px;
    text-align: center;
}

.section-subtitle {
    color: var(--title);
    text-align: center;
    font-weight: 500;
}

.flex--container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.grid {
    display: grid;
    gap: 16px;
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid--two {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero__wrp {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    padding: 0 24px;
}

.hero__content,
.hero__calculator {
    width: 100%;
    max-width: 45%;
}

.hero__calculator {
    padding: 60px 0 40px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero__content picture {
    font-size: 0;
    line-height: 0;
}

.hero__side {
    padding: 20px 32px;
    background: #f5f6fb;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    border-radius: 15px;
}

.card {
    width: 100%;
    max-width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.card__body {
    padding-left: 16px;
}

.card__title {
    color: var(--title);
    margin: 0 0 8px;
    font-size: 18px;
}

.card__text {
    margin: 0;
    color: var(--text);
}

.card__image {
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 12px;
}

.card__icon {
    width: 100%;
    max-width: 64px;
}

.card__icon img {
    display: block;
    width: 100%;
}

.card__link {
    color: var(--accent);
    font-weight: 600;
}

.blue-btn {
    display: flex;
    min-height: 48px;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    background: var(--btn);
    border-radius: 40px;
    width: 100%;
    max-width: 345px;
    text-decoration: none;
}

.blue-btn:hover {
    background: 0 0;
    color: var(--btn);
    border: 1px solid #e1e3f0;
}

.gray-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--btn);
    border: 1px solid #e1e3f0;
    border-radius: 40px;
    height: 48px;
    padding: 5px 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--btn);
    text-decoration: none;
}

.gray-btn:hover {
    border: 1px solid var(--btn);
    background: var(--btn);
    color: #fff;
}

.calculator__tabs {
    display: flex;
    gap: 8px;
}

.calculator__tab {
    border: 1px solid #e5e7eb;
    background: #f5f7fb;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.calculator__tab.is-active {
    background: var(--accent);
    color: #fff;
}

.calculator-title {
    font-size: 13px;
    font-weight: 400;
    line-height: 135%;
    color: #6e737d;
    margin: 0 0 10px 0;
}

.calculator__labels {
    font-weight: 400;
    font-size: 13px;
    line-height: 135%;
    color: #6e737d;
}

.calculator__value {
    font-size: 18px;
    font-weight: 600;
    line-height: 135%;
    text-align: right;
    color: #0d1321;
}

.calculator__field {
    margin: 16px 0;
}

.calculator__field--labels {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.calculator__input {
    width: 100%;
}

.calculator__value {
    font-weight: 700;
    margin-bottom: 4px;
}

.calculator__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.calculator__results {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    padding: 16px 24px;
    margin: 16px 0px;
    background: #fff;
    box-shadow: 0 0 11px rgba(0, 0, 0, .08);
}

.calculator-content-row {
    width: fit-content;
    margin-right: auto;
}

.calculator__result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 191%;
    color: #6e737d;
}

.calculator__result-item strong {
    display: block;
    width: 97px;
    padding-left: 20px;
    margin-left: auto;
    font-weight: 600;
    font-size: 14px;
    color: var(--title);
    white-space: nowrap;
}

.calculator__result-item span {
    min-width: 110px;
}

.calculator__info {
    color: #6e737d;
    font-size: 11px;
    position: relative;
    margin-bottom: 16px;
}

.calculator__info a {
    text-decoration: underline;
}

.calculator-btns {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px
}

.calculator-btns a {
    width: calc(50% - 8px);
    font-size: 14px;
    font-weight: 400;
}

.calculator__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 20;
}

.calculator__modal.is-open {
    display: flex;
}

.calculator__modal-inner {
    position: relative;
    background: #fff;
    color: var(--title);
    margin: 5% auto;
    padding: 20px;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 6px;
    z-index: 10000;
    box-sizing: border-box;
}

.calculator__modal__container {
    margin-bottom: 20px;
}

.calculator__modal__container p {
    font-size: 14px;
    margin: 0;
}

.calculator__modal-close {
    border: none;
    background: transparent;
    font-size: 18px;
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

.calculator__modal__title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #144175;
    margin-bottom: 15px;
}

.calculator__modal__sub-title {
    font-weight: 700;
}

.table__wrp {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.calculator__table {
    width: 100%;
    border-collapse: collapse;
}

.calculator__table th,
.calculator__table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.calculator__ranges {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.calculator__range {
    font-size: 14px;
    font-weight: 400;
    color: var(--title);
}

.tabs__controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tabs__control {
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.tabs__control.is-active {
    background: var(--accent);
    color: #fff;
}

.tabs__panel {
    display: none;
}

.tabs__panel.is-active {
    display: block;
}

.product-terms__wrp {
    padding: 30px;
    border-radius: 15px;
    background: #f5f6fb;
}

.product-terms {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.product-terms__documents,
.product-terms__content,
.product-terms__note {
    width: 100%;
    max-width: 32%;
    border-radius: 15px;
    border: 1px solid #e1e3f0;
}

.product-terms__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.product-terms__content .blue-btn {
    max-width: 90%;
}

.product-terms__documents,
.product-terms__note {
    padding: 20px;
}

.steps {
    position: relative;
    width: 33%;
    max-width: 300px;
    margin: auto;
    min-width: 295px;
    margin-bottom: 40px;
}

.steps__image {
    text-align: center;
}

.steps__line {
    width: 1px;
    max-height: 350px;
    background: #e1e3f0;
}

.steps__title {
    font-size: 16px;
    text-align: center;
    color: var(--title);
}

.steps__text {
    text-align: center;
    color: var(--text);
    margin: 0 0 24px 0;
}

.repay__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.repay {
    position: relative;
    width: 33%;
    max-width: 408px;
    padding: 0 40px;
    border-right: 1px solid #e1e3f0;
}

.repay:last-child {
    border-right: 0;
}

.repay__image {
    text-align: center;
}

.repay__title {
    font-size: 16px;
    color: var(--title);
}

.repay__text {
    color: var(--text);
    margin: 0 0 24px 0;
}

.section--two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: center;
}

.media-box {
    width: 100%;
    padding-top: 56%;
    background: linear-gradient(135deg, #dfe8ff, #f2f7ff);
    border-radius: 12px;
    position: relative;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.info-scroll {
    background: #fff;
    color: var(--title);
    max-height: 50vh;
    overflow-y: auto;
    padding: 16px;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px #e5e7eb;
}

.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
}

.partners__item {
    background: #f8fafc;
    padding: 12px;
    border-radius: 10px;
    display: grid;
    place-items: center;
}

.partners__item img {
    max-width: 90px;
}

.footer {
    background: #0f172a;
    color: #fff;
    padding: 32px 24px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 100px;
    padding-bottom: 25px;
    border-bottom: 1px solid #4c4e5e;
}

.footer__top .footer__col:first-child {
    max-width: 250px;
}

.footer__title {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
}

.footer__list {
    max-height: 400px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0 50px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list p {
    margin: 0;
}

.footer__list a.footer__link {
    color: var(--white)
}

.footer-col-subtitle {
    color: #fff;
    text-decoration: underline;
}

.footer-phone {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
}

.footer-col-text {
    font-size: 14px;
    color: #fff;
}

.footer__list a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer__middle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #4c4e5e;
}

.footer-nav {
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-nav__link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.footer__bottom {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy,
.footer__policy {
    font-size: 14px;
    color: #fff;
}

.footer__fb {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #fff;
}

.breadcrumbs {
    padding: 12px 24px;
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.breadcrumbs a:last-child {
    color: var(--text);
}

.listing {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.listing__item {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
}

.accordion {
    padding: 31px 32px 24px;
    background: #f5f6fb;
    border-radius: 15px;
}

.accordion__item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.accordion__toggle {
    position: relative;
    width: 100%;
    background: #fff;
    border: none;
    text-align: left;
    padding: 12px 45px 12px 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.accordion__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    background-color: #1e5bff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.accordion__toggle::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 24px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-55%) rotate(45deg);
    transition: transform 0.3s ease;
    z-index: 1;
}

.accordion__item.is-open .accordion__toggle::before,
.accordion__item.is-open .accordion__toggle::before,
.accordion__item.is-open .accordion__toggle::before {
  transform: translateY(-45%) rotate(-135deg);
}


.accordion__content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s ease;
    padding: 0 50px 0 20px;
    color: var(--muted);
}

.accordion__content .border__block {
    color: var(--title);
}

.accordion__item.is-open .accordion__content {
    display: block;
    padding-bottom: 12px;
}

.accordion__content p,
.accordion__content li {
    font-size: 14px;
    font-weight: 400;
    color: var(--title);
    margin: 0;
}

.accordion__content h3 {
    font-size: 16px;
    color: var(--title);
    margin: 10px 0;
}

.border__block {
    padding: 20px;
    border: 2px solid #000;
    margin-bottom: 20px;
}


.faq-block {
    padding: 31px 32px 24px;
    background: #f5f6fb;
    border-radius: 15px;
    margin-bottom: 50px;
}

.faq-block__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--title);
    margin: 0 0 20px 0;
}

.faq-block .accordion {
    padding: 0;
}

.slider.slick-initialized {
    display: block;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    color: inherit;
    top: inherit;
    bottom: -30px;
}

.slick-slider .slick-prev {
    left: calc(50% - 40px);
}

.slick-slider .slick-next {
    right: calc(50% - 40px);
}

.slick-slider .slick-prev:hover, .slick-prev:focus,
.slick-slider .slick-next:hover, .slick-next:focus {
    color: var(--title);
    outline: none;
    background: transparent;
}

.reviews__slider .slick-slide {
    padding: 0 12px;
}

.review-card {
    background: #f5f6fb;
    border-radius: 15px;
    padding: 32px;
    border: 1px solid #dfdfdf;
}

.reviews__top {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9ebf5;
}

.reviews__img {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
}

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

.reviews__info {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.reviews__info--bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.reviews__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--title);
}

.reviews__old {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.reviews__city,
.reviews__date,
.reviews__pozition {
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
}

.review-card__text {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--title);
    margin: 0 0 15px;
}

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.video-modal.is-open {
    display: flex;
}

.video-modal__inner {
    background: #000;
    position: relative;
    max-width: 720px;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

iframe[data-video-frame] {
    width: 100%;
    height: 100%;
}

.scroll-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
}

.scroll-top.is-visible {
    display: grid;
    place-items: center;
}

.why--gray {
    background: #f5f6fb;
}

@media (max-width: 1240px) {
    .burger {
        order: 2;
        display: inline-flex;
        margin-left: 12px;
    }
    .nav__list {
        display: none;
        flex-direction: column;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 12px;
    }
}

@media (max-width: 1023px) {

    .site-header__top {
        gap: 12px;
    }

    .nav {
        display: none;
        order: 3;
        width: 100%;
    }
    .nav__list.is-open {
        display: flex;
    }

    .section {
        padding: 40px 20px;
    }

    .flex--container {
        flex-direction: column;
    }

    .section-title {
        margin-bottom: 28px;
    }

    .hero__wrp {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .hero__content {
        margin-top: 20px;
        max-width: 500px;
    }

    .hero__calculator {
        max-width: 500px;
        padding: 0 0 40px;
        margin-top: -15px;
    }

    .hero__content img {
        max-width: 100%;
    }

    .card {
        max-width: 100%;
    }

    .product-terms__wrp {
        padding: 24px;
    }

    .product-terms {
        flex-direction: column;
    }

    .product-terms__documents, 
    .product-terms__content, 
    .product-terms__note {
        max-width: 100%;
    }

    .product-terms__content--top {
        width: 100%;
    }

    .product-terms--text {
        margin-bottom: 16px;
    }

    .repay__container {
        flex-direction: column;
    }

    .repay {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        border: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .repay__title {
        margin: 0 0 8px 0;
    }

    .repay__text {
        margin: 0 0 6px 0;
    }

    .repay__image {
        position: relative;
        width: 90px;
        height: 90px;
        margin: 0;
    }

    .repay__image img {
        width: 100%;
        height: auto;
    }

    .steps__line {
        display: none;
    }

    .footer__top {
        gap: 20px;
    }

    .footer__list {
        max-height: 425px;
    }

    .footer__top .footer__col:first-child {
        max-width: 175px;
    }

    .footer__top .footer__col:last-child {
        max-width: 275px;
    }

    .footer__list {
        gap: 0 20px;
    }






    .hero {
        grid-template-columns: 1fr;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .promo-card {
        grid-template-columns: 1fr;
    }
    .promo-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mobile-menu {
        width: 60vw;
    }

    .section {
        padding: 32px 16px;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .header-actions {
        width: fit-content;
    }

    .header-actions__phone {
        display: none;
    }

    .header-user_btn {
        width: 32px;
        height: 32px;
        padding: 0;
        margin: 0;
        border: none;
    }

    .header-user_btn span {
        display: none;
    }

    .calculator__actions {
        margin-bottom: 16px;
    }

    .calculator__results {
        flex-direction: column;
        margin-bottom: 16px;
    }

    .calculator-content-row {
        width: 100%;
        margin: 0;
    }

    .calculator__result-item span {
        width: 50%;
    }

    .calculator__result-item strong {
        width: auto;
        padding-left: 0;
        margin-left: 0;
    }

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

    .calculator-btns a {
        width: 100%;
    }

    .product-terms__wrp {
        padding: 20px;
    }

    .accordion {
        padding: 16px;
    }

    .accordion__toggle {
        font-size: 16px;
        padding: 12px 45px 12px 12px;
    }

    .accordion__toggle::after {
        top: 24px;
    }

    .repay__body {
        width: fit-content;
    }

    .card__icon {
        width: 50px;
        min-width: 50px;
    }

    .footer__top .footer__col:first-child,
    .footer__top .footer__col:nth-child(2) {
        display: none;
    }

    .footer__top .footer__col:last-child {
        max-width: 100%;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

@media (min-width: 1241px) {
    .mobile-menu,
    .menu-overlay {
        display: none;
    }
}