:root {
    --fk-primary: #1132a0;
    --fk-primary-2: #4764bc;
    --fk-primary-dark: #08152f;
    --fk-primary-soft: #e1ebff;
    --fk-orange: #f68000;
    --fk-text: #0f1932;
    --fk-muted: #4d586f;
    --fk-border: #dee5f2;
    --fk-surface: #f5f8ff;
    --fk-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --fk-card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--fk-text);
    font-family: "Inter", Arial, sans-serif;
    background: #fff;
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
.section-title,
.hero-title {
    font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
}

a {
    text-decoration: none;
}

.fk-container {
    max-width: 1280px;
    padding-left: 32px;
    padding-right: 32px;
}

.top-strip {
    min-height: 32px;
    background: var(--fk-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid rgba(18, 58, 170, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 104px;
    padding-bottom: 0;
    padding-top: 0;
}

.navbar-brand img {
    height: 80px;
    object-fit: contain;
    width: 185px;
}

.navbar-nav .nav-link {
    color: #2f3850;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 18px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--fk-primary);
}

.btn-fk-primary,
.btn-fk-outline,
.btn-fk-orange {
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    padding: 13px 28px;
}

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

.btn-fk-primary:hover {
    color: #fff;
    background: #0d2f91;
    border-color: #0d2f91;
}

.btn-fk-orange {
    color: #fff;
    background: var(--fk-orange);
    border: 1px solid var(--fk-orange);
    box-shadow: 0 10px 22px rgba(255, 130, 0, 0.22);
}

.btn-fk-orange:hover {
    color: #fff;
    background: #e87500;
    border-color: #e87500;
}

.btn-fk-outline {
    color: var(--fk-primary);
    background: #fff;
    border: 2px solid var(--fk-primary);
}

.btn-fk-outline:hover {
    color: #fff;
    background: var(--fk-primary);
}

.section-kicker {
    color: var(--fk-orange);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 13px;
    text-transform: uppercase;
}

.section-title {
    color: var(--fk-text);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 15px;
}

.section-copy {
    color: var(--fk-muted);
    font-size: 16px;
    line-height: 1.8;
}

.section-pad {
    padding: 80px 0;
}

.soft-section,
.plans-section {
    background: var(--fk-surface);
}

.inner-hero {
    background: linear-gradient(135deg, #233999 0%, #173fb1 52%, #4e6ac2 100%);
    color: #fff;
    padding: 108px 0 116px;
}

.inner-hero h1 {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
}

.inner-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0 auto 28px;
    max-width: 760px;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.breadcrumb-item.active {
    color: var(--fk-orange);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.hero-section {
    background:
        radial-gradient(circle at 8% 100%, rgba(246, 128, 0, 0.18), transparent 28%),
        linear-gradient(90deg, #edf6ff 0%, #f8fbff 54%, #f8fbff 100%);
    overflow: hidden;
    padding: 0;
}

.hero-section .row {
    align-items: stretch !important;
    min-height: 624px;
}

.hero-section .col-lg-6:first-child {
    padding-bottom: 0;
    padding-top: 110px;
}

.hero-kicker {
    color: var(--fk-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 16px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-title {
    color: #101936;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    max-width: 585px;
}

.text-primary-fk {
    color: var(--fk-primary);
}

.text-orange-fk {
    color: var(--fk-orange);
}

.hero-copy {
    color: #34415f;
    font-size: 18px;
    line-height: 28px;
    max-width: 576px;
}

.hero-checks {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 22px 0 28px;
    padding: 0;
}

.hero-checks li {
    align-items: center;
    color: #41506f;
    display: flex;
    font-size: 13px;
    font-weight: 800;
    gap: 10px;
}

.hero-checks i {
    color: var(--fk-primary);
    font-size: 15px;
}

.hero-visual {
    height: 100%;
    min-height: 624px;
    position: relative;
}

.hero-photo-wrap {
    bottom: auto;
    height: 512px;
    left: 40px;
    max-width: 512px;
    position: absolute;
    top: 56px;
    width: 512px;
}

.hero-photo {
    border-radius: 999px;
    display: block;
    height: auto;
    left: 12px;
    object-fit: cover;
    object-position: center top;
    padding: 0;
    position: absolute;
    top: 12px;
    width: 100%;
    z-index: 1;
}

.hero-ring {
    border: 14px solid var(--fk-primary);
    border-radius: 999px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.hero-badge,
.hero-loan-card,
.about-floating-card {
    box-shadow: var(--fk-shadow);
    position: absolute;
    z-index: 3;
}

.hero-badge {
    align-items: center;
    background: var(--fk-orange);
    border-radius: 0 22px 22px 22px;
    color: #fff;
    display: grid;
    height: 126px;
    justify-items: center;
    padding: 16px;
    right: -36px;
    text-align: center;
    top: -64px;
    width: 126px;
}

.hero-badge span {
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.hero-badge strong {
    display: block;
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
}

.hero-loan-card {
    background: #fff;
    border-radius: 14px;
    bottom: -8px;
    left: 0;
    min-height: 88px;
    padding: 12px 16px 10px;
    width: 148px;
}

.hero-loan-card small {
    color: #667085;
    display: block;
    font-size: 12px;
    font-weight: 800;
    line-height: 16px;
}

.hero-loan-card strong {
    color: var(--fk-primary);
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 32px;
    white-space: nowrap;
}

.hero-loan-card span {
    color: var(--fk-orange);
    display: block;
    font-size: 12px;
    font-weight: 900;
    line-height: 16px;
}

.feature-strip {
    margin-bottom: 64px;
    margin-top: -48px;
    position: relative;
    z-index: 8;
}

.feature-strip .row {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 20px;
    box-shadow: var(--fk-shadow);
    overflow: hidden;
}

.feature-card {
    align-items: flex-start;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    gap: 16px;
    min-height: 134px;
    padding: 32px;
    transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:first-child {
    border-radius: 0;
}

.feature-card:last-child {
    border-radius: 0;
}

.feature-card.active {
    background: var(--fk-primary);
    color: #fff;
    transform: none;
}

.feature-card:not(.active):hover {
    background: var(--fk-primary-soft);
}

.feature-icon,
.mini-icon {
    align-items: center;
    background: #edf4ff;
    border-radius: 11px;
    color: var(--fk-primary);
    display: inline-flex;
    flex: 0 0 auto;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.feature-card.active .feature-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.feature-card h5 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 5px;
}

.feature-card p {
    color: #6f7890;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.feature-card.active p {
    color: rgba(255, 255, 255, 0.78);
}

.stats-section {
    background: var(--fk-surface);
    padding: 64px 0;
}

.stat-number {
    color: var(--fk-primary);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    color: #345078;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    margin-top: 9px;
    text-transform: uppercase;
}

.about-image-wrap {
    max-width: 584px;
    position: relative;
    transform: translateY(-4px);
}

.about-image {
    aspect-ratio: 584 / 437;
    border-radius: 20px;
    box-shadow: 0 22px 34px rgba(16, 25, 54, 0.14);
    object-fit: cover;
    width: 100%;
}

.about-floating-card {
    background: var(--fk-orange);
    border-radius: 18px;
    bottom: -25px;
    color: #fff;
    min-height: 124px;
    padding: 25px 24px;
    right: -25px;
    width: 200px;
}

.about-floating-card strong {
    display: block;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.about-floating-card span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    max-width: 145px;
}

.about-section {
    padding: 80px 0;
}

.about-section .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    column-gap: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-section .col-lg-6 {
    flex: initial;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: auto;
}

.about-section .section-kicker {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 12px;
}

.about-section .section-title {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 16px;
    max-width: 577px;
}

.about-section .section-copy {
    color: #30405f;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    max-width: 577px;
}

.about-section .check-list {
    gap: 12px;
    margin: 0 0 32px;
    max-width: 577px;
}

.about-section .check-list li {
    line-height: 20px;
}

.about-section .check-list i {
    font-size: 16px;
    line-height: 16px;
    margin-top: 2px;
}

.about-section .btn-fk-primary {
    line-height: 20px;
    padding: 11px 22px;
}

.check-list {
    display: grid;
    gap: 13px;
    list-style: none;
    margin: 22px 0 26px;
    padding: 0;
}

.check-list li {
    align-items: flex-start;
    color: #46526c;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
}

.check-list i {
    color: var(--fk-primary);
    margin-top: 2px;
}

.process-card,
.review-card,
.contact-card,
.plan-card,
.partner-card,
.white-info-card,
.flow-card,
.fee-card {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 20px;
    box-shadow: var(--fk-card-shadow);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover,
.review-card:hover,
.partner-card:hover,
.white-info-card:hover,
.flow-card:hover,
.fee-card:hover {
    box-shadow: var(--fk-shadow);
    transform: translateY(-4px);
}

.process-card {
    min-height: 196px;
    padding: 24px;
}

.process-head {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.process-card .mini-icon {
    border-radius: 12px;
    height: 44px;
    width: 44px;
}

.process-card .mini-icon i {
    font-size: 14px;
    line-height: 1;
}

.process-card .step-number {
    color: #b4c2df;
    font-size: 24px;
    font-weight: 900;
    line-height: 32px;
}

.process-card h5 {
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    margin-bottom: 10px;
}

.process-card p {
    color: #667085;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.benefit-card {
    background: var(--fk-primary);
    border-radius: 24px;
    box-shadow: var(--fk-shadow);
    color: #fff;
    min-height: 232px;
    overflow: hidden;
    padding: 32px;
    position: relative;
}

.benefit-card::after {
    background: rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    content: "";
    height: 132px;
    position: absolute;
    right: -35px;
    top: -42px;
    width: 132px;
}

.benefit-card i {
    color: var(--fk-orange);
    font-size: 35px;
    margin-bottom: 24px;
}

.benefit-card h5 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 13px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    margin: 0;
}

.plan-card {
    border-radius: 24px;
    box-shadow: var(--fk-shadow);
    height: 100%;
    padding: 32px;
}

.plan-card.featured {
    background: var(--fk-primary);
    color: #fff;
}

.plan-icon {
    align-items: center;
    background: #e5efff;
    border-radius: 13px;
    color: var(--fk-primary);
    display: inline-flex;
    flex: 0 0 auto;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.plan-heading {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.plan-card.featured .plan-icon {
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
}

.plan-card h4 {
    font-size: 26px;
    font-weight: 900;
    margin: 0;
}

.plan-card p {
    color: #6f7890;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin: 12px 0 0;
}

.plan-card.featured p {
    color: rgba(255, 255, 255, 0.82);
}

.price {
    align-items: baseline;
    display: flex;
    gap: 9px;
    margin: 24px 0 0;
}

.price .old {
    color: #98a2b3;
    font-size: 16px;
    font-weight: 800;
    text-decoration: line-through;
}

.price strong {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.price small {
    font-size: 14px;
    font-weight: 800;
}

.plan-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.plan-list li {
    align-items: flex-start;
    display: flex;
    font-size: 14px;
    font-weight: 800;
    gap: 11px;
    line-height: 20px;
}

.plan-list i {
    color: var(--fk-primary);
}

.plan-card.featured .plan-list i {
    color: var(--fk-orange);
}

.plan-card .btn {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    line-height: 20px;
    margin-top: 32px;
    min-height: 44px;
    padding: 12px 24px;
}

.plans-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 896px;
}

.plans-grid > [class*="col"] {
    flex: none;
    max-width: none;
    padding: 0;
    width: auto;
}

.partners-window {
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    width: 100vw;
}

.partners-row {
    animation: fk-marquee 40s linear infinite;
    display: flex;
    gap: 16px;
    padding: 8px 0;
    width: max-content;
}

.partners-row-compact {
    animation-duration: 45s;
}

.partner-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
    display: grid;
    flex: 0 0 224px;
    gap: 0;
    min-height: 157px;
    overflow: hidden;
    padding: 0;
    text-align: center;
}

.partner-logo {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--fk-border);
    color: var(--fk-primary);
    display: flex;
    justify-content: center;
    line-height: 1;
    min-height: 112px;
    padding: 20px;
}

.partner-logo img {
    display: block;
    max-height: 64px;
    max-width: 180px;
    object-fit: contain;
}

.partner-card span {
    color: #26324f;
    display: block;
    font-size: 14px;
    font-weight: 900;
    padding: 13px 16px 16px;
}

.partners-row:hover {
    animation-play-state: paused;
}

@keyframes fk-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.review-card {
    min-height: 252px;
    padding: 24px;
    position: relative;
}

.stars {
    color: var(--fk-orange);
    font-size: 16px;
    letter-spacing: 2px;
}

.quote-mark {
    color: #e2e9f8;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 28px;
    top: 22px;
}

.review-card p {
    color: #5f6b82;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    margin: 20px 0 24px;
}

.review-author {
    align-items: center;
    border-top: 1px solid #e5edf8;
    display: flex;
    gap: 13px;
    padding-top: 18px;
}

.avatar {
    align-items: center;
    background: var(--fk-primary);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.review-author strong {
    font-size: 14px;
    font-weight: 900;
}

.contact-info {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.contact-card {
    align-items: center;
    display: flex;
    gap: 18px;
    min-height: 104px;
    padding: 20px;
}

.contact-card i {
    align-items: center;
    background: var(--fk-primary);
    border-radius: 14px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 22px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.contact-card h5 {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 5px;
}

.contact-card p {
    color: #667085;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.message-card {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 24px;
    box-shadow: var(--fk-shadow);
    padding: 32px;
}

.message-card h4 {
    font-size: 29px;
    font-weight: 900;
}

.message-card p {
    color: #667085;
    font-size: 15px;
    font-weight: 700;
}

.form-label {
    color: #34405e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-control,
.form-select,
.input-group-text {
    border-color: var(--fk-border);
    border-radius: 13px;
    font-size: 14px;
    min-height: 48px;
}

.input-group .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group-text {
    background: #f7faff;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    font-weight: 800;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--fk-primary);
    box-shadow: 0 0 0 0.2rem rgba(18, 58, 170, 0.12);
}

.form-range {
    --range-progress: 47.37%;
    --range-fill: #ff8200;
    --range-rest: #404040;
    appearance: none;
    background: linear-gradient(to right, var(--range-fill) 0%, var(--range-fill) var(--range-progress), var(--range-rest) var(--range-progress), var(--range-rest) 100%);
    border-radius: 999px;
    cursor: pointer;
    height: 7px;
    margin: 14px 0 10px;
    padding: 0;
    touch-action: pan-y;
}

.form-range:focus {
    box-shadow: none;
    outline: none;
}

.form-range::-webkit-slider-runnable-track {
    background: transparent;
    border-radius: 999px;
    height: 7px;
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    background: var(--range-fill);
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(17, 50, 160, 0.22);
    cursor: pointer;
    height: 18px;
    margin-top: -5.5px;
    width: 18px;
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(246, 128, 0, 0.22);
}

.form-range::-moz-range-track {
    background: transparent;
    border-radius: 999px;
    height: 7px;
}

.form-range::-moz-range-progress {
    background: transparent;
}

.form-range::-moz-range-thumb {
    background: var(--range-fill);
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(17, 50, 160, 0.22);
    cursor: pointer;
    height: 18px;
    width: 18px;
}

.apply-hero {
    background: var(--fk-primary);
    color: #fff;
    overflow: hidden;
    padding: 48px 0 64px;
    position: relative;
}

.apply-hero::before {
    background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.36), transparent 60%);
    content: "";
    inset: 0;
    opacity: 0.55;
    pointer-events: none;
    position: absolute;
}

.apply-hero .fk-container {
    position: relative;
    z-index: 1;
}

.apply-photo {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 24px 52px rgba(7, 15, 45, 0.26);
    display: block;
    height: 448px;
    margin-bottom: 27px;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.apply-hero h1 {
    font-size: clamp(33px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.12;
    max-width: 560px;
}

.apply-hero h1 span {
    color: var(--fk-orange);
}

.apply-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.6;
    max-width: 500px;
}

.application-shell {
    max-width: 100%;
}

.trust-tabs {
    background: linear-gradient(90deg, rgba(246, 128, 0, 0.9), rgba(17, 50, 160, 0.6));
    border-radius: 999px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 16px;
    padding: 4px;
}

.trust-tabs span {
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.94);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
    justify-content: center;
    min-height: 34px;
}

.trust-tabs .active {
    background: rgba(255, 255, 255, 0.15);
}

.loan-card {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 18px;
    box-shadow: 0 24px 52px rgba(7, 15, 45, 0.26);
    color: var(--fk-text);
    overflow: hidden;
    padding: 0;
}

.apply-card-header {
    align-items: center;
    border-bottom: 1px solid var(--fk-border);
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
}

.loan-card h4 {
    font-size: 16px;
    font-weight: 900;
    margin: 0;
}

.apply-card-header > span {
    color: #7a8499;
    font-size: 12px;
    font-weight: 800;
}

.loan-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 24px 24px 22px;
    position: relative;
    text-align: center;
}

.loan-steps::before {
    background: #e5edf8;
    content: "";
    height: 2px;
    left: 10%;
    position: absolute;
    right: 10%;
    top: 16px;
}

.loan-steps div {
    color: #8c96aa;
    display: grid;
    gap: 7px;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.loan-steps b {
    align-items: center;
    background: #edf4ff;
    border-radius: 999px;
    color: #9aa7c0;
    display: inline-flex;
    font-size: 13px;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.loan-steps .active b {
    background: var(--fk-primary);
    color: #fff;
}

.loan-steps small {
    font-size: 10px;
    font-weight: 800;
}

.loan-card h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 5px;
}

.loan-card > .text-center,
.loan-card > form,
.loan-card > .mini-partners {
    margin-left: 24px;
    margin-right: 24px;
}

.loan-card > form {
    margin-bottom: 24px;
}

.loan-card p {
    color: #6b7488;
    font-size: 13px;
    margin: 0;
}

.loan-range-label {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 18px 0 4px;
}

.loan-range-label strong {
    color: var(--fk-primary);
    font-size: 24px;
    font-weight: 900;
}

.range-values {
    color: #6f7890;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    justify-content: space-between;
}

.apply-form-alert {
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
    padding: 11px 13px;
}

.apply-form-alert.error {
    background: #fff1f1;
    border: 1px solid #f4a9a9;
    color: #8a1f1f;
}

.apply-form-alert.success {
    background: #eaf8ef;
    border: 1px solid #9fddb4;
    color: #176c35;
}

.apply-step-panel[hidden] {
    display: none !important;
}

.apply-otp-icon {
    align-items: center;
    background: rgba(17, 50, 160, 0.1);
    border-radius: 999px;
    color: var(--fk-primary);
    display: flex;
    font-size: 28px;
    height: 56px;
    justify-content: center;
    margin: 0 auto 12px;
    width: 56px;
}

.otp-input {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 12px;
    text-align: center;
}

.btn-link-clean {
    background: transparent;
    border: 0;
    color: var(--fk-primary);
    font-size: 12px;
    font-weight: 900;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-link-clean:disabled {
    color: #98a2b3;
    cursor: not-allowed;
    text-decoration: none;
}

.fk-alert {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    padding: 13px 15px;
}

.fk-alert.success {
    background: #e9f8ef;
    color: #13733b;
}

.fk-alert.error {
    background: #fff1f0;
    color: #b42318;
}

.payment-result-section {
    background:
        radial-gradient(circle at 11% 88%, rgba(246, 128, 0, 0.15), transparent 28%),
        linear-gradient(135deg, #eef5ff 0%, #f8fbff 52%, #fff 100%);
    padding: 92px 0;
}

.payment-result-card {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    box-shadow: var(--fk-shadow);
    margin: 0 auto;
    max-width: 720px;
    padding: 42px 32px 36px;
    text-align: center;
}

.payment-result-icon {
    align-items: center;
    background: var(--fk-primary);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 42px;
    height: 86px;
    justify-content: center;
    margin-bottom: 24px;
    width: 86px;
}

.payment-result-icon.failed {
    background: #d92d20;
}

.payment-result-card h1 {
    color: var(--fk-primary-dark);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 14px;
}

.payment-result-card p {
    color: var(--fk-muted);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 540px;
}

.payment-result-card p strong {
    color: var(--fk-primary-dark);
}

.payment-result-status {
    background: #f8faff;
    border: 1px solid rgba(17, 50, 160, 0.08);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    margin-top: 28px;
    padding: 16px 20px;
    text-align: left;
}

.payment-result-status div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.payment-result-status span {
    color: var(--fk-muted);
    font-size: 14px;
    font-weight: 700;
}

.payment-result-status strong {
    color: var(--fk-primary-dark);
    font-size: 14px;
    font-weight: 900;
    text-align: right;
}

.payment-result-status strong.paid {
    color: var(--fk-primary);
}

.payment-result-status strong.failed {
    color: #d92d20;
}

.payment-result-benefits {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.payment-result-benefits div {
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    min-height: 92px;
    padding: 16px 12px;
}

.payment-result-benefits i {
    color: var(--fk-primary);
    display: block;
    font-size: 25px;
    margin-bottom: 8px;
}

.payment-result-benefits strong {
    color: var(--fk-primary-dark);
    display: block;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
}

.payment-result-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.account-auth-section {
    background:
        radial-gradient(circle at 9% 90%, rgba(246, 128, 0, 0.16), transparent 30%),
        linear-gradient(135deg, #eef5ff 0%, #f8fbff 52%, #fff 100%);
    padding: 86px 0;
}

.account-auth-copy h1,
.account-hero h1 {
    color: var(--fk-primary-dark);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
}

.account-auth-copy p,
.account-hero p {
    color: var(--fk-muted);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.8;
    max-width: 620px;
}

.account-auth-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.account-auth-points span {
    align-items: center;
    color: #23304d;
    display: flex;
    font-size: 15px;
    font-weight: 900;
    gap: 12px;
}

.account-auth-points i {
    color: var(--fk-orange);
    font-size: 20px;
}

.account-auth-card {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    box-shadow: var(--fk-shadow);
    padding: 38px;
}

.account-card-icon {
    align-items: center;
    background: var(--fk-primary-soft);
    border-radius: 8px;
    color: var(--fk-primary);
    display: flex;
    font-size: 26px;
    height: 56px;
    justify-content: center;
    margin-bottom: 22px;
    width: 56px;
}

.account-auth-card h2 {
    color: var(--fk-primary-dark);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.account-auth-card p {
    color: var(--fk-muted);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.account-form .form-label {
    color: #27324a;
    font-size: 13px;
    font-weight: 900;
}

.account-form .form-control,
.account-form .input-group-text {
    border-color: var(--fk-border);
    border-radius: 8px;
    font-size: 15px;
    min-height: 50px;
}

.account-form .input-group .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.account-form-links a {
    color: var(--fk-primary);
    font-size: 13px;
    font-weight: 900;
}

.account-form textarea.form-control {
    min-height: 132px;
}

.account-form-grid {
    display: grid;
    gap: 20px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-form-span {
    grid-column: 1 / -1;
}

.account-hero {
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--fk-border);
    padding: 66px 0 54px;
}

.account-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.account-section {
    background: var(--fk-surface);
    padding: 42px 0 80px;
}

.account-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: 280px minmax(0, 1fr);
}

.account-sidebar,
.account-panel,
.account-metric {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    box-shadow: var(--fk-card-shadow);
}

.account-sidebar {
    padding: 18px;
    position: sticky;
    top: 128px;
}

.account-user-mini {
    align-items: center;
    border-bottom: 1px solid var(--fk-border);
    display: flex;
    gap: 12px;
    padding-bottom: 16px;
}

.account-user-mini > span {
    align-items: center;
    background: var(--fk-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.account-user-mini strong,
.account-user-mini small {
    display: block;
}

.account-user-mini strong {
    color: var(--fk-primary-dark);
    font-size: 14px;
    font-weight: 900;
}

.account-user-mini small {
    color: var(--fk-muted);
    font-size: 12px;
    font-weight: 800;
}

.account-nav {
    display: grid;
    gap: 6px;
    padding-top: 16px;
}

.account-nav a {
    align-items: center;
    border-radius: 8px;
    color: #4a5368;
    display: flex;
    font-size: 14px;
    font-weight: 900;
    gap: 10px;
    padding: 12px;
}

.account-nav a.active,
.account-nav a:hover {
    background: var(--fk-primary-soft);
    color: var(--fk-primary);
}

.account-content {
    display: grid;
    gap: 24px;
}

.account-metrics {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.account-metric {
    padding: 20px;
}

.account-metric span {
    align-items: center;
    background: var(--fk-primary-soft);
    border-radius: 8px;
    color: var(--fk-primary);
    display: flex;
    font-size: 22px;
    height: 42px;
    justify-content: center;
    margin-bottom: 14px;
    width: 42px;
}

.account-metric strong {
    color: var(--fk-primary-dark);
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.account-metric small {
    color: var(--fk-muted);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-top: 8px;
}

.account-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-panel {
    padding: 24px;
}

.account-panel-soft {
    background: #f8fbff;
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    padding: 18px;
}

.account-panel-head {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.account-panel-head h2 {
    color: var(--fk-primary-dark);
    font-size: 20px;
    font-weight: 900;
    margin: 0;
}

.account-panel-head a {
    color: var(--fk-primary);
    font-size: 13px;
    font-weight: 900;
}

.account-detail-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.account-detail-list div {
    align-items: start;
    border-bottom: 1px solid #edf1f7;
    display: grid;
    gap: 12px;
    grid-template-columns: 120px minmax(0, 1fr);
    padding-bottom: 12px;
}

.account-detail-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.account-detail-list dt {
    color: var(--fk-muted);
    font-size: 12px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.account-detail-list dd {
    color: #1d283f;
    font-size: 14px;
    font-weight: 800;
    margin: 0;
    overflow-wrap: anywhere;
}

.account-detail-list.compact div {
    grid-template-columns: 100px minmax(0, 1fr);
}

.membership-status-box {
    align-items: center;
    background: #f8fbff;
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px;
}

.membership-status-box span {
    align-items: center;
    background: var(--fk-orange);
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex: 0 0 42px;
    font-size: 20px;
    height: 42px;
    justify-content: center;
}

.membership-status-box strong,
.membership-status-box small {
    display: block;
}

.membership-status-box strong {
    color: var(--fk-primary-dark);
    font-weight: 900;
}

.membership-status-box small {
    color: var(--fk-muted);
    font-size: 12px;
    font-weight: 800;
    margin-top: 4px;
}

.document-progress {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.document-progress div {
    background: #e8eef9;
    border-radius: 999px;
    height: 12px;
    overflow: hidden;
}

.document-progress span {
    background: var(--fk-primary);
    display: block;
    height: 100%;
}

.document-progress strong {
    color: var(--fk-primary-dark);
    font-size: 15px;
    font-weight: 900;
}

.account-table-wrap {
    overflow-x: auto;
}

.account-table {
    border-collapse: collapse;
    min-width: 720px;
    width: 100%;
}

.account-table th,
.account-table td {
    border-bottom: 1px solid #edf1f7;
    color: #26324a;
    font-size: 13px;
    padding: 13px 10px;
    text-align: left;
}

.account-table th {
    color: var(--fk-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-status {
    background: var(--fk-primary-soft);
    border-radius: 999px;
    color: var(--fk-primary);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
}

.account-document-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-document-card {
    background: #f8fbff;
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    padding: 18px;
}

.account-document-card.uploaded {
    background: #f4fbf6;
    border-color: #b7e6c6;
}

.account-document-head {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.account-document-head span {
    color: var(--fk-orange);
    font-size: 20px;
}

.account-document-card.uploaded .account-document-head span {
    color: #159947;
}

.account-document-head strong {
    color: var(--fk-primary-dark);
    font-size: 15px;
    font-weight: 900;
}

.account-document-card small {
    color: #159947;
    font-weight: 900;
}

.account-offer-card > span {
    align-items: center;
    background: var(--fk-primary-soft);
    border-radius: 8px;
    color: var(--fk-primary);
    display: flex;
    font-size: 28px;
    height: 58px;
    justify-content: center;
    margin-bottom: 18px;
    width: 58px;
}

.account-offer-card h2 {
    color: var(--fk-primary-dark);
    font-size: 24px;
    font-weight: 900;
}

.account-offer-card p {
    color: var(--fk-muted);
    font-weight: 700;
    line-height: 1.7;
}

.account-offer-price {
    align-items: baseline;
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.account-offer-price del {
    color: #98a2b3;
    font-size: 16px;
    font-weight: 900;
}

.account-offer-price strong {
    color: var(--fk-primary-dark);
    font-size: 34px;
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 1;
}

.account-offer-price small {
    color: var(--fk-primary-dark);
    font-size: 13px;
    font-weight: 1000;
}

.account-offer-card ul,
.account-benefit-grid {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 20px 0 26px;
    padding: 0;
}

.account-offer-card li,
.account-benefit-grid div {
    align-items: center;
    color: #26324a;
    display: flex;
    font-size: 14px;
    font-weight: 900;
    gap: 10px;
}

.account-offer-card i,
.account-benefit-grid i {
    color: var(--fk-orange);
}

.account-membership-card {
    background: linear-gradient(135deg, #102e94 0%, #173fb1 58%, #071633 100%);
    border-radius: 18px;
    box-shadow: var(--fk-shadow);
    color: #fff;
    display: grid;
    gap: 30px;
    max-width: 540px;
    padding: 30px;
}

.account-membership-card > div:first-child {
    align-items: start;
    display: flex;
    flex-direction: column;
}

.account-membership-card small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-membership-card strong {
    color: #fff;
    font-weight: 900;
}

.account-membership-card > span {
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    display: flex;
    font-size: 24px;
    height: 52px;
    justify-content: center;
    justify-self: end;
    margin-top: -82px;
    width: 52px;
}

.account-membership-card h3 {
    color: #fff;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
}

.account-membership-footer {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

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

.account-contact-list {
    display: grid;
    gap: 14px;
}

.account-contact-list div {
    align-items: start;
    background: #f8fbff;
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    display: grid;
    gap: 4px 12px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 14px;
}

.account-contact-list i {
    color: var(--fk-orange);
    font-size: 20px;
    grid-row: span 2;
}

.account-contact-list span {
    color: var(--fk-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-contact-list strong {
    color: var(--fk-primary-dark);
    font-size: 14px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.account-terms-box {
    background: #f8fbff;
    border: 1px solid var(--fk-border);
    border-radius: 8px;
    color: #26324a;
    font-size: 15px;
    line-height: 1.8;
    max-height: 520px;
    overflow: auto;
    padding: 22px;
}

.account-check {
    align-items: center;
    display: flex;
    gap: 10px;
}

.account-check input {
    height: 18px;
    width: 18px;
}

.account-check span {
    color: var(--fk-primary-dark);
    font-weight: 900;
}

.apply-small-row {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.apply-two-col {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.apply-col-span {
    grid-column: 1 / -1;
}

.apply-actions {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
}

.btn-outline-fk {
    align-items: center;
    border: 1px solid var(--fk-border);
    border-radius: 999px;
    color: var(--fk-ink);
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    justify-content: center;
    min-height: 49px;
}

.eligibility-banner {
    background: linear-gradient(135deg, var(--fk-primary), #2451c6);
    border-radius: 18px;
    color: #fff;
    display: grid;
    gap: 4px;
    margin-bottom: 22px;
    padding: 24px;
    text-align: center;
}

.eligibility-banner span,
.eligibility-banner small {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    opacity: 0.88;
    text-transform: uppercase;
}

.eligibility-banner strong {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.apply-stats-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
}

.apply-stats-row div {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 14px;
    padding: 14px;
}

.apply-stats-row .highlight {
    background: var(--fk-orange);
    border-color: var(--fk-orange);
    color: #fff;
}

.apply-stats-row small {
    color: #7a8499;
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.apply-stats-row .highlight small {
    color: rgba(255, 255, 255, 0.9);
}

.apply-stats-row strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    margin-top: 5px;
}

.next-step-note {
    background: #e7f0ff;
    border-radius: 14px;
    color: #26324f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
    margin-top: 18px;
    padding: 14px;
}

.offer-pill {
    align-items: center;
    background: var(--fk-orange);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 7px;
    margin-top: 10px;
    padding: 8px 14px;
}

.membership-preview-card {
    background: linear-gradient(135deg, var(--fk-primary), #254ec0 58%, var(--fk-orange));
    border-radius: 18px;
    color: #fff;
    overflow: hidden;
    padding: 24px;
    position: relative;
}

.membership-preview-card::before,
.membership-preview-card::after {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    content: "";
    height: 150px;
    position: absolute;
    width: 150px;
}

.membership-preview-card::before {
    right: -55px;
    top: -60px;
}

.membership-preview-card::after {
    bottom: -70px;
    left: -60px;
}

.membership-preview-card > * {
    position: relative;
    z-index: 1;
}

.membership-preview-card small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0.8;
    text-transform: uppercase;
}

.membership-preview-card strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.membership-preview-card i {
    font-size: 32px;
}

.membership-number {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin: 34px 0 16px;
}

.membership-preview-card del {
    display: block;
    font-size: 12px;
    opacity: 0.65;
}

.order-summary {
    border: 1px solid var(--fk-border);
    border-radius: 14px;
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
}

.order-summary div {
    align-items: center;
    color: #5c667b;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    justify-content: space-between;
}

.order-summary .total {
    border-top: 1px solid var(--fk-border);
    color: var(--fk-ink);
    margin-top: 4px;
    padding-top: 9px;
}

.terms-check label {
    color: #667085;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}

.mini-partners {
    margin-bottom: 24px;
    margin-top: 26px;
    text-align: center;
}

.mini-partners h5 {
    font-size: 13px;
    font-weight: 900;
}

.mini-partners-window {
    max-width: 100%;
    overflow: hidden;
}

.mini-partner-row {
    animation: fk-marquee 30s linear infinite;
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding: 8px 0;
    width: max-content;
}

.mini-partner-row span {
    align-items: center;
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 12px;
    color: var(--fk-primary);
    display: flex;
    flex: 0 0 112px;
    font-size: 11px;
    font-weight: 900;
    justify-content: center;
    min-height: 64px;
    overflow: hidden;
    padding: 8px;
}

.mini-partner-row img {
    display: block;
    max-height: 40px;
    max-width: 88px;
    object-fit: contain;
}

.mini-partner-row:hover {
    animation-play-state: paused;
}

.legal-content {
    color: #43516e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 896px;
}

.legal-content h2 {
    color: var(--fk-ink);
    font-size: 24px;
    font-weight: 900;
    margin: 32px 0 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 20px;
}

.white-info-card {
    min-height: 148px;
    padding: 24px;
}

.white-info-card span,
.fee-card span {
    align-items: center;
    background: #e7f0ff;
    border-radius: 12px;
    color: var(--fk-primary);
    display: inline-flex;
    font-size: 22px;
    height: 45px;
    justify-content: center;
    margin-bottom: 18px;
    width: 45px;
}

.white-info-card h5,
.fee-card h5,
.flow-card h5 {
    font-size: 17px;
    font-weight: 900;
}

.white-info-card p,
.fee-card p,
.flow-card p {
    color: #667085;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

.quick-flow {
    padding: 58px 0;
}

.flow-card {
    min-height: 134px;
    padding: 24px;
}

.flow-card strong {
    color: var(--fk-orange);
    display: block;
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 12px;
}

.fee-card {
    min-height: 172px;
    padding: 24px;
}

.fee-card span {
    background: #fff0df;
    color: var(--fk-orange);
}

.criteria-section {
    padding: 76px 0;
}

.criteria-section h4 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 18px;
    text-align: center;
}

.criteria-box {
    background: #fff;
    border: 1px solid var(--fk-border);
    border-radius: 12px;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px;
}

.criteria-box h5 {
    font-size: 14px;
    font-weight: 900;
}

.criteria-box dl {
    display: grid;
    grid-template-columns: 1fr auto;
    margin: 0;
}

.criteria-box dt,
.criteria-box dd {
    color: #4a5570;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.criteria-box dd {
    font-weight: 900;
}

.criteria-note,
.warning-note {
    border: 1px solid var(--fk-border);
    border-radius: 10px;
    color: #667085;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
    margin: 15px 0 0;
    padding: 13px 16px;
}

.warning-note {
    background: #fff1f1;
    border-color: #f4a9a9;
    color: #8a1f1f;
}

.warning-note a {
    color: var(--fk-primary);
    font-weight: 900;
}

.site-footer {
    background: var(--fk-primary-dark);
    color: #fff;
    padding: 76px 0 0;
}

.footer-logo {
    background: #fff;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
    padding: 13px 17px;
}

.footer-logo img {
    height: 58px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
}

.footer-title {
    color: var(--fk-orange);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
}

.footer-contact {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact i {
    color: var(--fk-orange);
    margin-right: 8px;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.socials a {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 700;
    margin-top: 70px;
    padding: 24px 0;
}

.whatsapp-float {
    align-items: center;
    background: #25d366;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    bottom: 22px;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.33);
    color: #fff;
    display: inline-flex;
    font-size: 24px;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 24px;
    width: 58px;
    z-index: 999;
}

.whatsapp-float:hover {
    color: #fff;
}

@media (max-width: 1199px) {
    .hero-photo-wrap {
        aspect-ratio: 1;
        height: auto;
        left: 24px;
        width: min(512px, 92%);
    }
}

@media (max-width: 991px) {
    .navbar {
        min-height: auto;
        padding: 13px 0;
    }

    .navbar-brand img {
        height: 54px;
    }

    .hero-section {
        padding-top: 58px;
    }

    .hero-section .col-lg-6:first-child {
        padding-bottom: 32px;
        padding-top: 0;
    }

    .hero-visual {
        margin-top: 38px;
        min-height: 512px;
    }

    .hero-photo-wrap {
        left: 50%;
        max-width: 512px;
        width: min(512px, 78vw);
        transform: translateX(-50%);
    }

    .feature-strip {
        margin-top: -48px;
    }

    .feature-card,
    .feature-card:first-child,
    .feature-card:last-child {
        border-radius: 0;
    }

    .feature-card.active {
        transform: none;
    }

    .section-pad {
        padding: 82px 0;
    }

    .inner-hero {
        padding: 82px 0;
    }

    .apply-hero {
        padding-top: 46px;
    }

    .apply-photo {
        height: 360px;
    }

    .application-shell {
        max-width: none;
    }

    .about-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-section .row {
        grid-template-columns: 1fr;
        row-gap: 48px;
    }

    .about-image-wrap {
        margin: 0 auto;
        transform: none;
    }

    .about-section .section-title,
    .about-section .section-copy {
        max-width: none;
    }

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

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

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

    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-document-grid,
    .account-benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .top-strip {
        font-size: 11px;
    }

    .gst-text {
        display: none;
    }

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

    .hero-visual {
        min-height: 512px;
    }

    .hero-badge {
        height: 96px;
        right: -8px;
        top: -16px;
        width: 96px;
    }

    .hero-badge strong {
        font-size: 27px;
    }

    .hero-loan-card {
        bottom: -10px;
        left: 0;
    }

    .stats-section {
        padding: 56px 0 42px;
    }

    .about-floating-card {
        bottom: -22px;
        right: 16px;
        width: 188px;
    }

    .plans-grid > [class*="col"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        flex-basis: 200px;
        min-height: 142px;
    }

    .message-card {
        padding: 28px;
    }

    .criteria-box {
        grid-template-columns: 1fr;
    }

    .trust-tabs {
        border-radius: 999px;
        gap: 4px;
        grid-template-columns: repeat(3, 1fr);
    }

    .payment-result-section {
        padding: 62px 0;
    }

    .payment-result-card {
        padding: 30px 20px;
    }

    .payment-result-benefits {
        grid-template-columns: 1fr;
    }

    .payment-result-actions .btn {
        width: 100%;
    }

    .account-auth-section {
        padding: 56px 0;
    }

    .account-auth-card,
    .account-panel,
    .account-sidebar {
        padding: 22px;
    }

    .account-hero-actions {
        justify-content: flex-start;
    }

    .account-nav {
        grid-template-columns: 1fr;
    }

    .account-form-grid {
        grid-template-columns: 1fr;
    }

    .account-membership-footer {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .top-strip .container {
        justify-content: center !important;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-visual {
        min-height: min(512px, 86vw);
    }

    .hero-ring {
        border-width: 9px;
        left: 0;
        top: 0;
        width: 100%;
    }

    .hero-badge {
        border-radius: 0 16px 16px 16px;
        font-size: 11px;
        height: 84px;
        padding: 10px;
        right: -4px;
        top: -12px;
        width: 84px;
    }

    .hero-badge strong {
        font-size: 23px;
    }

    .hero-loan-card {
        bottom: -8px;
        padding: 11px 14px;
    }

    .hero-loan-card strong {
        font-size: 22px;
    }

    .section-title {
        font-size: 31px;
    }

    .plan-card {
        padding: 25px;
    }

    .loan-card {
        border-radius: 18px;
    }

    .apply-card-header {
        padding: 15px 18px;
    }

    .loan-card > .text-center,
    .loan-card > form,
    .loan-card > .mini-partners {
        margin-left: 18px;
        margin-right: 18px;
    }

    .loan-steps {
        margin-left: 18px;
        margin-right: 18px;
    }

    .trust-tabs span {
        font-size: 11px;
        gap: 4px;
        min-height: 34px;
    }

    .terms-check {
        padding-right: 48px;
    }

    .apply-two-col,
    .apply-stats-row,
    .apply-actions {
        grid-template-columns: 1fr;
    }

    .eligibility-banner strong {
        font-size: 32px;
    }

    .apply-photo {
        height: 320px;
    }

    .contact-card {
        align-items: flex-start;
    }

    .footer-bottom .d-flex {
        gap: 10px;
        text-align: center;
    }

    .account-metrics {
        grid-template-columns: 1fr;
    }

    .account-detail-list div,
    .account-detail-list.compact div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .document-progress {
        grid-template-columns: 1fr;
    }
}
