:root {
    --primary-accent: #00dfeb;
    --secondary-accent: #00c7e0;
    --primary-peach: #FF9A8B;
    --secondary-peach: #FF6A88;
    --neutral-dark: #0d1b2a;
    --cta: linear-gradient(135deg, #FF9A8B, #FF6A88);
    --cta-hover: linear-gradient(135deg, #FF6A88, #FF9A8B);
    --footerbg: linear-gradient(135deg, #00c3da, #1273ae);
    --text: #2b2b2b;
    --light-bg: #f9f9f9;
    --card-bg: #ffffff;
    --dark-green: #0a5c6d;
    --medium-green: #0c7c95;
    --light-green: #e6f4f7;
    --accent-color: #3498db;

}

/* body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
} */

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--neutral-dark);
    line-height: 1.6;
    background-color: var(--neutral-gray);
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-accent);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-accent);
}

/* Header Styles */
.navbar {
    background-color: var(--card-bg) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--cta) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--text) !important;
    margin: 0 8px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
}

.dropdown-item.active {
    background: var(--secondary-accent);
}

.dropdown-item:hover {
    background-color: rgba(0, 223, 235, 0.1);
    color: var(--cta);
}

.dropdown-divider {
    margin: 5px 0;
}

.btn-login {
    border: 1px solid var(--cta);
    color: var(--cta);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 20px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--secondary-accent);
    color: white !important;
    border-color: var(--secondary-accent);
}

.btn-apply {
    background: var(--cta);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 20px;
    border: none;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 106, 136, 0.3);
}

/* Mobile Menu - Left Side Offcanvas */
.offcanvas-start {
    width: 300px;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
}

.offcanvas-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--cta);
}

.mobile-menu .nav-link {
    padding: 12px 20px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.03);
    margin-left: 15px;
    width: calc(100% - 30px);
}

.mobile-menu .dropdown-item {
    padding: 10px 30px;
    font-size: 14px;
}

.mobile-menu-buttons {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 1. Quita el fondo oscuro cuando el off-canvas está abierto */
.offcanvas-backdrop.fade.show {
    /* display: none !important; */
    /* no lo mostramos */
    opacity: 0 !important;
}

.offcanvas {
    visibility: visible !important;
    /* evita que Bootstrap lo ponga hidden */
}

/* Los dos iconos dentro del botón */
.navbar-toggler .toggler-icon {
    font-size: 1.4rem;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
    -moz-transition: opacity .25s ease;
    -ms-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
}

.offcanvas.offcanvas-start {
    top: var(--navbar-height-px, 0px) !important;
    height: calc(100vh - var(--navbar-height-px, 0px)) !important;
}

/* Mobile Navbar Layout */
@media (max-width: 991.98px) {
    .navbar-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navbar-toggler {
        order: 1;
        border: none;
        padding: 0;
        font-size: 24px;
        width: 30px;
    }

    .navbar-brand {
        order: 2;
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .navbar-apply {
        order: 3;
    }

    .desktop-menu {
        display: none;
    }
}

/* Desktop Navbar Layout */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .navbar-apply {
        display: none;
    }

    .desktop-menu {
        display: flex;
    }

    #mobileMenu.offcanvas {
        visibility: hidden !important;
        transform: translateX(-100%) !important;
    }

    /* Por si quedase backdrop colgado */
    .offcanvas-backdrop {
        display: none !important;
    }
}

/* Hero Section */
.term-loan-hero {
    background: linear-gradient(135deg, var(--neutral-dark), var(--secondary-accent));
    color: white;
    padding: 130px 0 100px;
    position: relative;
    overflow: hidden;
}

.term-loan-hero::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefit-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefit-list i {
    color: var(--primary-accent);
    margin-right: 15px;
    font-size: 20px;
}

.form-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 28px;
    position: relative;
    z-index: 1;
}

.form-title {
    color: #484848;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #484848;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.form-divider {
    height: 1px;
    background-color: #e6e6e6;
    margin: 20px 0;
}

.form-label {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0px;
    display: block;
}

.btn-pill {
    border-radius: 5px;
    padding: 8px 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
    background-color: white;
    color: var(--text);
    flex: 1;
    text-align: center;
}

.btn-pill:hover {
    background: var(--cta);
    color: white;
    border-color: transparent;
}

.btn-pill.active {
    background: var(--cta);
    color: white;
    border-color: transparent;
}

.btn-pill-group {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
}

.form-control {
    padding: 8px 5px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--cta);
    box-shadow: 0 0 0 0.25rem rgba(24, 140, 210, 0.25);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.input-with-icon input {
    padding-left: 40px;
}

.btn-submit {
    width: 100%;
    height: 48px;
    border-radius: 50px;
    background: var(--cta);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 106, 136, 0.3);
}

.btn-submit-link {
    display: inline-block;
    /* Esto es crucial para que funcione como botón */
    width: 100%;
    height: 48px;
    line-height: 48px;
    /* Centrar texto verticalmente */
    text-align: center;
    border-radius: 50px;
    background: var(--cta);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    /* Quitar subrayado de enlace */
    border: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
    /* Mostrar cursor de mano como en los botones */
}

.btn-submit-link:hover {
    background-color: var(--secondary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 106, 136, 0.3);
    color: white;
    /* Mantener color blanco en hover */
    text-decoration: none;
    /* Evitar subrayado en hover */
}

.form-footer {
    text-align: center;
    color: #777;
    margin-top: 20px;
    font-size: 14px;
}

.form-footer a {
    color: var(--cta);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    color: var(--secondary-accent);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #777;
    font-style: italic;
    margin-top: 20px;
    text-align: left;
}


/*Loan Calculator*/
.loan-calculator__icon,
.loan-calculator__input-pencil-icon {
    font-size: 0.8125rem;
    line-height: 1rem;
}

.u-font-x-large {
    font-size: 1.625rem;
    line-height: 2rem;
}

.loan-calculator__toggle-breakdown.is-active:before {
    font-size: 1rem;
    line-height: 1.5rem;
    display: inline;
    text-indent: 0;
    content: attr(data-btn-copy);
}

.loan-calculator__toggle-breakdown.is-active>.loan-calculator__btn-copy {
    display: none;
}

.loan-calculator__btn-copy,
.loan-calculator__icon--arrow {
    display: -ms-flexbox;
    display: flex;
}

.loan-calculator__icon--arrow {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-left: 0.5rem;
}

.loan-calculator__toggle-breakdown.is-active .loan-calculator__icon--arrow {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.loan-calculator__breakdown-title {
    font-size: 1rem;
    line-height: 1.5rem;
    display: none;
    margin-bottom: 0.5rem;
}

@media only screen and (min-width: 800px) {
    .loan-calculator__breakdown-title {
        display: #000;
    }
}

.loan-calculator__wrap {
    max-width: 960px;
    margin: 0 auto;
}

@media only screen and (max-width: 479px) {
    .loan-calculator__wrap {
        padding: 0;
    }
}

.loan-calculator__input-rate {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0;
    color: #424554;
    font-weight: 400;
}

.loan-calculator__input-number {
    padding: 0;
    text-align: left;
    outline: 0;
    border: none;
    background: 0 0;
}

.loan-calculator__input-per-month {
    font-size: 1.625rem;
    line-height: 3rem;
    display: table;
    padding: 0;
    margin: 0.5rem auto 1rem;
    text-align: left;
    color: #455456;
}

.loan-calculator__input-per-month input {
    width: 100%;
    max-width: 130px;
}

.loan-calculator__main {
    position: relative;
    z-index: 2;
    width: 100%;
    /* margin-bottom: -80px; */
    text-align: center;
    background-color: #bce5f8;
    border: 1px solid #ddd;
}

.no-margin {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .loan-calculator__main {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .loan-calculator__secondary-settings {
        margin: 0rem;
        border: 1px solid #ddd;
    }
}

@media only screen and (min-width: 768px) {
    .loan-calculator__main {
        display: flex;
        display: -ms-flexbox;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        width: 100%;
    }

    .no-flexbox .loan-calculator__main:after {
        display: block;
        width: 100%;
        clear: both;
        content: "";
    }

    .no-flexbox .loan-calculator__main>* {
        float: left;
    }

    .loan-calculator__main> :nth-child(1) {
        width: 61.8029%;
        padding: 2rem 1rem;
        margin: 0;
    }

    .no-flexbox .loan-calculator__main> :nth-child(1) {
        clear: left;
    }

    .loan-calculator__main> :nth-child(2) {
        width: 38.197%;
    }

    .loan-calculator__main>* {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.loan-calculator__primary-settings {
    /* padding: 0 1rem; */
    /* padding: 2rem 1rem; */
    padding-top: 2rem;
}

.loan-calculator__secondary-settings {
    padding: 2rem 1rem;
    background-color: #fff;
    border-left: 1px solid get-colr(grey, 3x-light);
}

.loan-calculator__eligibility-button {
    margin-top: 1rem;
}

@media only screen and (max-width: 767px) {
    .loan-calculator__eligibility-button {
        display: none;
    }
}

.loan-calculator__breakdown {
    color: #424554;
}

.loan-calculator__toggle-breakdown {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin: 0 auto;
    border: none;
    background: 0 0;
    outline: 0;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .loan-calculator__toggle-breakdown {
        display: none;
    }
}

.loan-calculator__breakdown-table tr>* {
    padding-top: 0.5rem;
}

.loan-calculator__breakdown-table table {
    width: 100%;
}

.loan-calculator__breakdown-table {
    transition: none;
    padding-top: 0.5rem;
    border-top: 1px solid #c9cbd9;
}

.loan-calculator__breakdown-key,
.loan-calculator__breakdown-key-main,
.loan-calculator__breakdown-value,
.loan-calculator__breakdown-value-main {
    font-size: 0.8rem;
    line-height: 1.5rem;
    font-weight: 400;
}

.loan-calculator__breakdown-key,
.loan-calculator__breakdown-key-main {
    text-align: left;
}

.loan-calculator__breakdown-value,
.loan-calculator__breakdown-value-main {
    text-align: right;
}

.get-a-quote,
.promoted-values,
.stats-info {
    text-align: center;
}

.loan-calculator__input-to-borrow {
    background: #02b3cc;
}

.loan-calculator__input-to-borrow-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #424554;
    font-weight: 400;
}

.loan-calculator__input-loan-amount {
    margin-top: 1rem;
}

@media only screen and (min-width: 768px) {
    .loan-calculator__input-loan-amount {
        width: 77.41013%;
        margin-left: 11.29493%;
        margin-right: 11.29483%;
    }
}

.loan-calculator__input-loan-amount::after {
    clear: both;
}

.ie-8 .loan-calculator__input-loan-amount,
.ie-9 .loan-calculator__input-loan-amount {
    display: none;
}

.loan-calculator__label {
    margin-top: 1rem;
    color: #424554;
}

.loan-calculator__label--from {
    float: left;
    line-height: 1em;
}

.loan-calculator__label--to {
    float: right;
    line-height: 1em;
}

.loan-calculator__loan-term-outer {
    display: table-cell;
}

.loan-calculator__loan-terms {
    display: table;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 2rem;
    margin: 0 auto;
    max-width: 416px;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    table-layout: fixed;
}

.loan-calculator__loan-terms-heading {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    color: #424554;
    font-weight: 400;
}

.get-a-quote__header {
    font-size: 1.625rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
}

.get-a-quote__copy {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 2rem;
}

.get-a-quote__button {
    margin: 0;
}

.loan-calculator__loan-term {
    opacity: 0;
    filter: alpha(opacity=0);
    position: fixed;
    top: 0;
    left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.loan-calculator__loan-term-label {
    font-size: 0.8.2rem;
    line-height: 2rem !important;
    display: block;
    color: #000;
    width: 40px;
    margin: 0 auto;
    line-height: 2.5rem !important;
    border: 1px solid #c9cbd9;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: inherit !important;
    /* padding: 0% !important; */
}

.contenedor_calculadora {
    width: 60%;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 640px) {
    .contenedor_calculadora {
        width: 100%;

    }
}

.boton_calculadora a {
    background-color: #04cbdf !important;
    border-color: #04cbdf !important;
    width: 200px !important;
}

.boton_calculadora a:hover {
    background-color: #1ed2ee !important;
    border-color: #1ed2ee !important;
    border: 1px solid !important;
    background-position: 0 -15px;
}

@media only screen and (min-width: 640px) {
    .loan-calculator__loan-term-label {
        width: 2.5rem !important;
        height: 2.5rem !important;
        /* line-height: 3rem; */
    }
}

.loan-calculator__loan-term:checked {
    color: #fff;
    outline: 0;
}

.loan-calculator__loan-term:checked~.loan-calculator__loan-term-label {
    background-color: #02b3cc;
    color: #fff;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.loan-calculator__slider {
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    background-color: white;
    height: auto;
}

.loan-calculator__slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background-color: #02b3cc;
    border-radius: 3px;
}

.loan-calculator__slider::-webkit-slider-thumb {
    height: 36px;
    width: 18px;
    margin-top: -15px;
    border: none;
    box-shadow: 2px 2px 0 0 rgba(6, 94, 148, 0.2);
    border-radius: 10%;
    background-color: #02b3cc;
    -webkit-appearance: none;
}

.loan-calculator__slider:focus {
    outline: 0;
}

.loan-calculator__slider:focus::-webkit-slider-runnable-track {
    background-color: #02b3cc;
}

.loan-calculator__slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background-color: #02b3cc;
    border: none;
    border-radius: 3px;
}

.loan-calculator__slider::-moz-range-thumb {
    height: 36px;
    width: 18px;
    border: none;
    border-radius: 10%;
    background-color: #02b3cc;
    color: #02b3cc;
    box-shadow: 2px 2px 0 0 rgba(6, 94, 148, 0.2);
}

.loan-calculator__slider::-moz-focusring {
    border: none;
    outline: 0;
}

.loan-calculator__slider::-moz-focus-outer {
    border: none;
}

.loan-calculator__slider:focus::-moz-range-track {
    background-color: #02b3cc;
}

.loan-calculator__slider::-ms-track {
    width: 100%;
    height: 6px;
    color: transparent;
    background: 0 0;
    border-color: transparent;
    border-width: 1rem 0;
}

.loan-calculator__slider::-ms-fill-lower {
    background-color: #02b3cc;
    border-radius: 3px;
}

.loan-calculator__slider::-ms-fill-upper {
    background-color: #02b3cc;
    border-radius: 3px;
}

.loan-calculator__slider::-ms-thumb {
    height: 18px;
    width: 18px;
    border: none;
    border-radius: 10%;
    background-color: #02b3cc;
    box-shadow: 2px 2px 0 0 rgba(6, 94, 148, 0.2);
}

.loan-calculator__slider:focus::-ms-fill-lower {
    background-color: #02b3cc;
}

.loan-calculator__slider:focus::-ms-fill-upper {
    background-color: #02b3cc;
}

.loan-calculator__slider::-ms-tooltip {
    display: none;
}

.loan-calculator__legal-copy {
    padding-top: 6rem;
    padding-bottom: 3rem;
    color: #9396a7;
    text-align: center;
    background-color: #fff;
}

.loan-calculator__legal-copy [class*="fci"] {
    margin-right: 0.25rem;
}

.loan-calculator__legal-copy p {
    font-size: 1.1rem !important;
    font-weight: 200;
    font-family: 'Roboto Condensed', sans-serif !important;
    color: #000;
}

.loan-amount-container,
.loan-amount-input {
    font-size: 2.625rem;
    line-height: 3rem;
    color: #02b3cc;
    outline: 0;
}

.loan-amount-container {
    display: table;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    color: #02b3cc;
    text-align: center;
    border-bottom: 1px dashed;
    font-weight: bold;
}

.loan-amount-input {
    max-width: 9.375rem;
    width: 100%;
    padding: 0;
    text-align: left;
    border: none;
    background: 0 0;
    font-weight: bold;
}

.borrowers-pg__calc,
.sml-business-loans-calc__table--override .table__row:hover {
    background: #fff;
}

.sml-business-loans-calc__table {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.sml-business-loans-calc__table--override {
    display: table-row-group;
}

@media only screen and (max-width: 639px) {
    .sml-business-loans-calc__table-cell--term {
        width: 110px;
    }

    .sml-business-loans-calc__table-cell--fee {
        width: 90px;
    }

    .sml-business-loans-calc__table-row--collapsed {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .sml-business-loans-calc__btn-group {
        display: block;
    }
}

.u-currency-label:before {
    content: attr(data-currency);
}

.dynamic-number-input__focusable:after,
.fci-pencil:before,
.notification--warning:before {
    content: "\";
}

@font-face {
    font-family: fc-icons;
    src: url(https://static.fundingcircle.com/css/fonts/fc-icons-4122c765.eot);
    src: url(/css/fonts/fc-icons) format("eot"),
        url(https://static.fundingcircle.com/css/fonts/fc-icons-140d538e.woff) format("woff"),
        url(https://static.fundingcircle.com/css/fonts/fc-icons-e9cd95ad.ttf) format("truetype"),
        url(https://static.fundingcircle.com/css/fonts/fc-icons-d86b3462.svg) format("svg");
    font-weight: 400;
    font-style: normal;
}

.dynamic-number-input__focusable:after,
.fci-icon:before,
.form-checkbox__item:before,
.go-to-link:before,
.message:before,
.notification:before,
[class*=" fci-"]:before,
[class^="fci-"]:before {
    font-family: fc-icons !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.process-diagram--quick-and-easy .font-weight-normal,
.site-map h1 {
    font-weight: 400;
}

.borrowers-pg__calc .calculator__intro {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-family: serif;
}

.slick-dots li button:before,
.slick-next:before,
.slick-prev:before {
    font-family: slick;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.loan-calculator__breakdown-key {
    background: 0 0;
}


.u-theme-contrast {
    background-color: #f7f8fe !important;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary {
    background: var(--cta);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 106, 136, 0.4);
}

.btn-hero-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 106, 136, 0.5);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.benefit-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--cta);
    transform: rotate(10deg) scale(1.1);
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.benefit-description {
    color: #666;
}

/* Section Styles */
.section {
    padding: 80px 0;
}


/* Explanation Section */
.explanation-section {
    padding: 80px 0;
}

.explanation-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.section-description {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--neutral-dark);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right,
            #ddd 0px,
            #ddd 10px,
            transparent 10px,
            transparent 20px);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step:nth-child(1) .step-circle,
.step:nth-child(3) .step-circle {
    /* background-color: #006b4f; */
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
}

.step:nth-child(2) .step-circle,
.step:nth-child(4) .step-circle {
    /* background-color: #27ae60; */
    background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
}

.step-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--neutral-dark);
    margin-bottom: 10px;
}

.step-description {
    color: #555555;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        margin-bottom: 40px;
        width: 100%;
        max-width: 300px;
    }

    .step:last-child {
        margin-bottom: 0;
    }
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
}

.use-case-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.use-case-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.use-case-content {
    padding: 25px;
}

.use-case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-accent);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h5 {
    margin-bottom: 5px;
    font-weight: 700;
}

.author-info p {
    margin: 0;
    color: #777;
}

/* Reviews */
.reviews-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.reviews-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    /* width: 100%;
    padding: 0 15px; */
}

.review-group {
    display: flex;
    flex: 0 0 100%;
    gap: 0px;
    /* padding: 0 10px; */
    min-width: 0;
}

.review-item {
    flex: 0 0 23%;
    margin: 0 1%;
    text-align: center;
}

.review-img {
    /* width: 100%; */
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.review-img:hover {
    transform: scale(1.03);
}

.review-card {
    flex: 0 0 calc(25% - 15px);
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}


.review-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
}

.review-text {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.time-ago {
    font-size: 13px;
}

.star-icon {
    color: #FFB703;
    margin-right: 3px;
    font-size: 16px;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    margin: 0 4px;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--cta);
    transform: scale(1.2);
}

@media (max-width: 992px) {

    .review-item {
        flex: 0 0 48%;
        margin-bottom: 15px;
    }

    .review-card {
        flex: 0 0 calc(50% - 10px);
        min-height: 220px;
    }

    .review-group {
        padding: 0 5px;
    }
}

@media (max-width: 768px) {

    .review-item {
        flex: 0 0 98%;
    }


    .review-card {
        flex: 0 0 100%;
        min-height: auto;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

.reviews-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
    /* width: 100%; */
}

/* .review-group {
    display: flex;
    flex: 0 0 100%;
    gap: 24px;
    padding: 0 12px;
} */
.review-group {
    display: flex;
    flex: 0 0 100%;
    justify-content: space-around;
    /* padding: 10px; */
    width: 100%;
    padding: 0 15px;
}

.review-card {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    margin: 0 4px;
    padding: 0;
}

.carousel-indicators button.active {
    background-color: #00dfeb;
}

/* Floating Animation */
@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/**/

/* FAQ Section */
.faq {
    background-color: var(--neutral-gray);
}

.accordion-button {
    font-weight: 600;
    color: var(--neutral-dark);
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 223, 235, 0.1);
    color: var(--neutral-dark);
    border: none;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
    color: #666;
    padding: 20px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300dfeb'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300dfeb'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* CTA Section */
.rbf-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--medium-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-button {
    background: var(--cta);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 106, 136, 0.3);
}

/* Footer */
footer {
    background: var(--footerbg);
    color: white;
    padding: 60px 0 0;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
    color: white !important;
    text-decoration: none;
}

.footer-about {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: #0f6193;
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-step:nth-child(even) {
        margin-left: 0;
        padding-left: 70px;
    }

    .timeline-step:nth-child(even) .step-number {
        left: 10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .rbf-hero {
        padding: 150px 0 100px;
    }
}

/* Smart Financing Section Styles */
.smart-financing {
    padding: 80px 0;
}

.financing-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.financing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: all 0.4s ease;
}

.card-title {
    position: relative;
    z-index: 2;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    transition: all 0.4s ease;
}

.card-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cta);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 3;
}

.card-hover-content p {
    color: white;
    font-size: 18px;
    text-align: center;
    margin: 0;
}

.financing-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.financing-card:hover .card-title {
    transform: translateY(-40px);
}

.financing-card:hover .card-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .smart-financing {
        padding: 60px 0;
    }

    .card-image {
        height: 220px;
        padding: 20px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-hover-content p {
        font-size: 16px;
    }
}