.smart-finance-wrapper {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin: 40px 0;
    font-family: 'DM Sans', sans-serif !important;
}

.finance-left,
.finance-right {
    flex: 1;
    min-width: 320px;
    background: #111111;
    border-radius: 16px;
    padding: 28px;
    color: #fff;
}

.finance-left h2 {
    margin: 0 0 30px;
    font-size: 34px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.field-group {
    margin-bottom: 28px;
}

.field-group label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.field-group small {
    display: block;
    color: #9b9b9b;
    margin-bottom: 14px;
    font-size: 13px;
}

.currency-input {
    position: relative;
}

.currency-input span {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.currency-input input {
    padding-left: 35px !important;
}

.field-group input,
.field-group select {
    width: 100%;
    height: 58px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    padding: 0 16px;
    font-size: 16px;
}

.field-group select option {
    background: #111111;
}

.term-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.term-btn {
    flex: 1;
    min-width: 100px;
    height: 69px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111111;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.term-btn span {
    display: block;
    font-size: 13px;
}

.term-btn.active {
    border-color: #b026ff;
    background: rgba(176, 38, 255, 0.08);
}

/* .calculate-btn,
.apply-now-btn {
    height: 52px;
    border: none;
    border-radius: 10px;
    padding: 0 28px;
    background: linear-gradient(90deg,
            #7b1fff,
            #c72cff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
} */






.calculate-btn,
.apply-now-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif !important;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;

    background: #9421EE !important;
    color: #ffffff !important;
    border: 1px solid transparent;

    overflow: hidden;
    transition: all 0.35s ease;
}

/* Hover animation layer */
.calculate-btn::before,
.apply-now-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, 0.15) 40%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0.15) 60%,
            transparent 80%);

    transform: translateX(-140%);
    transition: transform 0.9s ease;
}

/* Hover state */
.calculate-btn:hover,
.apply-now-btn:hover {
    background: #a533ff !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 18px rgba(148, 33, 238, 0.35);
}

/* Moving shine animation */
.calculate-btn:hover::before,
.apply-now-btn:hover::before {
    transform: translateX(120%);
}

.tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.tab-btn {
    flex: 1;
    height: 56px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    background: #2a2a2a;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #b026ff;
}

.finance-result-box {
    color: #fff;
}

.top-payment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.payment-text {
    font-size: 22px;
}

.monthly-price {
    width: 120px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.finance-table {
    width: 100%;
    /* border-collapse: collapse; */
    margin-bottom: 30px;
}

.finance-table td {
    padding: 14px 0;
    font-size: 16px;
}

.finance-table td:first-child {
    color: #bcbcbc;
}

.finance-table td:last-child {
    text-align: right;
    font-weight: 700;
}

.finance-loading {
    padding: 40px 0;
    text-align: center;
    font-size: 18px;
}

@media(max-width:768px) {

    .smart-finance-wrapper {
        flex-direction: column;
    }

    .finance-left h2 {
        font-size: 28px;
    }

    .field-group label {
        font-size: 18px;
    }

}