/* Локальные шрифты: Poppins + Manrope */
@import url('/fonts/poppins.css');

/*
 * Fluid typography через clamp(min, preferred, max).
 * Используй переменные вместо хардкода font-size, чтобы текст
 * автоматически уменьшался на мобильных без media-queries.
 *
 * Формула: clamp(MIN, calc(MIN + (MAX - MIN) * (vw - 320) / (1440 - 320)), MAX)
 * Упрощённо: clamp(MIN, X.Xvw, MAX)  где X.Xvw подбирается по диапазону.
 */
:root {
    /* Body / параграфы / мелкий UX-текст */
    --fz-xs:    clamp(11px, 2.5vw, 12px);
    --fz-sm:    clamp(12px, 3vw,   14px);
    --fz-base:  clamp(14px, 3.5vw, 16px);
    --fz-md:    clamp(15px, 3.8vw, 18px);

    /* Лейблы форм / кнопки / акценты */
    --fz-lg:    clamp(14px, 4vw,   20px);
    --fz-xl:    clamp(16px, 3.5vw, 24px);  /* калькулятор: подписи и значения */

    /* Заголовки секций */
    --fz-h3:    clamp(18px, 5vw,   28px);
    --fz-h2:    clamp(22px, 6vw,   36px);
    --fz-h1:    clamp(28px, 7vw,   48px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    padding-top: 80px; /* Компенсация для sticky header */
}
h3 {
    margin: 30px 0px 20px 0px;
}
h4 {
    margin: 20px 0px 16px 0px;
}

/* Bootstrap-совместимые утилиты выравнивания текста */
.text-left  { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center{ text-align: center !important; }

/* Инпут с иконкой-аддоном (напр. кнопка «показать пароль») — рисуем рамку у обёртки,
   а внутренние элементы делаем прозрачными, чтобы выглядело одним блоком. */
.input-group.calculator-input {
    display: flex;
    align-items: stretch;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    background: #FFF;
    transition: all 0.3s ease;
    overflow: hidden;
}
.input-group.calculator-input > .form-control {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    float: none;
}
.input-group.calculator-input > .input-group-addon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.input-group.calculator-input:focus-within {
    border-color: #007BFF;
    background: #F2F8FF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.input-group.calculator-input .form-control {
    border: none !important;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
.input-group.calculator-input .form-control:focus {
    background: transparent;
    box-shadow: none;
    border-color: transparent !important;
}
.input-group.calculator-input .input-group-addon {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
}
.container{
    width: 100%;
    margin: 0 auto;
    max-width: 1396px;
    padding: 0px 15px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    transition: border-bottom 0.3s ease;
}

.header.scrolled {
    border-bottom: 1px solid #007BFF;
}
a{
    color: #007BFF;
}
.header-container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-link {
    color: #2C2C2C;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007BFF;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.create-account {
    color: #2C2C2C;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.create-account:hover {
    color: #007BFF;
    text-decoration: underline;
}

.sign-in-btn {
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #007BFF;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sign-in-btn:hover {
    background: #3395FF;
}

/* Language switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    color: #2C2C2C;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 8px;
}

.lang-link:hover {
    color: #007BFF;
}

.lang-link.active {
    color: #007BFF;
    font-weight: 700;
}

.lang-separator {
    color: #2C2C2C;
    font-size: 16px;
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2C2C2C;
    transition: 0.3s;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #007BFF;
        gap: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .language-switcher {
        gap: 4px;
    }

    .lang-link {
        font-size: 14px;
        padding: 2px 4px;
    }

    .lang-separator {
        font-size: 14px;
    }

    .header-actions {
        gap: 16px;
    }

    .create-account {
        display: none;
    }

    .sign-in-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}
/* Hero Section */
.hero-section {
    padding: 60px 20px;
    background: #fff;
}

.hero-container {
    max-width: 1396px;
    margin: 0 auto;
}

main {
    padding-top: 10px;
    padding-bottom: 80px;
}

/* Исправить пропорции hero секции */
.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-left {
    flex: 1; /* 50% */
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-visual {
    position: relative;
    width: fit-content;
}

.blue-shape {
    width: 150px;
    height: 150px;
    background: #00D1FF;
    border-radius: 32px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-image {
    width: 380px;
    height: 280px;
    object-fit: cover;
    border-radius: 32px;
    position: relative;
    z-index: 2;
    margin-left: 40px;
    margin-top: 40px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-title {
    align-self: stretch;
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 77px;
}

.hero-subtitle {
    align-self: stretch;
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}

.hero-right {
    flex: 1; /* 50% вместо flex: 0 0 400px */
    /*max-width: 500px;*/
}

/* Calculator Styles */
.calculator {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 16px;
    background: #F2F8FF;
}

.calculator-field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Уменьшить gap */
}

.calculator-label {
    flex: 1 0 0;
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-size: var(--fz-xl);
    font-weight: 500;
    line-height: 1.3;
}

.amount-container {
    display: flex;
    justify-content: space-between; /* Вместо flex-end */
    align-items: center; /* Добавить вертикальное выравнивание */
    margin-bottom: 8px;
}

.amount-display {
    display: flex;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #FFF;
    min-width: 120px;
    flex-shrink: 0;
}

.amount-value {
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-size: var(--fz-xl);
    font-weight: 500;
    line-height: 1.3;
}

.currency {
    color: #939EA8;
    font-family: 'Poppins', sans-serif;
    font-size: var(--fz-xl);
    font-weight: 500;
    line-height: 1.3;
}

/* Custom Slider Styles */
.slider-container {
    position: relative;
}

.amount-slider, .days-slider {
    width: 100%;
    height: 6px;
    border: none !important;
    border-radius: 39px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 0;
    box-shadow: none;
    background: transparent !important;
}

/* WebKit track */
.amount-slider::-webkit-slider-runnable-track,
.days-slider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 39px;
    border: none;
    background: linear-gradient(
        to right,
        #00D1FF 0%,
        #00D1FF var(--progress, 0%),
        #E5E7EB var(--progress, 0%),
        #E5E7EB 100%
    );
}

/* WebKit thumb */
.amount-slider::-webkit-slider-thumb,
.days-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00D1FF;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-top: -7px; /* центрируем относительно 6px трека */
}

/* Firefox track */
.amount-slider::-moz-range-track,
.days-slider::-moz-range-track {
    height: 6px;
    border-radius: 39px;
    background: #E5E7EB;
    border: none;
}
.amount-slider::-moz-range-progress,
.days-slider::-moz-range-progress {
    height: 6px;
    border-radius: 39px;
    background: #00D1FF;
}

/* Firefox thumb */
.amount-slider::-moz-range-thumb,
.days-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00D1FF;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.slider-label {
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}

/* Calculator Results */
.calculator-result {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.result-row {
    display: flex;
    align-items: center;
    position: relative;
}

.result-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background-image: radial-gradient(circle, #D1D5DB 1px, transparent 1px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    margin: 0 12px;
    order: 1; /* Поместить между элементами */
}

.result-label {
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-size: var(--fz-xl);
    font-weight: 500;
    line-height: 1.3;
    order: 0;
}

.result-value {
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-size: var(--fz-xl);
    font-weight: 500;
    line-height: 1.3;
    order: 2;
    white-space: nowrap;
}

/* Request Loan Button */
.request-loan-btn {
    width: 100%;
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #007BFF;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

.request-loan-btn:hover {
    background: #3395FF;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left, .hero-right {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 58px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .hero-image {
        width: 280px;
        height: 200px;
    }

    .blue-shape {
        width: 120px;
        height: 120px;
    }

    .calculator {
        padding: 24px;
    }

    .calculator-label {
        font-size: 20px;
        line-height: 26px;
    }
}


/* How to Apply Section */
.how-to-apply-section {
    padding: 100px 20px;
    background: #F2F8FF;
}

.how-to-apply-container {
    max-width: 1396px;
    margin: 0 auto;
}

.section-title {
    align-self: stretch;
    color: #2C2C2C;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    gap: 24px; /* Только между блоками */
}

.step-card {
    flex: 1;
    display: flex;
    padding: 53.5px 40px;
    flex-direction: column;
    background: #FFF;
    border-radius: 16px;
}

/* Иконка и текстовый блок в одну линию */
.step-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step-icon {
    height: 80px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-title {
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    margin: 0;
}

.step-description {
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .steps-container {
        flex-direction: column;
        gap: 24px;
    }

    .section-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .how-to-apply-section {
        padding: 60px 20px;
    }

    .step-card {
        padding: 40px 24px;
    }

    .step-content {
        gap: 16px;
    }

    .step-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}


/* Reasons Section */
.reasons-section {
    padding: 80px 20px;
    background: #fff;
}

.reasons-container {
    max-width: 1396px;
    margin: 0 auto;
}

.reasons-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.reasons-image {
    flex: 1;
    max-width: 500px;
}

.reasons-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.reasons-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 50px; /* 36px вниз, 50px сбоку */
}

.reason-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reason-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.reason-title {
    align-self: stretch;
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 31px;
    margin: 0;
}

.reason-description {
    align-self: stretch;
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .reasons-content {
        flex-direction: column;
        gap: 40px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reasons-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .reasons-section {
        padding: 60px 20px;
    }

    .reasons-grid {
        gap: 24px;
    }

    .reason-title {
        font-size: 20px;
        line-height: 26px;
    }

    .reason-description {
        font-size: 16px;
        line-height: 24px;
    }
}


/* Customer Opinions Section - ОБНОВЛЕННАЯ ВЕРСИЯ */
.opinions-section {
    padding: 80px 20px;
    background: #F2F8FF;
}

.opinions-container {
    max-width: 1396px;
    margin: 0 auto;
    text-align: center;
}

/* Исправить отступы */
.rating-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 40px 0; /* 40px сверху и снизу от заголовка до карточек */
}

.rating-badge img {
    object-fit: contain;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.score-number {
    color: #030314;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars svg {
    flex-shrink: 0;
    width: 21px;
    height: 21px;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px; /* 40px от карточек до точек */
    transition: transform 0.5s ease;
    width: calc(100% * var(--total-slides, 1));
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 16px;
    background: #FFF;
    position: relative;
    text-align: left;
    min-width: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    width: 100%;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.customer-name {
    color: #030314;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 31px;
    margin: 0;
}

.review-date {
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon img {
    object-fit: contain;
}


.testimonial-text {
    align-self: stretch;
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
}
/* Исправить стили точек */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 15px;
    height: 4px;
    border-radius: 2px;
    background: #EEE;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot:hover {
    background: #B0BEC5;
}

.dot.active {
    background: #007BFF;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .testimonials-grid {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2); /* 2 карточки на планшете */
    }

    .rating-block {
        flex-direction: column;
        gap: 16px;
        margin: 30px 0;
    }

    .rating-score {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .opinions-section {
        padding: 60px 20px;
    }

    .testimonial-card {
        flex: 0 0 100%; /* 1 карточка на мобильном */
        padding: 24px;
    }

    .testimonials-grid {
        gap: 16px;
    }

    .score-number {
        font-size: 32px;
        line-height: 42px;
    }

    .customer-name {
        font-size: 20px;
        line-height: 26px;
    }

    .rating-block {
        margin: 20px 0;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #fff;
}

.faq-container {
    max-width: 1396px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #DBDBDB;
    padding: 32px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid #DBDBDB;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-right: 20px;
    float: left;
}

.faq-toggle:hover {
    transform: scale(1.1);
}

.faq-icon-minus,
.faq-icon-plus {
    width: 28px;
    height: 28px;
    transition: opacity 0.3s ease;
}

/* Показывать плюс по умолчанию */
.faq-item .faq-icon-minus {
    display: none;
}

.faq-item .faq-icon-plus {
    display: block;
}

/* Показывать минус когда активен */
.faq-item.active .faq-icon-minus {
    display: block;
}

.faq-item.active .faq-icon-plus {
    display: none;
}

.faq-header {
    margin-left: 48px; /* 28px иконка + 20px отступ */
}

.faq-question {
    color: #2C2C2C;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 31px;
    margin: 0;
}

.faq-content {
    display: none;
    margin-left: 48px; /* Выравнивание с заголовком */
    margin-top: 32px;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-answer {
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 0 0 16px 0;
}

.faq-answer:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-item {
        padding: 24px 0;
    }

    .faq-toggle {
        margin-right: 16px;
    }

    .faq-header {
        margin-left: 44px; /* 28px + 16px */
    }

    .faq-content {
        margin-left: 44px;
        margin-top: 16px;
    }

    .faq-question {
        font-size: 20px;
        line-height: 26px;
    }
}

/* Latest Posts Section */
.latest-posts-section {
    padding: 80px 20px;
    background: #F2F8FF;
}

.latest-posts-container {
    max-width: 1396px;
    margin: 0 auto;
}

.posts-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.post-card {
    flex: 1;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 16px;
    background: #FFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.post-image {
    align-self: stretch;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: lightgray;
}

.post-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: stretch;
}

.post-date {
    align-self: stretch;
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.post-title {
    align-self: stretch;
    color: #030314;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 31px;
    margin: 0;
    transition: color 0.3s ease;
}

.post-title-blue {
    color: #007BFF;
}

.post-card:hover .post-title {
    color: #007BFF;
}

.post-card:hover .post-title-blue {
    color: #0056b3;
}

.posts-button-container {
    display: flex;
    justify-content: center;
}

.read-more-btn {
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #007BFF;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background: #3395FF;
}

/* Responsive Design */
@media (max-width: 968px) {
    .posts-grid {
        flex-direction: column;
        gap: 24px;
    }

    .post-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .latest-posts-section {
        padding: 60px 20px;
    }

    .post-card {
        padding: 20px;
        gap: 16px;
    }

    .post-image {
        height: 180px;
    }

    .post-title {
        font-size: 20px;
        line-height: 26px;
    }

    .post-date {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Footer */
.footer {
    background: #007BFF;
    padding: 80px 20px 32px 20px;
}

.footer-container {
    max-width: 1396px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-center {
    flex: 0 0 auto;
}

.footer-right {
    flex: 0 0 auto;
}

.footer-logo .logo-white {
    height: 40px;
    width: auto;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none; /* Убираем подчеркивание ссылки */
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8; /* Легкий эффект при наведении */
}

.contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-text {
    color: #FAFAFA;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 12px 36px;
}

.footer-link {
    color: #FAFAFA;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #FFF;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright span {
    color: #FAFAFA;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.legal-link {
    color: #FBFBFB;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #FFF;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px 20px;
    }
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-legal {
        gap: 24px;
    }
}

/* Auth Modal */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.auth-modal-overlay.active {
    display: flex;
}

.auth-modal {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    color: #fff;
}

.auth-modal-close:hover {
    border: 1px solid #fff;
}
.auth-header {
    background: #007BFF;
    margin: -40px -40px 32px -40px;
    padding: 20px 30px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.auth-title {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    margin: 0;
    letter-spacing: 2px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-label {
    color: #2C2C2C;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.auth-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    z-index: 1;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.3s ease;
}

.auth-input:focus {
    outline: none;
    border-color: #007BFF;
    background: #F2F8FF;
}

.auth-input::placeholder {
    color: #6C757D;
}

.auth-password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.auth-password-toggle:hover {
    border: 1px solid #007BFF;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.auth-forgot,
.auth-register {
    color: #6C757D;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-register {
    color: #007BFF;
}

.auth-forgot:hover,
.auth-register:hover {
    color: #007BFF;
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    background: #007BFF;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    letter-spacing: 2px;
}
.auth-submit-btn:hover {
    background: #3395FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}
/* Responsive */
@media (max-width: 768px) {
    .auth-modal {
        padding: 24px;
        margin: 20px;
    }

    .auth-header {
        margin: -24px -24px 24px -24px;
        padding: 24px;
    }

    .auth-title {
        font-size: 20px;
        line-height: 26px;
    }
}


/* Universal Content Block Styles */
.content-block {
    max-width: 1396px;
    margin: 0 auto;
    font-family: Manrope, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
}

/* Заголовки */
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: #030314;
}

.content-block h1 {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 24px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 16px;
}

.content-block h4 {
    font-size: 20px;
    line-height: 26px;
}

.content-block h5 {
    font-size: 18px;
    line-height: 24px;
}

.content-block h6 {
    font-size: 16px;
    line-height: 22px;
}

/* Параграфы */
.content-block p {
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 16px 0;
    font-weight: 400;
}

/* Изображения - ограничение до 100% */
.content-block img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 16px;
    margin: 24px 0;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Списки */
.content-block ul,
.content-block ol {
    margin: 16px 0;
    padding-left: 24px;
}

.content-block ul li,
.content-block ol li {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.content-block ul {
    list-style-type: none;
}

.content-block ul li {
    position: relative;
    padding-left: 24px;
}

.content-block ul li::before {
    content: "•";
    color: #007BFF;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 27px;
}

.content-block ol li {
    padding-left: 8px;
}

/* Вложенные списки */
.content-block ul ul,
.content-block ol ol,
.content-block ul ol,
.content-block ol ul {
    margin: 8px 0;
    padding-left: 20px;
}

/* Ссылки */
.content-block a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-block a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Цитаты */
.content-block blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid #007BFF;
    background: #F2F8FF;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #6C757D;
}

.content-block blockquote p {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
}

/* Код */
.content-block code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #e83e8c;
}

.content-block pre {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
}

.content-block pre code {
    background: none;
    padding: 0;
    color: #2C2C2C;
}

/* Таблицы */
.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-block table th,
.content-block table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.content-block table th {
    background: #007BFF;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.content-block table td {
    font-size: 16px;
    line-height: 24px;
}

.content-block table tr:hover {
    background: #f8f9fa;
}

/* Разделители */
.content-block hr {
    border: none;
    height: 1px;
    background: #e9ecef;
    margin: 32px 0;
}

/* Выделение текста */
.content-block strong,
.content-block b {
    font-weight: 600;
    color: #030314;
}

.content-block em,
.content-block i {
    font-style: italic;
    color: #6C757D;
}

.content-block mark {
    background: #FFF9E6;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Медиа контейнеры */
.content-block figure {
    margin: 24px 0;
    text-align: center;
}

.content-block figcaption {
    font-size: 16px;
    color: #6C757D;
    margin-top: 8px;
    font-style: italic;
}

/* Видео и iframe */
.content-block iframe,
.content-block video {
    max-width: 100% !important;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-block {
        padding: 24px 16px;
    }

    .content-block h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .content-block h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .content-block h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .content-block p,
    .content-block ul li,
    .content-block ol li {
        font-size: 16px;
        line-height: 24px;
    }

    .content-block table {
        font-size: 14px;
    }

    .content-block table th,
    .content-block table td {
        padding: 8px 12px;
    }
}

/* Очистка от вредных стилей */
.content-block * {
    max-width: 100% !important;
}

.content-block table {
    table-layout: auto !important;
}
.text-page-section {
    padding: 80px 20px 80px 20px;
    background: #fff;
    min-height: calc(100vh - 160px);
}
.text-page-container {
    max-width: 1396px;
    margin: 0 auto;
}
/* Breadcrumbs */
.breadcrumbs {
    font-size: 16px;
}

.breadcrumb-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-right: 29px;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.breadcrumb-link::after {
    content: " > ";
    margin: 0 12px;
    color: #6C757D;
    text-decoration: none; /* Убираем подчеркивание у стрелки */
    position: absolute;
    white-space: nowrap;
}

.breadcrumb-current {
    color: #6C757D;
    font-weight: 500;
}
.post-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card-link:hover {
    text-decoration: none;
}

.post-card-link:hover .post-title {
    color: #007BFF;
}

.page_content_sidebar {
    padding: 54px 0;
    position: relative;
}
.page_content_sidebar .ol2 {
    position: absolute;
    bottom: 0;
    right: 50px;
}
.page_content_sidebar h1 {
    margin-bottom: 39px;
}
.page_content_sidebar .section_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.page_content_sidebar .section_content .left_sidebar {
    width: 420px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 60px;
}

.page_content_sidebar .section_content .right_sidebar {
    width: 420px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 60px;
}

/* Sidebar справа: мобильный — меню сверху, десктоп — меню справа */
.section_content.sidebar-right { flex-wrap: wrap; }
.section_content.sidebar-right .text_content { order: -1; }
.section_content.sidebar-right .right_sidebar { order: 1; margin-left: 0; width: 100%; margin-top: 20px; }
@media (min-width: 992px) {
    .section_content.sidebar-right .text_content { order: -1; flex: 1; }
    .section_content.sidebar-right .right_sidebar { order: 0; width: 420px; margin-left: 60px; margin-top: 0; }
}

.page_content_sidebar .section_content .left_sidebar .btn_style,
.page_content_sidebar .section_content .right_sidebar .btn_style {
    display: table;
    margin: 0 auto;
    text-transform: uppercase;
}
/* Balance Block - Updated Design */
.page_content_sidebar .section_content .left_sidebar .balans,
.page_content_sidebar .section_content .right_sidebar .balans {
    margin-bottom: 23px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #FFF;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page_content_sidebar .section_content .left_sidebar .balans .total_balans
.page_content_sidebar .section_content .right_sidebar .balans .total_balans {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #FFF;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}

.page_content_sidebar .section_content .left_sidebar .balans .total_balans .title,
.page_content_sidebar .section_content .left_sidebar .balans .total_balans .value,
.page_content_sidebar .section_content .right_sidebar .balans .total_balans .title,
.page_content_sidebar .section_content .right_sidebar .balans .total_balans .value {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    color: #2C2C2C;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.page_content_sidebar .section_content .left_sidebar .balans .total_balans .title,
.page_content_sidebar .section_content .right_sidebar .balans .total_balans .title {
    color: #6C757D;
}

.page_content_sidebar .section_content .left_sidebar .balans .total_balans .value,
.page_content_sidebar .section_content .right_sidebar .balans .total_balans .value {
    color: #007BFF;
    font-size: 18px;
    font-weight: 700;
}

.page_content_sidebar .section_content .left_sidebar .balans .total_balans .dots,
.page_content_sidebar .section_content .right_sidebar .balans .total_balans .dots {
    width: 100%;
    line-height: 18px;
    height: 18px;
    margin: 0 15px;
    border-bottom: 1px dashed #E5E5E5;
}

.page_content_sidebar .section_content .left_sidebar .balans .btn_wrap,
.page_content_sidebar .section_content .right_sidebar .balans .btn_wrap {
    padding: 25px;
}

/* Status Block */
.page_content_sidebar .section_content .left_sidebar .balans .status_row,
.page_content_sidebar .section_content .right_sidebar .balans .status_row {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F2F2F2;
}

.page_content_sidebar .section_content .left_sidebar .balans .status_row .title,
.page_content_sidebar .section_content .right_sidebar .balans .status_row .title {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6C757D;
}

.page_content_sidebar .section_content .left_sidebar .balans .status_row .value,
.page_content_sidebar .section_content .right_sidebar .balans .status_row .value {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #007BFF;
}

/* Sidebar Menu - Updated Design */
.page_content_sidebar .section_content .left_sidebar .sidebar_menu a,
.page_content_sidebar .section_content .right_sidebar .sidebar_menu a {
    display: block;
    padding: 18px 24px;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    text-align: center;
    margin-bottom: 16px;
    border-radius: 50px;
    background-color: #FFF;
    text-transform: none;
    text-decoration: none;
    color: #2C2C2C;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page_content_sidebar .section_content .left_sidebar .sidebar_menu a:hover,
.page_content_sidebar .section_content .right_sidebar .sidebar_menu a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    border-color: #007BFF;
    color: #007BFF;
}

.page_content_sidebar .section_content .left_sidebar .sidebar_menu a.active,
.page_content_sidebar .section_content .right_sidebar .sidebar_menu a.active {
    background: #007BFF;
    border-color: #007BFF;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
    color: #FFF;
}

.page_content_sidebar .section_content .left_sidebar .sidebar_menu a.active:hover,
.page_content_sidebar .section_content .right_sidebar .sidebar_menu a.active:hover {
    background: #3395FF;
    border-color: #0056b3;
    transform: translateY(-2px);
}
.page_content_sidebar .section_content .calculator {
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.page_content_sidebar .section_content .text_content {
    width: 100%;
}
.page_content_sidebar .section_content .text_content .ol_not_found {
    margin-top: 182px;
    font-weight: 600;
    line-height: 48px;
    font-size: 36px;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.page_content_sidebar .section_content .text_content .table_container {
    margin-bottom: 20px;
}
.page_content_sidebar .section_content .text_content .table_container::-webkit-scrollbar {
    height: 4px;
    background: 0 0;
}
.page_content_sidebar .section_content .text_content .table_container::-webkit-scrollbar-track {
    border-radius: 4px;
}
.page_content_sidebar .section_content .text_content .table_container::-webkit-scrollbar-thumb {
    background: #01ae9a;
}
.page_content_sidebar .section_content .text_content table {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #d8d8d8;
}
.page_content_sidebar .section_content .text_content table tr:nth-child(even) {
    background-color: #eef9ea;
}
.page_content_sidebar .section_content .text_content table tr .total {
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    padding: 18px 0;
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    line-height: 26px;
    text-transform: uppercase;
}
.page_content_sidebar .section_content .text_content table tr th {
    line-height: 26px;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.page_content_sidebar .section_content .text_content table tr td {
    text-align: center;
    line-height: 30px;
    padding: 10px;
}
.page_content_sidebar .section_content .text_content table tr td:first-child {
    font-weight: 400;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.page_content_sidebar .section_content .text_content .custom_form {
    width: 450px;
    max-width: 100%;
}
.page_content_sidebar .section_content .text_content .custom_form .btn_style {
    margin: 0;
}
.page_content_sidebar .section_content .text_content .custom_form.full_width {
    width: 100%;
}
.page_content_sidebar .section_content .text_content .num_list_title {
    font-weight: 700;
    font-size: 24px;
    line-height: 61px;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.page_content_sidebar .section_content .text_content .num_list {
    padding-left: 20px;
    list-style: none;
    counter-reset: my-awesome-counter;
}
.page_content_sidebar .section_content .text_content .num_list li {
    padding: 25px 36px;
    background-color: #fff;
    counter-increment: my-awesome-counter;
    -webkit-box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
    margin-bottom: 26px;
    position: relative;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    display: inline-block;
}
.page_content_sidebar .section_content .text_content .num_list li:before {
    content: "0" counter(my-awesome-counter);
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 24px;
    font-weight: 700;
    margin-right: 20px;
}
.page_content_sidebar .bottom_text {
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    margin-top: 57px;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.work_list {
    padding-top: 30px;
}
.work_list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 48px;
}
.work_list .item:last-child {
    margin-bottom: 0;
}
.work_list .item .num {
    color: #fff;
    width: 70px;
    height: 70px;
    font-weight: 700;
    font-size: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 8px;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.work_list .item .text b {
    color: #0e0e0e;
}
.gradient_text {
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.about {
    padding: 66px 0 34px;
}
.about .section_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.about .section_content .image_wrap {
    margin-right: 63px;
    max-width: 45%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.about .section_content .image_wrap img {
    max-width: 100%;
}
.about .section_content .text_wrap h2 {
    text-align: left;
}
.need {
    padding: 70px 0;
}
.need h2 {
    margin-bottom: 17px;
}
.need .desc {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 75px;
}
.need .desc b {
    font-weight: 600;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.need .need_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.need .need_items .item {
    width: calc(25% - 20px);
    margin: 0 10px 50px;
    background-color: #fff;
    padding: 0 15px 18px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}
.need .need_items .item .icon {
    margin: -35px auto 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    width: 70px;
    height: 70px;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.need .bottom_text {
    width: 980px;
    max-width: 100%;
    margin: 0 auto;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.ways {
    padding: 70px 0;
}
.ways h2 {
    margin-bottom: 15px;
}
.ways .ways_items {
    margin-bottom: 30px;
}
.ways .ways_items .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.ways .ways_items .item .num {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    margin-right: 20px;
    border-radius: 8px;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.ways .bottom_text {
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 70px;
    text-align: center;
}
.penalties_baner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 220px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #303030;
    border-radius: 8px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-image: url(../img/penalties_bg.png);
}
.penalties_baner .penalties_baner_icon_1 {
    position: absolute;
    bottom: 0;
    left: 40px;
}
.penalties_baner .penalties_baner_icon_2 {
    right: 40px;
    bottom: 0;
    position: absolute;
}
.penalties_baner .item {
    width: 50%;
    padding: 0 50px;
    text-align: center;
}
.penalties_baner .item .icon {
    margin-bottom: 10px;
}
.penalties_baner .item .text {
    color: #fff;
}
.garanty {
    padding: 75px 0;
}
.garanty .section_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.garanty .section_content h2 {
    font-weight: 600;
    text-align: right;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 45px;
    text-transform: uppercase;
}
.garanty .section_content h2 b {
    font-size: 67px;
    font-weight: 600;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.garanty .section_content .garanty_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.garanty .section_content .garanty_items .item {
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 10px 13px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 16px;
    background-color: #fff;
}
.garanty .section_content .garanty_items .item .icon {
    margin-right: 35px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.garanty .section_content .garanty_items .item .text b {
    font-weight: 600;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.garanty .section_content .garanty_items .item:nth-child(1) {
    width: calc(60% - 20px);
}
.garanty .section_content .garanty_items .item:nth-child(2) {
    width: calc(40% - 20px);
}
.return_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.return_items .item {
    width: 50%;
}
.return_items .item .title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.return_items .item .text {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
}
.need_work {
    padding: 70px 0;
}
.need_work .need_work_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.need_work .need_work_items .item {
    width: 25%;
    text-align: center;
    padding: 34px;
    background-color: #007BFF;
    position: relative;
    z-index: 1;
}
.need_work .need_work_items .item .item_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    background-size: cover;
    background-position: center;
}
.need_work .need_work_items .item:nth-child(even) {
    background-color: #263238;
}
.need_work .need_work_items .item .icon {
    margin-bottom: 15px;
}
.need_work .need_work_items .item .text {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
}
.faq_items {
    width: 100%;
    margin-bottom: 45px;
}
.faq_items .item {
    margin-bottom: 15px;
}
.faq_items .item .question {
    border-radius: 8px;
    font-weight: 700;
    line-height: 23px;
    position: relative;
    padding: 20px 60px 20px 28px;
    background: #eef9ea;
}
.faq_items .item .question:before {
    content: "\f078";
    position: absolute;
    font-weight: 900;
    font-size: 24px;
    right: 30px;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    background: -webkit-gradient(linear, left top, right top, from(#00D1FF), to(#007BFF));
    background: -o-linear-gradient(left, #00D1FF 0, #007BFF 100%);
    background: linear-gradient(90deg, #00D1FF 0, #007BFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.faq_items .item .answer {
    margin: 30px 0;
    background-color: #eef9ea;
    border-radius: 8px;
    padding: 20px 30px;
    display: none;
}
.faq_items .item .answer ol {
    list-style: none;
    counter-reset: my-awesome-counter;
}
.faq_items .item .answer ol li {
    counter-increment: my-awesome-counter;
    position: relative;
}
.faq_items .item .answer ol li:before {
    content: "0" counter(my-awesome-counter);
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 14px;
    font-weight: 700;
    margin-right: 15px;
}
.faq_items .item .answer p:last-child {
    margin: 0;
}
.faq_items .item.active .question {
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.faq_items .item.active .question:before {
    color: #fff;
    background: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.about_page {
    padding: 54px 0;
}
.about_page .section_content .calculator {
    float: left;
    margin-right: 38px;
}
.about_page .section_content .alignright {
    float: right;
    width: 30%;
}
.contact_content {
    width: 100%;
}
.contacts_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 45px -9px 0;
}
.contacts_list .item {
    width: calc(33.33% - 18px);
    margin: 0 9px 40px;
    text-align: center;
    background-color: #eef9ea;
    border-radius: 16px;
    padding: 0 15px 20px;
}
.contacts_list .item .icon {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: -35px auto 16px;
    border-radius: 8px;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.contacts_list .item a {
    height: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    line-height: 23px;
}
.contacts_list .item .text {
    font-weight: 700;
    line-height: 23px;
}
.map_code iframe {
    width: 100%;
    height: 335px;
}
.double_calculator {
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #4a4a4a;
    border: 1px solid #333049;
}
.double_calculator .double_calculator_item {
    width: 50%;
}
.double_calculator .double_calculator_item .title_wrap {
    padding-left: 30px;
    background-color: #363636;
}
.double_calculator .double_calculator_item .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 60px;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.double_calculator .double_calculator_item .content_wrap {
    padding: 30px;
    padding-right: 15px;
}
.double_calculator .double_calculator_item .label {
    font-size: 18px;
    line-height: 26px;
}
.double_calculator .double_calculator_item .total_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.double_calculator .double_calculator_item .total_item .name {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.71);
}
.double_calculator .double_calculator_item .total_item .value {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}
.double_calculator .double_calculator_item .btn_style {
    display: table;
    margin: 37px auto 0;
}
.double_calculator .double_calculator_item .range_slider .irs--big .irs-to {
    display: block;
    top: -30px;
    color: #565656;
    font-size: 15px;
    padding: 1px 10px;
    background: #fff;
}
.order_loan_tabs {
    padding: 73px 0 60px;
    background-image: url(../img/order_loan_bg.png);
}
.order_loan_tabs .order_loan_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.order_loan_tabs .order_loan_links .link {
    width: 25%;
    text-align: center;
    position: relative;
}
.order_loan_tabs .order_loan_links .link .icon {
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 8px;
    position: relative;
    -webkit-box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
    background: #fff;
}
.order_loan_tabs .order_loan_links .link .icon .num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    -webkit-box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.order_loan_tabs .order_loan_links .link .icon .num span {
    color: #fff;
}
.order_loan_tabs .order_loan_links .link .title {
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: #fff;
}
.order_loan_tabs .order_loan_links .link .dots {
    position: absolute;
    top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: calc(100% - 30px);
}
.order_loan_tabs .order_loan_links .link .dots .dot {
    margin: 0 6px;
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.order_loan_tabs .order_loan_links .link.active .icon {
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.order_loan_tabs .order_loan_links .link.active .icon img {
    -webkit-filter: brightness(100);
    filter: brightness(100);
}
.order_loan_tabs .order_loan_links .link.active .icon .num {
    background: #fff;
}
.order_loan_tabs .order_loan_links .link.active .icon .num span {
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.order_loan_tabs .order_loan_links .link .icon img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(96%) saturate(3300%) hue-rotate(199deg) brightness(101%) contrast(107%);
}
.order_loan_widget {
    background-color: #4a4a4a;
    border: 1px solid #333049;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.order_loan_widget .input_wrap {
    padding: 25px 30px;
    border-bottom: 1px solid #333049;
}
.order_loan_widget .input_wrap .input {
    position: relative;
}
.order_loan_widget .input_wrap .input .pencil {
    position: absolute;
    right: 22px;
    top: 15px;
}
.order_loan_widget .input_wrap .input input {
    border: none;
    background-color: #fff;
    border-radius: 8px;
    padding: 11px 22px;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    line-height: 23px;
    -webkit-box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
}
.order_loan_widget .parameters_wrap {
    padding: 38px 28px;
}
.order_loan_widget .total_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.order_loan_widget .total_item:last-child {
    margin-bottom: 0;
}
.order_loan_widget .total_item .name {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.71);
}
.order_loan_widget .total_item .value {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}
.order_loan_widget .bottom_parameters_wrap {
    padding: 20px 28px;
    background-color: #363636;
}
.contact_info .title {
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    margin-right: 18px;
}
.contact_info .contact_item {
    display: inline-block;
    margin-right: 18px;
    color: rgba(0, 0, 0, 0.7);
}
.contact_info .contact_item i {
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-right: 4px;
}
.contact_info .contact_item i.fa-phone {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.edit_loan_fields {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.edit_loan_fields .col {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 10px;
}
.edit_loan_fields .col_2 {
    width: 66.66%;
}
.edit_loan_fields .col_3 {
    width: 33.33%;
}
.edit_loan_fields .col_6 {
    width: 50%;
}
.edit_loan_fields h5 {
    text-transform: uppercase;
    display: inline-block;
}
.edit_loan_fields .wpcf7-form-control-wrap {
    display: block;
}
.edit_loan_fields .btn_style {
    display: inline-block;
    padding: 16px 48px;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFF !important;
    background: linear-gradient(90deg, #007BFF 0%, #00D1FF 100%) !important;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    margin-top: 20px;
}
.edit_loan_fields .btn_style:hover {
    background: linear-gradient(90deg, #0056b3 0%, #00a8cc 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}
.confirm {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    user-select: none;
}

/* Radio "pill" — для пар Да/Нет */
.radio-group {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}
.radio-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
    font-size: var(--fz-base, 14px);
    color: #2C2C2C;
}
.radio-pill:hover {
    border-color: #007BFF;
}
.radio-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.radio-pill__circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
    position: relative;
    transition: border-color .2s, background .2s;
    flex-shrink: 0;
    box-sizing: border-box;
}
.radio-pill__circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .2s;
}
.radio-pill input:checked ~ .radio-pill__circle {
    border-color: #007BFF;
    background: #007BFF;
    top: 11%;
}
.radio-pill input:checked ~ .radio-pill__circle::after {
    transform: translate(-50%, -50%) scale(1);
}
.radio-pill input:checked ~ .radio-pill__label {
    color: #007BFF;
    font-weight: 500;
}
.radio-pill:has(input:checked) {
    border-color: #007BFF;
    background: rgba(0, 123, 255, 0.05);
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.15);
}
.confirm input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.confirm input:checked ~ .checkmark {
    background: linear-gradient(90deg, #007BFF 0%, #00D1FF 100%);
    border-color: #007BFF;
}
.confirm input:checked ~ .checkmark:after {
    display: block;
}
.confirm .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #007BFF;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.confirm .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.confirm a {
    background-clip: text;
    font-weight: 600;
    margin: 0 5px;
}
.go_to_top {
    position: fixed;
    text-align: center;
    width: 56px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    bottom: 70px;
    right: 70px;
    z-index: 100;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
.go_to_top i {
    font-size: 16px;
}
footer {
    background-color: #303030;
    background-size: cover;
    background-position: center;
    background-image: url(../img/footer_bg.png);
}
footer .section_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 122px 0 83px;
}
footer .section_content .footer_menu li a {
    color: #fff;
    line-height: 23px;
    margin-bottom: 11px;
}
footer .footer_bottom {
    padding: 5px 0;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
footer .footer_bottom .copyright {
    line-height: 20px;
    color: #fff;
    text-align: center;
}
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: 0;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before {
    display: table;
    content: "";
}
.slick-track:after {
    display: table;
    content: "";
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}
.remodal,
[data-remodal-id] {
    display: none;
}
.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
}
.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: "";
}
.remodal-overlay,
.remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.remodal {
    position: relative;
    outline: 0;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
.remodal-is-initialized {
    display: inline-block;
}
.remodal-bg.remodal-is-opened,
.remodal-bg.remodal-is-opening {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}
.remodal-overlay {
    background-color: rgba(29, 29, 29, 0.9);
}
.remodal-overlay.remodal-is-closing,
.remodal-overlay.remodal-is-opening {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes;
}
.remodal-wrapper {
    padding: 10px 10px 0;
}
.remodal {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: 542px;
    padding: 0;
    border-radius: 8px;
    position: relative;
    background-color: #eef9ea;
    -webkit-box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 13px rgba(0, 0, 0, 0.1);
}
.remodal {
    vertical-align: middle;
}
.remodal.remodal-is-closing,
.remodal.remodal-is-opening {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes;
}
.remodal-wrapper:after {
    vertical-align: middle;
}
.remodal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 30px;
    height: 30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-size: 32px;
    line-height: 29px;
    background-color: transparent;
    -webkit-appearance: none;
    padding: 0;
    z-index: 1;
    color: #111;
    cursor: pointer;
    border: 0;
}
.remodal-close:before {
    content: "";
    width: 2px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.remodal-close:after {
    content: "";
    width: 2px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.remodal-close:focus,
.remodal-close:hover {
    opacity: 1;
}
.form_title {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 26px;
    text-align: center;
    padding: 30px;
    border-radius: 8px 8px 0 0;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
}
body .remodal-wrapper .remodal .modal_content {
    position: relative;
    text-align: left;
}
body .remodal-wrapper .remodal .modal_content form {
    padding: 42px;
}
/* Custom Form Styles */
form.custom_form label {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 13px;
    line-height: 23px;
    color: #2C2C2C;
    display: block;
}

form.custom_form .wpcf7-form-control-wrap input,
form.custom_form .wpcf7-form-control-wrap textarea {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #E5E5E5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF !important;
    margin-bottom: 22px;
    font-weight: 400;
    font-family: Manrope, sans-serif;
    padding: 12px 24px;
    line-height: 23px;
    font-size: 16px;
    color: #2C2C2C;
    transition: all 0.3s ease;
}

/* Отмена желтого фона автозаполнения */
form.custom_form .wpcf7-form-control-wrap input:-webkit-autofill,
form.custom_form .wpcf7-form-control-wrap input:-webkit-autofill:hover,
form.custom_form .wpcf7-form-control-wrap input:-webkit-autofill:focus,
form.custom_form .wpcf7-form-control-wrap input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #FFF inset !important;
    -webkit-text-fill-color: #2C2C2C !important;
    transition: background-color 5000s ease-in-out 0s;
}

form.custom_form .wpcf7-form-control-wrap input:focus,
form.custom_form .wpcf7-form-control-wrap textarea:focus {
    outline: none;
    border-color: #007BFF;
    background-color: #F2F8FF !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

form.custom_form .wpcf7-form-control-wrap select {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #E5E5E5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    margin-bottom: 22px;
    font-weight: 400;
    font-family: Manrope, sans-serif;
    padding: 12px 24px;
    line-height: 23px;
    overflow: hidden;
    background: url(../img/downarrow.svg) no-repeat right #FFF;
    background-position-x: 95%;
    font-size: 16px;
    color: #2C2C2C;
    transition: all 0.3s ease;
}

form.custom_form .wpcf7-form-control-wrap select:focus {
    outline: none;
    border-color: #007BFF;
    background-color: #F2F8FF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

form.custom_form .your-name {
    display: block;
    position: relative;
}

form.custom_form .your-name input {
    padding-left: 53px;
}

form.custom_form .your-name .email_form_icon {
    position: absolute;
    top: 14px;
    left: 24px;
    z-index: 2;
    pointer-events: none;
}

form.custom_form .your-password {
    display: block;
    position: relative;
}

form.custom_form .your-password input {
    padding-right: 50px;
}

form.custom_form .your-password .password_icon {
    position: absolute;
    right: 20px;
    top: 12px;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

form.custom_form .your-password .password_icon:hover {
    opacity: 0.7;
}

form.custom_form .form_brns {
    display: flex;
    margin-bottom: 23px;
    justify-content: space-between;
    align-items: center;
}

form.custom_form .form_brns a,
form.custom_form .form_brns .link {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #007BFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

form.custom_form .form_brns a:hover,
form.custom_form .form_brns .link:hover {
    color: #0056b3;
    text-decoration: underline;
}

form.custom_form .btn_style {
    width: auto;
    display: table;
    margin: 0 auto;
}

form.custom_form .btn_style_wrap {
    text-align: center;
    margin-top: 30px;
}

form.custom_form h6.gradient_text {
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
    background: -webkit-gradient(linear, left top, right top, from(#007BFF), to(#00D1FF));
    background: -o-linear-gradient(left, #007BFF 0, #00D1FF 100%);
    background: linear-gradient(90deg, #007BFF 0, #00D1FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Контейнер формы авторизации */
.text_content {
    background: #FFF;
    border-radius: 16px;
}

.text_content form.custom_form {
    max-width: 500px;
    margin: 0 auto;
}

/* Улучшенные стили для иконок в форме */
form.custom_form .email_form_icon {
    width: 20px;
    height: auto;
}

form.custom_form .password_icon img {
    width: 20px;
    height: auto;
}

/* Responsive для формы */
@media (max-width: 768px) {
    .text_content {
        padding: 30px 20px;
    }

    form.custom_form label {
        font-size: 14px;
        margin-bottom: 10px;
    }

    form.custom_form .wpcf7-form-control-wrap input,
    form.custom_form .wpcf7-form-control-wrap textarea {
        font-size: 14px;
        padding: 10px 20px;
    }

    form.custom_form .your-name input {
        padding-left: 48px;
    }

    form.custom_form .form_brns {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    form.custom_form .form_brns a,
    form.custom_form .form_brns .link {
        font-size: 14px;
    }
}
@-webkit-keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@-webkit-keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@media only screen and (max-width: 1480px) {
    .contacts_list .item .text br {
        display: none;
    }
    .page_content_sidebar .ol2 {
        width: 400px;
    }
    .page_content_sidebar .section_content .text_content .ol_not_found {
        margin-top: 80px;
    }
    .double_calculator {
        display: block;
    }
    .double_calculator .double_calculator_item {
        width: 100%;
    }
    .edit_loan_fields .col_3 {
        width: 50%;
    }
    .edit_loan_fields .hidden_lg {
        display: none;
    }
    .edit_loan_fields .col_1_lg {
        width: 100%;
        margin-bottom: 25px;
    }
    .edit_loan_fields .col_1_lg .btn_style {
        margin-top: 0 !important;
    }
}
@media only screen and (max-width: 1200px) {
    .news .news_items .item .image_wrap {
        width: 420px;
    }
    .page_content_sidebar .section_content .calculator {
        width: 400px;
    }
    .page_content_sidebar .section_content .text_content .num_list {
        padding-left: 0;
    }
    .work_list .item {
        margin-bottom: 20px;
    }
    .work_list .item:last-child {
        margin-bottom: 0;
    }
    .work_list .item .num {
        width: 50px;
        height: 50px;
        font-size: 28px;
        margin-right: 20px;
    }
    .about .section_content .image_wrap {
        max-width: 42%;
        margin-right: 20px;
    }
    .garanty .section_content .garanty_items .item {
        padding: 20px 15px;
    }
    .garanty .section_content .garanty_items .item .icon {
        margin-right: 15px;
    }
    .penalties_baner {
        padding: 24px 180px;
    }
    .penalties_baner .penalties_baner_icon_1 {
        left: 20px;
        width: 150px;
    }
    .penalties_baner .penalties_baner_icon_2 {
        right: 20px;
        width: 150px;
    }
    .penalties_baner .item {
        padding: 0 8px;
    }
    .penalties_baner .item .text br {
        display: none;
    }
    .page_content_sidebar .section_content .text_content .num_list li {
        font-size: 20px;
    }
    .faq_items .item .question {
        padding: 15px 50px 15px 15px;
    }
    .faq_items .item .question:before {
        right: 15px;
    }
    .faq_items .item .answer {
        padding: 15px;
    }
    .contacts_list .item {
        width: calc(50% - 18px);
    }
    .page_content_sidebar .section_content .left_sidebar,
    .page_content_sidebar .section_content .right_sidebar {
        width: 360px;
        margin-right: 20px;
    }
    .page_content_sidebar .section_content .text_content .ol_not_found {
        margin-top: 30px;
        font-size: 28px;
        line-height: 36px;
    }
    .page_content_sidebar .section_content .text_content {
        width: calc(100% - 380px);
    }
    .page_content_sidebar .section_content .text_content .table_container {
        width: 100%;
        overflow-x: auto;
    }
    .page_content_sidebar .section_content .text_content table {
        width: 768px;
    }
    .page_content_sidebar .section_content .text_content table tr .total {
        font-size: 20px;
        padding: 12px 0;
        line-height: 30px;
    }
}
@media only screen and (max-width: 992px) {
    h1 {
        font-size: 40px;
        line-height: 48px;
    }
    h2 {
        font-size: 40px;
        line-height: 48px;
    }
    .work .work_items {
        margin: 0 -10px;
    }
    .work .work_items .item {
        width: calc(50% - 20px);
    }
    .cta_baner .section_content .title {
        width: 420px;
        font-size: 30px;
        margin: 0 auto 10px;
        text-align: center;
    }
    .cta_baner .section_content .cta_baner_icon_1,
    .cta_baner .section_content .cta_baner_icon_2 {
        width: 100px;
    }
    .news .news_items .item .image_wrap {
        width: 320px;
        margin-right: 25px;
    }
    .news .news_items .item:nth-child(even) .image_wrap {
        margin-right: initial;
        margin-left: 25px;
    }
    .subscribe_baner .section_content {
        padding: 20px 30px;
    }
    .subscribe_baner .section_content .title {
        font-size: 30px;
    }
    footer .section_content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .page_content_sidebar .section_content .text_content {
        width: calc(100% - 300px);
    }
    .page_content_sidebar .section_content .text_content .table_container {
        width: 100%;
        overflow-x: auto;
    }
    .page_content_sidebar .section_content .text_content table {
        width: 768px;
    }
    .page_content_sidebar .section_content .calculator {
        width: 320px;
        margin-right: 15px;
    }
    .work_list .item {
        margin-bottom: 15px;
    }
    .work_list .item:last-child {
        margin-bottom: 0;
    }
    .work_list .item .num {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 12px;
    }
    .about .section_content .image_wrap {
        max-width: 40%;
        margin-right: 12px;
    }
    .page_content_sidebar .section_content .text_content .num_list_title {
        font-size: 20px;
    }
    .page_content_sidebar .section_content .text_content .num_list li {
        font-size: 16px;
        padding: 20px 15px;
    }
    .page_content_sidebar .section_content .text_content .num_list li:before {
        margin-right: 10px;
    }
    .need .need_items .item {
        width: calc(50% - 20px);
    }
    .garanty .section_content {
        display: block;
    }
    .garanty .section_content h2 {
        width: 100%;
        text-align: left;
    }
    .garanty .section_content h2 br {
        display: none;
    }
    .return_items {
        display: block;
    }
    .return_items .item {
        width: 100%;
        margin-bottom: 15px;
    }
    .need_work .need_work_items .item {
        width: 50%;
    }
    .about_page .section_content .calculator {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .contacts_list .item {
        width: calc(100% - 18px);
    }
    .page_content_sidebar .section_content .text_content .custom_form {
        width: 100%;
    }
    .page_content_sidebar .section_content .left_sidebar,
    .page_content_sidebar .section_content .right_sidebar {
        width: 280px;
        margin-right: 15px;
    }
    .page_content_sidebar .ol2 {
        display: none;
    }
    .page_content_sidebar .section_content .text_content .ol_not_found {
        margin-top: 30px;
        font-size: 24px;
        line-height: 30px;
    }
    .edit_loan_fields .col_3 {
        width: 100%;
    }
    .order_loan_tabs {
        padding: 40px 0 25px;
    }
    .order_loan_tabs .order_loan_links .link .icon {
        width: 75px;
        height: 75px;
    }
    .order_loan_tabs .order_loan_links .link .title {
        font-size: 14px;
    }
    .order_loan_tabs .order_loan_links .link .dots {
        top: 30px;
    }
}
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .work {
        padding: 40px 0;
    }
    .work h2 {
        margin-bottom: 30px;
    }
    .work .work_items {
        margin: 0 -10px;
    }
    .work .work_items .item {
        width: calc(100% - 20px);
    }
    .cta_baner .section_content .title {
        width: 100%;
        font-size: 22px;
        line-height: 28px;
        margin: 0 auto 10px;
        text-align: center;
    }
    .cta_baner .section_content .cta_baner_icon_1,
    .cta_baner .section_content .cta_baner_icon_2 {
        width: 50px;
        margin-top: 0;
    }
    .cta_baner .section_content .cta_baner_icon_1 {
        left: 10px;
    }
    .cta_baner .section_content .cta_baner_icon_2 {
        right: 10px;
    }
    .news {
        padding: 120px 0 20px;
    }
    .news .news_items .item {
        display: block;
    }
    .news .news_items .item .image_wrap {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
    .news .news_items .item:nth-child(even) .image_wrap {
        margin-right: initial;
        margin-left: 0;
    }
    .media {
        padding: 40px 0;
    }
    .reviews {
        padding: 40px 0;
    }
    .reviews .reviews_items .item {
        padding: 25px 15px;
    }
    .reviews .reviews_items .slick-arrow {
        top: auto;
        bottom: -30px;
    }
    .reviews .reviews_items .slick-arrow.slick-prev {
        left: 50%;
        margin-left: -50px;
    }
    .reviews .reviews_items .slick-arrow.slick-next {
        right: 50%;
        margin-right: -50px;
    }
    .subscribe_baner .section_content {
        display: block;
        text-align: center;
        height: auto;
    }
    .subscribe_baner .section_content .title {
        margin-bottom: 20px;
    }
    footer .section_content .footer_column {
        width: 100%;
        text-align: center;
    }
    footer .section_content .footer_column .footer_logo {
        margin-bottom: 35px;
    }
    .page_content_sidebar h1 {
        margin-bottom: 25px;
    }
    .page_content_sidebar .section_content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .page_content_sidebar .section_content .calculator {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        margin-right: 0;
        margin-top: 30px;
    }
    .page_content_sidebar .section_content .left_sidebar,
    .page_content_sidebar .section_content .right_sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .page_content_sidebar .section_content .text_content {
        width: 100%;
    }
    .page_content_sidebar .section_content .text_content table tr th {
        padding: 10px 5px;
    }
    .page_content_sidebar .section_content .text_content table tr td {
        padding: 10px 5px;
    }
    .work_list {
        padding-top: 0;
    }
    .work_list .item {
        margin-bottom: 15px;
    }
    .work_list .item:last-child {
        margin-bottom: 0;
    }
    .work_list .item .num {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 12px;
    }
    .about .section_content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .about .section_content .image_wrap {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-top: 30px;
    }
    .garanty .section_content h2 b {
        font-size: 40px;
    }
    .garanty .section_content .garanty_items {
        margin: 0;
    }
    .garanty .section_content .garanty_items .item {
        width: 100% !important;
        margin: 0 0 15px;
    }
    .penalties_baner {
        display: block;
        padding: 20px 15px;
    }
    .penalties_baner .penalties_baner_icon_1,
    .penalties_baner .penalties_baner_icon_2 {
        display: none;
    }
    .penalties_baner .item {
        width: 100%;
        margin-bottom: 20px;
    }
    .penalties_baner .item:last-child {
        margin: 0;
    }
    .ways .ways_items .item {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .ways .ways_items .item .num {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .need .need_items .item {
        width: calc(100% - 20px);
    }
    .go_to_top {
        bottom: 10px;
        right: 10px;
    }
    .need_work .need_work_items .item {
        width: 100%;
    }
    .about_page .section_content .alignright {
        width: 100%;
        float: none;
    }
    .about_page .section_content .alignright img {
        width: 100%;
    }
    .remodal-close {
        right: 0;
        top: -45px;
    }
    .order_loan_tabs .order_loan_links {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .order_loan_tabs .order_loan_links .link {
        width: 50%;
        margin-bottom: 30px;
    }
    .order_loan_tabs .order_loan_links .link:nth-child(2) .dots {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    .form_title {
        padding: 20px;
        font-size: 22px;
    }
    body .remodal-wrapper .remodal .modal_content form {
        padding: 30px 15px;
    }
}
@media only screen and (max-width: 360px) {
    h1 {
        font-size: 24px;
        line-height: 32px;
    }
    h2 {
        font-size: 24px;
        line-height: 32px;
    }
}
@media only screen and (min-width: 768px) {
    .visible-xs {
        display: none !important;
    }
}
@media only screen and (min-width: 992px) {
    .visible-sm {
        display: none !important;
    }
}

.range_slider {
    margin-bottom:10px;
}
.box-line-credit-grey {
    display: inline-block;
    width: 100%;
    margin-top: 8px;
}
.box-line-credit-grey .title {
    font-size: 16px !important;
    color: #a5a5a5;
    visibility: visible !important;
    background-color: initial;
}
.pull-right {
    float: right !important;
}
.input-group {
    border-collapse: separate;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell;
}
.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}
.form-control {
    display: block;
    width: 100%;
    height: 38px;
    padding: 6px 12px;
    padding-right: 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;

    border: 1px solid rgb(236, 241, 248);
    border-radius: 4px 0px 0px 4px;
    background-color: rgb(255, 255, 255);
    border-right: none;
    box-shadow: none;
    font-size: 16px;
    color: rgb(14, 29, 51);
    padding-right: 5px;
    text-align: right;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin-top: -5px;
}
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group-addon {
    padding: 6px 12px;
    padding-left: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;

    border: 1px solid rgb(236, 241, 248);
    border-radius: 0px 4px 4px 0px;
    background-color: rgb(255, 255, 255);
    border-left: none;
    font-size: 16px;
    color: rgb(14, 29, 51);
    padding-left: 5px;
}
.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell;
}
.input-group-addon, .input-group-btn img {
    margin-right: 5px;
}
.ui-slider-horizontal .ui-slider-range {
    height: 15px;
    border-radius: 8px;
    background: -webkit-gradient(linear,left top,right top,from(#007BFF),to(#00D1FF));
    background: -o-linear-gradient(left,#007BFF 0,#00D1FF 100%);
    background: linear-gradient(90deg,#007BFF 0,#00D1FF 100%);
    left: -3px;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    height: 25px;
    width: 25px;
    border: none;
    top: -5px;
    -webkit-box-shadow: initial;
    box-shadow: initial;
    background: -webkit-gradient(linear,left top,right top,from(#007BFF),to(#00D1FF));
    background: -o-linear-gradient(left,#007BFF 0,#00D1FF 100%);
    background: linear-gradient(90deg,#007BFF 0,#00D1FF 100%);
    border-radius: 25px;
}
.ui-widget.ui-widget-content {
    top: 12px;
    height: 15px;
    border: none;
    border-radius: 8px;
    background: 0 0;
    background-color: #363636;
    margin-top: -1px;
}
.input-error {
    color: #c9302c;
    margin: -10px 0px 22px;
    display: block;
    width: 100%;
    font-size: 14px;
}
.accordion {
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    width: 100%;
}
.accordion-thumb {
    margin: 0;
    padding: .8rem 0;
    cursor: pointer;
    font-weight: normal;
    color: #1b365d;
    text-decoration: underline;
}
.accordion-thumb:hover, .accordion-thumb:active, .accordion-thumb:focus {
    text-decoration: none;
}
.accordion-thumb::before {
    content: '';
    display: inline-block;
    height: 7px;
    width: 7px;
    margin-right: 1rem;
    margin-left: .5rem;
    margin-top: -7px;
    vertical-align: middle;
    border-right: 1px solid;
    border-bottom: 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    -o-transition: transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}
.accordion-item.is-active .accordion-thumb::before {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.accordion-panel{
    padding: 15px;
    background: #fff;
}
.payments img{
    margin-right: 20px;
}
.payments a:last-child img{
    margin-right: 0px;
}
.about_page a{
    text-decoration: underline;
}
.about_page a:hover, .about_page a:focus{
    text-decoration: none;
}
.text-center{
    text-align: center;
}
.form-group {
    margin-bottom: 15px;
}
.pull-left{
    float: left;
}
@media (min-width: 992px){
    .col-md-6 {
        width: 50%;
    }
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    }
}
.btn-group-vertical > .btn-group::after, .btn-toolbar::after, .clearfix::after, .container-fluid::after, .container::after, .dl-horizontal dd::after, .form-horizontal .form-group::after, .modal-footer::after, .modal-header::after, .nav::after, .navbar-collapse::after, .navbar-header::after, .navbar::after, .pager::after, .panel-body::after, .row::after {
    clear: both;
}
.row::before {
    display: table;
    content: " ";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: -15px;
    margin-left: -15px;
}


.row::after {
    clear: both;
}
.row::after, .row::before {
    display: table;
    content: " ";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.row {
    margin-right: -15px;
    margin-left: -15px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
.margin-t-30{
    margin-top: 30px;
}
.box-cabinet-box {
    width: 100%;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    border: 1px solid #007BFF;
    padding: 25px 15px;
    margin-bottom: 30px;
}
.box-cabinet-title .title {
    font-size: 16px;
    color: rgb(40, 40, 40);
    font-weight: bold;
}
.box-line-credit a {
    font-size: 18px;
    text-decoration: underline;
}
.box-line-credit a:active, .box-line-credit a:hover, .box-line-credit a:focus {
    text-decoration: none;
}
.box-line-credit .price {
    font-size: 18px;
    color: #007BFF;
    font-weight: bold;
}
.box-line-credit {
    display: inline-block;
    width: 100%;
    margin-top: 7px;
}
.box-red{
    border: 1px solid #c9302c;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
}
.box-red > p:last-child{
    margin-bottom: 0px;
}

/* ============================================
   BUTTONS - BASE STYLES
   ============================================ */

/* Main Button Style */
.btn_style,
a.btn_style,
button.btn_style {
    display: inline-block;
    padding: 16px 48px;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFF;
    background: #007BFF !important;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn_style:hover,
a.btn_style:hover,
button.btn_style:hover {
    background: #3395FF;
    color: #FFF;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.btn_style:active,
a.btn_style:active,
button.btn_style:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.btn_style:focus,
a.btn_style:focus,
button.btn_style:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Button Style with Gradient */
.btn_style.gradient {
    background: linear-gradient(90deg, #007BFF 0%, #00D1FF 100%);
}

.btn_style.gradient:hover {
    background: linear-gradient(90deg, #0056b3 0%, #00A8CC 100%);
}

/* Button Sizes */
.btn_style.btn-small {
    padding: 12px 32px;
    font-size: 14px;
}

.btn_style.btn-large {
    padding: 20px 64px;
    font-size: 18px;
}

/* Button Full Width */
.btn_style.btn-block {
    display: block;
    width: 100%;
}

/* Secondary Button */
.btn_style.btn-secondary {
    background: #FFF;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.btn_style.btn-secondary:hover {
    background: #007BFF;
    color: #FFF;
}

/* Disabled Button */
.btn_style[disabled],
.btn_style:disabled {
    background: #E5E5E5;
    color: #6C757D;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

.btn_style[disabled]:hover,
.btn_style:disabled:hover {
    background: #E5E5E5;
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .btn_style,
    a.btn_style,
    button.btn_style {
        padding: 14px 40px;
        font-size: 14px;
    }

    .btn_style.btn-large {
        padding: 16px 48px;
        font-size: 16px;
    }
}

/* ============================================
   SIDEBAR MENU & BALANCE - ALTERNATIVE STYLES
   ============================================ */

/* Balance Block - Simplified Selectors */
.balans {
    margin-bottom: 23px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #FFF;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.balans .total_balans {
    padding: 24px;
    display: flex;
    background-color: #FFF;
    justify-content: space-between;
    align-items: center;
}

.balans .total_balans .title,
.balans .total_balans .value {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    color: #2C2C2C;
    flex-shrink: 0;
}

.balans .total_balans .title {
    color: #6C757D;
}

.balans .total_balans .value {
    color: #007BFF;
    font-size: 18px;
    font-weight: 700;
}

.balans .total_balans .dots {
    width: 100%;
    line-height: 18px;
    height: 18px;
    margin: 0 15px;
    border-bottom: 1px dashed #E5E5E5;
}

/* Status Row */
.balans .status_row {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F2F2F2;
}

.balans .status_row:last-child {
    border-bottom: none;
}

.balans .status_row .title {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6C757D;
    text-transform: uppercase;
}

.balans .status_row .value {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #007BFF;
}

/* Sidebar Menu */
.sidebar_menu {
    margin-bottom: 20px;
}

.sidebar_menu a {
    display: block;
    padding: 18px 24px;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
    text-align: center;
    margin-bottom: 16px;
    border-radius: 50px;
    background-color: #FFF;
    text-transform: none;
    text-decoration: none;
    color: #2C2C2C;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sidebar_menu a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    border-color: #007BFF;
    color: #007BFF;
    text-decoration: none;
}

.sidebar_menu a.active {
    background: #007BFF;
    border-color: #007BFF;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
    color: #FFF;
}

.sidebar_menu a.active:hover {
    background: #3395FF;
    border-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive for sidebar menu */
@media (max-width: 768px) {
    .sidebar_menu a {
        padding: 16px 20px;
        font-size: 14px;
        border-radius: 40px;
    }

    .balans .total_balans {
        padding: 20px;
    }

    .balans .status_row {
        padding: 16px 20px;
    }
}

/* ============================================
   FORMS AND INPUTS - UNIVERSAL STYLES
   ============================================ */

/* Base input styles */
input,
select,
textarea {
    border-radius: 8px;
    background: #FFF !important;
    border: 2px solid #E5E5E5 !important;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    color: #2C2C2C;
    padding: 12px 16px;
    min-height: 48px;
    width: 100%;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Отмена желтого фона автозаполнения браузера - ГЛОБАЛЬНО */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #FFF inset !important;
    -webkit-text-fill-color: #2C2C2C !important;
    transition: background-color 5000s ease-in-out 0s;
    border: 2px solid #E5E5E5 !important;
}

input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #F2F8FF inset !important;
    border: 2px solid #007BFF !important;
}

/* Focus states */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #007BFF !important;
    background: #F2F8FF !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Placeholder styles */
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder {
    color: #6C757D;
    opacity: 0.8;
}

/* Form control class */
.form-control {
    border-radius: 8px;
    background: #FFF;
    border: 2px solid #E5E5E5 !important;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    color: #2C2C2C;
    padding: 12px 16px;
    min-height: 48px;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #007BFF !important;
    background: #F2F8FF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Select styling */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236C757D' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Textarea */
textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

/* Disabled state */
input:disabled,
select:disabled,
textarea:disabled,
.form-control:disabled {
    background: #F9F9F9;
    border-color: #E5E5E5 !important;
    color: #6C757D;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Error state */
input.error,
select.error,
textarea.error,
.form-control.error {
    border-color: #c9302c !important;
}

input.error:focus,
select.error:focus,
textarea.error:focus,
.form-control.error:focus {
    box-shadow: 0 0 0 3px rgba(201, 48, 44, 0.1);
}

/* Success state */
input.success,
select.success,
textarea.success,
.form-control.success {
    border-color: #007BFF !important;
}

input.success:focus,
select.success:focus,
textarea.success:focus,
.form-control.success:focus {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* ============================================
   ERROR PAGES STYLES
   ============================================ */

/* Error Page Header */
.header-page {
    padding: 100px 20px 80px;
    background: #F9F9F9;
    min-height: calc(100vh - 160px);
}

.header-page .container {
    max-width: 1396px;
    margin: 0 auto;
}

.header-page h1 {
    font-family: Poppins, sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.header-page h1.text-center {
    text-align: center;
}

/* Error Box Text */
.header-page .box_text {
    max-width: 800px;
    margin: 0 auto;
    background: #FFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header-page .box_text.text-center {
    text-align: center;
}

.header-page .box_text h3 {
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #007BFF;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.header-page .box_text p,
.header-page .box_text > text,
.header-page .box_text > div {
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #6C757D;
    line-height: 1.6;
    margin-bottom: 20px;
}

.header-page .box_text a:not(.btn_style) {
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #007BFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-page .box_text a:not(.btn_style):hover {
    color: #0056b3;
    text-decoration: underline;
}

/* España: кнопки на Load-страницах (passport/human/ecp) — центрируем */
.page_content_sidebar .modal-footer {
    text-align: center;
    border: none;
    padding: 20px 0 0;
    display: block;
}

/* España: кнопка «Документы» в истории микрокредитов (Trello #243) */
.btn-doc-link {
    display: inline-block;
    padding: 8px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #007BFF;
    background: #FFF;
    border: 1.5px solid #007BFF;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-doc-link:hover {
    background: #007BFF;
    color: #FFF;
    text-decoration: none;
}

/* Error Icon - Optional */
.error-icon {
    text-align: center;
    margin-bottom: 30px;
}

.error-icon svg,
.error-icon img {
    width: 120px;
    height: 120px;
    opacity: 0.8;
}

/* Error 404 Specific */
.error-404 .header-page h1, .error-500 .header-page h1, .error-403 .header-page h1, .error-page .header-page h1 {
    font-size: 120px;
    color: #007BFF;
    margin-bottom: 20px;
}

.error-404 .header-page h2, .error-500 .header-page h2, .error-403 .header-page h2, .error-page .header-page h2 {
    font-family: Poppins, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 20px;
}

/* Error 500 Specific */
.error-500 .header-page h1 {
    color: #c9302c;
}

.error-500 .header-page .box_text h3 {
    color: #c9302c;
}
/* Error 403 Specific */
.error-403 .header-page h1 {
    color: #FF6B35;
}

.error-403 .header-page .box_text h3 {
    color: #FF6B35;
}

/* Back to Home Button */
.header-page .btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 48px;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFF;
    background: #007BFF;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.header-page .btn-back-home:hover {
    background: #3395FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    color: #FFF;
}

/* Responsive Error Pages */
@media (max-width: 768px) {
    .header-page {
        padding: 60px 20px 40px;
    }

    .header-page h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .error-404 .header-page h1 {
        font-size: 80px;
    }

    .error-404 .header-page h2 {
        font-size: 24px;
    }

    .header-page .box_text {
        padding: 30px 20px;
    }

    .header-page .box_text h3 {
        font-size: 20px;
    }

    .header-page .box_text p,
    .header-page .box_text a {
        font-size: 16px;
    }

    .error-icon svg,
    .error-icon img {
        width: 80px;
        height: 80px;
    }
}

/* ===================================
   Header / Navigation Styles
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.header .logo {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.header .logo:hover {
    opacity: 0.8;
}

/* Navigation Menu */
.header nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #2C2C2C;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #007BFF;
    text-decoration: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Create Account Link */
.create-account {
    color: #2C2C2C;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.create-account:hover {
    color: #007BFF;
    text-decoration: none;
}

/* Sign In Button */
.sign-in-btn {
    background: #007BFF;
    color: #FFF;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.sign-in-btn:hover {
    background: #3395FF;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
    text-decoration: none;
    color: #FFF;
    transform: translateY(-2px);
}

/* Account Link (User Icon) */
.account_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #F0F7FF;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.account_link:hover {
    background: #007BFF;
    transform: scale(1.05);
}

.account_link img {
    width: 22px;
    height: 22px;
    display: block;
}

.account_link:hover img {
    filter: brightness(0) invert(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2C2C2C;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #007BFF;
}

/* Mobile Menu Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 992px) {
    .header-container {
        gap: 16px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .sign-in-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .create-account {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* España: правая sidebar-панель по ширине контента. Не на весь экран. */
    .header nav {
        position: fixed;
        top: 72px;
        left: auto;
        right: 0;
        width: auto;
        min-width: 220px;
        max-width: 100vw;
        background: #FFF;
        box-shadow: -4px 8px 16px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        border-left: 1px solid #E5E5E5;
    }

    .header nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-menu li {
        border-bottom: 1px solid #E5E5E5;
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    .nav-menu .nav-link {
        display: block;
        padding: 14px 24px;
        color: #007BFF;
        font-weight: 600;
    }
    .nav-menu .nav-link:hover {
        color: #0056b3;
        text-decoration: underline;
    }

    .header-actions {
        gap: 12px;
    }

    .create-account {
        display: none;
    }

    .sign-in-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .account_link {
        width: 40px;
        height: 40px;
    }

    .account_link img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 16px;
    }

    .header .logo {
        height: 32px;
    }

    .sign-in-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}


@media (max-width: 400px) {
    .hero-section {
        padding: 30px 10px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 30px;
    }

    .hero-image {
        width: 280px;
        height: 200px;
    }

    .blue-shape {
        width: 120px;
        height: 120px;
    }

    .calculator {
        padding: 24px;
    }

    .calculator-label {
        font-size: 16px;
        line-height: 22px;
    }
    .section-title, .section-title, h2 {
        font-size: 26px;
        line-height: 32px;
    }
    .step-title {
        font-size: 21px;
        line-height: 27px;
    }
    .step-card {
        padding: 20px;
    }
    .contact-text, .footer-link, .read-more-btn {
        font-size: 15px;
    }
}

/* ===== Reviews section (главная) ===== */
.reviews-section {
    background: #E8F4FF;
    padding: 60px 0;
}
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.reviews-section .section-title {
    text-align: center;
    margin-bottom: 24px;
    color: #2C2C2C;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-h2);
    font-weight: 700;
}
.reviews-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}
.reviews-rating-score {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-xl);
    font-weight: 700;
    color: #2C2C2C;
}
.reviews-rating-stars {
    color: #FFB72C;
    font-size: var(--fz-lg);
    letter-spacing: 2px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.review-card-name {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-md);
    font-weight: 700;
    color: #2C2C2C;
}
.review-card-quote {
    color: #007BFF;
    font-size: 32px;
    line-height: 1;
    font-family: Georgia, serif;
}
.review-card-date {
    font-size: var(--fz-sm);
    color: #939EA8;
}
.review-card-text {
    margin: 6px 0 0;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
    color: #2C2C2C;
    line-height: 1.5;
}
.reviews-action {
    text-align: center;
}
.reviews-more-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(90deg, #007BFF 0%, #00D1FF 100%);
    color: #fff !important;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-md);
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: transform .2s, box-shadow .2s;
}
.reviews-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.35);
}

/* =========================================================================
   Sobre Nosotros / About page
   ========================================================================= */

.about-hero {
    background: #007BFF;
    color: #fff;
    padding: 80px 0;
}
.about-hero-container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 72px;
}
.about-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1076px;
    margin: 0 auto;
}
.about-hero-quote {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-size: 96px;
    line-height: 0.6;
    color: #009ABC;
    flex-shrink: 0;
}
.about-hero-title {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 600;
    font-size: var(--fz-h2);
    line-height: 1.3;
    margin: 0;
    color: #fff;
}

.about-breadcrumbs-section {
    padding: 24px 0;
    background: #FAFAFA;
}
.about-breadcrumbs-container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 72px;
}
.about-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
}
.about-breadcrumb-link {
    color: #939EA8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.about-breadcrumb-link:hover {
    color: #007BFF;
}
.about-breadcrumb-sep {
    color: #939EA8;
}
.about-breadcrumb-current {
    color: #007BFF;
    font-weight: 600;
}

.about-lendigm {
    padding: 80px 0;
    background: #FAFAFA;
}
.about-lendigm-container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 72px;
}
.about-lendigm-title {
    text-align: left;
    margin-bottom: 40px;
}
.about-lendigm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.about-lendigm-text {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-md);
    line-height: 1.5;
    color: #6C757D;
}
.about-lendigm-text p {
    margin: 0 0 16px;
}
.about-lendigm-text p:last-child {
    margin-bottom: 0;
}
.about-lendigm-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    aspect-ratio: 636 / 415;
}

.about-stats {
    background: #00B2D9;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}
.about-stats-container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.about-stats-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.about-stats-map {
    display: flex;
    justify-content: flex-end;
}
.about-stats-map img {
    max-width: 100%;
    height: auto;
    display: block;
}
.about-stat {
    text-align: left;
}
.about-stat-number {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: var(--fz-h1);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 8px;
}
.about-stat-label {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 500;
    font-size: var(--fz-h3);
    line-height: 1.29;
    color: #EEEEEE;
}

.about-reasons {
    background: #FAFAFA;
}

.about-opinions {
    background: #E2EFFF;
    padding: 80px 0;
}
.about-opinions-container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 72px;
    text-align: center;
}
.about-opinions .section-title {
    margin-bottom: 40px;
}
.about-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
}
.about-rating-avatar img {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.about-rating-info {
    text-align: left;
}
.about-rating-score {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 600;
    font-size: var(--fz-h2);
    color: #2C2C2C;
    line-height: 1.2;
}
.about-rating-stars {
    color: #FFC437;
    font-size: 24px;
    letter-spacing: 2px;
    margin-top: 4px;
}
.about-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}
.about-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.about-testimonial-name {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 500;
    font-size: var(--fz-h3);
    color: #2C2C2C;
    margin: 0 0 4px;
}
.about-testimonial-date {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
    color: #6C757D;
}
.about-testimonial-quote {
    color: #007BFF;
    font-size: 40px;
    line-height: 0.6;
    font-family: 'Poppins', 'Manrope', sans-serif;
}
.about-testimonial-text {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
    color: #6C757D;
    line-height: 1.5;
    margin: 0;
}
.about-opinions-action {
    margin-top: 16px;
}
.about-opinions-btn {
    display: inline-block;
    background: #007BFF;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: var(--fz-base);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.about-opinions-btn:hover {
    background: #3395FF;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .about-hero-container,
    .about-breadcrumbs-container,
    .about-lendigm-container,
    .about-stats-container,
    .about-opinions-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .about-lendigm-grid {
        grid-template-columns: 1fr;
    }
    .about-testimonials {
        grid-template-columns: 1fr;
    }
    .about-stats-container {
        grid-template-columns: 1fr;
    }
    .about-stats-map {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .about-hero,
    .about-lendigm,
    .about-stats,
    .about-opinions {
        padding: 48px 0;
    }
    .about-hero-inner {
        gap: 20px;
    }
    .about-hero-quote {
        font-size: 64px;
    }
    .about-rating {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .about-rating-info {
        text-align: center;
    }
    .about-testimonial-card {
        padding: 24px;
    }
}

/* =========================================================================
   Contactos page
   ========================================================================= */

.contacts-breadcrumbs-section {
    padding: 24px 0;
    background: #FAFAFA;
}
.contacts-breadcrumbs-container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 72px;
}

.contacts-page {
    padding: 40px 0 80px;
    background: #FAFAFA;
}
.contacts-page-container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 72px;
}
.contacts-page-title {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 600;
    font-size: var(--fz-h2);
    color: #2C2C2C;
    margin: 0 0 40px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 40px;
}

.contacts-form-card,
.contacts-info-card {
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contacts-form-card {
    background: #E2EFFF;
    color: #2C2C2C;
}
.contacts-info-card {
    background: #007BFF;
    color: #fff;
}

.contacts-card-title {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 500;
    font-size: var(--fz-h3);
    margin: 0;
    color: #2C2C2C;
}
.contacts-card-title-light {
    color: #fff;
}
.contacts-card-text {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
    line-height: 1.5;
    color: #6C757D;
    margin: 0 0 8px;
}
.contacts-card-text-light {
    color: rgba(255, 255, 255, 0.85);
}

.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contacts-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.contacts-form-row-2 {
    grid-template-columns: 1fr 1fr;
}
.contacts-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contacts-label {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-sm);
    font-weight: 600;
    color: #2C2C2C;
}
.contacts-req {
    color: #E11D48;
}
.contacts-input {
    width: 100%;
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
    color: #2C2C2C;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
}
.contacts-input::placeholder {
    color: #939EA8;
}
.contacts-input:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}
.contacts-textarea {
    min-height: 140px;
    resize: vertical;
    font-family: 'Manrope', sans-serif;
}
.contacts-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.contacts-consent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-sm);
    color: #6C757D;
    line-height: 1.4;
    cursor: pointer;
    flex: 1 1 auto;
}
.contacts-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin: 0;
    accent-color: #007BFF;
    cursor: pointer;
}
.contacts-consent span {
    flex: 1;
}
.contacts-consent a {
    color: #007BFF;
    text-decoration: underline;
}
.contacts-submit {
    background: #007BFF;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: var(--fz-base);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.contacts-submit:hover {
    background: #3395FF;
    transform: translateY(-2px);
}

.contacts-info-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contacts-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contacts-info-icon {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacts-info-icon img {
    max-width: 60px;
    max-height: 60px;
    display: block;
}
.contacts-info-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: var(--fz-md);
    color: #fff;
    margin-bottom: 4px;
}
.contacts-info-value {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
    color: #E2EFFF;
    line-height: 1.5;
}
.contacts-info-value a {
    color: inherit;
    text-decoration: none;
}
.contacts-info-value a:hover {
    text-decoration: underline;
}

.contacts-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}
.contacts-map img,
.contacts-map iframe {
    width: 100%;
    display: block;
    border: 0;
}
.contacts-map iframe {
    height: 450px;
}
@media (max-width: 640px) {
    .contacts-map iframe {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .contacts-breadcrumbs-container,
    .contacts-page-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .contacts-form-card,
    .contacts-info-card {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .contacts-page {
        padding: 24px 0 48px;
    }
    .contacts-form-row-2 {
        grid-template-columns: 1fr;
    }
    .contacts-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .contacts-submit {
        width: 100%;
    }
    .contacts-form-card,
    .contacts-info-card {
        padding: 24px;
    }
}

/* =========================================================================
   Unified buttons (Figma UI Kit — Button component 203:756)
   ========================================================================= */

/* Primary — все "синие" кнопки сайта. Один источник истины. */
.btn-primary,
.sign-in-btn,
.request-loan-btn,
.read-more-btn,
.auth-submit-btn,
.reviews-more-btn,
.contacts-submit,
.about-opinions-btn,
.posts-button-container .read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #007BFF;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: none;
    transform: none;
    transition: background-color 0.2s ease;
}

.btn-primary:hover,
.sign-in-btn:hover,
.request-loan-btn:hover,
.read-more-btn:hover,
.auth-submit-btn:hover,
.reviews-more-btn:hover,
.contacts-submit:hover,
.about-opinions-btn:hover,
.posts-button-container .read-more-btn:hover {
    background: #3395FF;
    color: #FFFFFF;
    box-shadow: none;
    transform: none;
    text-decoration: none;
}

.btn-primary:disabled,
.btn-primary[disabled] {
    background: #007BFF;
    opacity: 0.5;
    cursor: not-allowed;
}

/* =========================================================================
   Loan summary card (на шагах регистрации /user/borrower/step/*)
   ========================================================================= */

.page_content_sidebar .section_content.registration-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}
.page_content_sidebar .section_content.registration-layout > .text_content {
    min-width: 0;
}

.loan-summary-card {
    background: #E2EFFF;
    border-radius: 16px;
    padding: 24px;
    font-family: 'Manrope', sans-serif;
    color: #2C2C2C;
    position: sticky;
    top: 100px;
}
.loan-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.loan-summary-title {
    font-family: 'Poppins', 'Manrope', sans-serif;
    font-weight: 600;
    font-size: var(--fz-md);
    color: #2C2C2C;
    margin: 0;
    text-transform: none;
}
.loan-summary-edit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.loan-summary-edit:hover {
    background: #3395FF;
    color: #fff;
}
.loan-summary-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.loan-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(44, 44, 44, 0.15);
    gap: 12px;
}
.loan-summary-row:last-child {
    border-bottom: none;
}
.loan-summary-row dt {
    font-size: var(--fz-sm);
    color: #6C757D;
    margin: 0;
}
.loan-summary-row dd {
    font-size: var(--fz-base);
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    text-align: right;
}

@media (max-width: 992px) {
    .page_content_sidebar .section_content.registration-layout {
        grid-template-columns: 1fr;
    }
    .loan-summary-card {
        position: static;
        order: -1; /* карточка сверху над формой на мобилках */
    }
}

/* Secondary (outline) — white bg, 2px blue border */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 30px; /* 16-2, 32-2 — чтобы рамка не увеличивала габариты */
    background: #FFFFFF;
    color: #007BFF;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fz-base);
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    border: 2px solid #007BFF;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn-secondary:hover {
    background: #E2EFFF;
    color: #007BFF;
    text-decoration: none;
}

/* =========================================================================
   Calculator modal
   ========================================================================= */
.calc-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.calc-modal.is-open { display: flex; }
.calc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 60, 0.55);
}
.calc-modal-dialog {
    position: relative;
    background: #F2F8FF;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}
.calc-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #2C2C2C;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    z-index: 1;
    transition: background 0.2s ease;
}
.calc-modal-close:hover { background: rgba(0, 0, 0, 0.06); }
.calc-modal-body .calculator { box-shadow: none; }
.loan-summary-edit[data-calc-modal-open] { border: none; cursor: pointer; }

/* ==================== Prolongation options ==================== */
/* ==================== Current loan action buttons ==================== */
.current-loan-actions { display: flex; flex-direction: column; gap: 10px; max-width: 400px; margin: 0 auto; }
.current-loan-actions .btn-action-pay { background: #3395FF; color: #fff; border: none; font-weight: 700; font-size: 16px; padding: 14px; border-radius: 6px; text-align: center; text-transform: uppercase; }
.current-loan-actions .btn-action-pay:hover { background: #1a7de6; }
.current-loan-actions .btn-action-prolongate { background: #fff; color: #3395FF; border: 2px solid #3395FF; font-weight: 700; font-size: 16px; padding: 12px; border-radius: 6px; text-align: center; text-transform: uppercase; }
.current-loan-actions .btn-action-prolongate:hover { background: #EBF5FF; }

/* ==================== Prolongation options ==================== */
.prolongation-option { cursor: pointer; border-left: 3px solid transparent; transition: background 0.15s ease; }
.prolongation-option.selected { background: #EBF5FF; border-left: 3px solid #3395FF; }
.prolongation-option:hover { background: #F5FAFF; }
.prolongation-option td { vertical-align: middle; padding: 12px 8px; }

.section_content .text_content h4 {
    margin-top: 0px;
}
