/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #EFEFEF;
    color: #000000;
}

/* Screen reader only - для доступности */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Page Container */
.page {
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.header__container {
    width: 1400px;
    max-width: 100%;
    height: 104px;
    background-color: #FFFFFF;
    border-radius: 35px;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.header__nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.header__logo {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__image {
    width: 216.72px;
    height: 23.13px;
    object-fit: contain;
}

.logo__image--footer {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    position: relative;
}

.nav__link {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
}

.nav__link--button {
    border: 2px solid #000000;
    border-radius: 33px;
    padding: 10px 16px 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav__link--button:hover {
    background-color: #85F74F;
    color: #000000;
}

.nav__icon {
    width: 24px;
    height: 24px;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.burger__line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger--active .burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger--active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger--active .burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav--mobile-open {
    display: flex !important;
}

/* Main Content */
.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.main__sections {
    width: 1400px;
    max-width: 100%;
    display: grid;
    grid-template-columns: 680px 680px;
    grid-template-rows: 529px 345px;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

/* Hero Section */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero__container {
    width: 1400px;
    max-width: 100%;
}

.hero__content {
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 70px 60px;
    display: flex;
    gap: 18px;
    position: relative;
    backdrop-filter: blur(4px);
    min-height: 563px;
}

.hero__image {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 474.41px;
    height: 423px;
    object-fit: contain;
    z-index: 1;
}

.hero__form {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    max-width: 500px;
    z-index: 2;
    position: relative;
}

.form__header {
    display: flex;
    flex-direction: column;
    gap: 39px;
}

.form__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 58px;
    line-height: 1.18;
    text-transform: uppercase;
    color: #000000;
}

.form__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
}

.form__fields {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-field__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.form-field__input-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 150px;
    justify-content: flex-end;
}

.form-field__input {
    width: 120px;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
    text-align: center;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.form-field__input:focus {
    outline: none;
}

.form-field__currency,
.form-field__days {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
}

.form-field__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #686868;
}

.form-field__value {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
}

.form-field__slider {
    width: 100%;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.form-field__slider-input {
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 2;
    outline: none;
}

.form-field__slider-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 12px;
    background: #E5E5E5;
    border-radius: 6px;
    position: relative;
}

.form-field__slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #85F74F;
    border: 2px solid #000000;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    box-shadow: 0 0 0 2px #FFFFFF;
    margin-top: -6px;
}

.form-field__slider-input::-moz-range-track {
    width: 100%;
    height: 12px;
    background: #E5E5E5;
    border-radius: 6px;
    border: none;
}

.form-field__slider-input::-moz-range-progress {
    height: 12px;
    background: #85F74F;
    border-radius: 6px;
}

.form-field__slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #85F74F;
    border: 2px solid #000000;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 2px #FFFFFF;
    box-sizing: border-box;
}

.form-field__slider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: var(--slider-progress, 0%);
    background: #85F74F;
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
    transition: width 0.1s ease;
}

.form-field__slider-input:focus {
    outline: none;
}

.form-field__slider-input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px rgba(133, 247, 79, 0.3);
}

.form-field__slider-input:focus::-moz-range-thumb {
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px rgba(133, 247, 79, 0.3);
}

.form__button {
    width: 100%;
    padding: 24px 16px;
    background-color: #85F74F;
    border: none;
    border-radius: 44px;
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.form__button:hover {
    background-color: #000000;
    color: #85F74F;
}

/* Button Base */
.button {
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    display: inline-block;
}

.button--green {
    background-color: #85F74F;
}

/* How It Works Section */
.how-it-works {
    width: 680px;
    max-width: 100%;
    height: 529px;
    background-color: #000000;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 0 0 680px;
    box-sizing: border-box;
}

.how-it-works__header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.how-it-works__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.4;
    color: #000000;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

.how-it-works__steps {
    display: flex;
    gap: 20px;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.how-it-works__steps-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.how-it-works__step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: rgba(217, 217, 217, 0.22);
    border-radius: 22px;
}

.step__icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step__icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step__text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.18;
    color: #FFFFFF;
}

/* Payment Methods Section */
.payment-methods {
    width: 680px;
    max-width: 100%;
    height: 529px;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 0 0 680px;
    box-sizing: border-box;
}

.payment-methods__header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.payment-methods__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.4;
    color: #000000;
    background-color: #85F74F;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

.payment-methods__cards {
    width: 100%;
    height: 304px;
    display: flex;
    align-items: stretch;
}

.payment-methods__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Loan Criteria Section */
.loan-criteria {
    width: 680px;
    max-width: 100%;
    height: 345px;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 0 0 680px;
    box-sizing: border-box;
    overflow: hidden;
}

.loan-criteria__header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.loan-criteria__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.4;
    color: #000000;
    background-color: #85F74F;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

.loan-criteria__items {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
    min-height: 0;
    align-items: stretch;
    height: 100%;
}

.loan-criteria__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 3px solid #000000;
    border-radius: 22px;
    flex: 1;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
    height: 100%;
}

.criteria-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.criteria-item__icon--passport {
    width: 80.27px;
    height: 80.27px;
}

.criteria-item__icon--age {
    width: 75.39px;
    height: 72px;
}

.criteria-item__icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.criteria-item__text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.18;
    color: #000000;
    flex-shrink: 1;
    min-width: 0;
    word-wrap: break-word;
}

/* Reviews Section */
.reviews {
    width: 680px;
    max-width: 100%;
    height: 345px;
    background-color: #000000;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 0 0 680px;
    box-sizing: border-box;
    overflow: hidden;
}

.reviews__header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.reviews__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.4;
    color: #000000;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

.reviews__content {
    display: flex;
    flex-direction: column;
    gap: 29px;
    width: 100%;
    flex: 1;
    overflow: visible;
}

.reviews__item-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    position: relative;
}

.reviews__item {
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background-color: rgba(217, 217, 217, 0.22);
    border: 1px solid #000000;
    border-radius: 20px;
    flex: 1;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.reviews__item.review--active {
    display: flex;
}

.review__header {
    display: flex;
    gap: 18px;
    align-items: center;
}

.review__author {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.03;
    color: #FFFFFF;
}

.review__stars {
    width: 60px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

.review__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFFFF;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review__chevron {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.review__chevron:hover {
    transform: scale(1.1);
}

.review__chevron:active {
    transform: scale(0.95);
}

.review__chevron img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* FAQ Section */
.faq {
    width: 1400px;
    max-width: 100%;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.faq__header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.faq__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.4;
    color: #000000;
    background-color: #85F74F;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__item {
    width: 100%;
}

.faq-item {
    width: 100%;
    cursor: pointer;
}

.faq-item__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 40px;
    border: 3px solid #000000;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.faq-item__header:hover {
    background-color: #85F74F;
    border-color: #85F74F;
    transform: translateY(-2px);
}

.faq-item__question {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.03;
    color: #000000;
    flex: 1;
}

.faq-item__chevron {
    width: 25.91px;
    height: 14.91px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item--active .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 40px;
}

.faq-item--active .faq-item__content {
    max-height: 500px;
    padding: 20px 40px;
}

.faq-item__answer {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
}

/* Links Section */
.links-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.links-section__container {
    width: 1400px;
    max-width: 100%;
    padding: 60px;
}

.links-section__items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.links-section__link {
    padding: 20px 30px;
    border: 3px solid #000000;
    border-radius: 30px;
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.links-section__link:hover {
    background-color: #85F74F;
    border-color: #85F74F;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.footer__container {
    width: 1400px;
    max-width: 100%;
    background-color: #000000;
    border-radius: 100px 100px 0 0;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer__logo {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 40px;
}


.logo__text--footer {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.24;
    letter-spacing: 0.06em;
    color: #FFFFFF;
}

.footer__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer__paragraph {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFFFF;
    width: 100%;
    margin: 0 0 1em 0;
}

.footer__paragraph:last-of-type {
    margin-bottom: 0;
}

.footer__links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    width: 100%;
}

.footer__link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.03;
    color: #FFFFFF;
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__copyright {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.66;
    color: #FFFFFF;
    opacity: 0.5;
    text-align: center;
}

/* Policy Pages */
.policy-page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.policy-page__container {
    width: 1400px;
    max-width: 100%;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 60px;
}

.policy-page__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 40px;
}

.policy-page__content {
    width: 100%;
}

.policy-page__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.policy-page__subtitle {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Application Page */
.application-page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.application-page__container {
    width: 1400px;
    max-width: 100%;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
}

.application-page__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 40px 20px 40px;
    width: 100%;
    background-color: #F5F5F5;
}

.application-page__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.4;
    color: #000000;
    background-color: #85F74F;
    border-radius: 10px;
    padding: 5px;
    display: inline-block;
    margin: 0;
}

.application-page__form-wrapper {
    background-color: #F5F5F5;
    padding: 40px;
    border-radius: 0 0 40px 40px;
}

.application-form {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.application-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.application-form__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.application-form__field:empty {
    display: none;
}

.application-form__label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}

.application-form__input {
    padding: 20px;
    border: 3px solid #000000;
    border-radius: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    background-color: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
}

.application-form__input[readonly] {
    cursor: pointer;
    background-color: #FFFFFF;
}

.application-form__input[readonly]:hover {
    background-color: #F5F5F5;
}

.application-form__input:focus {
    outline: none;
    border-color: #85F74F;
}

.application-form__input:invalid:not(:placeholder-shown) {
    border-color: #FF0000;
    background-color: #FFE5E5;
}

.application-form__input.error {
    border-color: #FF0000;
    background-color: #FFE5E5;
}

.application-form__checkbox-input.error {
    border-color: #FF0000;
}

/* Error message styles */
.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.server-error-message {
    color: #e74c3c;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
    padding: 12px;
    background-color: #FFE5E5;
    border-radius: 8px;
}

.application-form__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.application-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.application-form__checkbox-input {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 3px solid #000000;
    border-radius: 50%;
    background-color: #FFFFFF;
    position: relative;
    transition: all 0.3s ease;
}

.application-form__checkbox-input:checked {
    background-color: #85F74F;
    border-color: #85F74F;
}

.application-form__checkbox-input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
}

.application-form__checkbox-input.error {
    border-color: #FF0000;
}

.application-form__checkbox-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    cursor: pointer;
}

.application-form__link {
    color: #85F74F;
    text-decoration: underline;
}

.application-form__link:hover {
    color: #000000;
}

.application-form__security-note {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.application-form__security-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.application-form__button {
    width: 100%;
    padding: 24px 16px;
    background-color: #85F74F;
    border: none;
    border-radius: 44px;
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.application-form__button:hover {
    background-color: #000000;
    color: #85F74F;
}

/* Offers Page */
.offers-page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 60px 0;
    background-color: transparent;
    margin-top: -68px;
}

.offers-page__container {
    width: 1400px;
    max-width: 100%;
    background-color: transparent;
    border-radius: 40px;
    padding: 32px 60px 60px 60px;
}

.offers-page__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.4;
    color: #000000;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: center;
}

.offers-page__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 32px;
    text-align: center;
}

.offers-page__items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.offer-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-card__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
    width: 100%;
}

.offer-card__logo-image {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.offer-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.offer-card__logo-part {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
}

.offer-card__logo-part--green {
    color: #2D5016;
}

.offer-card__logo-part:not(.offer-card__logo-part--green) {
    color: #686868;
}

.offer-card__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-card__detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.offer-card__icon svg {
    width: 24px;
    height: 24px;
}

.offer-card__detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.offer-card__detail-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #686868;
}

.offer-card__detail-value {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}

.offer-card__approval {
    background-color: transparent;
    border: 2px solid #E8F5E0;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
    text-align: center;
}

.offer-card__button {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #85F74F;
    border: none;
    border-radius: 20px;
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.offer-card__button:hover {
    background-color: #000000;
    color: #85F74F;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .page {
        width: 100%;
        padding: 20px;
    }

    .header__container,
    .hero__container,
    .how-it-works__container,
    .payment-methods__container,
    .loan-criteria__container,
    .reviews__container,
    .faq__container,
    .footer__container {
        width: 100%;
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .header__container {
        flex-direction: row;
        height: auto;
        gap: 12px;
        padding: 12px 20px;
        border-radius: 20px;
        position: relative;
    }

    .header__logo {
        width: auto;
        justify-content: flex-start;
    }

    .logo__image {
        width: 150px;
        height: auto;
        max-height: 20px;
    }

    .burger {
        display: flex;
    }

    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        z-index: 100;
        padding: 0 20px 20px;
    }

    .header__nav.nav--mobile-open {
        display: flex;
    }

    .nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        background-color: #FFFFFF;
        border-radius: 0 0 20px 20px;
        padding: 8px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav__link {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .nav__link:hover {
        background-color: #f5f5f5;
    }

    .nav__link--button {
        padding: 12px 20px;
        border-radius: 0;
        border: none;
        border-top: 1px solid #eee;
        font-size: 14px;
        justify-content: center;
    }

    .nav__link--button:hover {
        border-radius: 0;
    }

    .nav__icon {
        width: 16px;
        height: 16px;
    }

    .hero {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .hero__container {
        padding: 0 10px;
    }
    
    .hero__content {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 12px 12px 12px;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        min-height: auto;
        position: relative;
        overflow: visible;
    }
    
    .hero__container {
        width: 100%;
        max-width: 100%;
    }

    .hero__image {
        position: absolute;
        width: 70px;
        height: 62px;
        right: 12px;
        top: 50px;
        z-index: 0;
        display: block;
    }
    
    .form__header {
        position: relative;
        z-index: 1;
    }
    
    .hero__form {
        order: 1;
        margin-bottom: 0;
        width: 100%;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .form__header {
        margin-bottom: 0;
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .form__title {
        font-size: 20px;
        font-weight: 900;
        line-height: 118%;
        text-transform: uppercase;
        margin-bottom: 0;
        width: 100%;
        height: auto;
        color: #000000;
    }
    
    .form__subtitle {
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
        margin-bottom: 0;
        width: 100%;
        height: auto;
        color: #000000;
    }
    
    .form__fields {
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .form-field {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .form-field__header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        width: 100%;
        height: auto;
    }
    
    .form-field__label {
        font-size: 10px;
        font-weight: 400;
        line-height: 140%;
        color: #686868;
        margin: 0 auto;
    }
    
    .form-field__input-wrapper {
        margin: 0 auto;
    }
    
    .form-field__input {
        font-size: 14px;
        font-weight: 700;
        line-height: 140%;
        color: #000000;
    }
    
    .form-field__slider {
        width: 100%;
        max-width: 100%;
        height: 14px;
        position: relative;
    }
    
    .form-field__slider-input {
        height: 8px;
    }
    
    .form-field__slider-input::-webkit-slider-runnable-track {
        height: 8px;
        border-radius: 16px;
        background: #EFEFEF;
    }
    
    .form-field__slider-input::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #85F74F;
        border: none;
        box-shadow: none;
        margin-top: -3px;
    }
    
    .form-field__slider-input::-moz-range-track {
        height: 8px;
        border-radius: 16px;
        background: #EFEFEF;
    }
    
    .form-field__slider-input::-moz-range-progress {
        height: 8px;
        border-radius: 16px;
        background: #85F74F;
    }
    
    .form-field__slider-input::-moz-range-thumb {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #85F74F;
        border: none;
        box-shadow: none;
    }
    
    .form-field__slider::after {
        height: 8px;
        border-radius: 16px;
    }
    
    .form__button {
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 12px 20px;
        border-radius: 21px;
        font-size: 14px;
        font-weight: 900;
        line-height: 118%;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .how-it-works__steps {
        flex-direction: column;
    }
    
    /* Main Sections Mobile - Change Grid to Column */
    .main__sections {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        grid-template-columns: none;
        grid-template-rows: none;
    }
    
    /* Order blocks for mobile */
    .how-it-works {
        order: 1;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        padding: 12px 12px 12px 12px;
        gap: 8px;
        flex: none;
        overflow: visible;
    }
    
    .how-it-works__header {
        padding: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .how-it-works__steps {
        gap: 10px;
        flex: none;
        overflow: visible;
        min-height: auto;
    }
    
    .how-it-works__steps-column {
        gap: 10px;
        flex: none;
    }
    
    .how-it-works__step {
        padding: 12px;
        gap: 10px;
    }
    
    .step__icon {
        width: 50px;
        height: 50px;
    }
    
    .step__text {
        font-size: 14px;
        line-height: 1.3;
        white-space: normal;
        overflow: visible;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .payment-methods {
        order: 2;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        padding: 12px 12px 12px 12px;
        gap: 8px;
        flex: none;
        overflow: visible;
    }
    
    .payment-methods__header {
        padding: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .loan-criteria {
        order: 3;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        padding: 12px 12px 12px 12px;
        gap: 8px;
        flex: none;
        overflow: visible;
    }
    
    .loan-criteria__header {
        padding: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .reviews {
        order: 4;
        padding: 12px 12px 12px 12px;
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 8px;
        flex: none;
        overflow: visible;
    }
    
    .reviews__header {
        padding: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .reviews__title {
        font-size: 20px;
        padding: 6px 10px;
        margin: 0;
    }
    
    .reviews__content {
        gap: 0;
        flex: none;
        overflow: visible;
        min-height: auto;
    }
    
    .reviews__item-wrapper {
        gap: 10px;
        align-items: flex-start;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .reviews__item {
        padding: 12px;
        gap: 8px;
        flex: 1;
        min-width: 0;
        min-height: auto;
        height: auto;
        overflow: visible;
        width: auto;
    }
    
    .review__chevron {
        width: 24px;
        height: 24px;
        margin-top: 0;
        align-self: flex-start;
        flex-shrink: 0;
        flex-grow: 0;
    }
    
    .review__header {
        gap: 10px;
        flex-shrink: 0;
        width: 100%;
    }
    
    .review__text {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        white-space: normal;
        overflow: visible;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .how-it-works__title {
        font-size: 20px;
        padding: 6px 10px;
        margin: 0;
    }
    
    .payment-methods__title {
        font-size: 20px;
        padding: 6px 10px;
        margin: 0;
    }
    
    .payment-methods__cards {
        height: auto;
        min-height: auto;
    }
    
    .payment-methods__image {
        height: auto;
        max-height: 200px;
        object-fit: contain;
    }
    
    .loan-criteria__title {
        font-size: 20px;
        padding: 6px 10px;
        margin: 0;
    }
    
    .loan-criteria__items {
        flex-direction: column;
        gap: 12px;
        height: auto;
        flex: none;
        overflow: visible;
    }
    
    .loan-criteria__item {
        width: 100%;
        height: auto;
        padding: 12px;
        gap: 12px;
        min-height: auto;
    }
    
    .criteria-item__icon--passport,
    .criteria-item__icon--age {
        width: 50px;
        height: 50px;
    }
    
    .criteria-item__text {
        font-size: 14px;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer__links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Offers Page Mobile */
    .offers-page__title {
        font-size: 28px;
        padding: 0 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .offers-page__subtitle {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .offers-page {
        margin-top: -76px;
    }

    .offers-page__container {
        padding: 24px 20px 40px 20px;
    }
    
    /* FAQ Section Mobile - Compact */
    .faq {
        padding: 12px 12px 12px 12px;
        gap: 8px;
        height: auto;
        overflow: visible;
    }
    
    .faq__header {
        padding: 0;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .faq__title {
        font-size: 20px;
        padding: 6px 10px;
        margin: 0;
    }
    
    .faq__items {
        gap: 12px;
    }
    
    .faq-item__header {
        padding: 15px 20px;
        gap: 12px;
    }
    
    .faq-item__question {
        font-size: 16px;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .faq-item__chevron {
        width: 20px;
        height: 12px;
    }
    
    .faq-item__content {
        padding: 0 20px;
    }
    
    .faq-item--active .faq-item__content {
        padding: 12px 20px;
    }
    
    .faq-item__answer {
        font-size: 14px;
        line-height: 1.4;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Links Section Mobile - Compact */
    .links-section__container {
        padding: 12px 12px 12px 12px;
    }
    
    .links-section__items {
        gap: 12px;
    }
    
    .links-section__link {
        padding: 12px 20px;
        font-size: 14px;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Offers Page Cards Mobile - Compact */
    .offer-card {
        padding: 12px;
        gap: 12px;
    }
    
    .offer-card__logo {
        margin-bottom: 2px;
    }
    
    .offer-card__logo-image {
        max-height: 60px;
    }
    
    .offer-card__details {
        gap: 10px;
    }
    
    .offer-card__detail-item {
        gap: 8px;
    }
    
    .offer-card__icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .offer-card__icon svg {
        width: 18px;
        height: 18px;
    }
    
    .offer-card__detail-text {
        gap: 2px;
    }
    
    .offer-card__detail-label {
        font-size: 12px;
    }
    
    .offer-card__detail-value {
        font-size: 14px;
    }
    
    .offer-card__approval {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .offer-card__button {
        padding: 12px;
        font-size: 14px;
    }
    
    .offers-grid {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    /* Policy Page Mobile - Compact */
    .policy-page {
        padding: 12px 0;
    }
    
    .policy-page__container {
        padding: 12px 12px 12px 12px;
    }
    
    .policy-page__title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .policy-page__text {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .policy-page__subtitle {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    /* Application Page Mobile - Compact */
    .application-page {
        padding: 12px 0;
    }
    
    .application-page__container {
        border-radius: 20px;
    }
    
    .application-page__header {
        padding: 12px 12px 8px 12px;
    }
    
    .application-page__title {
        font-size: 20px;
        padding: 4px 8px;
        line-height: 1.3;
    }
    
    .application-page__form-wrapper {
        padding: 12px;
        border-radius: 0 0 20px 20px;
    }
    
    .application-form {
        gap: 12px;
    }
    
    .application-form__row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .application-form__field {
        gap: 8px;
    }
    
    .application-form__input {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 18px;
    }
    
    .application-form__checkbox {
        gap: 8px;
    }
    
    .application-form__checkbox-input {
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }
    
    .application-form__checkbox-input:checked::after {
        width: 6px;
        height: 6px;
    }
    
    .application-form__checkbox-label {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .application-form__security-note {
        font-size: 12px;
        margin: 10px 0;
        gap: 6px;
    }
    
    .application-form__security-icon {
        width: 16px;
        height: 16px;
    }
    
    .application-form__button {
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 22px;
        gap: 8px;
    }
    
    /* Footer Mobile - Compact */
    .footer {
        padding-top: 12px;
    }
    
    .footer__container {
        padding: 12px 12px 12px 12px;
        gap: 12px;
        border-radius: 20px 20px 0 0;
    }
    
    .footer__logo {
        padding: 12px;
    }
    
    .logo__text--footer {
        font-size: 32px;
    }
    
    .footer__content {
        gap: 12px;
    }
    
    .footer__text {
        gap: 0;
    }
    
    .footer__paragraph {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
    }
    
    .footer__link {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .footer__copyright {
        font-size: 12px;
        line-height: 1.4;
    }
}