/* =========================================
   EVAFINE GLOBAL VARIABLES
========================================= */
:root {
    --evafine-plum: #321936;
    --evafine-plum-dark: #241127;

    --evafine-coral: #f5635d;
    --evafine-coral-dark: #df514c;

    --evafine-soft-coral: #fff3f1;
    --evafine-soft-plum: #f7f2f8;
    --evafine-cream: #fffaf7;

    --evafine-white: #ffffff;

    --evafine-dark: #211a24;
    --evafine-text: #5f5662;

    --evafine-border: #eadfe8;

    --header-height: 88px;

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;

    --shadow-sm: 0 10px 30px rgba(50, 25, 54, 0.08);
    --shadow-md: 0 24px 70px rgba(50, 25, 54, 0.14);
}

/* =========================================
   RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--evafine-dark);
    background: var(--evafine-white);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: var(--evafine-plum);
}

/* =========================================
   ACCESSIBLE FOCUS STATES
========================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(245, 99, 93, 0.35);
    outline-offset: 3px;
}

/* =========================================
   REVEAL FALLBACK
========================================= */
html.no-js .reveal-up,
html.no-js .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
}

/* =========================================
   HEADER
========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(50, 25, 54, 0.06);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 35px rgba(50, 25, 54, 0.08);
}

.site-header .navbar {
    min-height: var(--header-height);
    padding: 12px 0;
}

/* =========================================
   LOGO
========================================= */
.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 154px;
    height: auto;
    object-fit: contain;
}

/* =========================================
   NAVIGATION
========================================= */
.navbar-nav {
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 10px 14px !important;
    color: var(--evafine-dark);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--evafine-coral);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: var(--evafine-coral);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

/* =========================================
   BUTTONS
========================================= */
.evafine-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 22px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.evafine-btn-primary {
    color: var(--evafine-white);
    background: var(--evafine-coral);
    box-shadow: 0 12px 28px rgba(245, 99, 93, 0.26);
}

.evafine-btn-primary:hover,
.evafine-btn-primary:focus {
    color: var(--evafine-white);
    background: var(--evafine-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(245, 99, 93, 0.34);
}

.evafine-btn i {
    transition: transform 0.3s ease;
}

.evafine-btn:hover i {
    transform: translateX(4px);
}

button.final-cta-button,
button.footer-start-link {
    border: none;
    font-family: inherit;
    cursor: pointer;
}

/* =========================================
   MOBILE NAV TOGGLER
========================================= */
.custom-toggler {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--evafine-border);
    border-radius: 14px;
    box-shadow: none !important;
}

.toggler-line {
    width: 20px;
    height: 2px;
    border-radius: 20px;
    background: var(--evafine-plum);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    overflow: hidden;
    background:
        linear-gradient(180deg,
            var(--evafine-white) 0%,
            var(--evafine-cream) 100%);
}

/* =========================================
   HERO BACKGROUND ORBS
========================================= */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-one {
    width: 430px;
    height: 430px;
    top: 130px;
    right: -130px;
    background: rgba(245, 99, 93, 0.09);
    animation: orbFloatOne 9s ease-in-out infinite;
}

.hero-orb-two {
    width: 260px;
    height: 260px;
    left: -100px;
    bottom: 70px;
    background: rgba(50, 25, 54, 0.06);
    animation: orbFloatTwo 11s ease-in-out infinite;
}

/* =========================================
   HERO LEFT CONTENT
========================================= */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 95px 0 75px;
}

/* =========================================
   HERO BADGE
========================================= */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 9px 14px;
    border: 1px solid rgba(245, 99, 93, 0.16);
    border-radius: 999px;
    background: var(--evafine-soft-coral);
    color: var(--evafine-plum);
    font-size: 13px;
    font-weight: 700;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--evafine-coral);
    box-shadow: 0 0 0 5px rgba(245, 99, 93, 0.12);
    animation: badgePulse 2s ease-in-out infinite;
}

/* =========================================
   HERO TITLE
========================================= */
.hero-title {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--evafine-plum);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero-title span {
    position: relative;
    display: inline-block;
    color: var(--evafine-coral);
}

/* =========================================
   HERO DESCRIPTION
========================================= */
.hero-description {
    max-width: 610px;
    margin-bottom: 32px;
    color: var(--evafine-text);
    font-size: 18px;
    line-height: 1.75;
}

/* =========================================
   HERO ACTIONS
========================================= */
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 34px;
}

.hero-primary-btn {
    min-width: 158px;
}

/* =========================================
   HERO SECONDARY LINK
========================================= */
.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--evafine-plum);
    font-size: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.hero-secondary-link:hover {
    color: var(--evafine-coral);
}

.secondary-link-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--evafine-plum);
    background: var(--evafine-soft-plum);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.hero-secondary-link:hover .secondary-link-icon {
    transform: translateX(4px);
    background: var(--evafine-soft-coral);
}

/* =========================================
   HERO MINI INFO
========================================= */
.hero-mini-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mini-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--evafine-text);
    font-size: 13px;
    font-weight: 600;
}

.mini-info-item i {
    color: var(--evafine-coral);
    font-size: 15px;
}

/* =========================================
   HERO RIGHT VISUAL
========================================= */
.hero-visual {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   HERO BACKGROUND CIRCLE
========================================= */
.hero-visual-circle {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(50, 25, 54, 0.06);
    border-radius: 50%;
    background: var(--evafine-soft-plum);
    animation: visualCircleFloat 7s ease-in-out infinite;
}

/* =========================================
   LOAN CARD
========================================= */
.loan-card {
    position: relative;
    z-index: 4;
    width: min(440px, 100%);
    padding: 34px;
    border: 1px solid rgba(50, 25, 54, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.loan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(50, 25, 54, 0.17);
}

/* =========================================
   LOAN CARD TOP
========================================= */
.loan-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

.loan-card-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--evafine-coral);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.loan-card h2 {
    max-width: 290px;
    margin: 0;
    font-size: 25px;
    line-height: 1.32;
    letter-spacing: -0.7px;
}

.loan-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--evafine-soft-coral);
    color: var(--evafine-coral);
    font-size: 23px;
}

/* =========================================
   LOAN AMOUNT
========================================= */
.loan-amount-wrapper {
    margin-bottom: 28px;
}

.loan-amount {
    margin-bottom: 20px;
    color: var(--evafine-plum);
    font-family: "Manrope", sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -2px;
}

/* =========================================
   LOAN RANGE
========================================= */
.loan-range {
    height: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.loan-range::-webkit-slider-runnable-track {
    height: 7px;
    border-radius: 999px;
    background: #efe5ee;
}

.loan-range::-webkit-slider-thumb {
    width: 23px;
    height: 23px;
    margin-top: -8px;
    border: 4px solid var(--evafine-white);
    border-radius: 50%;
    background: var(--evafine-coral);
    box-shadow: 0 4px 14px rgba(245, 99, 93, 0.32);
}

.loan-range::-moz-range-track {
    height: 7px;
    border-radius: 999px;
    background: #efe5ee;
}

.loan-range::-moz-range-thumb {
    width: 23px;
    height: 23px;
    border: 4px solid var(--evafine-white);
    border-radius: 50%;
    background: var(--evafine-coral);
    box-shadow: 0 4px 14px rgba(245, 99, 93, 0.32);
}

.loan-range-labels {
    display: flex;
    justify-content: space-between;
    color: #928793;
    font-size: 12px;
    font-weight: 600;
}

/* LOAN CTA */
.loan-cta {
    min-height: 56px;
    border-radius: 16px;
}

.loan-cta.is-loading {
    pointer-events: none;
    opacity: 0.86;
}

/* LOAN NOTE */
.loan-card-note {
    max-width: 330px;
    margin: 16px auto 0;
    color: #8a818b;
    text-align: center;
    font-size: 11px;
    line-height: 1.55;
}

/* LOAN RESPONSE MESSAGE */
.loan-response-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-height: 0;
    margin-top: 0;
    padding: 0 15px;
    overflow: hidden;
    opacity: 0;
    border-radius: 15px;
    background: var(--evafine-soft-plum);
    color: var(--evafine-text);
    transform: translateY(10px);
    transition:
        max-height 0.4s ease,
        margin-top 0.4s ease,
        padding 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.loan-response-message.show {
    max-height: 130px;
    margin-top: 16px;
    padding: 13px 15px;
    opacity: 1;
    transform: translateY(0);
}

.loan-response-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--evafine-coral);
    color: var(--evafine-white);
}

.loan-response-message strong {
    display: block;
    margin-bottom: 2px;
    color: var(--evafine-plum);
    font-size: 13px;
}

.loan-response-message span {
    display: block;
    font-size: 11px;
    line-height: 1.5;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 185px;
    padding: 13px 15px;
    border: 1px solid rgba(50, 25, 54, 0.07);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: floatingCard 4.8s ease-in-out infinite;
}

.floating-card small {
    display: block;
    margin-bottom: 2px;
    color: #9b929c;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.floating-card strong {
    display: block;
    color: var(--evafine-plum);
    font-size: 13px;
}

.floating-card-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--evafine-soft-coral);
    color: var(--evafine-coral);
    font-size: 17px;
}

.floating-card-one {
    top: 135px;
    right: -8px;
}

.floating-card-two {
    left: -15px;
    bottom: 125px;
    animation-delay: -2.1s;
}

/* STATUS DOT */
.status-dot {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--evafine-coral);
    box-shadow: 0 0 0 6px rgba(245, 99, 93, 0.13);
}

/* HERO BRAND MARK */
.hero-brand-mark {
    position: absolute;
    right: 48px;
    bottom: 55px;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: var(--evafine-plum);
    color: var(--evafine-white);
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(50, 25, 54, 0.2);
    transform: rotate(-8deg);
    animation: brandMarkFloat 6s ease-in-out infinite;
}

/* =========================================
   SCROLL REVEAL
========================================= */
.reveal-up,
.reveal-scale {
    opacity: 0;
}

.reveal-up.is-visible {
    opacity: 1;
    animation:
        revealUp 0.8s cubic-bezier(0.22,
            1,
            0.36,
            1) forwards;
}

.reveal-scale.is-visible {
    opacity: 1;
    animation:
        revealScale 0.85s cubic-bezier(0.22,
            1,
            0.36,
            1) forwards;
}

/* =========================================
   PLACEHOLDER SECTIONS
========================================= */
.placeholder-section {
    min-height: 1px;
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes revealUp {

    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}

@keyframes revealScale {

    from {
        opacity: 0;

        transform:
            translateY(25px) scale(0.96);
    }

    to {
        opacity: 1;

        transform:
            translateY(0) scale(1);
    }

}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(245, 99, 93, 0.1);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(245, 99, 93, 0.04);
    }

}

@keyframes floatingCard {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }

}

@keyframes visualCircleFloat {

    0%,
    100% {
        transform:
            translateY(0) scale(1);
    }

    50% {
        transform:
            translateY(-14px) scale(1.015);
    }

}

@keyframes brandMarkFloat {

    0%,
    100% {
        transform:
            rotate(-8deg) translateY(0);
    }

    50% {
        transform:
            rotate(-4deg) translateY(-10px);
    }
}

@keyframes orbFloatOne {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform:
            translate3d(-25px, 18px, 0) scale(1.06);
    }
}

@keyframes orbFloatTwo {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(25px, -18px, 0);
    }
}

/* =========================================
   ACCESSIBILITY - REDUCED MOTION
========================================= */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}

/* =========================================
   LOANS SECTION
========================================= */
.loans-section {
    position: relative;
    padding: 120px 0;
    background: var(--evafine-white);
}

/* LOANS HEADING */
.loans-heading-row {
    margin-bottom: 58px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--evafine-coral);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.section-tag span {
    width: 28px;
    height: 2px;
    border-radius: 20px;
    background: var(--evafine-coral);
}

.section-title {
    max-width: 650px;
    margin: 0;
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.section-title span {
    color: var(--evafine-coral);
}

.section-description {
    max-width: 460px;
    margin: 0 0 5px auto;
    color: var(--evafine-text);
    font-size: 17px;
    line-height: 1.75;
}

/* LOANS LAYOUT */
.loans-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 26px;
}

/* LEFT LOAN PANEL */
.loan-explore-panel {
    position: relative;
    min-height: 520px;
    padding: 46px;
    overflow: hidden;
    border-radius: 32px;
    background: var(--evafine-plum);
    box-shadow: 0 25px 70px rgba(50, 25, 54, 0.16);
}

.loan-explore-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.loan-panel-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.loan-explore-top h3 {
    max-width: 450px;
    margin: 0;
    color: var(--evafine-white);
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.loan-panel-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--evafine-coral);
    font-size: 24px;
}

/* PANEL AMOUNT */
.loan-panel-amount {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    margin: 66px 0 32px;
    color: var(--evafine-white);
    font-family: "Manrope", sans-serif;
    font-size: 76px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
}

.loan-panel-currency {
    margin-top: 7px;
    margin-right: 5px;
    color: var(--evafine-coral);
    font-size: 34px;
    letter-spacing: 0;
}

/* PANEL RANGE */
.loan-panel-slider-wrap {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.section-loan-range {
    height: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.section-loan-range::-webkit-slider-runnable-track {
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.section-loan-range::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    margin-top: -8px;
    border: 4px solid var(--evafine-white);
    border-radius: 50%;
    background: var(--evafine-coral);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.section-loan-range::-moz-range-track {
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.section-loan-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 4px solid var(--evafine-white);
    border-radius: 50%;
    background: var(--evafine-coral);
}

.section-loan-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
}

/* PANEL BOTTOM */
.loan-panel-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 42px;
}

.loan-panel-bottom p {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    line-height: 1.55;
}

/* PANEL DECORATION */
.loan-panel-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decor-line {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.decor-line-one {
    width: 310px;
    height: 310px;
    right: -100px;
    bottom: -110px;
}

.decor-line-two {
    width: 220px;
    height: 220px;
    right: -35px;
    bottom: -50px;
}

.decor-dot {
    position: absolute;
    width: 13px;
    height: 13px;
    right: 85px;
    bottom: 103px;
    border-radius: 50%;
    background: var(--evafine-coral);
    box-shadow: 0 0 0 10px rgba(245, 99, 93, 0.08);
    animation: badgePulse 2.2s ease-in-out infinite;
}

/* RIGHT NEEDS PANEL */
.loan-needs-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.loan-need-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 158px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--evafine-border);
    border-radius: 24px;
    background: var(--evafine-white);
    cursor: pointer;
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.loan-need-item:hover,
.loan-need-item.active {
    transform: translateX(-5px);
    border-color: rgba(245, 99, 93, 0.2);
    background: var(--evafine-soft-coral);
    box-shadow: 0 18px 45px rgba(50, 25, 54, 0.08);
}

.loan-need-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--evafine-soft-plum);
    color: var(--evafine-plum);
    font-size: 21px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.loan-need-item:hover .loan-need-icon,
.loan-need-item.active .loan-need-icon {
    color: var(--evafine-white);
    background: var(--evafine-coral);
    transform: rotate(-5deg);
}

.loan-need-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--evafine-coral);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.loan-need-content h4 {
    margin-bottom: 6px;
    font-size: 18px;
}

.loan-need-content p {
    max-width: 290px;
    margin: 0;
    color: var(--evafine-text);
    font-size: 13px;
    line-height: 1.55;
}

.loan-need-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--evafine-plum);
    background: var(--evafine-soft-plum);
    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;
}

.loan-need-item:hover .loan-need-arrow,
.loan-need-item.active .loan-need-arrow {
    transform: rotate(45deg);
    color: var(--evafine-white);
    background: var(--evafine-plum);
}

/* BOTTOM NOTE */
.loans-bottom-note {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 44px;
}

.loans-bottom-note p {
    flex-shrink: 0;
    margin: 0;
    color: var(--evafine-text);
    font-size: 13px;
}

.loans-bottom-note strong {
    color: var(--evafine-plum);
}

.loans-note-line {
    width: 100%;
    height: 1px;
    background: var(--evafine-border);
}

/* =========================================
   PROCESS SECTION
========================================= */
.process-section {
    position: relative;
    padding: 120px 0;
    background: var(--evafine-soft-plum);
    overflow: hidden;
}

/* PROCESS HEADING */
.process-heading {
    max-width: 820px;
    margin: 0 auto 75px;
}

.process-heading .section-title {
    max-width: 760px;
}

.process-description {
    max-width: 620px;
    margin-top: 22px;
    color: var(--evafine-text);
    font-size: 17px;
    line-height: 1.75;
}

/* PROCESS FLOW */
.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* PROCESS TRACK */
.process-track {
    position: absolute;
    top: 48px;
    left: 16.5%;
    right: 16.5%;
    height: 2px;
    z-index: 1;
    overflow: hidden;
    background: rgba(50, 25, 54, 0.11);
}

.process-track-fill {
    width: 0;
    height: 100%;
    background: var(--evafine-coral);
    transition:
        width 1.5s cubic-bezier(0.22,
            1,
            0.36,
            1);
}

.process-flow.is-active .process-track-fill {
    width: 100%;
}

/* PROCESS STEP */
.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Number */
.process-step-number {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 1px solid var(--evafine-border);
    border-radius: 50%;
    background: var(--evafine-white);
    box-shadow: 0 14px 36px rgba(50, 25, 54, 0.08);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.process-step:hover .process-step-number {
    transform: translateY(-5px);
    border-color: rgba(245, 99, 93, 0.35);
    box-shadow: 0 18px 42px rgba(50, 25, 54, 0.12);
}

.process-step-number span {
    color: var(--evafine-coral);
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
}

/* PROCESS ICON */
.process-step-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -56px auto 30px;
    border-radius: 16px;
    background: var(--evafine-plum);
    color: var(--evafine-white);
    font-size: 20px;
    transform: translateY(48px);
    opacity: 0;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease,
        background 0.3s ease;
}

.process-step.is-visible .process-step-icon {
    transform: translateY(0);
    opacity: 1;
}

.process-step:hover .process-step-icon {
    background: var(--evafine-coral);
}

/* STEP CONTENT */
.process-step-content {
    max-width: 320px;
    margin: 58px auto 0;
}

.process-step-label {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--evafine-coral);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.process-step-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.25;
}

.process-step-content p {
    margin: 0;
    color: var(--evafine-text);
    font-size: 14px;
    line-height: 1.65;
}

/* PROCESS CTA */
.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 70px;
    padding: 28px 32px;
    border: 1px solid rgba(50, 25, 54, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.process-cta-small {
    display: block;
    margin-bottom: 5px;
    color: var(--evafine-coral);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.process-cta h3 {
    margin: 0;
    font-size: 22px;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section {
    position: relative;
    padding: 120px 0;
    background: var(--evafine-white);
    overflow: hidden;
}

/* ABOUT VISUAL */
.about-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shapes */
.about-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-shape-one {
    width: 470px;
    height: 470px;
    background: var(--evafine-soft-coral);
}

.about-shape-two {
    width: 330px;
    height: 330px;
    right: 20px;
    bottom: 45px;
    border: 1px solid rgba(50, 25, 54, 0.08);
}

/* MAIN ABOUT CARD */
.about-main-card {
    position: relative;
    z-index: 3;
    width: min(430px, 100%);
    padding: 38px;
    border: 1px solid rgba(50, 25, 54, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 26px 75px rgba(50, 25, 54, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: rotate(-2deg);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.about-main-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 32px 82px rgba(50, 25, 54, 0.17);
}

/* ABOUT CARD TOP */
.about-main-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.about-brand-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--evafine-plum);
    color: var(--evafine-white);
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.about-main-card-top span {
    color: var(--evafine-coral);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* CARD TEXT */
.about-main-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -1px;
}

.about-main-card p {
    margin: 0;
    color: var(--evafine-text);
    font-size: 14px;
    line-height: 1.7;
}

.about-card-divider {
    width: 100%;
    height: 1px;
    margin: 28px 0;
    background: var(--evafine-border);
}

/* ABOUT CARD FOOTER */
.about-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-card-footer small {
    display: block;
    margin-bottom: 4px;
    color: #9a909b;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.about-card-footer strong {
    display: block;
    color: var(--evafine-plum);
    font-size: 15px;
}

.about-card-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--evafine-soft-plum);
    color: var(--evafine-plum);
}

/* ABOUT FLOATING CARDS */
.about-float-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 15px;
    border: 1px solid rgba(50, 25, 54, 0.07);
    border-radius: 16px;
    background: var(--evafine-white);
    box-shadow: var(--shadow-sm);
    animation: floatingCard 5s ease-in-out infinite;
}

.about-float-one {
    top: 95px;
    right: 0;
}

.about-float-two {
    left: 0;
    bottom: 90px;
    animation-delay: -2.2s;
}

.about-float-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--evafine-soft-coral);
    color: var(--evafine-coral);
    font-size: 16px;
}

.about-float-card small {
    display: block;
    margin-bottom: 2px;
    color: #a097a1;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-float-card strong {
    display: block;
    color: var(--evafine-plum);
    font-size: 12px;
}

/* ABOUT CONTENT */
.about-content {
    max-width: 590px;
    margin-left: auto;
}

.about-description {
    max-width: 540px;
    margin: 24px 0 40px;
    color: var(--evafine-text);
    font-size: 17px;
    line-height: 1.75;
}

/* ABOUT POINTS */
.about-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-point {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--evafine-border);
}

.about-point:last-child {
    border-bottom: none;
}

.about-point-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--evafine-soft-coral);
    color: var(--evafine-coral);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.about-point h4 {
    margin-bottom: 6px;
    font-size: 18px;
}

.about-point p {
    max-width: 440px;
    margin: 0;
    color: var(--evafine-text);
    font-size: 13px;
    line-height: 1.6;
}

/* ABOUT ACTION */
.about-action {
    margin-top: 28px;
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--evafine-plum);
    font-size: 14px;
    font-weight: 800;
    transition: color 0.3s ease;
}

.about-text-link:hover {
    color: var(--evafine-coral);
}

.about-text-link i {
    transition: transform 0.3s ease;
}

.about-text-link:hover i {
    transform: translateX(4px);
}

/* =========================================
   RESOURCES SECTION
========================================= */
.resources-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--evafine-cream);
}

/* RESOURCES HEADING */
.resources-heading-row {
    margin-bottom: 58px;
}

/* RESOURCES LAYOUT */
.resources-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
}

/* FEATURED RESOURCE */
.featured-resource {
    position: relative;
    min-height: 570px;
    padding: 38px;
    overflow: hidden;
    border-radius: 32px;
    background: var(--evafine-plum);
    box-shadow: 0 26px 70px rgba(50, 25, 54, 0.15);
}

/* FEATURED TOP */
.featured-resource-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.resource-type {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-type-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--evafine-coral);
    box-shadow: 0 0 0 5px rgba(245, 99, 93, 0.12);
}

.resource-read-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
}

/* FEATURED CONTENT */
.featured-resource-content {
    position: relative;
    z-index: 3;
    max-width: 450px;
    margin-top: 82px;
}

.featured-resource-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--evafine-coral);
    font-size: 24px;
}

.featured-resource-number {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.featured-resource h3 {
    max-width: 430px;
    margin-bottom: 18px;
    color: var(--evafine-white);
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -1.3px;
}

.featured-resource p {
    max-width: 430px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
}

/* RESOURCE MAIN LINK */
.resource-main-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--evafine-white);
    font-size: 14px;
    font-weight: 700;
}

.resource-main-link:hover {
    color: var(--evafine-white);
}

.resource-main-link span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--evafine-coral);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.resource-main-link:hover span {
    transform: translate(3px, -3px);
    background: var(--evafine-coral-dark);
}

/* FEATURED ART */
.featured-resource-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.resource-art-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.resource-art-one {
    width: 340px;
    height: 340px;
    right: -140px;
    bottom: -100px;
}

.resource-art-two {
    width: 230px;
    height: 230px;
    right: -50px;
    bottom: -30px;
}

.resource-art-letter {
    position: absolute;
    right: 35px;
    bottom: 18px;
    color: rgba(255, 255, 255, 0.035);
    font-family: "Manrope", sans-serif;
    font-size: 190px;
    font-weight: 800;
    line-height: 1;
}

/* RESOURCE TOPICS */
.resource-topics {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.resource-topic {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 20px;
    flex: 1;
    padding: 28px;
    border: 1px solid var(--evafine-border);
    border-radius: 24px;
    background: var(--evafine-white);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.resource-topic:hover {
    transform: translateX(5px);
    border-color: rgba(245, 99, 93, 0.22);
    box-shadow: 0 18px 42px rgba(50, 25, 54, 0.08);
}

/* RESOURCE NUMBER */
.resource-topic-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--evafine-soft-plum);
    color: var(--evafine-plum);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.resource-topic:hover .resource-topic-number {
    color: var(--evafine-white);
    background: var(--evafine-coral);
}

/* RESOURCE TOPIC CONTENT */
.resource-topic-content>span {
    display: block;
    margin-bottom: 5px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.resource-topic-content h3 {
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 1.3;
}

.resource-topic-content p {
    max-width: 420px;
    margin: 0;
    color: var(--evafine-text);
    font-size: 12px;
    line-height: 1.55;
}

/* RESOURCE TOPIC ARROW */
.resource-topic-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--evafine-soft-coral);
    color: var(--evafine-coral);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.resource-topic:hover .resource-topic-arrow {
    transform: rotate(45deg);
    color: var(--evafine-white);
    background: var(--evafine-plum);
}

/* RESOURCE TIP */
.resource-tip {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 760px;
    margin: 42px auto 0;
    padding: 16px 20px;
    border: 1px solid rgba(245, 99, 93, 0.14);
    border-radius: 18px;
    background: var(--evafine-soft-coral);
}

.resource-tip-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--evafine-white);
    color: var(--evafine-coral);
    font-size: 17px;
}

.resource-tip span {
    display: block;
    margin-bottom: 2px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-tip p {
    margin: 0;
    color: var(--evafine-text);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
    position: relative;
    padding: 120px 0;
    background: var(--evafine-white);
}

/* FAQ INTRO */
.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro .section-title {
    max-width: 520px;
    font-size: 52px;
}

.faq-description {
    max-width: 480px;
    margin: 24px 0 34px;
    color: var(--evafine-text);
    font-size: 16px;
    line-height: 1.75;
}

/* FAQ HELP CARD */
.faq-help-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 440px;
    padding: 22px;
    border: 1px solid var(--evafine-border);
    border-radius: 22px;
    background: var(--evafine-soft-plum);
}

.faq-help-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--evafine-coral);
    background: var(--evafine-white);
    font-size: 20px;
}

.faq-help-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.faq-help-card h3 {
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 1.4;
}

.faq-help-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--evafine-plum);
    font-size: 12px;
    font-weight: 800;
}

.faq-help-card a i {
    transition: transform 0.3s ease;
}

.faq-help-card a:hover i {
    transform: translateX(4px);
}

/* ACCORDION */
.evafine-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evafine-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid var(--evafine-border);
    border-radius: 20px;
    background: var(--evafine-white);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.evafine-accordion .accordion-item:hover {
    border-color: rgba(245, 99, 93, 0.22);
    box-shadow: 0 14px 38px rgba(50, 25, 54, 0.06);
}

/* ACCORDION BUTTON */
.evafine-accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 24px 25px;
    color: var(--evafine-plum);
    background: var(--evafine-white);
    box-shadow: none;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.evafine-accordion .accordion-button:not(.collapsed) {
    color: var(--evafine-plum);
    background: var(--evafine-soft-coral);
    box-shadow: none;
}

.evafine-accordion .accordion-button:focus {
    border: none;
    box-shadow: none;
}

/* Bootstrap arrow */
.evafine-accordion .accordion-button::after {
    width: 35px;
    height: 35px;
    margin-left: auto;
    background-image: none;
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--evafine-plum);
    background: var(--evafine-soft-plum);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    transform: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.evafine-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    color: var(--evafine-white);
    background: var(--evafine-coral);
    transform: rotate(180deg);
}

/* FAQ NUMBER */
.faq-number {
    min-width: 30px;
    color: var(--evafine-coral);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* ACCORDION BODY */
.evafine-accordion .accordion-body {
    padding: 0 72px 24px;
    color: var(--evafine-text);
    font-size: 13px;
    line-height: 1.7;
    background: var(--evafine-soft-coral);
}

/* =========================================
   FINAL CTA SECTION
========================================= */
.final-cta-section {
    position: relative;
    padding: 35px 0 120px;
    background: var(--evafine-white);
}

.final-cta-wrap {
    position: relative;
    padding: 62px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--evafine-plum);
    box-shadow: 0 28px 75px rgba(50, 25, 54, 0.17);
}

/* CTA DECORATION */
.final-cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.cta-circle-one {
    width: 350px;
    height: 350px;
    right: -130px;
    top: -170px;
}

.cta-circle-two {
    width: 240px;
    height: 240px;
    right: -35px;
    top: -110px;
}

.cta-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    right: 140px;
    top: 82px;
    border-radius: 50%;
    background: var(--evafine-coral);
    box-shadow: 0 0 0 9px rgba(245, 99, 93, 0.1);
    animation: badgePulse 2.2s ease-in-out infinite;
}

/* CTA CONTENT */
.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.final-cta-label span {
    width: 25px;
    height: 2px;
    border-radius: 10px;
    background: var(--evafine-coral);
}

.final-cta-content h2 {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--evafine-white);
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -2px;
}

.final-cta-content h2 span {
    color: var(--evafine-coral);
}

.final-cta-content p {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA ACTION */
.final-cta-action {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.final-cta-button {
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 9px 9px 9px 22px;
    border-radius: 18px;
    color: var(--evafine-plum);
    background: var(--evafine-white);
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.final-cta-button:hover {
    color: var(--evafine-plum);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.final-cta-button-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--evafine-white);
    background: var(--evafine-coral);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.final-cta-button:hover .final-cta-button-icon {
    transform: rotate(45deg);
}

.final-cta-action small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    position: relative;
    padding: 85px 0 28px;
    background: var(--evafine-soft-plum);
}

/* FOOTER TOP */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 0.75fr 1fr 1.1fr;
    gap: 55px;
    padding-bottom: 55px;
}

/* FOOTER BRAND */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-brand p {
    max-width: 300px;
    margin-bottom: 20px;
    color: var(--evafine-text);
    font-size: 13px;
    line-height: 1.7;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--evafine-plum);
    font-size: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-email i {
    color: var(--evafine-coral);
}


.footer-email:hover {
    color: var(--evafine-coral);
}

/* FOOTER COLUMNS */
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-column-title {
    display: block;
    margin-bottom: 7px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.footer-column a {
    position: relative;
    color: var(--evafine-text);
    font-size: 12px;
    font-weight: 600;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: var(--evafine-plum);
    transform: translateX(3px);
}

/* FOOTER START */
.footer-start h3 {
    max-width: 210px;
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.35;
}

.footer-start-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--evafine-plum);
    font-size: 12px;
    font-weight: 800;
}

.footer-start-link:hover {
    color: var(--evafine-plum);
}

.footer-start-link span {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--evafine-white);
    background: var(--evafine-coral);
    transition: transform 0.3s ease;
}

.footer-start-link:hover span {
    transform: translateX(4px);
}

/* FOOTER DISCLOSURE */
.footer-disclosure {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 16px 18px;
    border: 1px solid rgba(50, 25, 54, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
}


.footer-disclosure i {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--evafine-coral);
    font-size: 14px;
}

.footer-disclosure p {
    margin: 0;
    color: #817783;
    font-size: 10px;
    line-height: 1.6;
}

/* FOOTER BOTTOM */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
    margin-top: 24px;
}

.footer-bottom>p {
    margin: 0;
    color: #938994;
    font-size: 10px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: #938994;
    font-size: 10px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--evafine-plum);
}

.footer-bottom-links span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #b9b0ba;
}

/* BACK TO TOP */
.back-to-top {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid var(--evafine-border);
    border-radius: 13px;
    color: var(--evafine-plum);
    background: var(--evafine-white);
    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    color: var(--evafine-white);
    background: var(--evafine-plum);
}

/* =========================================
   LEGAL MODALS
========================================= */
.legal-modal {
    --bs-modal-width: 780px;
}

.legal-modal .modal-dialog {
    padding: 20px;
}

.legal-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(50, 25, 54, 0.08);
    border-radius: 28px;
    background: var(--evafine-white);
    box-shadow: 0 30px 90px rgba(30, 15, 32, 0.22);
}

/* BACKDROP */
.modal-backdrop.show {
    opacity: 0.55;
}

.modal-backdrop {
    background: var(--evafine-plum);
}

/* LEGAL HEADER */
.legal-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    padding: 30px 32px 25px;
    border-bottom: 1px solid var(--evafine-border);
    background: var(--evafine-soft-plum);
}

.legal-modal-label {
    display: block;
    margin-bottom: 6px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.legal-modal-header h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1.25;
    letter-spacing: -0.8px;
}

/* CLOSE BUTTON */
.legal-modal-close {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--evafine-border);
    border-radius: 13px;
    color: var(--evafine-plum);
    background: var(--evafine-white);
    font-size: 16px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.legal-modal-close:hover {
    color: var(--evafine-white);
    background: var(--evafine-plum);
    transform: rotate(5deg);
}

/* MODAL BODY */
.legal-modal-body {
    padding:
        30px 32px 36px;
}

.legal-updated {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 7px 10px;
    border-radius: 9px;
    color: var(--evafine-coral);
    background: var(--evafine-soft-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* LEGAL INTRO */
.legal-intro {
    margin-bottom: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--evafine-border);
}

.legal-intro p {
    max-width: 650px;
    margin: 0;
    color: var(--evafine-text);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================
   LEGAL SECTION
========================================= */
.legal-section {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid var(--evafine-border);
}

.legal-section>span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--evafine-coral);
    background: var(--evafine-soft-coral);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 800;
}

.legal-section h3 {
    margin: 4px 0 8px;
    font-size: 16px;
}

.legal-section p {
    margin: 0 0 10px;
    color: var(--evafine-text);
    font-size: 12px;
    line-height: 1.7;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

/* LEGAL CONTACT */
.legal-contact-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    padding: 17px;
    border-radius: 17px;
    background: var(--evafine-soft-plum);
}

.legal-contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--evafine-white);
    background: var(--evafine-plum);
}

.legal-contact-box span {
    display: block;
    margin-bottom: 3px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-contact-box p {
    margin: 0;
    color: var(--evafine-text);
    font-size: 11px;
}

/* =========================================
   PRIVACY CHOICE HERO
========================================= */
.privacy-choice-hero {
    padding: 28px;
    margin-bottom: 8px;
    border-radius: 20px;
    background: var(--evafine-plum);
}

.privacy-choice-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 15px;
    color: var(--evafine-coral);
    background: rgba(255, 255, 255, 0.1);
    font-size: 21px;
}

.privacy-choice-hero h3 {
    margin-bottom: 10px;
    color: var(--evafine-white);
    font-size: 21px;
}

.privacy-choice-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.7;
}

/* PRIVACY REQUEST PLACEHOLDER */
.privacy-request-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 24px 0;
    padding: 20px;
    border: 1px dashed rgba(245, 99, 93, 0.32);
    border-radius: 18px;
    background: var(--evafine-soft-coral);
}

.privacy-request-placeholder span {
    display: block;
    margin-bottom: 4px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-request-placeholder h3 {
    margin-bottom: 5px;
    font-size: 15px;
}

.privacy-request-placeholder p {
    max-width: 470px;
    margin: 0;
    color: var(--evafine-text);
    font-size: 11px;
    line-height: 1.6;
}

.privacy-request-status {
    flex-shrink: 0;
    padding: 8px 11px;
    border-radius: 10px;
    color: var(--evafine-plum);
    background: var(--evafine-white);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* =========================================
   APPLICATION MODAL
========================================= */
.application-modal {
    --bs-modal-width: 850px;
}

.application-modal .modal-dialog {
    padding: 20px;
}

.application-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(50, 25, 54, 0.08);
    border-radius: 30px;
    background: var(--evafine-white);
    box-shadow: 0 32px 100px rgba(30, 15, 32, 0.25);
}

/* HEADER */
.application-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--evafine-border);
}

.application-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.application-brand img {
    width: 125px;
    height: auto;
}

.application-brand>span {
    padding-left: 14px;
    border-left: 1px solid var(--evafine-border);
    color: var(--evafine-text);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.application-close {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--evafine-border);
    border-radius: 13px;
    color: var(--evafine-plum);
    background: var(--evafine-soft-plum);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.application-close:hover {
    color: var(--evafine-white);
    background: var(--evafine-plum);
    transform: rotate(5deg);
}

/* PROGRESS */
.application-progress {
    padding: 20px 28px 17px;
    border-bottom: 1px solid var(--evafine-border);
    background: var(--evafine-soft-plum);
}

.application-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.application-progress-top span:first-child {
    color: var(--evafine-coral);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.application-progress-top span:last-child {
    color: var(--evafine-plum);
    font-size: 11px;
    font-weight: 700;
}

.application-progress-track {
    width: 100%;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(50, 25, 54, 0.08);
}

.application-progress-fill {
    width: 25%;
    height: 100%;
    border-radius: inherit;
    background: var(--evafine-coral);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.application-progress-dots {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.application-progress-dot {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #9a909b;
    background: var(--evafine-white);
    font-size: 8px;
    font-weight: 800;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.application-progress-dot.active,
.application-progress-dot.completed {
    color: var(--evafine-white);
    background: var(--evafine-coral);
}

/* BODY */
.application-body {
    min-height: 465px;
    padding: 32px 34px 28px;
    overflow-x: hidden;
}

/* Keep modal content clean */
.application-modal .modal-content {
    overflow: hidden;
}

/* Give Step 4 proper breathing room */
.application-step[data-step="4"] {
    padding-bottom: 4px;
}

.application-step[data-step="4"] .application-consent {
    margin-bottom: 4px;
}

/* STEPS */
.application-step {
    display: none;
}

.application-step.active {
    display: block;
    animation: applicationStepIn 0.4s ease forwards;
}

@keyframes applicationStepIn {

    from {
        opacity: 0;

        transform:
            translateX(15px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}

/* STEP HEADING */
.application-step-heading {
    margin-bottom: 28px;
}

.application-step-heading>span {
    display: block;
    margin-bottom: 6px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.application-step-heading h2 {
    margin-bottom: 9px;
    font-size: 29px;
    letter-spacing: -1px;
}

.application-step-heading p {
    max-width: 580px;
    margin: 0;
    color: var(--evafine-text);
    font-size: 12px;
    line-height: 1.65;
}

/* AMOUNT BOX */
.application-amount-box {
    padding: 25px;
    border: 1px solid var(--evafine-border);
    border-radius: 21px;
    background: var(--evafine-soft-plum);
}

.application-amount-box>label {
    display: block;
    margin-bottom: 12px;
    color: var(--evafine-text);
    font-size: 10px;
    font-weight: 700;
}

.application-amount {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: var(--evafine-plum);
    font-family: "Manrope", sans-serif;
}

.application-amount span {
    margin: 5px 4px 0 0;
    color: var(--evafine-coral);
    font-size: 22px;
    font-weight: 800;
}

.application-amount strong {
    font-size: 43px;
    line-height: 1;
    letter-spacing: -2px;
}

.application-range {
    cursor: pointer;
}

.application-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    color: #958b96;
    font-size: 9px;
    font-weight: 700;
}

/* PURPOSE */
.application-field-group {
    margin-top: 27px;
}

.application-group-label {
    display: block;
    margin-bottom: 12px;
    color: var(--evafine-plum);
    font-size: 11px;
    font-weight: 800;
}

.purpose-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.purpose-option {
    cursor: pointer;
}

.purpose-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.purpose-option-content {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 8px;
    border: 1px solid var(--evafine-border);
    border-radius: 16px;
    color: var(--evafine-text);
    background: var(--evafine-white);
    font-size: 10px;
    font-weight: 700;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.purpose-option-content i {
    color: var(--evafine-coral);
    font-size: 18px;
}

.purpose-option:hover .purpose-option-content {
    transform: translateY(-2px);
    border-color: rgba(245, 99, 93, 0.3);
}

.purpose-option input:checked+.purpose-option-content {
    color: var(--evafine-plum);
    border-color: var(--evafine-coral);
    background: var(--evafine-soft-coral);
}

/* FORM GRID */
.application-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.application-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--evafine-plum);
    font-size: 10px;
    font-weight: 800;
}

.application-input-wrap {
    position: relative;
}

.application-input-wrap>i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    transform: translateY(-50%);
    color: var(--evafine-coral);
    font-size: 14px;
    pointer-events: none;
}

.application-input-wrap input,
.application-input-wrap select {
    width: 100%;
    height: 52px;
    padding: 0 15px 0 43px;
    outline: none;
    border: 1px solid var(--evafine-border);
    border-radius: 14px;
    color: var(--evafine-plum);
    background: var(--evafine-white);
    font-size: 12px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.application-input-wrap input:focus,
.application-input-wrap select:focus {
    border-color: rgba(245, 99, 93, 0.65);
    box-shadow: 0 0 0 4px rgba(245, 99, 93, 0.08);
}

.application-field.invalid .application-input-wrap input,
.application-field.invalid .application-input-wrap select {
    border-color: var(--evafine-coral);
}

/* ERRORS */
.application-error {
    display: none;
    margin-top: 6px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 700;
}

.application-error.show {
    display: block;
}

/* INFO NOTE */
.application-info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    padding: 13px 15px;
    border-radius: 14px;
    background: var(--evafine-soft-coral);
}

.application-info-note i {
    color: var(--evafine-coral);
}

.application-info-note p {
    margin: 0;
    color: var(--evafine-text);
    font-size: 10px;
    line-height: 1.55;
}

/* REVIEW */
.application-review {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border: 1px solid var(--evafine-border);
    border-radius: 18px;
}

.review-item {
    padding: 16px 18px;
    border-bottom: 1px solid var(--evafine-border);
}

.review-item:nth-child(odd) {
    border-right: 1px solid var(--evafine-border);
}

.review-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.review-item span {
    display: block;
    margin-bottom: 4px;
    color: #9a909b;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.review-item strong {
    color: var(--evafine-plum);
    font-size: 12px;
}

/* DISCLOSURE */
.application-disclosure {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    padding: 17px;
    border-radius: 17px;
    background: var(--evafine-soft-plum);
}

.application-disclosure-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--evafine-white);
    background: var(--evafine-plum);
}

.application-disclosure h3 {
    margin-bottom: 5px;
    font-size: 13px;
}

.application-disclosure p {
    margin: 0;
    color: var(--evafine-text);
    font-size: 10px;
    line-height: 1.55;
}

.application-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
}

.application-legal-links button {
    padding: 0;
    border: none;
    color: var(--evafine-coral);
    background: none;
    font-size: 9px;
    font-weight: 800;
}

.application-legal-links span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #b4aab5;
}

/* CONSENT */
.application-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 18px;
    cursor: pointer;
}

.application-consent input {
    position: absolute;
    opacity: 0;
}

.application-checkmark {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--evafine-border);
    border-radius: 6px;
    color: transparent;
    background: var(--evafine-white);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.application-consent input:checked+.application-checkmark {
    color: var(--evafine-white);
    border-color: var(--evafine-coral);
    background: var(--evafine-coral);
}

.application-consent-text {
    color: var(--evafine-text);
    font-size: 10px;
    line-height: 1.55;
}

/* APPLICATION FOOTER */
.application-footer {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 16px 28px 18px;
    border-top: 1px solid var(--evafine-border);
    background: var(--evafine-white);
    border-radius: 0 0 28px 28px;
}

/* LEFT BACK BUTTON */
.application-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    padding: 0 6px;
    border: none;
    color: var(--evafine-text);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    visibility: hidden;
    cursor: pointer;
    transition: color 0.3s ease;
}

.application-back.show {
    visibility: visible;
}

.application-back:hover {
    color: var(--evafine-coral);
}

/* RIGHT SIDE */
.application-footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-left: auto;
}

.application-safe-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #958b96;
    font-size: 9px;
}

.application-safe-note i {
    color: var(--evafine-coral);
}

/* CONTINUE BUTTON */
.application-footer #applicationNext {
    min-width: 138px;
    min-height: 48px;
    margin: 0;
    padding: 12px 22px;
    border-radius: 14px;
}

.application-safe-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #958b96;
    font-size: 9px;
}

.application-safe-note i {
    color: var(--evafine-coral);
}

.application-start-over {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 0;
    border: none;
    color: var(--evafine-text);
    background: transparent;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.application-start-over:hover {
    color: var(--evafine-coral);
}

/* APPLICATION COMPLETE STATE */
.application-complete-step {
    min-height: 440px;
}

.application-complete {
    max-width: 560px;
    margin: 0 auto;
    padding: 30px 10px;
    text-align: center;
}

.application-complete-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 24px;
    color: var(--evafine-white);
    background: var(--evafine-coral);
    font-size: 33px;
    box-shadow: 0 18px 38px rgba(245, 99, 93, 0.24);
    animation: completeIconIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.application-complete-label {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--evafine-coral);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.application-complete h2 {
    max-width: 520px;
    margin: 0 auto 14px;
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.application-complete>p {
    max-width: 510px;
    margin: 0 auto;
    color: var(--evafine-text);
    font-size: 12px;
    line-height: 1.7;
}

/* COMPLETE SUMMARY */
.application-complete-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 470px;
    margin: 28px auto 0;
    overflow: hidden;
    border: 1px solid var(--evafine-border);
    border-radius: 17px;
    background: var(--evafine-soft-plum);
}

.application-complete-summary>div {
    padding: 17px 20px;
}

.application-complete-summary>div:first-child {
    border-right: 1px solid var(--evafine-border);
}

.application-complete-summary span {
    display: block;
    margin-bottom: 4px;
    color: #998f9a;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.application-complete-summary strong {
    display: block;
    color: var(--evafine-plum);
    font-size: 13px;
}

/* COMPLETE NOTE */
.application-complete-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 500px;
    margin: 20px auto 0;
    padding: 12px 14px;
    border-radius: 13px;
    background: var(--evafine-soft-coral);
    text-align: left;
}

.application-complete-note i {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--evafine-coral);
    font-size: 13px;
}

.application-complete-note p {
    margin: 0;
    color: var(--evafine-text);
    font-size: 9px;
    line-height: 1.55;
}

.application-complete-close {
    min-width: 150px;
    margin-top: 25px;
}

/* COMPLETE ANIMATION */
@keyframes completeIconIn {

    from {
        opacity: 0;
        transform: scale(0.6) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

}

/* =========================================
   APPLICATION SERVER ERROR
========================================= */
.application-server-error {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(196, 57, 57, 0.16);
    border-radius: 13px;
    color: #9f3030;
    background: #fff3f3;
    font-size: 10px;
    line-height: 1.55;
}

.application-server-error i {
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 13px;
}