/* 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: 400px;
    padding: 25px;
    color: #1E2337;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    transition: all .5s;
    background: hsl(145.71deg 13.73% 10%);
    border-radius: 5px;
    box-shadow: 0 0 18px rgb(125 137 153);
    border-radius: 20px;
}

.cookies-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cookies-card__title {
    font-size: inherit;

}

.cookies-card__close {
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #797878;
    transition: all 0.2s;
}

.cookies-card__close:hover {
    color: #000;

}

.cookies-card__icon {
    color: hsl(var(--white));
    font-size: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
    font-size: 13px;
    margin-bottom: 24px;
}

.cookies-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookies-card__btn-outline {
    /* text-decoration: none;
    padding: 12px 20px;
    color: #001E00; */

}

/* .cookies-card__btn {
    color: #fff !important;
    text-decoration: none;
    padding: 8px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
    background-color: #363636;
    transition: all 0.2s;
} */

/* .cookies-card__btn:hover {
    background-color: #0e0e0e;
} */


@media (max-width: 767px) {
    .cookies-card {
        width: calc(100% - 20px);
        left: 10px;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}


.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.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;
    transform: translateX(-50%);
    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;
    }
}



.gateway-card {
    padding: 15px;
}

.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: hsl(var(--base));
    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: #fff;
    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: 1px solid #fff;
    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(--base));
    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;
}

.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;
        background: hsl(var(--black)/.1);
    }

}


.deposit-info__input-group .form--control {
    border: 0;
    height: 100%;
    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
}

.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: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
    border-top-color: #fff;
}

button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}

.button-loader .spinner-border {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

.purchase-option__card {
    display: flex;
    justify-content: space-around;
}

.purchase-option-card__item {
    padding: 40px 5px;
    border-radius: 5px;
    cursor: pointer;
    background-color: hsl(var(--secondary)/0.1);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width:425px) {
    .purchase-option-card__item {
        padding: 20px 5px;
    }
}


.purchase-option-card__item:has(.method-input:checked) {
    background-color: hsl(var(--base));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .purchase-option-card__title {
    color: hsl(var(--title-color));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .balance {
    color: hsl(var(--title-color)) !important;
}

.purchase-option-card__item:has(.method-input:checked) .purchase-option-card__icon i {
    color: hsl(var(--white));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .purchase-option-card__icon i {
    color: hsl(var(--black));
}

.purchase-option-card__item .purchase-option-card__icon {
    font-size: 2.2rem;
    margin-bottom: 5px;
    line-height: 1;
}

.purchase-option-card__item .purchase-option-card__icon i {
    color: hsl(var(--base));
}

.plan-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.note-wrapper__output {
    max-height: 350px !important;
    overflow: auto !important;
}

.note-wrapper__output::-webkit-scrollbar {
    width: 5px;
}

.note-wrapper__output::-webkit-scrollbar-thumb {
    background: hsl(var(--base));
    border-radius: 10px;
}

.skeleton-chat-item {
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
    background: #f0f0f0;
    border-radius: 8px;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-chat-item .thumb {
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 50%;
    margin-right: 10px;
}

.skeleton-chat-item .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.skeleton-chat-item .content div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-chat-item .content .name {
    height: 10px;
    width: 35%;
    border-radius: 20px;
    background: #e0e0e0;
    margin-bottom: 5px;
}

.skeleton-chat-item .content .text {
    height: 8px;
    width: 80%;
    border-radius: 20px;
    background: #e0e0e0;
}

.skeleton-chat-item .content .time {
    height: 8px;
    width: 14%;
    border-radius: 20px;
    background: #e0e0e0;
}



@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #f0f0f0;
    }
}


/* Skeleton for contact details */
.skeleton {
    background: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.skeleton-text {
    height: 16px;
    margin: 10px 0;
}

.skeleton-text-md {
    width: 120px;
    height: 20px;
    margin: 10px auto;
}

.skeleton-text-sm {
    width: 100%;
    height: 14px;
}

.skeleton-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.skeleton-btn {
    width: 70px;
    height: 28px;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-color: #e0e0e0;
    }

    50% {
        background-color: #f0f0f0;
    }

    100% {
        background-color: #e0e0e0;
    }
}

.table-thumb {
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 100%;
}

.apexcharts-menu-item {
    color: #000;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
}

.apexcharts-menu-item:hover {
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

.apexcharts-menu-item i {
    color: #fff;
}

.apexcharts-menu-item .apexcharts-menu-icon {
    color: #fff;
}

.download-document {
    padding: 5px 10px;
    color: #fff;
    cursor: pointer;
}

.crypto-message,
.crypto-message .gateway-currency {
    color: #606576 !important;
}

.pointer {
    cursor: pointer !important;
}

.template-requirements ul {
    list-style: disc !important;
}

.template-requirements ul li {
    font-size: 15px !important;
    color: #606576 !important;
}

.progressModal .progress {
    @apply w-full overflow-hidden rounded;
}

.progressModal .progress-bar {
    @apply transition-all duration-300 ease-linear;
}

.progressModal .bg-success {
    background-color: hsl(var(--base)) !important;
}

.progressModal .progress-bar-striped {
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 1rem 1rem;
}

.progressModal .progress-bar-animated {
    animation: progressModal-progress-bar-stripes 1s linear infinite;
}

@keyframes progressModal-progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }

    100% {
        background-position: 0 0;
    }
}

.table-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-short-form {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--black)/0.6);
}

.agent-info strong {
    font-weight: 600;
}

.agent-info .agent-url {
    color: hsl(var(--primary));
    font-weight: 500;
    font-size: 0.875rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px !important;
}

.select2+.select2-container .select2-selection.select2-selection--multiple {
    background: hsl(var(--section-bg));
    border-radius: 8px !important;
}

.dashboard-container .select2+.select2-container .select2-selection.select2-selection--multiple {
    border: 1px solid #c1c9d033 !important;
}

.dashboard-container .select2+.select2-container.select2-container--open .select2-selection__rendered,
.dashboard-container .select2+.select2-container.select2-container--focus .select2-selection.select2-selection--multiple,
.dashboard-container .select2+.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
    border: 1px solid hsl(var(--base)) !important;
}

.select2+.select2-container .select2-selection--multiple .select2-search.select2-search--inline {
    line-height: 28px;
}

.select2+.select2-container .select2-selection--multiple .select2-selection__rendered {
    line-height: 25px;
    box-shadow: unset !important;
    background: transparent !important;
    padding-right: 8px;
}

.dashboard-container .select2+.select2-container .select2-selection--multiple .select2-selection__rendered {
    border: 0 !important;
}

.select2-container--default .select2-search__field {
    border-radius: 4px;
}

.select2-container--open .select2-dropdown {
    border-radius: 4px !important;
}

.select2-results__options::-webkit-scrollbar {
    width: 0px;
}

.select2-search__field {
    background-color: hsl(var(--section-bg)) !important;
}

.select2-selection--multiple .select2-search__field {
    background-color: transparent !important;
}

.select2+.select2-container:has(.select2-selection.select2-selection--multiple) {
    height: auto;
}


.coupon-apply-button {
    position: absolute;
    right: 0;
    top: 0;
    border-width: 0px;
    width: 25% !important;
    height: calc(100% - 10px);
    margin: 5px;
    border-radius: 4px !important;
    background-color: hsl(var(--success));
    color: hsl(var(--white)) !important;
    cursor: pointer;
    padding-block: 5px;
    display: flex;
    justify-content: center !important;
}

.coupon-apply-button.disable {
    background-color: hsl(var(--black)/0.3) !important;
    color: hsl(var(--secondary)) !important;
    pointer-events: none;
}

.coupon-apply-button.remove {
    background-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}

/* User dashboard sidebar active state refinement */
.dashboard .dashboard__sidebar .dashboard-nav__link,
.dashboard .sidebar-menu-list__link {
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dashboard .dashboard__sidebar .dashboard-nav__items.active > .dashboard-nav__link,
.dashboard .dashboard__sidebar .dashboard-nav__link.active,
.dashboard .sidebar-menu-list__item.active > .sidebar-menu-list__link,
.dashboard .sidebar-menu-list__link.active {
    background: #ffffff !important;
    border-color: #e3eaf4 !important;
    color: #15283d !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08) !important;
    transform: translateX(0);
}

.dashboard .dashboard__sidebar .dashboard-nav__items.active > .dashboard-nav__link::before,
.dashboard .dashboard__sidebar .dashboard-nav__link.active::before,
.dashboard .sidebar-menu-list__item.active > .sidebar-menu-list__link::before,
.dashboard .sidebar-menu-list__link.active::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: hsl(var(--base));
    opacity: 0.7;
}

.dashboard .dashboard__sidebar .dashboard-nav__items.active > .dashboard-nav__link .dashboard-nav__link-icon,
.dashboard .dashboard__sidebar .dashboard-nav__link.active .dashboard-nav__link-icon,
.dashboard .sidebar-menu-list__item.active > .sidebar-menu-list__link .icon,
.dashboard .sidebar-menu-list__link.active .icon {
    background: linear-gradient(135deg, hsl(var(--base) / 0.18), hsl(var(--base) / 0.05)) !important;
    border-color: hsl(var(--base) / 0.4) !important;
    color: hsl(var(--base)) !important;
}

.dashboard .sidebar-menu-list__item.has-dropdown.active > a:after,
.dashboard .dashboard__sidebar .dashboard-nav__items.has-dropdown.active > .dashboard-nav__link::after {
    color: hsl(var(--base)) !important;
}

.dashboard .sidebar-submenu-list__item.active > a {
    background: hsl(var(--base) / 0.08) !important;
    color: #15283d !important;
}

/* ========================= Home Page Refresh ========================= */
.home-page {
    --hero-ink: #0f2a1a;
    --hero-muted: #3b5a4b;
    --hero-soft: #eef7f0;
    --hero-accent: #25d466;
    --hero-border: rgba(15, 42, 26, 0.12);
    --hero-glow: rgba(37, 212, 102, 0.25);
    --hero-card: #ffffff;
    --hero-shadow: 0 25px 70px rgba(12, 36, 24, 0.18);
}

.home-page .home-hero {
    padding: 140px 0 100px;
    background:
        radial-gradient(1200px 500px at 5% -10%, rgba(37, 212, 102, 0.25), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(15, 90, 60, 0.18), transparent 55%),
        linear-gradient(180deg, #f7fff6 0%, #f1f7f3 55%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.home-page .home-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 212, 102, 0.32), rgba(37, 212, 102, 0));
    top: -180px;
    right: -160px;
    opacity: 0.9;
    z-index: 0;
}

.home-page .home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
    filter: none;
    background-color: transparent;
    background-image:
        linear-gradient(transparent 0, transparent 98%, rgba(15, 42, 26, 0.05) 100%),
        linear-gradient(90deg, transparent 0, transparent 98%, rgba(15, 42, 26, 0.05) 100%);
    background-size: 120px 120px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.home-page .home-hero > .container {
    position: relative;
    z-index: 1;
}

.home-page .home-hero .banner-content {
    text-align: left;
}

.home-page .home-hero .banner-thumb {
    margin-top: 0;
}

.home-page .hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--hero-soft);
    color: var(--hero-ink);
    border: 1px solid rgba(37, 212, 102, 0.2);
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.home-page .hero-title {
    color: var(--hero-ink);
    font-size: clamp(2.3rem, 3.3vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.home-page .hero-lead {
    color: var(--hero-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.home-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 26px;
}

.home-page .hero-outline {
    background: #ffffff !important;
    border: 1px solid var(--hero-border) !important;
    color: var(--hero-ink) !important;
    box-shadow: 0 10px 25px rgba(12, 36, 24, 0.08);
}

.home-page .hero-outline:hover {
    border-color: rgba(37, 212, 102, 0.35) !important;
    color: var(--hero-ink) !important;
}

.home-page .hero-highlights {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.home-page .hero-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 42, 26, 0.08);
    box-shadow: 0 10px 22px rgba(12, 36, 24, 0.06);
}

.home-page .hero-highlight__icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 212, 102, 0.15);
    color: var(--hero-accent);
    font-size: 16px;
}

.home-page .hero-highlight__text {
    color: var(--hero-muted);
    font-weight: 600;
    font-size: 0.98rem;
}

.home-page .hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 42, 26, 0.08);
    color: var(--hero-ink);
    font-weight: 600;
}

.home-page .hero-trust__icon {
    font-size: 18px;
    color: var(--hero-accent);
}

.home-page .hero-media {
    position: relative;
    padding: 18px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(37, 212, 102, 0.18), rgba(255, 255, 255, 0.7));
    box-shadow: var(--hero-shadow);
}

.home-page .hero-media__glow {
    position: absolute;
    inset: 20% 15% auto 15%;
    height: 60%;
    background: radial-gradient(circle, var(--hero-glow), rgba(37, 212, 102, 0));
    filter: blur(30px);
    z-index: 0;
}

.home-page .hero-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(15, 42, 26, 0.1);
    box-shadow: 0 18px 40px rgba(12, 36, 24, 0.18);
    animation: hero-float 6s ease-in-out infinite;
}

.home-page .hero-floating-card {
    position: absolute;
    left: -10px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--hero-card);
    border-radius: 16px;
    border: 1px solid rgba(15, 42, 26, 0.12);
    box-shadow: 0 16px 35px rgba(12, 36, 24, 0.15);
    z-index: 2;
    max-width: 260px;
}

.home-page .hero-floating-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(37, 212, 102, 0.16);
    color: var(--hero-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.home-page .hero-floating-card__title {
    display: block;
    color: var(--hero-ink);
    font-weight: 700;
    font-size: 0.95rem;
}

.home-page .hero-floating-card__text {
    display: block;
    color: var(--hero-muted);
    font-size: 0.85rem;
}

@keyframes hero-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .home-page .home-hero {
        padding: 120px 0 80px;
    }

    .home-page .home-hero .banner-content {
        text-align: center;
    }

    .home-page .hero-actions {
        justify-content: center;
    }

    .home-page .hero-highlights,
    .home-page .hero-trust {
        justify-items: center;
    }

    .home-page .hero-highlight {
        justify-content: center;
    }

    .home-page .hero-trust {
        margin-inline: auto;
    }

    .home-page .hero-floating-card {
        position: static;
        margin-top: 16px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .home-page .hero-badge {
        font-size: 0.85rem;
    }

    .home-page .hero-highlight__text {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .hero-media img {
        animation: none;
    }
}

.home-page .feature-section {
    padding-top: 100px;
    background: #f9fbf8;
}

.home-page .feature-item {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.08);
    box-shadow: 0 16px 34px rgba(12, 36, 24, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(12, 36, 24, 0.12);
}

.home-page .feature-item__icon {
    background: rgba(37, 212, 102, 0.16);
    color: var(--hero-ink);
}

.home-page .feature-item__icon svg {
    fill: var(--hero-ink);
    stroke: var(--hero-ink);
}

/* ========================= Front Theme Light ========================= */
.front-theme {
    --body-bg: 150 40% 98%;
    --body-color: 152 18% 20%;
    --heading-color: 152 28% 16%;
    --title-color: 152 28% 16%;
    --section-bg: 150 35% 96%;
    --section-bg-two: 150 35% 94%;
    background-color: hsl(var(--body-bg));
    color: hsl(var(--body-color));
    min-height: 100vh;
}

.front-theme .header--light {
    --header-btn-border: #141a16;
    --header-btn-shadow: #25d466;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(15, 42, 26, 0.08);
    box-shadow: 0 12px 30px rgba(12, 36, 24, 0.08);
    backdrop-filter: blur(14px);
}

.front-theme .header--light.fixed-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(15, 42, 26, 0.08);
    box-shadow: 0 14px 32px rgba(12, 36, 24, 0.1);
}

.front-theme .header--light .navbar {
    gap: 16px;
}

.front-theme .header--light .nav-menu {
    gap: 12px;
}

.front-theme .header--light .nav-menu .nav-item {
    padding-right: 0 !important;
}

.front-theme .header--light .nav-menu .nav-link {
    font-size: 0.98rem;
    font-weight: 600;
    color: #101814 !important;
    padding: 10px 16px;
    border-radius: 14px;
    border: 2px solid var(--header-btn-border);
    background: #ffffff !important;
    box-shadow: 4px 4px 0 var(--header-btn-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    line-height: 1.05;
}

.front-theme .header--light .nav-menu .nav-link::before {
    display: none;
}

.front-theme .header--light .nav-menu .nav-item:hover .nav-link {
    color: #101814 !important;
    background: #ecfff4 !important;
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 var(--header-btn-shadow);
}

.front-theme .header--light .nav-menu .nav-item.active .nav-link {
    background: #cffff0 !important;
    color: #101814 !important;
    box-shadow: 4px 4px 0 var(--header-btn-shadow);
}

.front-theme .custom--tab {
    background: rgba(15, 42, 26, 0.05);
    border: 1px solid rgba(15, 42, 26, 0.08);
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
}

.front-theme .custom--tab .nav-item .nav-link {
    color: hsl(var(--heading-color));
    background: #ffffff !important;
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent !important;
    box-shadow: 0 10px 20px rgba(12, 36, 24, 0.06);
}

.front-theme .custom--tab .nav-item .nav-link:hover {
    color: #0f2a1a;
    background: rgba(37, 212, 102, 0.08) !important;
}

.front-theme .custom--tab .nav-item .nav-link.active {
    color: #0f2a1a;
    background: rgba(37, 212, 102, 0.2) !important;
    border: 1px solid rgba(37, 212, 102, 0.35) !important;
    box-shadow: 0 12px 28px rgba(37, 212, 102, 0.2);
}

.front-theme .header--light .top-button {
    gap: 12px;
}

.front-theme .header--light .top-button .btn {
    border-radius: 14px;
    padding: 10px 18px;
    font-weight: 600;
    border: 2px solid var(--header-btn-border) !important;
    box-shadow: 4px 4px 0 var(--header-btn-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.front-theme .header--light .top-button .btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 var(--header-btn-shadow);
}

.front-theme .header--light .btn--base {
    background: #25d466 !important;
    color: #101814 !important;
}

.front-theme .header--light .btn--base-two {
    background: #ffffff;
    color: #101814 !important;
}

.front-theme .header--light .btn--base-two:hover,
.front-theme .header--light .btn--base-two:focus {
    color: #101814 !important;
    background: #ecfff4 !important;
}

.front-theme .header--light .custom--dropdown {
    margin-left: 12px;
    width: auto;
    min-width: 92px;
}

.front-theme .header--light .custom--dropdown > .custom--dropdown__selected {
    background: #ffffff;
    border: 2px solid var(--header-btn-border);
    border-radius: 14px;
    padding: 8px 32px 8px 12px;
    color: #0f2a1a;
    box-shadow: 4px 4px 0 var(--header-btn-shadow);
    min-width: 92px;
}

.front-theme .header--light .custom--dropdown > .custom--dropdown__selected::before {
    color: #0f2a1a;
}

.front-theme .header--light .custom--dropdown > .custom--dropdown__selected .text {
    width: auto;
    color: #0f2a1a !important;
    font-weight: 700;
    margin-left: 4px;
}

.front-theme .header--light .custom--dropdown > .dropdown-list {
    background: #ffffff !important;
    border: 1px solid rgba(15, 42, 26, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(12, 36, 24, 0.12);
}

.front-theme .header--light .dropdown-list > .dropdown-list__item .text,
.front-theme .header--light .dropdown-list > .dropdown-list__item .icon {
    color: #0f2a1a !important;
}

.front-theme .header--light .dropdown-list > .dropdown-list__item:hover {
    background: rgba(37, 212, 102, 0.12) !important;
}

.front-theme .header--light .dropdown-list > .dropdown-list__item:hover .text {
    color: #0f2a1a !important;
}

.front-theme .header--light .navbar-toggler.header-button {
    border: 2px solid var(--header-btn-border) !important;
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.6rem;
    color: #0f2a1a;
    box-shadow: 4px 4px 0 var(--header-btn-shadow);
}

.front-theme .header--light .navbar-toggler.header-button i {
    color: inherit;
}

@media (max-width: 991px) {
    .front-theme .header--light {
        position: sticky;
        top: 0;
        padding: 12px 0;
    }

    .front-theme .header--light .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 16px;
        border: 1px solid rgba(15, 42, 26, 0.12);
        background: #ffffff;
        box-shadow: 0 16px 34px rgba(12, 36, 24, 0.12);
    }

    .front-theme .header--light .nav-menu {
        gap: 8px;
    }

    .front-theme .header--light .nav-menu .nav-link {
        width: 100%;
        text-align: left;
        box-shadow: none;
        border-radius: 12px;
        border-width: 1px;
        padding: 11px 14px;
    }

    .front-theme .header--light .top-button .btn {
        box-shadow: none;
        border-width: 1px !important;
    }

    .front-theme .header--light .custom--dropdown {
        width: auto;
        min-width: 86px;
    }

    .front-theme .header--light .custom--dropdown > .custom--dropdown__selected {
        min-width: 86px;
        padding: 7px 26px 7px 10px;
    }
}

.front-theme .faq-section .section-heading__title {
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    letter-spacing: -0.02em;
}

.front-theme .faq-section .section-heading__desc {
    color: hsl(var(--body-color));
    font-size: 1.05rem;
    line-height: 1.7;
}

.front-theme .custom--accordion .accordion-item {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(12, 36, 24, 0.08);
}

.front-theme .custom--accordion .accordion-button {
    background: #ffffff;
    color: hsl(var(--heading-color));
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
}

.front-theme .custom--accordion .accordion-button:not(.collapsed) {
    background: rgba(37, 212, 102, 0.08) !important;
}

.front-theme .custom--accordion .accordion-button[aria-expanded="true"]::after,
.front-theme .custom--accordion .accordion-button[aria-expanded="false"]::after {
    background-color: rgba(37, 212, 102, 0.12);
    color: #0f2a1a;
}

.front-theme .custom--accordion .accordion-body {
    background: #ffffff;
}

.front-theme .custom--accordion .accordion-body .text {
    color: hsl(var(--body-color));
    font-weight: 400;
    line-height: 1.7;
    font-size: 0.98rem;
}

.front-theme .pricing-section {
    background: #f4faf6;
}

.front-theme .pricing-card {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(12, 36, 24, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.front-theme .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(12, 36, 24, 0.16);
}

.front-theme .pricing-card__title {
    color: #0f2a1a !important;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.front-theme .pricing-card__desc {
    color: rgba(15, 42, 26, 0.72) !important;
    font-weight: 500;
}

.front-theme .pricing-card__number {
    color: #0f2a1a !important;
    border-bottom: 1px solid rgba(15, 42, 26, 0.12);
}

.front-theme .pricing-card .pricing-list {
    background: #f3f8f5;
    border-radius: 14px;
    padding: 18px;
}

.front-theme .pricing-card .pricing-list__item {
    color: rgba(15, 42, 26, 0.85);
    font-weight: 600;
}

.front-theme .pricing-card .pricing-list__item span:last-child {
    color: #0f2a1a;
}

.front-theme .pricing-card.popular {
    background: #ffffff;
    border: 1px solid rgba(37, 212, 102, 0.55);
    position: relative;
    overflow: hidden;
}

.front-theme .pricing-card.popular::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient(120deg, rgba(37, 212, 102, 0.18), rgba(37, 212, 102, 0));
    z-index: 0;
}

.front-theme .pricing-card.popular > * {
    position: relative;
    z-index: 1;
}

.front-theme .pricing-card.popular .pricing-card__badge {
    background: rgba(37, 212, 102, 0.18);
    color: #0f2a1a !important;
    box-shadow: none;
}

.front-theme .pricing-card.popular .pricing-list {
    background: #edf7f1;
}

.front-theme .pricing-card.popular .pricing-card__desc,
.front-theme .pricing-card.popular .yearly_price,
.front-theme .pricing-card.popular .monthly_price {
    color: #0f2a1a !important;
}

.front-theme .footer-area {
    background: #eef4f1;
    padding-top: 40px;
}

.front-theme .footer-item__logo {
    margin-bottom: 24px;
}

.front-theme .footer-item__desc {
    color: rgba(15, 42, 26, 0.75);
    line-height: 1.7;
}

.front-theme .footer-item__title {
    color: #0f2a1a;
    font-weight: 700;
}

.front-theme .footer-menu__link,
.front-theme .footer-contact-menu__item-content a {
    color: rgba(15, 42, 26, 0.78);
}

.front-theme .footer-menu__link:hover,
.front-theme .footer-contact-menu__item-content a:hover {
    color: #0f2a1a;
}

.front-theme .search-wrapper__title {
    color: #0f2a1a;
}

.front-theme .search-wrapper .search-form .form--control {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    border-radius: 12px;
}

.front-theme .search-wrapper .search-form .btn {
    border-radius: 12px;
}

.front-theme .share-btn-wrapper .title,
.front-theme .share-btn-wrapper .title .icon {
    color: #0f2a1a;
}

.front-theme .bottom-footer {
    margin-top: 50px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(15, 42, 26, 0.12);
    text-align: left;
}

.front-theme .bottom-footer .social-list {
    margin: 0;
    background: transparent;
    padding: 0;
}

.front-theme .bottom-footer .bottom-footer-text {
    margin-top: 0;
    color: rgba(15, 42, 26, 0.7);
    font-weight: 600;
}

.front-theme .social-list__link {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    color: #0f2a1a;
}

.front-theme .social-list__link:hover,
.front-theme .social-list__link:focus {
    background: rgba(37, 212, 102, 0.16);
    color: #0f2a1a;
}

@media (max-width: 767px) {
    .front-theme .bottom-footer {
        justify-content: center;
        text-align: center;
    }
}

/* Testimonials redesign */
.front-theme .testimonials {
    padding-top: 20px;
}

.front-theme .testimonials .section-heading__title {
    font-size: clamp(2rem, 3vw, 3.15rem);
}

.front-theme .testimonials-slider-modern .feedback-item--modern {
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    border-radius: 22px;
    padding: 24px;
    box-shadow: none;
    position: relative;
}

.front-theme .testimonials-slider-modern .feedback-item--modern::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 212, 102, 0.65), rgba(37, 212, 102, 0.15));
    opacity: 0.85;
}

.front-theme .testimonials-slider-modern.slick-initialized {
    max-width: 980px;
    margin: 0 auto !important;
}

.front-theme .testimonials-slider-modern .slick-list {
    margin: 0 -8px;
    padding: 10px 0;
    overflow: hidden;
}

.front-theme .testimonials-slider-modern .slick-slide {
    padding: 0 8px;
}

.front-theme .testimonials-slider-modern .feedback-left--modern {
    flex: 0 0 auto;
    padding-top: 2px;
}

.front-theme .testimonials-slider-modern .feedback-thumb--modern {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(37, 212, 102, 0.35);
    box-shadow: 0 8px 20px rgba(12, 36, 24, 0.14);
    background: #ffffff;
}

.front-theme .testimonials-slider-modern .feedback-thumb--modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-theme .testimonials-slider-modern .feedback-right--modern {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
}

.front-theme .testimonials-slider-modern .feedback-content {
    max-width: 100%;
}

.front-theme .testimonials-slider-modern .feedback-content__text {
    color: hsl(var(--heading-color));
    font-size: 1.28rem;
    line-height: 1.58;
    margin-bottom: 20px;
}

.front-theme .testimonials-slider-modern .feedback-content .name {
    color: #0f2a1a;
    font-size: 1.75rem;
    font-weight: 700;
}

.front-theme .testimonials-slider-modern .feedback-content__bottom .type {
    font-size: 1rem;
    color: rgba(15, 42, 26, 0.75);
    margin-bottom: 10px;
}

.front-theme .testimonials-slider-modern .feedback-content__bottom {
    border-top: 1px dashed rgba(15, 42, 26, 0.16);
    padding-top: 14px;
}

.front-theme .testimonials-slider-modern .feedback-content__rating i {
    font-size: 20px;
    color: #f2b72c;
}

.front-theme .testimonials-slider-modern .slick-arrow {
    background: #25d466 !important;
    border: 2px solid #141a16 !important;
    color: #101814 !important;
    border-radius: 14px !important;
    width: 58px !important;
    height: 48px !important;
    box-shadow: 4px 4px 0 #25d466;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.front-theme .testimonials-slider-modern .slick-arrow:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 #25d466;
    background: #2ae16d !important;
}

.front-theme .testimonials-slider-modern .slick-prev {
    left: -72px !important;
}

.front-theme .testimonials-slider-modern .slick-next {
    right: -72px !important;
}

.front-theme .testimonials-slider-modern .slick-dots li button {
    background: rgba(37, 212, 102, 0.3);
}

.front-theme .testimonials-slider-modern .slick-dots li.slick-active button {
    background: #25d466;
}

@media (max-width: 1199px) {
    .front-theme .testimonials-slider-modern.slick-initialized {
        max-width: 100%;
    }

    .front-theme .testimonials-slider-modern .feedback-content__text {
        font-size: 1.08rem;
    }
}

@media (max-width: 991px) {
    .front-theme .testimonials-slider-modern .feedback-item--modern {
        padding: 18px;
        border-radius: 18px;
    }

    .front-theme .testimonials-slider-modern .feedback-left--modern {
        width: auto;
        flex: 0 0 auto;
        margin: 0 auto;
    }

    .front-theme .testimonials-slider-modern .feedback-thumb--modern {
        width: 84px;
        height: 84px;
    }

    .front-theme .testimonials-slider-modern .feedback-content__text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .front-theme .testimonials-slider-modern .feedback-content .name {
        font-size: 1.35rem;
    }

    .front-theme .testimonials-slider-modern .slick-arrow {
        width: 52px !important;
        height: 44px !important;
        box-shadow: none;
        border-width: 1px !important;
    }

    .front-theme .testimonials-slider-modern .slick-prev {
        left: -14px !important;
    }

    .front-theme .testimonials-slider-modern .slick-next {
        right: -14px !important;
    }
}

/* Global public buttons */
.front-theme {
    --ui-btn-border: #141a16;
    --ui-btn-accent: #25d466;
}

.front-theme .btn {
    border-radius: 14px;
    border: 2px solid var(--ui-btn-border);
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.front-theme .btn:hover,
.front-theme .btn:focus,
.front-theme .btn:focus-visible {
    transform: translate(-1px, -1px);
}

.front-theme .btn--base {
    background: var(--ui-btn-accent) !important;
    color: #101814 !important;
    border-color: var(--ui-btn-border) !important;
    box-shadow: 4px 4px 0 var(--ui-btn-accent);
}

.front-theme .btn--base:hover,
.front-theme .btn--base:focus,
.front-theme .btn--base:focus-visible {
    background: #2ae16d !important;
    color: #101814 !important;
    border-color: var(--ui-btn-border) !important;
    box-shadow: 5px 5px 0 var(--ui-btn-accent);
}

.front-theme .btn--base-two,
.front-theme .btn--white {
    background: #ffffff !important;
    color: #101814 !important;
    border-color: var(--ui-btn-border) !important;
    box-shadow: 4px 4px 0 var(--ui-btn-accent);
}

.front-theme .btn--base-two:hover,
.front-theme .btn--base-two:focus,
.front-theme .btn--base-two:focus-visible,
.front-theme .btn--white:hover,
.front-theme .btn--white:focus,
.front-theme .btn--white:focus-visible {
    background: #ecfff4 !important;
    color: #101814 !important;
    border-color: var(--ui-btn-border) !important;
    box-shadow: 5px 5px 0 var(--ui-btn-accent);
}

.front-theme .btn-outline--base {
    background: #ffffff !important;
    color: #101814 !important;
    border-color: var(--ui-btn-border) !important;
    box-shadow: 4px 4px 0 var(--ui-btn-accent);
}

.front-theme .btn-outline--base:hover,
.front-theme .btn-outline--base:focus,
.front-theme .btn-outline--base:focus-visible {
    background: #ecfff4 !important;
    color: #101814 !important;
    border-color: var(--ui-btn-border) !important;
    box-shadow: 5px 5px 0 var(--ui-btn-accent);
}

.front-theme .search-wrapper .search-form .btn {
    min-width: 108px;
}

@media (max-width: 991px) {
    .front-theme .btn,
    .front-theme .btn--base,
    .front-theme .btn--base-two,
    .front-theme .btn--white,
    .front-theme .btn-outline--base {
        box-shadow: none !important;
        border-width: 1px !important;
    }
}

/* Contact page light-theme fixes */
.front-theme .contact-section .contact-form {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    box-shadow: 0 20px 46px rgba(12, 36, 24, 0.08);
}

.front-theme .contact-section .support-wrapper .support-item {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.1);
    border-radius: 14px;
    padding: 18px;
}

.front-theme .contact-section .support-wrapper .support-item__title {
    color: #0f2a1a;
}

.front-theme .contact-section .support-wrapper .support-item__desc {
    color: rgba(15, 42, 26, 0.75);
}

.front-theme .contact-section .contact-item {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    box-shadow: 0 14px 34px rgba(12, 36, 24, 0.1);
}

.front-theme .contact-section .contact-item__title {
    color: #0f2a1a;
}

.front-theme .contact-section .contact-item__desc {
    color: rgba(15, 42, 26, 0.75);
}

.front-theme .contact-section .contact-item__text,
.front-theme .contact-section .contact-item__link,
.front-theme .contact-section .time-wrapper .title,
.front-theme .contact-section .time-wrapper .time {
    color: #173223;
}

.front-theme .contact-section .contact-item__shape {
    opacity: 0.35;
}

/* Scroll to top button in shared button style */
.front-theme .scroll-top {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #25d466 !important;
    color: #101814 !important;
    border: 2px solid #141a16;
    box-shadow: 4px 4px 0 #25d466;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.front-theme .scroll-top:hover,
.front-theme .scroll-top:focus {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 #25d466;
    background: #2ae16d !important;
    color: #101814 !important;
}

.front-theme .scroll-top i {
    font-size: 20px;
    line-height: 1;
    color: inherit !important;
}

@media (max-width: 575px) {
    .front-theme .scroll-top {
        width: 50px;
        height: 50px;
        border-width: 1px;
        box-shadow: none;
        border-radius: 14px;
    }
}

/* Contact form refresh */
.front-theme .contact-section {
    position: relative;
}

.front-theme .contact-section .section-heading {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.front-theme .contact-section .section-heading__title {
    font-size: clamp(2rem, 2.9vw, 3rem);
    letter-spacing: -0.02em;
}

.front-theme .contact-section .section-heading__desc {
    color: rgba(15, 42, 26, 0.78);
    line-height: 1.65;
    font-size: 1.08rem;
}

.front-theme .contact-section .contact-form {
    position: relative;
    background:
        radial-gradient(380px 180px at 0% 0%, rgba(37, 212, 102, 0.12), transparent 70%),
        radial-gradient(420px 220px at 100% 10%, rgba(15, 42, 26, 0.06), transparent 70%),
        #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(12, 36, 24, 0.1);
    padding: 52px 64px;
}

.front-theme .contact-section .contact-form label {
    font-weight: 700;
    color: #10271a;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.front-theme .contact-section .contact-form .form-group {
    margin-bottom: 18px;
}

.front-theme .contact-section .contact-form .form--control {
    background: #f5faf7;
    border: 1px solid rgba(15, 42, 26, 0.14);
    border-radius: 14px;
    color: #122c1d;
    min-height: 56px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.front-theme .contact-section .contact-form textarea.form--control {
    min-height: 172px;
    padding-top: 14px;
}

.front-theme .contact-section .contact-form .form--control::placeholder {
    color: rgba(18, 44, 29, 0.45);
}

.front-theme .contact-section .contact-form .form--control:focus {
    background: #ffffff;
    border-color: rgba(37, 212, 102, 0.62);
    box-shadow: 0 0 0 4px rgba(37, 212, 102, 0.16);
}

.front-theme .contact-section .contact-form .btn--lg.w-100 {
    margin-top: 6px;
    min-height: 56px;
    font-size: 1.03rem;
}

.front-theme .contact-section .support-wrapper {
    margin-top: 26px;
}

.front-theme .contact-section .support-wrapper .support-item {
    background: #f9fcfa;
    border: 1px solid rgba(15, 42, 26, 0.1);
    border-radius: 16px;
    padding: 18px 18px 16px;
}

.front-theme .contact-section .support-wrapper .support-item__top {
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 10px;
}

.front-theme .contact-section .support-wrapper .support-item__title {
    margin-bottom: 8px;
}

@media (max-width: 1399px) {
    .front-theme .contact-section .contact-form {
        padding: 44px 46px;
    }
}

@media (max-width: 991px) {
    .front-theme .contact-section .contact-form {
        padding: 30px 24px;
        border-radius: 18px;
    }

    .front-theme .contact-section .contact-form .form--control {
        min-height: 52px;
    }

    .front-theme .contact-section .contact-form textarea.form--control {
        min-height: 150px;
    }
}

/* Feature section redesign */
.front-theme .feature-section--modern {
    position: relative;
    background:
        radial-gradient(800px 280px at 10% 0%, rgba(37, 212, 102, 0.14), transparent 62%),
        radial-gradient(700px 240px at 100% 20%, rgba(15, 42, 26, 0.08), transparent 65%);
}

.front-theme .feature-section--modern .section-heading__title {
    font-size: clamp(2rem, 2.8vw, 3.1rem);
    letter-spacing: -0.02em;
}

.front-theme .feature-section--modern .section-heading__desc {
    font-size: 1.05rem;
    color: rgba(15, 42, 26, 0.78);
}

.front-theme .feature-section--modern .feature-item {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
    border: 1px solid rgba(15, 42, 26, 0.12);
    border-radius: 18px;
    padding: 28px 24px 24px;
    box-shadow: 0 18px 38px rgba(12, 36, 24, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
}

.front-theme .feature-section--modern .feature-item::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    right: -80px;
    top: -80px;
    background: radial-gradient(circle, rgba(37, 212, 102, 0.22), rgba(37, 212, 102, 0));
    pointer-events: none;
}

.front-theme .feature-section--modern .feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 212, 102, 0.4);
    box-shadow: 0 28px 56px rgba(12, 36, 24, 0.13);
}

.front-theme .feature-section--modern .feature-item__index {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--heading-font);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(15, 42, 26, 0.42);
    background: rgba(37, 212, 102, 0.16);
    border: 1px solid rgba(37, 212, 102, 0.3);
    border-radius: 999px;
    padding: 4px 10px;
    line-height: 1;
}

.front-theme .feature-section--modern .feature-item__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(37, 212, 102, 0.22), rgba(37, 212, 102, 0.08));
    border: 1px solid rgba(37, 212, 102, 0.32);
    color: #0f2a1a;
    margin-bottom: 18px;
}

.front-theme .feature-section--modern .feature-item__title {
    font-size: 1.95rem;
    line-height: 1.25;
    margin-bottom: 10px;
    color: #0f2a1a;
}

.front-theme .feature-section--modern .feature-item__desc {
    color: rgba(15, 42, 26, 0.8);
    line-height: 1.65;
}

.front-theme .feature-grid-modern > div:nth-child(2n) .feature-item {
    margin-top: 10px;
}

.front-theme .feature-grid-modern > div:nth-child(3n) .feature-item {
    margin-top: 18px;
}

@media (max-width: 991px) {
    .front-theme .feature-grid-modern > div:nth-child(2n) .feature-item,
    .front-theme .feature-grid-modern > div:nth-child(3n) .feature-item {
        margin-top: 0;
    }

.front-theme .feature-section--modern .feature-item__title {
        font-size: 1.65rem;
    }
}

/* Features page redesign */
.front-theme .key-feature-section--modern {
    position: relative;
    background:
        radial-gradient(1000px 360px at 0% 8%, rgba(37, 212, 102, 0.14), transparent 65%),
        radial-gradient(900px 340px at 100% 20%, rgba(15, 42, 26, 0.08), transparent 70%);
}

.front-theme .key-feature-section--modern .section-heading {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.front-theme .key-feature-section--modern .section-heading__title {
    font-size: clamp(2rem, 2.9vw, 3.2rem);
    letter-spacing: -0.02em;
}

.front-theme .key-feature-section--modern .section-heading__desc {
    color: rgba(15, 42, 26, 0.78);
    font-size: 1.06rem;
}

.front-theme .key-feature-section--modern .key-feature-container {
    position: relative;
}

.front-theme .key-feature-section--modern .key-feature-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(37, 212, 102, 0.2), rgba(37, 212, 102, 0.55), rgba(37, 212, 102, 0.2));
    opacity: 0.55;
}

.front-theme .key-feature-section--modern .key-feature-wrapper--modern {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 42, 26, 0.12);
    border-radius: 24px;
    box-shadow: 0 22px 52px rgba(12, 36, 24, 0.1);
    gap: 0;
    overflow: hidden;
}

.front-theme .key-feature-section--modern .key-feature-wrapper--modern::after {
    content: "";
    position: absolute;
    top: 36px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #25d466;
    border: 3px solid #dcf8e8;
    box-shadow: 0 0 0 4px rgba(37, 212, 102, 0.2);
}

.front-theme .key-feature-section--modern .key-feature-wrapper--modern:nth-child(odd)::after {
    right: calc(-7% - 8px);
}

.front-theme .key-feature-section--modern .key-feature-wrapper--modern:nth-child(even)::after {
    left: calc(-7% - 8px);
}

.front-theme .key-feature-section--modern .key-feature-wrapper--modern:nth-child(odd) {
    margin-right: 7%;
}

.front-theme .key-feature-section--modern .key-feature-wrapper--modern:nth-child(even) {
    margin-left: 7%;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__content {
    width: 54%;
    padding: 40px 36px;
    position: relative;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__thumb {
    width: 46%;
    background: linear-gradient(160deg, #eaf7ef 0%, #f7fcf9 100%);
    padding: 14px;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__thumb img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(15, 42, 26, 0.08);
}

.front-theme .key-feature-section--modern .key-feature-wrapper__top {
    background: rgba(37, 212, 102, 0.12);
    border: 1px solid rgba(37, 212, 102, 0.26);
    color: #0f2a1a;
    border-radius: 999px;
    margin-bottom: 14px;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__title {
    color: #0f2a1a;
    font-size: clamp(1.65rem, 2.1vw, 2.35rem);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__desc {
    color: rgba(15, 42, 26, 0.8);
    font-size: 1.04rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__index {
    position: absolute;
    top: 34px;
    right: 34px;
    font-family: var(--heading-font);
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(15, 42, 26, 0.5);
    background: rgba(15, 42, 26, 0.06);
    border-radius: 999px;
    padding: 4px 10px;
    letter-spacing: 0.08em;
    line-height: 1;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__content .why-choose-us {
    margin-top: 24px;
    background: linear-gradient(180deg, #f0faf4 0%, #e9f7ef 100%);
    border: 1px solid rgba(37, 212, 102, 0.2);
    border-radius: 16px;
    padding: 18px 20px;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__content .why-choose-us ul {
    display: grid;
    gap: 10px;
}

.front-theme .key-feature-section--modern .key-feature-wrapper__content .why-choose-us ul li {
    color: #153524;
    font-weight: 600;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .front-theme .key-feature-section--modern .key-feature-container::before,
    .front-theme .key-feature-section--modern .key-feature-wrapper--modern::after {
        display: none;
    }

    .front-theme .key-feature-section--modern .key-feature-wrapper--modern:nth-child(odd),
    .front-theme .key-feature-section--modern .key-feature-wrapper--modern:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .front-theme .key-feature-section--modern .key-feature-wrapper__content,
    .front-theme .key-feature-section--modern .key-feature-wrapper__thumb {
        width: 100%;
    }

    .front-theme .key-feature-section--modern .key-feature-wrapper__thumb {
        padding: 14px 14px 0;
        order: -1;
    }

    .front-theme .key-feature-section--modern .key-feature-wrapper:nth-child(even) .key-feature-wrapper__thumb {
        order: -1;
    }

    .front-theme .key-feature-section--modern .key-feature-wrapper__thumb img {
        min-height: 220px;
    }

    .front-theme .key-feature-section--modern .key-feature-wrapper__content {
        padding: 24px 18px;
    }

.front-theme .key-feature-section--modern .key-feature-wrapper__index {
        top: 16px;
        right: 16px;
    }
}

/* Dashboard global button refresh */
.dashboard {
    --dash-btn-border: #141a16;
    --dash-btn-shadow: #25d466;
    --dash-btn-hover-bg: #ecfff4;
}

.dashboard .btn:not(.btn-close) {
    --dash-shadow-current: var(--dash-btn-shadow);
    --dash-text-current: #101814;
    --dash-btn-hover-bg-current: var(--dash-btn-hover-bg);
    border-radius: 12px;
    border: 2px solid var(--dash-btn-border) !important;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    box-shadow: 3px 3px 0 var(--dash-shadow-current);
    background: #ffffff !important;
    color: var(--dash-text-current) !important;
}

.dashboard .btn:not(.btn-close):hover,
.dashboard .btn:not(.btn-close):focus,
.dashboard .btn:not(.btn-close):focus-visible {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--dash-shadow-current);
    background: var(--dash-btn-hover-bg-current) !important;
    color: var(--dash-text-current) !important;
}

.dashboard .btn--base {
    --dash-shadow-current: #25d466;
    --dash-text-current: #101814;
    --dash-btn-hover-bg-current: #ecfff4;
    border-color: var(--dash-btn-border) !important;
}

.dashboard .btn--base:hover,
.dashboard .btn--base:focus,
.dashboard .btn--base:focus-visible {
    color: #101814 !important;
}

.dashboard .btn--base-two,
.dashboard .btn--dark {
    --dash-shadow-current: #25d466;
    --dash-text-current: #101814;
    --dash-btn-hover-bg-current: #ecfff4;
    border-color: var(--dash-btn-border) !important;
}

.dashboard .btn--base-two:hover,
.dashboard .btn--base-two:focus,
.dashboard .btn--base-two:focus-visible,
.dashboard .btn--dark:hover,
.dashboard .btn--dark:focus,
.dashboard .btn--dark:focus-visible {
    background: #ecfff4 !important;
    color: #101814 !important;
}

.dashboard .btn.btn--info:not(.btn-close) {
    --dash-shadow-current: #00b7ff;
    --dash-text-current: #0a3a54;
    --dash-btn-hover-bg-current: #e8f8ff;
}

.dashboard .btn--primary,
.dashboard .btn.btn--primary:not(.btn-close) {
    --dash-shadow-current: #00b7ff;
    --dash-text-current: #0a3a54;
    --dash-btn-hover-bg-current: #e8f8ff;
}

.dashboard .btn.btn--info.btn-shadow:not(.btn-close),
.dashboard .btn.btn--primary.btn-shadow:not(.btn-close) {
    box-shadow: 3px 3px 0 #00b7ff !important;
}

.dashboard .btn.btn--info:not(.btn-close):hover,
.dashboard .btn.btn--info:not(.btn-close):focus,
.dashboard .btn.btn--info:not(.btn-close):focus-visible {
    color: #0a3a54 !important;
}

.dashboard .btn.btn--info.btn-shadow:not(.btn-close):hover,
.dashboard .btn.btn--info.btn-shadow:not(.btn-close):focus,
.dashboard .btn.btn--info.btn-shadow:not(.btn-close):focus-visible,
.dashboard .btn.btn--primary.btn-shadow:not(.btn-close):hover,
.dashboard .btn.btn--primary.btn-shadow:not(.btn-close):focus,
.dashboard .btn.btn--primary.btn-shadow:not(.btn-close):focus-visible {
    box-shadow: 4px 4px 0 #00b7ff !important;
}

.dashboard .btn--warning {
    --dash-shadow-current: #f7c948;
    --dash-text-current: #4f3a09;
    --dash-btn-hover-bg-current: #fff7df;
}

.dashboard .btn--danger {
    --dash-shadow-current: #ff6b6b;
    --dash-text-current: #5e1b1b;
    --dash-btn-hover-bg-current: #ffecec;
}

.dashboard .btn.remove-attribute.btn--danger:not(.btn-close) {
    background: #ffffff !important;
    color: #5e1b1b !important;
    border-color: #141a16 !important;
    box-shadow: 3px 3px 0 #ff6b6b !important;
}

.dashboard .btn.remove-attribute.btn--danger:not(.btn-close):hover,
.dashboard .btn.remove-attribute.btn--danger:not(.btn-close):focus,
.dashboard .btn.remove-attribute.btn--danger:not(.btn-close):focus-visible {
    background: #ffecec !important;
    color: #5e1b1b !important;
    box-shadow: 4px 4px 0 #ff6b6b !important;
}

.dashboard .btn--success {
    --dash-shadow-current: #4ade80;
    --dash-text-current: #0f3a1f;
    --dash-btn-hover-bg-current: #ebfff1;
}

.dashboard .btn-outline--base,
.dashboard .btn-outline--primary,
.dashboard .btn-outline--secondary,
.dashboard .btn-outline--danger,
.dashboard .btn-outline--warning,
.dashboard .btn-outline--info {
    border-color: var(--dash-btn-border) !important;
}

.dashboard .btn-outline--base,
.dashboard .btn-outline--secondary {
    --dash-shadow-current: #25d466;
    --dash-text-current: #101814;
    --dash-btn-hover-bg-current: #ecfff4;
}

.dashboard .btn-outline--primary {
    --dash-shadow-current: #00b7ff;
    --dash-text-current: #0a3a54;
    --dash-btn-hover-bg-current: #e8f8ff;
}

.dashboard .btn-outline--info {
    --dash-shadow-current: #00b7ff;
    --dash-text-current: #0a3a54;
    --dash-btn-hover-bg-current: #e8f8ff;
}

.dashboard .btn-outline--warning {
    --dash-shadow-current: #f7c948;
    --dash-text-current: #4f3a09;
    --dash-btn-hover-bg-current: #fff7df;
}

.dashboard .btn-outline--danger {
    --dash-shadow-current: #ff6b6b;
    --dash-text-current: #5e1b1b;
    --dash-btn-hover-bg-current: #ffecec;
}

.dashboard .btn-outline--base:hover,
.dashboard .btn-outline--base:focus,
.dashboard .btn-outline--primary:hover,
.dashboard .btn-outline--primary:focus,
.dashboard .btn-outline--secondary:hover,
.dashboard .btn-outline--secondary:focus,
.dashboard .btn-outline--danger:hover,
.dashboard .btn-outline--danger:focus,
.dashboard .btn-outline--warning:hover,
.dashboard .btn-outline--warning:focus,
.dashboard .btn-outline--info:hover,
.dashboard .btn-outline--info:focus {
    background: #ecfff4 !important;
    color: #101814 !important;
}

.dashboard .btn-outline--info:hover,
.dashboard .btn-outline--info:focus {
    color: #0a3a54 !important;
}

.dashboard .btn-outline--warning:hover,
.dashboard .btn-outline--warning:focus {
    color: #4f3a09 !important;
}

.dashboard .btn-outline--danger:hover,
.dashboard .btn-outline--danger:focus {
    color: #5e1b1b !important;
}

.dashboard .btn--sm {
    border-radius: 10px;
    box-shadow: 2px 2px 0 var(--dash-shadow-current);
}

@media (max-width: 991px) {
    .dashboard .btn:not(.btn-close) {
        border-width: 1px !important;
        box-shadow: none;
    }

    .dashboard .btn:not(.btn-close):hover,
    .dashboard .btn:not(.btn-close):focus,
    .dashboard .btn:not(.btn-close):focus-visible {
        box-shadow: none;
        transform: none;
    }
}

/* Auth pages redesign */
.front-theme .account,
.front-theme .verification-section {
    position: relative;
    background:
        radial-gradient(1000px 380px at 0% 0%, rgba(37, 212, 102, 0.16), transparent 70%),
        radial-gradient(900px 320px at 100% 10%, rgba(15, 42, 26, 0.1), transparent 75%);
}

.front-theme .account-inner {
    background: linear-gradient(165deg, rgba(231, 245, 236, 0.96) 0%, rgba(216, 236, 225, 0.98) 100%);
    border: 1px solid rgba(15, 42, 26, 0.16);
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(12, 36, 24, 0.14);
    padding: 34px;
}

.front-theme .account-thumb {
    height: 100%;
}

.front-theme .account-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(15, 42, 26, 0.08);
}

.front-theme .account-form__title {
    color: #10271a;
    letter-spacing: -0.01em;
}

.front-theme .account-form__desc {
    color: rgba(15, 42, 26, 0.72);
}

.front-theme .account .form-group label,
.front-theme .verification-section .form-group label,
.front-theme .verification-section .form-label {
    color: #143021;
    font-weight: 700;
    margin-bottom: 8px;
}

.front-theme .account .form--control,
.front-theme .verification-section .form--control,
.front-theme .account .form-control,
.front-theme .verification-section .form-control {
    background: #dbe7e0;
    border: 1px solid rgba(15, 42, 26, 0.2);
    border-radius: 12px;
    color: #10271a !important;
    -webkit-text-fill-color: #10271a !important;
    min-height: 52px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    font-weight: 600;
}

.front-theme .account .form--control::placeholder,
.front-theme .verification-section .form--control::placeholder,
.front-theme .account .form-control::placeholder,
.front-theme .verification-section .form-control::placeholder {
    color: rgba(16, 39, 26, 0.58) !important;
}

.front-theme .account .form--control:focus,
.front-theme .verification-section .form--control:focus,
.front-theme .account .form-control:focus,
.front-theme .verification-section .form-control:focus {
    background: #ecf5f0;
    border-color: rgba(37, 212, 102, 0.6);
    box-shadow: 0 0 0 4px rgba(37, 212, 102, 0.14);
}

.front-theme .account input:-webkit-autofill,
.front-theme .account input:-webkit-autofill:hover,
.front-theme .account input:-webkit-autofill:focus,
.front-theme .verification-section input:-webkit-autofill,
.front-theme .verification-section input:-webkit-autofill:hover,
.front-theme .verification-section input:-webkit-autofill:focus {
    -webkit-text-fill-color: #10271a !important;
    box-shadow: 0 0 0px 1000px #dbe7e0 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.front-theme .account .password-show-hide {
    color: rgba(15, 42, 26, 0.62);
}

.front-theme .account .form--check .form-check-input,
.front-theme .verification-section .form--check .form-check-input {
    border-color: rgba(15, 42, 26, 0.28);
    background-color: #fff;
}

.front-theme .account .form--check .form-check-label,
.front-theme .verification-section .form--check .form-check-label {
    color: rgba(15, 42, 26, 0.78);
}

.front-theme .account .forgot-password__link,
.front-theme .account .have-account__link,
.front-theme .verification-section a {
    font-weight: 700;
}

.front-theme .account .social-link-wrapper .text,
.front-theme .verification-section .social-link-wrapper .text {
    color: rgba(15, 42, 26, 0.64);
}

.front-theme .account .social-link-wrapper .text::before,
.front-theme .account .social-link-wrapper .text::after,
.front-theme .verification-section .social-link-wrapper .text::before,
.front-theme .verification-section .social-link-wrapper .text::after {
    background: rgba(15, 42, 26, 0.16);
}

.front-theme .verification-section .custom--card {
    background: linear-gradient(160deg, rgba(224, 240, 229, 0.98) 0%, rgba(213, 233, 221, 0.98) 100%);
    border: 1px solid rgba(15, 42, 26, 0.16);
    border-radius: 22px;
    box-shadow: 0 24px 54px rgba(12, 36, 24, 0.14);
    padding: 24px;
}

.front-theme .verification-section .custom--card .card-header {
    border-bottom: 1px solid rgba(15, 42, 26, 0.12);
    padding-bottom: 14px;
}

.front-theme .verification-section .custom--card .card-title,
.front-theme .verification-section .custom--card p {
    color: #143021;
}

@media (max-width: 991px) {
    .front-theme .account-inner {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .front-theme .verification-section .custom--card {
        padding: 18px;
        border-radius: 16px;
    }
}
