:root {
    --primary: #d81b60;
    --primary-dark: #b9164f;
    --primary-light: #fff1f6;

    --ink: #202124;
    --text: #374151;
    --muted: #6b7280;
    --line: #e5e7eb;

    --white: #ffffff;
    --bg: #fafafa;
    --success: #16a34a;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --shadow-sm: 0 6px 20px rgba(0, 0, 0, .05);
    --shadow-md: 0 18px 45px rgba(216, 27, 96, .10);
}


/* ============================================================
   RESET / GLOBAL
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #fff;
    color: var(--text);

    overflow-x: hidden;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

main {
    width: 100%;
    overflow: hidden;
}

section {
    width: 100%;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
    max-width: 100%;
}


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

.section-title {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto 28px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
}

.section-title-content {
    flex: 1;
    min-width: 0;
}

.section-title h2 {
    margin: 0 0 7px;

    color: #25262a;

    font-size: 28px;
    line-height: 1.35;

    font-weight: 600;
    letter-spacing: -.3px;
}

.section-title p {
    margin: 0;

    color: #858991;

    font-size: 14px;
    line-height: 1.6;

    font-weight: 400;
}


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

.section-more {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    margin-top: 6px;

    color: var(--primary);

    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;

    white-space: nowrap;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition:
        color .15s ease,
        opacity .15s ease;
}

.section-more:hover {
    color: var(--primary-dark);

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    opacity: .85;
}

.section-more:focus,
.section-more:active,
.section-more:visited {
    color: var(--primary);
    text-decoration: underline;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
    width: 100%;

    padding: 50px 24px 60px;

    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(255, 45, 85, .18) 0,
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fff5f7 100%
        );
}

.hero-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 430px);

    gap: 70px;

    align-items: center;
}

.hero-copy {
    width: 100%;
    min-width: 0;
}

.badge {
    display: inline-flex;
    align-items: center;

    padding: 8px 14px;
    margin-bottom: 18px;

    background: var(--primary-light);
    color: var(--primary);

    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    max-width: 620px;

    margin: 0 0 20px;

    color: var(--ink);

    font-size: 44px;
    line-height: 1.15;

    letter-spacing: -1.8px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary);
}

.hero-copy p {
    width: 100%;
    max-width: 560px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.7;
}

.mini-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 24px;

    color: #4b5563;

    font-size: 13px;
}

.mini-trust span {
    display: inline-flex;
    align-items: center;

    white-space: nowrap;
}


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

.loan-card {
    width: 100%;
    max-width: 460px;

    padding: 20px;

    background: #fff;

    border: 1px solid #eeeeee;
    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, .05);
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
}

.card-title b {
    color: #202124;

    font-size: 18px;
    line-height: 1.4;

    font-weight: 700;
}

.loan-card label {
    display: block;

    margin: 12px 0 6px;

    color: #5f6368;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 500;
}

.loan-card label span {
    color: var(--primary);
}


/* ============================================================
   ASSET
   ============================================================ */

.asset-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;
}

.asset {
    height: 48px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0 12px;

    background: #fff;
    color: #3c4043;

    border: 1px solid #e5e5e5;
    border-radius: 11px;

    cursor: pointer;

    transition:
        border-color .15s ease,
        background-color .15s ease,
        box-shadow .15s ease;
}

.asset:hover {
    border-color: var(--primary);

    background: #fff;
}

.asset.active {
    background: #fff5f8;

    border-color: var(--primary);

    box-shadow:
        0 0 0 2px rgba(216, 27, 96, .07);
}

.asset-icon {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;
}

.asset-icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.asset-name {
    font-size: 14px;
    line-height: 1.3;

    font-weight: 500;
}


/* ============================================================
   AMOUNT
   ============================================================ */

.amount {
    width: 100%;

    display: flex;
    align-items: baseline;
    justify-content: flex-start;

    gap: 7px;

    margin-bottom: 12px;
    padding: 2px 0;

    background: transparent;
}

.amount strong {
    color: #202124;

    font-size: 36px;
    line-height: 1.1;

    letter-spacing: -.7px;

    font-weight: 700;
}

.amount span {
    margin: 0;

    color: #202124;

    font-size: 30px;
    line-height: 1;

    font-weight: 600;
}


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

input[type="range"] {
    display: block;

    width: 100%;
    height: 4px;

    margin: 0;
    padding: 0;

    appearance: none;
    -webkit-appearance: none;

    border: 0;
    outline: 0;

    border-radius: 999px;

    background:
        linear-gradient(
            to right,
            var(--primary) var(--range-progress, 50%),
            #f3dbe4 var(--range-progress, 50%)
        );

    cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;

    border-radius: 999px;

    background: transparent;
}

input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;

    margin-top: -6px;

    appearance: none;
    -webkit-appearance: none;

    background: #fff;

    border: 1.5px solid var(--primary);

    border-radius: 50%;

    box-shadow:
        0 1px 4px rgba(0, 0, 0, .10);

    cursor: grab;
}

input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.05);

    cursor: grabbing;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 4px;

    border-radius: 999px;

    background: #f3dbe4;
}

input[type="range"]::-moz-range-progress {
    height: 4px;

    border-radius: 999px;

    background: var(--primary);
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;

    background: #fff;

    border: 1.5px solid var(--primary);

    border-radius: 50%;

    box-shadow:
        0 1px 4px rgba(0, 0, 0, .10);
}

.range-label {
    display: flex;
    justify-content: space-between;

    width: 100%;

    margin-top: 7px;

    color: #80868b;

    font-size: 12px;
    line-height: 1.4;

    font-weight: 400;
}

.range-label span {
    white-space: nowrap;
}


/* ============================================================
   TERM
   ============================================================ */

.term-component {
    margin-top: 7px;
}


/* ============================================================
   TOTAL
   ============================================================ */

.amount-total {
    width: 100%;

    margin-top: 14px;
    padding: 10px 14px;

    background: #fafafa;

    border: 1px solid #eeeeee;

    border-radius: 10px;
}

.amount-total-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    width: 100%;

    min-height: 23px;
}

.amount-total-item + .amount-total-item {
    margin-top: 6px;
    padding-top: 6px;

    border-top: 1px solid #e9e9e9;
}

.amount-total-item span {
    flex: 1;
    min-width: 0;

    color: #6b7280;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 400;
}

.amount-total-item strong {
    flex: 0 0 auto;

    color: #374151;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 600;

    text-align: right;

    white-space: nowrap;
}


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

#findBtn {
    width: 100%;
}


/* ============================================================
   NEWS
   ============================================================ */

.news-section {
    width: 100%;

    padding: 50px 24px;

    background: #fff;
}

.news-grid {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.news-card {
    display: block;

    min-width: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 18px;

    color: inherit;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.news-card:hover,
.news-card:focus,
.news-card:active,
.news-card:visited {
    color: inherit;

    text-decoration: none;
}

.news-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-sm);
}

.news-image {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #f3f4f6;
}

.news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.04);
}

.news-content {
    min-width: 0;

    padding: 18px;
}

.news-content h3 {
    display: block;

    width: 100%;

    margin: 0 0 8px;

    overflow: hidden;

    color: var(--ink);

    font-size: 16px;
    line-height: 1.45;

    font-weight: 650;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-content p {
    display: -webkit-box;

    width: 100%;

    margin: 0;

    overflow: hidden;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* ============================================================
   SPONSORED / FLASH DEAL
   ============================================================ */

.sponsored-section {
    width: 100%;

    padding: 50px 24px;

    background: #fff;
}

.sponsored-grid {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.sponsored-card {
    min-width: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 18px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.sponsored-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-sm);
}

.sponsored-card > a {
    display: block;

    height: 100%;

    color: inherit;

    text-decoration: none;
}

.sponsored-image {
    display: block;

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #f3f4f6;
}

.sponsored-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .3s ease;
}

.sponsored-card:hover .sponsored-image img {
    transform: scale(1.04);
}

.sponsored-content {
    min-width: 0;

    padding: 18px;
}

.sponsored-content h3 {
    display: block;

    width: 100%;

    margin: 0 0 8px;

    overflow: hidden;

    color: var(--ink);

    font-size: 16px;
    line-height: 1.45;

    font-weight: 650;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.sponsored-content p {
    display: -webkit-box;

    width: 100%;

    margin: 0;

    overflow: hidden;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.loading-txt {
    grid-column: 1 / -1;

    padding: 30px 20px;

    color: var(--muted);

    font-size: 14px;

    text-align: center;
}


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

.reviews-section {
    width: 100%;

    padding: 50px 24px;

    background: #fff;
}

.reviews-grid {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.review-card {
    padding: 18px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 18px;
}

.review-stars {
    margin-bottom: 14px;

    color: #f59e0b;

    font-size: 16px;
}

.review-content {
    margin: 0 0 20px;

    color: #4b5563;

    font-size: 14px;
    line-height: 1.7;
}

.review-user {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-top: 15px;

    border-top: 1px solid var(--line);
}

.review-avatar {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);
    color: var(--primary);

    font-weight: 700;
}

.review-user strong {
    display: block;

    color: var(--ink);

    font-size: 13px;
}

.review-user span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}


/* ============================================================
   PAYMENT PARTNERS
   ============================================================ */

.payment-partners {
    width: 100%;

    padding: 46px 24px 52px;

    overflow: hidden;
}

.payment-partners .section-title {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto 26px;
    padding: 0;
}

.payment-partners .section-title h2 {
    margin: 0 0 7px;

    color: #25262a;

    font-size: 23px;
    line-height: 1.35;

    font-weight: 600;

    letter-spacing: -.3px;
}

.payment-partners .section-title p {
    margin: 0;

    color: #858991;

    font-size: 14px;
    line-height: 1.6;

    font-weight: 400;
}

.payment-slider {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    overflow: hidden;
}

.payment-slider.swiper {
    overflow: hidden;
}

.payment-track {
    display: flex;
    align-items: stretch;

    width: 100%;
}

.payment-slider .swiper-slide {
    height: auto;

    flex-shrink: 0;

    display: flex;
    align-items: stretch;
}

.payment-item {
    width: 100%;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 9px 10px;

    background: #fff;

    border: 1px solid #e7e8eb;

    border-radius: 13px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, .025);

    overflow: hidden;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.payment-item img {
    display: block;

    width: auto;
    height: auto;

    max-width: 92px;
    max-height: 35px;

    object-fit: contain;

    user-select: none;

    -webkit-user-drag: none;

    pointer-events: none;
}


/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how {
    width: 100%;

    padding: 50px 24px;

    background: #f8fafc;
}

.how-grid {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.how-grid div {
    padding: 18px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 18px;
}

.how-grid b {
    color: var(--primary);

    font-size: 12px;
}

.how-grid strong {
    display: block;

    margin: 8px 0;

    color: var(--ink);

    font-size: 15px;
}

.how-grid span {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}


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

@media (max-width: 1100px) {

    .hero-inner {
        grid-template-columns:
            minmax(0, 1fr)
            400px;

        gap: 40px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .payment-item {
        height: 60px;
    }

    .payment-item img {
        max-width: 82px;
        max-height: 32px;
    }
}


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

@media (max-width: 900px) {

    .hero {
        padding: 40px 20px 50px;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 28px;

        align-items: start;
    }

    .hero-copy {
        max-width: 700px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .loan-card {
        max-width: 520px;

        margin: 0 auto;
    }

    .news-grid,
    .sponsored-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

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

    .how-grid {
        grid-template-columns: 1fr;

        max-width: 600px;
    }

    .payment-item {
        height: 57px;

        padding: 7px;
    }

    .payment-item img {
        max-width: 70px;
        max-height: 29px;
    }
}


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

@media (max-width: 600px) {

    /* --------------------------------------------------------
       SECTION TITLE
       -------------------------------------------------------- */

    .section-title {
        gap: 8px;

        margin-bottom: 16px;
    }

    .section-title h2 {
        font-size: 22px;
        line-height: 1.35;
    }

    .section-title p {
        font-size: 13px;
        line-height: 1.5;
    }

    .section-more {
        margin-top: 0;

        font-size: 12px;
        line-height: 1.4;
    }


    /* --------------------------------------------------------
       HERO
       -------------------------------------------------------- */

    .hero {
        padding: 12px 16px 30px;

        background:
            radial-gradient(
                circle at 90% 0%,
                rgba(255, 45, 85, .13) 0,
                transparent 42%
            ),
            linear-gradient(
                180deg,
                #ffffff 0%,
                #fff6f8 100%
            );
    }

    .hero-inner {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 24px;

        align-items: start;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
    }

    .badge {
        padding: 6px 10px;

        margin-bottom: 12px;

        font-size: 11px;
        line-height: 1.3;
    }

    .hero h1 {
        max-width: none;

        margin: 0 0 14px;

        font-size: 30px;
        line-height: 1.15;

        letter-spacing: -.7px;
    }

    .hero-copy p {
        max-width: none;

        font-size: 14px;
        line-height: 1.6;
    }

    .mini-trust {
        display: flex;

        flex-direction: column;
        align-items: flex-start;

        gap: 6px;

        margin-top: 14px;

        font-size: 11.5px;
        line-height: 1.5;
    }

    .mini-trust span {
        display: inline-flex;

        margin: 0;

        white-space: normal;
    }


    /* --------------------------------------------------------
       LOAN CARD
       -------------------------------------------------------- */

    .loan-card {
        width: 100%;
        max-width: none;

        margin: 0;

        padding: 18px;

        border-radius: 15px;

        box-shadow:
            0 6px 22px rgba(0, 0, 0, .06);
    }

    .card-title {
        margin-bottom: 15px;
    }

    .card-title b {
        font-size: 17px;
        line-height: 1.4;
    }

    .loan-card label {
        margin-top: 12px;
        margin-bottom: 6px;

        font-size: 13px;
        line-height: 1.4;
    }


    /* --------------------------------------------------------
       INPUT / SELECT / TEXTAREA
       -------------------------------------------------------- */

    .loan-card input:not([type="range"]),
    .loan-card select,
    .loan-card textarea {
        font-size: 16px;
        line-height: 1.4;
    }


    /* --------------------------------------------------------
       ASSET
       -------------------------------------------------------- */

    .asset-grid {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .asset {
        height: 44px;

        gap: 7px;

        padding: 0 10px;

        border-radius: 10px;
    }

    .asset-icon {
        width: 20px;
        height: 20px;

        flex: 0 0 20px;
    }

    .asset-name {
        font-size: 13px;
        line-height: 1.3;
    }


    /* --------------------------------------------------------
       AMOUNT
       -------------------------------------------------------- */

    .amount {
        gap: 6px;

        margin-bottom: 10px;
        padding: 0;
    }

    .amount strong {
        font-size: 29px;

        letter-spacing: -.5px;
    }

    .amount span {
        font-size: 22px;
    }


    /* --------------------------------------------------------
       RANGE
       -------------------------------------------------------- */

    input[type="range"] {
        height: 4px;
    }

    input[type="range"]::-webkit-slider-runnable-track {
        height: 4px;
    }

    input[type="range"]::-webkit-slider-thumb {
        width: 15px;
        height: 15px;

        margin-top: -5.5px;
    }

    input[type="range"]::-moz-range-track {
        height: 4px;
    }

    input[type="range"]::-moz-range-progress {
        height: 4px;
    }

    input[type="range"]::-moz-range-thumb {
        width: 15px;
        height: 15px;
    }

    .range-label {
        margin-top: 6px;

        font-size: 11px;
        line-height: 1.4;
    }


    /* --------------------------------------------------------
       TERM
       -------------------------------------------------------- */

    .term-component {
        margin-top: 12px;
    }

    .term-component label {
        margin-top: 0;
        margin-bottom: 7px;

        font-size: 13px;
        line-height: 1.4;
    }

    .term-component select,
    .term-component input {
        min-height: 44px;

        padding: 0 12px;

        font-size: 16px;
        line-height: 1.4;
    }


    /* --------------------------------------------------------
       TOTAL
       -------------------------------------------------------- */

    .amount-total {
        width: 100%;

        margin-top: 13px;

        padding: 11px 13px;

        border-radius: 10px;
    }

    .amount-total-item {
        min-height: 25px;

        gap: 10px;
    }

    .amount-total-item + .amount-total-item {
        margin-top: 4px;

        padding-top: 7px;
    }

    .amount-total-item span {
        flex: 1;
        min-width: 0;

        font-size: 13px;
        line-height: 1.4;
    }

    .amount-total-item strong {
        flex: 0 0 auto;

        font-size: 14px;
        line-height: 1.4;

        white-space: nowrap;
    }


    /* --------------------------------------------------------
       BUTTON
       -------------------------------------------------------- */

    #findBtn {
        width: 100%;

        min-height: 44px;

        margin-top: 13px;

        padding: 10px 14px;

        border-radius: 10px;

        font-size: 14px;
        line-height: 1.4;
    }


    /* --------------------------------------------------------
       GENERAL SECTIONS
       -------------------------------------------------------- */

    .news-section,
    .sponsored-section,
    .reviews-section,
    .payment-partners,
    .how {
        padding-top: 16px;
        padding-bottom: 16px;

        padding-left: 12px;
        padding-right: 12px;
    }

    .news-grid,
    .sponsored-grid,
    .reviews-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* --------------------------------------------------------
       CONTENT CARDS
       -------------------------------------------------------- */

    .news-content,
    .sponsored-content,
    .review-card,
    .how-grid div {
        padding: 15px;
    }


    /* --------------------------------------------------------
       NEWS
       -------------------------------------------------------- */

    .news-content h3 {
        font-size: 15px;

        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .news-content p {
        font-size: 12px;

        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }


    /* --------------------------------------------------------
       SPONSORED
       -------------------------------------------------------- */

    .sponsored-content h3 {
        font-size: 15px;

        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .sponsored-content p {
        font-size: 12px;

        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }


    /* --------------------------------------------------------
       REVIEWS
       -------------------------------------------------------- */

    .review-card {
        padding: 15px;
    }


    /* --------------------------------------------------------
       PAYMENT
       -------------------------------------------------------- */

    .payment-partners {
        padding-top: 16px;
        padding-bottom: 18px;
    }

    .payment-partners .section-title {
        margin-bottom: 14px;
    }

    .payment-partners .section-title h2 {
        font-size: 22px;
    }

    .payment-partners .section-title p {
        font-size: 13px;
    }

    .payment-slider {
        width: 100%;

        margin: 0;

        padding: 2px 0 7px;

        overflow: hidden;
    }

    .payment-slider .swiper-wrapper {
        align-items: stretch;
    }

    .payment-slider .swiper-slide {
        height: auto;
    }

    .payment-item {
        width: 100%;

        height: 58px;

        padding: 8px;

        border-radius: 12px;
    }

    .payment-item img {
        max-width: 68px;
        max-height: 28px;
    }

    .payment-item:hover {
        transform: none;

        border-color: #e7e8eb;

        box-shadow:
            0 2px 8px rgba(0, 0, 0, .025);
    }


    /* --------------------------------------------------------
       HOW
       -------------------------------------------------------- */

    .how-grid {
        gap: 12px;
    }
}


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

@media (max-width: 380px) {

    .hero {
        padding: 6px 12px 24px;
    }

    .hero-inner {
        gap: 16px;
    }

    .badge {
        padding: 5px 9px;

        margin-bottom: 8px;

        font-size: 10px;
    }

    .hero h1 {
        font-size: 28px;

        line-height: 1.1;

        margin-bottom: 10px;
    }

    .hero-copy p {
        font-size: 12px;

        line-height: 1.5;
    }

    .mini-trust {
        margin-top: 9px;

        gap: 4px;

        font-size: 10px;
    }


    /* --------------------------------------------------------
       LOAN CARD
       -------------------------------------------------------- */

    .loan-card {
        padding: 13px;

        border-radius: 13px;
    }

    .card-title {
        margin-bottom: 9px;
    }

    .card-title b {
        font-size: 15px;
    }

    .loan-card label {
        margin-top: 7px;

        font-size: 11px;
    }


    /* --------------------------------------------------------
       INPUT / SELECT
       -------------------------------------------------------- */

    .loan-card input:not([type="range"]),
    .loan-card select,
    .loan-card textarea {
        font-size: 16px;
    }


    /* --------------------------------------------------------
       ASSET
       -------------------------------------------------------- */

    .asset {
        height: 38px;

        padding: 0 8px;
    }

    .asset-icon {
        width: 18px;
        height: 18px;

        flex-basis: 18px;
    }

    .asset-name {
        font-size: 11px;
    }


    /* --------------------------------------------------------
       AMOUNT
       -------------------------------------------------------- */

    .amount {
        gap: 5px;

        margin-bottom: 9px;
    }

    .amount strong {
        font-size: 25px;
    }

    .amount span {
        font-size: 19px;
    }


    /* --------------------------------------------------------
       RANGE
       -------------------------------------------------------- */

    .range-label {
        margin-top: 6px;

        font-size: 9.5px;
    }


    /* --------------------------------------------------------
       TERM
       -------------------------------------------------------- */

    .term-component {
        margin-top: 11px;
    }

    .term-component label {
        margin-bottom: 6px;

        font-size: 13px;
    }

    .term-component select,
    .term-component input {
        min-height: 42px;

        padding: 0 11px;

        font-size: 16px;
    }


    /* --------------------------------------------------------
       TOTAL
       -------------------------------------------------------- */

    .amount-total {
        margin-top: 8px;

        padding: 6px 8px;
    }

    .amount-total-item {
        min-height: 18px;

        gap: 5px;
    }

    .amount-total-item span {
        font-size: 10px;
    }

    .amount-total-item strong {
        font-size: 10px;
    }


    /* --------------------------------------------------------
       BUTTON
       -------------------------------------------------------- */

    #findBtn {
        min-height: 40px;

        margin-top: 9px;

        font-size: 12px;
    }


    /* --------------------------------------------------------
       NEWS / SPONSORED
       -------------------------------------------------------- */

    .news-content h3,
    .sponsored-content h3 {
        font-size: 14px;

        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .news-content p,
    .sponsored-content p {
        font-size: 11px;

        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }


    /* --------------------------------------------------------
       PAYMENT
       -------------------------------------------------------- */

    .payment-slider {
        padding-bottom: 6px;
    }

    .payment-item {
        height: 54px;

        padding: 7px;

        border-radius: 11px;
    }

    .payment-item img {
        max-width: 62px;
        max-height: 26px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    * {
        transition-duration: .01ms !important;

        animation-duration: .01ms !important;

        scroll-behavior: auto !important;
    }

    .payment-item {
        transition: none;
    }
}