:root {
    --brand: #ff7700;
    --brand-soft: #fff4ec;
    --brand-ink: #b85200;
    --ink: #0b0f17;
    --ink-2: #3a4150;
    --ink-3: #6b7280;
    --ink-4: #9aa3af;
    --line: #eceff3;
    --line-2: #e3e7ec;
    --bg: #f6f7f9;
    --card: #ffffff;
    --soft: #fafafa;
    --ok: #10b981;
    --err: #ef4444;
    --radius: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased
}

body {
    min-height: 100vh;
    display: block;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink)
}

h1 {
    font-size: 26px;
    line-height: 1.25
}

h2 {
    font-size: 20px
}

p {
    margin: 0;
    color: var(--ink-3);
    font-size: 14px;
    line-height: 1.55
}

a {
    color: var(--brand);
    text-decoration: none
}

.muted {
    color: var(--ink-3);
    font-size: 13px
}

.tiny {
    font-size: 12px;
    color: var(--ink-4)
}

/* Shell */

div#smooth-wrapper {
    width: 100%;
    height: 100vh;
}

.shell {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
    display: grid;
    grid-template-columns: 320px 1fr;
    height: 100vh;
}

/* Sidebar */
.side {
    background: #f3f3f3;
    border-right: 1px solid var(--line);
    padding: 15px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 32px;
    border-bottom: 1px solid #ddddddb8;
    padding-bottom: 15px;
    margin: 0px -24px;
}

.brand img {
    max-width: 125px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--brand);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .02em
}

.brand-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink)
}

.brand-name span {
    display: block;
    font-size: 11px;
    color: var(--ink-4);
    font-weight: 400;
    margin-top: 2px
}

.stepper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
    position: relative
}

.stepper::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background-color: var(--line-2);
    z-index: 0;
}

.step {
    display: flex;
    gap: 12px;
    padding: 15px 8px;
    border-radius: 10px;
    cursor: default;
    position: relative
}

.step .dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--line-2);
    background: #fff;
    display: grid;
    place-items: center;
    flex: none;
    margin-top: 2px;
    transition: .2s;
    position: relative;
    z-index: 1;
}

.step .dot svg {
    width: 11px;
    height: 11px;
    opacity: 0
}

.step .meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0
}

.step .t {
    font-size: 13.5px;
    color: var(--ink-2);
    font-weight: 500;
    line-height: 1.3
}

.step .s {
    font-size: 12px;
    color: #76797e;
    font-weight: 400;
    line-height: 1.4
}

.step.done .dot {
    background: var(--brand);
    border-color: var(--brand)
}

.step.done .dot svg {
    opacity: 1;
    color: #fff
}

.step.active .dot {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-soft)
}

.step.active .dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step.active .t {
    color: var(--ink)
}

.side-foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink-4)
}

.side-foot a {
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-foot a svg {
    font-size: 18px;
}

strong#resend-countdown {
    font-size: 16px;
}

.head.heder-lasts {
    text-align: center;
}


/* Content */
.main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.screen-wrapper-neone {
    flex: 1;
    overflow-y: auto;
    padding: 30px 56px 120px 56px;
    width: 100%;
}

.head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px
}

.eyebrow {
    font-size: 12px;
    color: var(--brand);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500
}

.body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Fields */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    width: 100%
}

.field label {
    font-size: 12.5px;
    color: var(--ink-2);
    font-weight: 500
}

.field label .req {
    color: var(--err);
    margin-left: 2px
}

.input,
.select,
textarea {
    width: 100%;
    height: 46px !important;
    padding: 0 14px;
    border: 1px solid var(--line-2) !important;
    background: #fff;
    border-radius: 10px;
    font: 400 14px / 1 'Inter', sans-serif;
    color: var(--ink);
    transition: .15s;
    outline: none;
}

textarea {
    height: auto;
    padding: 12px 14px;
    min-height: 96px;
    resize: vertical;
    line-height: 1.5
}

.input::placeholder,
textarea::placeholder {
    color: var(--ink-4);
    font-weight: 300
}

.input:focus,
textarea:focus,
.select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft)
}

.input-grp {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    background: #fff;
    transition: .15s
}

.input-grp:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft)
}

.input-grp .prefix {
    display: grid;
    place-items: center;
    padding: 0 14px;
    color: var(--ink-2);
    font-weight: 500;
    font-size: 14px;
    border-right: 1px solid var(--line-2);
    background: var(--soft);
    border-radius: 10px 0 0 10px
}

.input-grp input {
    flex: 1;
    height: 44px;
    border: 0;
    outline: none;
    padding: 0 14px;
    font: 400 14px 'Inter', sans-serif;
    background: transparent;
    color: var(--ink)
}

.input-grp input::placeholder {
    color: var(--ink-4);
    font-weight: 300
}

.check {
    display: flex;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--ink-2);
    cursor: pointer;
    line-height: 1.5;
    user-select: none;
}

.check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.check>span {
    position: relative;
    padding-left: 28px;
    display: inline-block;
}

.check>span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--line-2);
    border-radius: 5px;
    background-color: #fff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.check>span::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 5px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.check:hover input[type="checkbox"]:not(:checked)~span::before {
    border-color: var(--brand);
    background-color: var(--brand-soft);
}

.check input[type="checkbox"]:checked~span::before {
    background-color: var(--brand);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}

.check input[type="checkbox"]:checked~span::after {
    transform: rotate(45deg) scale(1);
}

.check input[type="checkbox"]:focus-visible~span::before {
    box-shadow: 0 0 0 3px var(--brand-soft);
    border-color: var(--brand);
}

/* OTP */
.otp {
    display: flex;
    gap: 10px
}

.otp input {
    width: 52px;
    height: 56px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    font: 500 18px 'Inter', sans-serif;
    color: var(--ink);
    outline: none;
    transition: .15s;
}

.otp input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft)
}

/* Buttons */
.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    border-top: 1px solid var(--line);
    gap: 12px;
    position: fixed;
    bottom: 0;
    width: calc(100% - 320px);
    right: 0;
    padding: 15px 24px;
    background: #ffffff;
    z-index: 99;
}

.btn {
    height: 44px;
    padding: 0 22px;
    border-radius: 10px;
    border: 1px solid transparent;
    font: 500 14px 'Inter', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .15s;
    outline: none;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px var(--brand-soft)
}

.btn-primary {
    background: var(--brand);
    color: #fff
}

.btn-primary:hover,
.btn-primary:focus {
    border: 1px solid var(--brand);
    background-color: var(--brand);
    color: #fff;
}

.form-wrap-ap {
    margin: 0px auto;
    width: 100%;
}

.btn-ghost {
    background: #fff;
    color: var(--ink-2);
    border-color: var(--line-2)
}

.btn-ghost:hover {
    background: var(--soft)
}

.btn-link {
    background: transparent;
    color: var(--ink-3);
    padding: 0;
    height: auto
}

.btn-link:hover {
    color: var(--brand)
}

.btn[disabled] {
    opacity: .55;
    cursor: not-allowed
}

/* Cards / tiles */
.tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.tile {
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    background: #fff;
    transition: .15s;
    display: flex;
    align-items: center;
    gap: 12px
}

.tile:hover {
    border-color: #d4d8de
}

.tile.sel {
    border-color: var(--brand);
    background: var(--brand-soft)
}

.tile .ic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--soft);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: var(--ink-2)
}

.tile.sel .ic {
    background: #fff;
    color: var(--brand)
}

.tile .lbl {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.3
}

.tile .sub {
    font-size: 11.5px;
    color: var(--ink-4);
    margin-top: 2px
}

/* Range / EMI */
.slider {
    appearance: none;
    width: 100%;
    height: 4px;
    background: var(--line-2);
    border-radius: 99px;
    outline: none
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .15)
}

.emi-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 8px
}

.emi-card .k {
    font-size: 12px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 500
}

.emi-card .v {
    font-size: 28px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -.02em;
    margin-top: 4px
}

.emi-card .sub {
    font-size: 12px;
    color: var(--ink-4);
    margin-top: 2px
}

/* Upload */
.drop {
    border: 1px dashed var(--line-2);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    background: var(--soft);
    transition: .15s;
    cursor: pointer
}

.drop:hover {
    border-color: var(--brand);
    background: var(--brand-soft)
}

.drop .ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border: 1px solid var(--line)
}

.drop .t {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500
}

.drop .s {
    font-size: 12px;
    color: var(--ink-4);
    margin-top: 4px
}

.file {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    margin-top: 10px
}

.file .ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--brand-soft);
    display: grid;
    place-items: center;
    color: var(--brand)
}

.file .info {
    flex: 1;
    min-width: 0
}

.file .info .n {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.file .info .m {
    font-size: 11.5px;
    color: var(--ink-4);
    margin-top: 2px
}

.file .del {
    color: var(--ink-4);
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px
}

.file .del:hover {
    color: var(--err);
    background: #fef2f2
}

/* Processing */
.processing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 0;
    gap: 18px;
    flex: 1
}

.ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--line);
    border-top-color: var(--brand);
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.pstatus {
    font-size: 14px;
    color: var(--ink-2);
    font-weight: 500
}

/* Success */
.success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 0;
    gap: 18px;
    flex: 1
}

.success .badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brand-soft);
    display: grid;
    place-items: center;
    color: var(--brand);
    animation: pop .5s ease
}

@keyframes pop {
    0% {
        transform: scale(.6);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.summary {
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    background: #f8f8f8b5;
    text-align: left;
    margin-top: 8px
}

.summary .r {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px dashed #d9d9d9
}

.summary .r:last-child {
    border-bottom: 0
}

.summary .r .l {
    color: var(--ink-3)
}

.summary .r .v {
    color: var(--ink);
    font-weight: 500
}

body.homepage-sofi .header-area {
    background: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(0 0 0) 100%);
    display: none;
}

.success button.btn.btn-primary {
    min-width: 110px;
    justify-content: center;
}

.top-header-wp {
    display: flex;
    justify-content: space-between;
    padding: 15px 34px;
    border-bottom: 1px solid #ddddddad;
    align-items: center;
    background: #ffffff;
    flex-shrink: 0;
}

.top-header-wp a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-header-wp a span {
    background: #f2f2f2;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.top-header-wp>span {
    background: #ff770026;
    color: var(--brand);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
}

/* Screen animation */
.screen {
    display: none;
    width: 55%;
    margin: auto;
}

.screen.show {
    display: flex;
    flex-direction: column;
    flex: 1
}

.screen.show .head,
.screen.show .body,
.screen.show .form-wrap-ap,
.screen.show .processing,
.screen.show .success {
    animation: fadeIn .25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}


.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--brand);
    border-color: var(--brand);
}

.select2-container--default .select2-results__option--selected {
    background-color: #dddddd47;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 8px;
    opacity: 0;
    transition: .2s;
    pointer-events: none
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

@media (max-width:880px) {
    body {
        padding: 0;
        overflow-x: hidden
    }

    .shell {
        grid-template-columns: 1fr;
        border-radius: 0;
        min-height: 100vh;
        height: auto;
        overflow-x: hidden
    }

    .side {
        display: none
    }

    .main {
        padding: 0;
        height: auto;
        overflow: visible
    }

    .screen-wrapper-neone {
        padding: 20px 20px 100px 20px !important;
        height: auto;
        overflow-x: hidden !important;
    }

    .screen {
        width: 100% !important;
    }

    .actions {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 15px 20px !important;
    }

    .row {
        grid-template-columns: 1fr
    }

    .otp input {
        width: 44px;
        height: 50px
    }
}

/* intl-tel-input Custom Overrides */
.iti {
    display: block !important;
    width: 100% !important;
}

.iti__country-list {
    /* border-radius: 10px !important; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid var(--line-2) !important;
    z-index: 100 !important;
}

.iti__search-input {
    height: 38px !important;
}

.iti--inline-dropdown .iti__dropdown-content {
    border-radius: 8px;
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    height: 46px !important;
    border: 1px solid var(--line-2) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 6px !important;
    outline: none !important;
    background-color: #fff !important;
    transition: all 0.15s ease-in-out !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--ink) !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    padding-left: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 3px var(--brand-soft) !important;
}

.select2-dropdown {
    border: 1px solid var(--line-2) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--brand) !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option {
    padding: 10px 14px !important;
    font-size: 14px !important;
}

/* Flatpickr input alignment */
.date-picker-flatpickr {
    background-color: #fff !important;
    cursor: pointer !important;
}

/* Customer summary card styling */
.customer-summary-box {
    border: 1px solid var(--line) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02) !important;
    margin-bottom: 24px !important;
}

.summary-grid-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin-bottom: 12px !important;
}

.summary-grid-row:last-child {
    margin-bottom: 0 !important;
}

.summary-grid-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.summary-grid-col span {
    font-size: 12px !important;
    color: var(--ink-3) !important;
    font-weight: 500 !important;
}

.summary-grid-col strong {
    font-size: 14px !important;
    color: var(--ink) !important;
    font-weight: 600 !important;
}

.summary-grid-col .kyc-badge {
    background-color: #e6f9f2 !important;
    color: #10b981 !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    width: fit-content !important;
}

/* Upload progress styling */
.upload-progress-container {
    margin-top: 10px !important;
    background: var(--soft) !important;
    border: 1px solid var(--line) !important;
    border-radius: 10px !important;
    padding: 12px !important;
}

.upload-progress-header {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 12px !important;
    color: var(--ink-2) !important;
    margin-bottom: 6px !important;
}

.progress-bar-bg {
    width: 100% !important;
    height: 6px !important;
    background: var(--line-2) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.progress-bar-fill {
    height: 100% !important;
    background: var(--brand) !important;
    width: 0% !important;
    transition: width 0.1s linear !important;
}

/* Hide marketing footer on apply-loan page to prevent double scrollbars */
body.apply-loan-page-body footer,
body.apply-loan-page-body .footer-three-area {
    display: none !important;
}

/* Premium Multiple Upload Styling */
.premium-dropzone-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 15px;
}

.premium-dropzone {
    border: 1.5px dashed #d1d5db;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    background: #fafafa;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-dropzone:hover {
    border-color: var(--brand);
    background: var(--brand-soft);
}

.premium-dropzone .cloud-icon {
    color: #9aa3af;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.premium-dropzone:hover .cloud-icon {
    color: var(--brand);
}

.premium-dropzone .dropzone-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    margin-bottom: 4px;
}

.premium-dropzone .dropzone-subtext {
    font-size: 11.5px;
    color: var(--ink-4);
    margin-bottom: 12px;
}

.premium-dropzone .browse-btn {
    background: #ffffff;
    border: 1px solid var(--line-2);
    color: var(--ink-2);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.premium-dropzone:hover .browse-btn {
    border-color: var(--brand);
    color: var(--brand);
}


.iti--separate-dial-code .iti__selected-dial-code {
    font-size: 14px !important;
}


/* Upload List and Cards */
.upload-files-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.premium-file-card {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.premium-file-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

/* Badges */
.file-badge {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.file-badge.pdf {
    background: #fee2e2;
    color: #ef4444;
}

.file-badge.img,
.file-badge.image {
    background: #dbeafe;
    color: #3b82f6;
}

.file-badge.video,
.file-badge.mp4 {
    background: #fef3c7;
    color: #d97706;
}

.file-badge.doc,
.file-badge.other {
    background: #f3f4f6;
    color: #6b7280;
}

/* File Info & Details */
.file-details {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.premium-file-card .file-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    max-width: 100%;
}

.premium-file-card .file-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: var(--ink-3);
}

.file-status-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.file-status-text.uploading {
    color: var(--ink-3);
}

.file-status-text.completed {
    color: var(--ok);
}

/* Progress Bar */
.premium-file-card .file-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--line-2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 2px;
}

.premium-file-card .file-progress-fill {
    height: 100%;
    background: #3b82f6;
    width: 0%;
    transition: width 0.1s linear;
}

/* Spinner rotation */
.spinner-icon {
    width: 10px;
    height: 10px;
    border: 1.5px solid var(--line-2);
    border-top-color: var(--ink-3);
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
}

/* Action Buttons */
.file-action-btn {
    background: transparent;
    border: none;
    color: var(--ink-4);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.file-action-btn:hover {
    color: var(--err);
    background: #fef2f2;
}

/* Step 6 Upload Grid layout */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.upload-grid>.field {
    min-width: 0;
}

section.screen.vhicalss {
    width: 70%;
}

@media (max-width: 768px) {
    .upload-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .upload-grid>.field {
        min-width: 0;
        width: 100%;
    }

    .premium-file-card {
        width: 100%;
        min-width: 0;
    }

    .field {
        padding-top: 10px;
    }

    .progress-wrap {
        bottom: 24px;
    }

    .tiles {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .tiles .tile {
        width: 100%;
    }
}

@media only screen and (min-width: 576px),
(max-width: 575px) {
    .progress-wrap {
        bottom: 24px;
    }
}