@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-Thin.woff) format('woff'), url(../fonts/woff2/IRANYekanX-Thin.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-UltraLight.woff) format('woff'), url(../fonts/woff2/IRANYekanX-UltraLight.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-Light.woff) format('woff'), url(../fonts/woff2/IRANYekanX-Light.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-Medium.woff) format('woff'), url(../fonts/woff2/IRANYekanX-Medium.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-DemiBold.woff) format('woff'), url(../fonts/woff2/IRANYekanX-DemiBold.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-ExtraBold.woff) format('woff'), url(../fonts/woff2/IRANYekanX-ExtraBold.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-Black.woff) format('woff'), url(../fonts/woff2/IRANYekanX-Black.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 950;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-ExtraBlack.woff) format('woff'), url(../fonts/woff2/IRANYekanX-ExtraBlack.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: 1000;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-Heavy.woff) format('woff'), url(../fonts/woff2/IRANYekanX-Heavy.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-Bold.woff) format('woff'), url(../fonts/woff2/IRANYekanX-Bold.woff2) format('woff2')
}

@font-face {
    font-family: IRANYekanX;
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url(../fonts/woff/IRANYekanX-Regular.woff) format('woff'), url(../fonts/woff2/IRANYekanX-Regular.woff2) format('woff2')
}


/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: #FF7000;
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}


.cookies-card {
    width: 520px;
    padding: 30px;
    color: hsl(var(--body-color));
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: hsl(var(--card-bg));
    border: 1px solid hsl(var(--border-color));
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}


@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}


.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}


.show-filter {
    display: none;
}

@media (max-width: 767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}


/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
    border: 0 !important;
    margin-top: 8px !important;
    border-radius: 5px !important;
    box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}

.select2-search--dropdown {
    padding: 10px 10px !important;
    border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #ced4da !important;
    padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
    padding: 12px 14px !important;
    border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
    text-align: center !important;
    padding: 12px 14px !important;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 8px;
    border-radius: 5px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background: #ddd;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    position: absolute;
    right: 10px;
    top: 0;
    content: "\f107";
    font-family: "Line Awesome Free";
    font-weight: 900;
    transition: .3s;
}

.select2-container--default .select2-selection--single {
    border-color: #ced4da !important;
    border-width: 2px !important;
    border-radius: .375rem !important;
    padding: .375rem .75rem !important;
    height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
    transform: rotate(-180deg);
}

.select2-results__option:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f1f1f1 !important;
    color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: rgb(var(--main)) !important;
    box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
    outline: 0 !important;
}

.select2-dropdown .country-flag {
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.select2-dropdown .gateway-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
    font-size: 12px;
    margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single, .select2-container--open .select2-selection.select2-selection--multiple {
    border-color: hsl(var(--base)) !important;
    border-radius: .375rem !important;
}


.gateway-card {
    padding: 15px;
}

.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: rgb(var(--main));
    border-radius: 5px;
    border: 0;
    margin-bottom: 0px;
    color: #fff;
}

.payment-system-list {
    --thumb-width: 100px;
    --thumb-height: 40px;
    --radio-size: 12px;
    --border-color: #cccccf59;
    --hover-border-color: rgb(var(--main));
    background-color: hsl(var(--white)/.1);
    border-radius: 5px;
    height: 100%;

}


.payment-system-list.is-scrollable {
    max-height: min(388px, 70vh);
    overflow-x: auto;
    padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
    background-color: rgb(var(--main));
    border-radius: 10px;
}

.payment-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 18px;
    border-bottom: 1px solid hsl(var(--white)/.1);
    border-top-color: var(--border-color);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.payment-item:first-child {
    border-top-color: #fff;
    border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
    border-left: 3px solid hsl(var(--base));
    border-radius: 0px;
}

.payment-item__check {
    border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 3px solid hsl(var(--base));
}

.payment-item__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
    width: var(--radio-size);
    height: var(--radio-size);
    border: 1px solid hsl(var(--white)/.8);
    display: inline-block;
    border-radius: 100%;

}

.payment-item__name {
    padding-left: 10px;
    width: calc(100% - var(--radio-size));
    transition: all 0.3s;
}

.payment-item__thumb {
    width: var(--thumb-width);
    height: var(--thumb-height);
    text-align: right;
    padding-left: 10px;

    &:has(.text) {
        width: fit-content;
    }
}

.payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    object-fit: cover;
}


.deposit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}

.deposit-info__title {
    max-width: 50%;
    margin-bottom: 0px;
    text-align: left;
}

.deposit-info__input {
    max-width: 50%;
    text-align: right;
    width: 100%;
}

.deposit-info__input-select {
    border: 1px solid var(--border-color);
    width: 100%;
    border-radius: 5px;
    padding-block: 6px;
}

.deposit-info__input-group {
    border: 1px solid var(--border-color);
    border-radius: 5px;

    .deposit-info__input-group-text {
        align-self: center;
        padding-left: 5px;
    }

}

.deposit-info__input-group .form--control {
    padding: 5px;
    border: 0;
    height: 35px;
    text-align: right;
}

.deposit-info__input-group .form--control:focus {
    box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
    font-size: 14px;

}

.deposit-info__title .text.has-icon {
    display: flex;
    align-items: center;
    gap: 5px
}

.deposit-info__input-group:focus-within {
    border: 1px solid hsl(var(--base)/.4) !important;
}

.total-amount {
    border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
    font-weight: 600;
}

.payment-item__btn {
    border: 0;
    border-block: 1px solid var(--border-color);
    border-bottom: 0;
    background: linear-gradient(180deg, hsl(var(--base-two)) 0%, hsl(var(--base)) 67%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    font-weight: 500;
}

.payment-item__btn-text {
    color: hsl(var(--black));
}

.payment-item:hover + .payment-item__btn {
    border-top-color: #fff;
}

button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}

.cursor-pointer {
    cursor: pointer;
}

/* Landing page refresh */

.landing-hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.landing-hero--violet {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(135deg, #0f172a 0%, #1b1147 60%, #0b1025 100%);
}

.landing-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(108, 92, 231, 0.08) 40%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 0;
    backdrop-filter: blur(4px);
}

.landing-hero__content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    color: #f8fafc;
}

.landing-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.landing-hero__status .schedule {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.status-dot.open {
    background: #3dd598;
    box-shadow: 0 0 0 6px rgba(61, 213, 152, 0.16);
}

.status-dot.closed {
    background: #ff5f6d;
    box-shadow: 0 0 0 6px rgba(255, 95, 109, 0.16);
}

.landing-hero__title {
    margin-top: 18px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: #fff;
}

.landing-hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0 26px;
    font-size: 18px;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.landing-hero__actions .btn--base {
    box-shadow: 0 12px 25px hsla(var(--base-h), var(--base-s), 40%, 0.35);
}

.landing-hero__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.landing-hero__metrics .metric {
    background: #ffffff;
    border: 1px solid rgba(13, 20, 32, 0.06);
    border-radius: 16px;
    padding: 16px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 12px 36px rgba(13, 20, 32, 0.08);
    color: #0f172a;
}

.metric__label {
    color: #0f172a;
    margin-bottom: 4px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .1px;
}

.metric__value {
    color: #0f172a;
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px;
}

.metric__hint {
    color: #6b7280;
    font-size: 12px;
    margin-top: 2px;
}

.metric__value--stacked {
    display: grid;
    gap: 8px;
}

.metric__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f8fafc;
    padding: 0 6px;
}

.metric__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.metric__value--change {
    gap: 10px;
}

.metric__value--change .metric__row:last-child {
    margin-top: -4px;
}

.landing-hero__card {
    position: relative;
    z-index: 1;
    background: #0d1420;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
    color: #e6ecf5;
    backdrop-filter: blur(6px);
}

.landing-hero__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.landing-hero__card-header .label {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-weight: 600;
    letter-spacing: .3px;
}

.landing-hero__card-header .title {
    color: #fff;
    margin: 4px 0 0;
    font-size: 22px;
}

.badge-soft {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(61, 213, 152, 0.12);
    color: #3dd598;
    font-weight: 700;
    letter-spacing: .2px;
}

.landing-hero__card-body .card-visual {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.landing-hero__card-body .card-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0.65;
}

.landing-hero__card-body .pill {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    color: #fff;
}

.landing-hero__card-body .card-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}

.landing-hero__card-body .card-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-hero__card-body .card-list i {
    font-size: 22px;
    color: hsl(var(--base));
}

.landing-hero__card-body .card-list .label {
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.landing-hero__card-body .card-list .hint {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    display: block;
    margin-top: 2px;
}

.landing-hero__calculator {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    color: #0b1729;
}

.landing-hero__calculator-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.landing-hero__calculator-header .eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.landing-hero__calculator-header .title {
    margin: 6px 0 0;
    color: #fff;
    font-size: 22px;
}

.status-chip {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(61, 213, 152, 0.15);
    border: 1px solid rgba(61, 213, 152, 0.35);
    color: #3dd598;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 12px;
}

.status-chip.status-chip--offline {
    background: rgba(255, 95, 109, 0.15);
    border-color: rgba(255, 95, 109, 0.35);
    color: #ff5f6d;
}

.calculator-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px;
    border-radius: 16px;
    margin-bottom: 14px;
}

.calculator-nav__btn {
    border: none;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    transition: all 0.2s ease;
}

.calculator-nav__btn.active {
    background: #fff;
    color: #0b1729;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.calculator-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
    display: grid;
    gap: 16px;
}

.calculator-field__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    color: #0b1729;
    margin-bottom: 8px;
}

.calculator-field--compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.calculator-field__label .muted {
    color: #64748b;
    font-weight: 700;
    font-size: 13px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.calculator-input {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 12px 14px;
    font-weight: 800;
    color: #0b1729;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calculator-input:focus {
    outline: none;
    border-color: hsl(var(--base));
    box-shadow: 0 0 0 3px hsla(var(--base-h), var(--base-s), var(--base-l), 0.2);
}

.calculator-note {
    margin: 0;
    color: #475569;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.calculator-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.btn--pill {
    border-radius: 12px;
    font-weight: 800;
    padding: 12px 18px;
}

.market-stack {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.market-stack__layer {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, #f5c25b, #f7a900);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.18));
    transform-origin: center;
}

.market-stack__layer--one {
    transform: rotate(6deg) scale(1.04);
    opacity: 0.95;
}

.market-stack__layer--two {
    transform: rotate(-6deg) scale(1.06);
    opacity: 0.7;
}

.market-card.market-panel {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 22px 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    z-index: 1;
    overflow: hidden;
}

.market-panel__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: #e9eef7;
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 20px;
}

.market-panel__tab {
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #0f172a;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 10px;
    transition: all 0.2s ease;
}

.market-panel__tab.is-active {
    background: #0b305b;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(11, 48, 91, 0.35);
}

.market-panel__summary--center {
    text-align: center;
    margin-bottom: 14px;
}

.market-panel__price {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 900;
    color: #0b305b;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.market-panel__price .currency-text {
    font-size: 14px;
    font-weight: 700;
    color: #0b305b;
}

.market-panel__subtitle {
    margin: 0 0 4px;
    font-weight: 700;
    color: rgb(153 156 160 / 1);
    font-size: 13px;
}

.market-panel__hint {
    margin: 0;
    color: rgb(153 156 160 / 1);
    font-weight: 600;
    font-size: 12px;
}

.market-panel__chart-shell {
    background: linear-gradient(135deg, #e5f0ff, #f0f6ff);
    border-radius: 18px;
    padding: 10px;
    margin-bottom: 16px;
    min-height: 150px;
    overflow: hidden;
}

.market-panel__chart {
    min-height: 130px;
}

.market-panel__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 4px;
}

.market-panel__stat {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 12px 8px;
}

.market-panel__stat-value {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 15px;
    color: #0b305b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.market-panel__stat--change .market-panel__stat-value {
    font-size: 15px;
}

.market-panel__stat-label {
    margin: 0;
    color: rgb(153 156 160 / 1);
    font-weight: 700;
    font-size: 12px;
}

.market-panel .la-arrow-up {
    color: #16a34a;
}

.market-panel .la-arrow-down {
    color: #dc2626;
}

@media (max-width: 991px) {
    .market-card.market-panel {
        padding: 18px 16px;
    }

    .market-panel__tabs {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .market-panel__price {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .market-stack__layer {
        display: none;
    }

    .market-card.market-panel {
        padding: 16px 12px;
    }

    .market-panel__tabs {
        grid-template-columns: 1fr;
    }

    .market-panel__stats {
        grid-template-columns: 1fr;
    }
}

.gold-rate__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.gold-rate__eyebrow {
    font-size: 13px;
    color: #999ca0;
    font-weight: 700;
    margin-bottom: 10px;
}

.gold-rate__list {
    gap: 8px;
}

.gold-rate__list-item {
    font-size: 14px;
    padding: 10px 10px;
}

.gold-rate__label {
    font-weight: 700;
}

.gold-rate__icon {
    font-size: 16px;
}

@media (max-width: 991px) {
    .landing-hero {
        padding: 90px 0 70px;
    }

    .landing-hero__content {
        padding: 24px;
    }

    .landing-hero__metrics {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 575px) {
    .landing-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-hero__card-body .card-visual img {
        height: 180px;
    }
}

.landing-shell {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%, #f1f5f9 100%);
}

.landing-shell__body {
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.landing-shell__body > section,
.landing-shell__body > div,
.landing-shell__body > .service-section,
.landing-shell__body > .feature-section,
.landing-shell__body > .blog-section,
.landing-shell__body > .testimonial-section,
.landing-shell__body > .subscribe-section {
    margin-top: 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.apexcharts-menu {
    background-color: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    color: #0f172a !important;
}

.apexcharts-menu .apexcharts-menu-item {
    color: #0f172a !important;
}

.apexcharts-theme-light .apexcharts-menu-item:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

.section-bg {
    background-color: #ffffff;
}

.section-heading__title {
    color: #0f172a;
}

.section-heading__desc {
    color: rgba(71, 85, 105, 0.9);
}

.section-bg {
    color: #0f172a;
}

.section-bg p {
    color: rgba(51, 65, 85, 0.9);
}

.gold-rate__title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
}

.gold-rate__title::after {
    content: "";
    display: block;
    width: 88px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fbbf24 0%, #c084fc 100%);
    box-shadow: 0 6px 16px rgba(192, 132, 252, 0.35);
}

/* Keep hero banner legibility on dark imagery */
.banner-section,
.banner-content {
    color: #e2e8f0;
}

.banner-content__title {
    color: #ffffff;
}

.banner-content__desc {
    color: rgba(226, 232, 240, 0.9);
}

/* Section theming + motion */
.landing-shell__body > section,
.landing-shell__body > div,
.service-section,
.feature-section,
.how-it-works-section,
.blog-section,
.testimonial-section,
.subscribe-section,
.why-invest-section,
.faq-section,
.payment-methods {
    position: relative;
    background: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
    backdrop-filter: none;
}

.how-it-works-section {
    background: #f7fafc url('../images/shape-03.png') center/cover no-repeat;
    border-color: rgba(15, 23, 42, 0.1);
}

.landing-shell__body > section::before,
.landing-shell__body > div::before,
.service-section::before,
.feature-section::before,
.how-it-works-section::before,
.blog-section::before,
.testimonial-section::before,
.subscribe-section::before,
.why-invest-section::before,
.faq-section::before,
.payment-methods::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 18%, rgba(226, 232, 240, 0.8), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(226, 232, 240, 0.65), transparent 38%),
    linear-gradient(180deg, rgba(241, 245, 249, 0.75) 0%, transparent 65%);
    opacity: 0.55;
}

.how-it-works-section::before {
    display: none;
}

.landing-shell__body > section > *,
.landing-shell__body > div > * {
    position: relative;
    z-index: 1;
}

.feature-item,
.service-content,
.work-process,
.testimonial-item,
.blog-item,
.subscribe-wrapper,
.payment-methods__item,
.faq-item,
.why-invest-item {
    background: #fff;
    border: 1px solid hsl(var(--border-color));
    border-radius: 16px;
    box-shadow: 0 12px 30px hsl(var(--body-color)/0.12);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-item {
    padding: 10px;
}

.feature-item:hover,
.service-content:hover,
.work-process:hover,
.testimonial-item:hover,
.blog-item:hover,
.subscribe-wrapper:hover,
.payment-methods__item:hover,
.faq-item:hover,
.why-invest-item:hover {
    transform: translateY(-6px);
    border-color: hsla(var(--base-h), var(--base-s), var(--base-l), 0.35);
    box-shadow: 0 18px 44px hsl(var(--body-color)/0.18);
}

.custom--tab .nav-link {
    border-radius: 12px 12px 0 0;
    border: 1px solid hsl(var(--border-color));
    background: #f8fafc;
    color: hsl(var(--heading-color));
    font-weight: 700;
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.custom--tab .nav-link.active,
.custom--tab .nav-link:hover {
    background: hsl(var(--white));
    color: hsl(var(--heading-color));
    border-color: hsla(var(--base-h), var(--base-s), var(--base-l), 0.45);
    box-shadow: 0 8px 20px hsl(var(--body-color)/0.12);
}

.service-content {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
}

.service-thumb__image,
.feature-thumb__item img,
.blog-item__thumb img,
.testimonial-item__thumb img,
.why-invest-item__thumb img {
    border-radius: 14px;
    border: 1px solid hsl(var(--border-color));
    box-shadow: 0 12px 24px hsl(var(--body-color)/0.12);
}

.work-process {
    position: relative;
    overflow: hidden;
}

.work-process__number {
    color: rgba(15, 23, 42, 0.12);
}

.work-process::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 186, 58, 0.08), transparent 42%);
    opacity: 0;
    transition: opacity .3s ease;
}

.work-process:hover::after {
    opacity: 1;
}

.blog-item__title-link,
.feature-item__title,
.testimonial-item__title,
.faq-item__title {
    color: hsl(var(--heading-color));
}

.blog-item__desc,
.feature-item__desc,
.testimonial-item__desc,
.faq-item__desc,
.service-content p,
.why-invest-item__desc {
    color: hsl(var(--body-color));
}

.btn,
.custom--tab .nav-link,
.work-process,
.feature-item,
.service-content,
.blog-item,
.testimonial-item,
.payment-methods__item,
.why-invest-item,
.faq-item {
    will-change: transform, box-shadow;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
    transition-delay: var(--animate-delay, 0ms);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-content__form .form-group {
    position: relative;
    z-index: 5;
}

.cta-content__form .form--control {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.cta-content__form .form--control::placeholder {
    color: rgba(15, 23, 42, 0.6);
}

.cta-content__form .btn {
    z-index: 6;
}

.footer-area,
.footer-area-two {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(135deg, #0f172a 0%, #1b1147 60%, #0b1025 100%);
    color: #e2e8f0;
}

.footer-item__title,
.footer-contact__item-title {
    color: #f8fafc;
}

.footer-menu__link,
.footer-contact__item-desc,
.footer-contact__item-link {
    color: #cbd5e1;
}

.footer-menu__link:hover,
.footer-contact__item-link:hover {
    color: hsl(var(--base));
}

.cta-content__form .form-group {
    position: relative;
    z-index: 5;
}

.cta-content__form .form--control {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.cta-content__form .form--control::placeholder {
    color: rgba(15, 23, 42, 0.6);
}

.cta-content__form .btn {
    z-index: 6;
}

.footer-area,
.footer-area-two {
    color: #e2e8f0;
}

.footer-item__title,
.footer-contact__item-title {
    color: #f8fafc;
}

.footer-menu__link,
.footer-contact__item-desc,
.footer-contact__item-link {
    color: #cbd5e1;
}

.footer-menu__link:hover,
.footer-contact__item-link:hover {
    color: hsl(var(--base));
}

.cta-content__form .form-group {
    position: relative;
    z-index: 5;
}

.cta-content__form .form--control {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.cta-content__form .form--control::placeholder {
    color: rgba(15, 23, 42, 0.6);
}

.cta-content__form .btn {
    z-index: 6;
}

.footer-area,
.footer-area-two {
    color: #e2e8f0;
}

.footer-item__title,
.footer-contact__item-title {
    color: #f8fafc;
}

.footer-menu__link,
.footer-contact__item-desc,
.footer-contact__item-link {
    color: #cbd5e1;
}

.footer-menu__link:hover,
.footer-contact__item-link:hover {
    color: hsl(var(--base));
}

@media (max-width: 767px) {
    .landing-shell__body > section,
    .landing-shell__body > div {
        border-radius: 14px;
    }
}

.blog-section .col-xxl-5.col-lg-6 {
    margin: 0;
}

.footer-contact__item .title, .footer-contact__item p, .footer-item__desc {
    color: #888;
}

.footer-contact__item .desc {
    color: #ffb22e;
}