/*!
 * app.css for v8.wzcoder.com
 * Author fang <fangwei@wzcoder.com>
 * @Copyright 2005-2026 wzcoder.com (https://www.wzcoder.com)
 * @version 1.0
 * @date 2026/1/30-14:38
 */


:root {
    --background-color: #ffffff;
    --default-color: #73777c;;
    --heading-color: #2e3c54;
    --accent-color: #2986cc;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --transition-color: #9E63FF;
    --dark-color: #16191e;
    --light-color: #f6f9ff;
    --title-color: #111e3b;
    --border-color: #e2e8f0;
    --border-radius: 8px;
    --border-radius-larger: 15px;
    --animate-delay: 0.5s;
    --default-font: "Microsoft Yahei", "Heiti SC", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --nav-color: #73777c;
    --nav-hover-color: #2986cc;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #73777c;
    --nav-dropdown-hover-color: #2986cc;
}

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0d131f;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1e293b;
    --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
}

section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 76px;
    overflow: clip;
    position: relative;
}

section.section-bg:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/wrapper-bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    pointer-events: none;
}

.w-btn-default {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.w-btn-default i {
    transition: transform 0.3s ease;
}

.w-btn-default:hover {
    background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
    transform: translateY(-3px);
    color: var(--contrast-color);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.w-btn-default:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --surface-color: #1b2430;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    height: 50px;
    max-height: 50px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

.header .logo span {
    font-size: 34px;
    padding-left: 2px;
    color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 10px 30px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 18px;
        padding: 12px 18px;
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: all 0.3s ease;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 11px;
        line-height: 0;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .navmenu > ul > li > a::after {
        content: "";
        position: absolute;
        left: 18px;
        bottom: 6px;
        width: 6px;
        height: 6px;
        background: var(--accent-color);
        border-radius: 50%;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
    }

    .navmenu > ul > li > a:hover,
    .navmenu > ul > li > .active,
    .navmenu > ul > li > .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu > ul > li > a:hover::after,
    .navmenu > ul > li > .active::after,
    .navmenu > ul > li > .active:focus::after {
        opacity: 1;
        transform: scale(1);
    }

    .navmenu > ul > li:hover > a i {
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 20px;
        background: var(--nav-dropdown-background-color);
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: absolute;
        visibility: hidden;
        left: 0;
        top: calc(100% + 20px);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.18);
        min-width: 220px;
        overflow: visible;
    }

    .navmenu .dropdown ul li {
        min-width: 100%;
    }

    .navmenu .dropdown ul a {
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 400;
        color: var(--nav-dropdown-color);
        border-radius: 4px;
        position: relative;
        overflow: hidden;
    }

    .navmenu .dropdown ul a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.3s ease;
        transform: translateY(-50%);
    }

    .navmenu .dropdown ul a::after {
        display: none;
    }

    .navmenu .dropdown ul a i {
        font-size: 10px;
    }

    .navmenu .dropdown ul a:hover {
        color: var(--nav-dropdown-hover-color);
        padding-left: 24px;
    }

    .navmenu .dropdown ul a:hover::before {
        width: 12px;
    }

    .navmenu .dropdown ul .active,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
        padding-left: 24px;
    }

    .navmenu .dropdown ul .active::before,
    .navmenu .dropdown ul .active:hover::before,
    .navmenu .dropdown ul li:hover > a::before {
        width: 12px;
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: -20px;
        left: auto;
        right: calc(100% + 10px);
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: -20px;
        right: calc(100% + 10px);
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header .logo img {
        height: 38px;
        max-height: 38px;
    }

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .mobile-nav-toggle:hover {
        color: var(--accent-color);
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 0 0 0;
        padding: 30px 24px;
        margin: 0;
        border-radius: 0;
        background-color: var(--nav-mobile-background-color);
        border: none;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transition: 0.3s ease;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 16px 0;
        font-size: 18px;
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        transition: all 0.3s ease;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
        position: relative;
    }

    .navmenu a::before,
    .navmenu a:focus::before {
        content: "";
        position: absolute;
        /*left: 0;*/
        bottom: -1px;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.3s ease;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        color: var(--accent-color);
    }

    .navmenu a:hover {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu a:hover::before {
        width: 40px;
    }

    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active::before,
    .navmenu .active:focus::before {
        width: 40px;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        color: var(--accent-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0 10px 20px;
        margin: 0;
        background: transparent;
        border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
        transition: all 0.3s ease-in-out;
        box-shadow: none;
        inset: unset;
    }

    .navmenu .dropdown ul a {
        padding: 12px 0;
        font-size: 16px;
        border-bottom-color: color-mix(in srgb, var(--default-color), transparent 95%);
    }

    .navmenu .dropdown ul ul {
        padding-left: 16px;
        border-left-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: var(--accent-color);
        position: absolute;
        font-size: 32px;
        top: 14px;
        right: 20px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        transition: 0.3s ease;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
        max-height: 100vh;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background: var(--background-color);
    color: var(--default-color);
    font-size: 15px;
    padding: 100px 0 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 50%);
    pointer-events: none;
}

.footer .footer-main {
    margin-bottom: 80px;
}

.footer .brand-section .logo {
    text-decoration: none;
}

.footer .brand-section .logo img {
    width: 50px;
    height: auto;
}

.footer .brand-section .brand-description {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-weight: 300;
    max-width: 380px;
    margin: 0;
}

.footer .brand-section .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .brand-section .contact-info .contact-item i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer .brand-section .contact-info .contact-item span {
    line-height: 1.6;
}

.footer .footer-nav-wrapper {
    padding-left: 60px;
}

@media (max-width: 991px) {
    .footer .footer-main {
        margin-bottom: 30px;
    }

    .footer .footer-nav-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }
}

.footer .nav-column {
    margin-bottom: 40px;
}

.footer .nav-column h6, .footer .nav-column h6 span {
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    position: relative;
}

.footer .nav-column h6 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.footer .nav-column:hover h6 span::after {
    opacity: 1;
    transform: scale(1);
}

.footer .nav-column .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .nav-column .footer-nav a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.footer .nav-column .footer-nav a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer .footer-links {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer .footer-links .links-section {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer .footer-links a {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin: 0;
    line-height: 1.6;
}

.footer .qr-wrapper img {
    max-width: 100px;
    height: auto;
}

.footer .footer-bottom {
    padding: 30px 0;
}

.footer .footer-bottom .copyright {
    margin: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    font-weight: 300;
    display: flex;
    gap: 15px;
}

.footer .footer-bottom .copyright a {
    color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.footer .footer-bottom .copyright a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer .footer-bottom .legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

@media (max-width: 991px) {
    .footer .footer-bottom .legal-links {
        justify-content: flex-start;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .footer .footer-bottom .copyright {
        gap: 8px;
    }
}

.footer .footer-bottom .legal-links a {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer .footer-bottom .legal-links a:hover {
    color: var(--accent-color);
}

.footer .footer-bottom .legal-links .credits {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    /*margin-left: 8px;*/
    /*padding-left: 24px;*/
    /*border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
}

@media (max-width: 576px) {
    .footer .footer-bottom .legal-links .credits {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
        margin-top: 12px;
    }
}

.footer .footer-bottom .legal-links .credits a {
    font-size: 12px;
}

.footer .footer-bottom .legal-links .credits a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer {
        padding: 70px 0 0;
    }

    .footer .brand-section {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer .brand-section .brand-description {
        max-width: none;
    }

    .footer .brand-section .contact-info {
        text-align: left;
        display: inline-block;
    }

    .footer .footer-nav-wrapper .nav-column {
        text-align: center;
    }

    .footer .footer-nav-wrapper .nav-column h6 {
        margin-bottom: 16px;
    }

    .footer .footer-nav-wrapper .nav-column .footer-nav {
        gap: 10px;
    }

    .footer .footer-links {
        text-align: center;
    }

    .footer .footer-links .newsletter-section p {
        max-width: none;
    }

    .footer .footer-links .social-links {
        justify-content: center;
    }

    .footer .footer-bottom {
        text-align: center;
    }

    .footer .footer-bottom .legal-links {
        justify-content: center;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 70%);
    pointer-events: none;

}

.hero::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -5%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, transparent 60%);
    pointer-events: none;
}


.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero .hero-content .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.hero .hero-content .hero-tag .tag-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero .hero-content .hero-tag .tag-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
}

.hero .hero-content .hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--heading-color);
}

.hero .hero-stat {
    position: relative;
    display: flex;

    gap: 20px;
    flex-wrap: wrap;
    /*margin-top: 40px;*/
    padding-top: 80px;
    /*border: solid;*/
    /*border-width: 1px;*/
    /*border-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 99%) 1;*/
}

.hero .hero-stat i {
    color: var(--accent-color);
}

.hero .hero-stat:before {
    content: "";
    position: absolute;
    display: block;
    top: 45px;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #eceff3;
}

@media (max-width: 1200px) {
    .hero .hero-content .hero-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero .hero-content .hero-headline {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-content .hero-headline {
        font-size: 1.5rem;
    }
}

.hero .hero-content .hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 40px;
    max-width: 520px;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-text {
        font-size: 1rem;
        margin-bottom: 32px;
    }
}

.hero .hero-content .hero-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero .hero-content .hero-cta {
        gap: 24px;
    }
}

.hero .hero-content .hero-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .hero-content .hero-cta .cta-button i {
    transition: transform 0.3s ease;
}

.hero .hero-content .hero-cta .cta-button:hover {
    background: color-mix(in srgb, var(--accent-color), black 12%);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.hero .hero-content .hero-cta .cta-button:hover i {
    transform: translateX(4px);
}

.hero .hero-content .hero-cta .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .hero-content .hero-cta .cta-link i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.hero .hero-content .hero-cta .cta-link:hover {
    color: var(--accent-color);
}

.hero .hero-content .hero-cta .cta-link:hover i {
    transform: scale(1.1);
}


@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@media (max-width: 1200px) {
    .hero {
        padding: 30px 0 50px;
    }

    .hero::before {
        width: 100%;
        left: 0;
    }

    .hero .hero-content {
        text-align: center;
        margin-bottom: 48px;
    }

    .hero .hero-content .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .hero-content .hero-cta {
        justify-content: center;
    }

    .hero .hero-stat {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title em {
    all: unset;
    color: var(--heading-color);
}

.section-title em.colorfull {
    background-clip: text;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--transition-color) 100%, rgba(216, 216, 216, 0) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 100%;
    text-align: center;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.5rem;
    }
}

.section-title p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

.section-title .tagline {
    display: inline-block;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.service .service-card {
    position: relative;
    padding: 32px;
    border-radius: 15px;
    background: var(--surface-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service .service-card:hover .icon-wrapper {
    /*background: var(--accent-color);*/
}

.service .service-card:hover .icon-wrapper i {
    color: var(--contrast-color);
}

.service .service-card:hover .service-link i {
    transform: translateX(4px);
}

.service .service-card.featured {
    background: var(--accent-color);
    transform: scale(1.02);
}

@media (min-width: 992px) {
    .service .service-card.featured {
        transform: scale(1.05);
    }
}

.service .service-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

@media (min-width: 992px) {
    .service .service-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

.service .service-card.featured .icon-wrapper {
    /*background: color-mix(in srgb, var(--contrast-color) 20%, transparent);*/
}

.service .service-card.featured .icon-wrapper i {
    color: var(--contrast-color);
}

.service .service-card.featured h3 {
    color: var(--contrast-color);
}

.service .service-card.featured p {
    color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
}

.service .service-card.featured .service-link {
    color: var(--contrast-color);
}

.service .service-card.featured .service-link:hover {
    color: var(--contrast-color);
}

.service .service-card .featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
    color: var(--contrast-color);
}

.service .service-card .featured-badge i {
    font-size: 10px;
}

.service .service-card .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    /*background: color-mix(in srgb, var(--accent-color) 15%, transparent);*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service .service-card .icon-wrapper i {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service .service-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.service .service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service .service-card .service-link {
    /*display: inline-flex;*/
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service .service-card .service-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service .service-card .service-link:hover {
    color: color-mix(in srgb, var(--accent-color) 80%, black);
}

@media (max-width: 768px) {
    .service .service-card {
        padding: 24px;
    }

    .service .service-card .icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .service .service-card .icon-wrapper i {
        font-size: 24px;
    }

    .service .service-card h3 {
        font-size: 18px;
    }
}

.stats-row {
    margin-top: 64px;
    padding: 48px 32px;
    background: color-mix(in srgb, var(--accent-color) 8%, transparent);
    border-radius: 15px;
}

@media (max-width: 768px) {
    .stats-row {
        margin-top: 48px;
        padding: 32px 24px;
    }
}

.stats-row .stat-item {
    text-align: center;
}

.stats-row .stat-item .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stats-row .stat-item .stat-number em.number {
    font-style: normal;
}

@media (max-width: 768px) {
    .stats-row .stat-item .stat-number {
        font-size: 28px;
    }
}

.stats-row .stat-item .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--default-color);
}

@media (max-width: 768px) {
    .stats-row .stat-item .stat-label {
        font-size: 12px;
    }
}


/*--------------------------------------------------------------
# Project Section
--------------------------------------------------------------*/

.project {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    position: relative;
    overflow: hidden;
}

.project::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
    pointer-events: none;
}

.project::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
    pointer-events: none;
}

.post-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.post-card:hover .image-wrapper img {
    transform: scale(1.08);
}

.post-card:hover .image-wrapper .hover-overlay {
    opacity: 1;
    visibility: visible;
}

.post-card.featured .image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 20%, transparent), transparent);
    z-index: 1;
    pointer-events: none;
}

.post-card .image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .post-card .image-wrapper {
        height: 200px;
    }
}

.post-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-card .image-wrapper .hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--default-color) 80%, transparent) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-card .image-wrapper .hover-overlay .overlay-actions {
    display: flex;
    gap: 12px;
}

.post-card .image-wrapper .hover-overlay .action-btn {
    width: 48px;
    height: 48px;
    background: var(--surface-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.post-card .image-wrapper .hover-overlay .action-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.post-card .image-wrapper .category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 15px;
    background: color-mix(in srgb, var(--surface-color) 85%, transparent);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.post-card .post-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-card .post-info .description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

@media (max-width: 576px) {
    .post-card .post-info {
        padding: 20px;
    }
}

.post-card .post-info h3,
.post-card .post-info a.h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.post-card .post-info a.h3:hover {
    color: var(--accent-color);
}

.post-card .post-info p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color) 70%, transparent);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.post-card .post-info .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.post-card .post-info .post-meta .post-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.post-card .post-info .post-meta .post-tags span {
    font-size: 12px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 50px;
    background: color-mix(in srgb, var(--accent-color) 12%, transparent);
    color: var(--accent-color);
}

.post-card .post-info .post-meta .year,
.post-card .post-info .post-meta .read {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.post-card .post-info .post-meta i {
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/

.blog .post-card .category-badge.w-bg-tech {
    color: var(--surface-color);
    background: color-mix(in srgb, var(--transition-color) 85%, transparent);
}

.blog .post-card .category-badge.w-bg-news {
    color: var(--surface-color);
    background: color-mix(in srgb, #21c87a 85%, transparent);
}

.blog .blog-wrapper {
    position: relative;
    height: 430px;
    overflow-y: hidden;
    /*overflow-x: hidden;*/
    transition: height 0.55s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background-color: var(--surface-color);
}


.blog .blog-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98), #ffffff);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
    opacity: 1;
}


.blog .blog-wrapper.expanded-grace::after {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

@media (max-width: 991px) {
    .blog .blog-wrapper::after {
        height: 50px;
    }
}

/*--------------------------------------------------------------
# Client Section
--------------------------------------------------------------*/

.clients .client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease-in-out;
    max-height: 135px;
    padding: 20px;
}

@media (max-width: 768px) {
    .clients .client-item {
        max-height: 105px;
        padding: 12px;
    }
}

.clients .client-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.process-timeline {
    background: var(--surface-color);
    border-radius: 15px;
    margin-bottom: 32px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    margin-top: 64px;
    padding: 25px;
    background: color-mix(in srgb, var(--accent-color) 8%, transparent);
}

.process-timeline .timeline-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 24px;
}

.process-timeline .timeline-title i {
    color: var(--accent-color);
    font-size: 20px;
}

.process-timeline .timeline-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .process-timeline .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.process-timeline .timeline-steps .timeline-step {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    padding: 15px 0;
}

.process-timeline .timeline-steps .timeline-step .step-marker {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-timeline .timeline-steps .timeline-step .step-info strong {
    display: block;
    font-size: 18px;
    color: var(--heading-color);
}

.process-timeline .timeline-steps .timeline-step .step-info span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.process-timeline .timeline-steps .timeline-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
    min-width: 20px;
    max-width: 60px;
}

@media (max-width: 768px) {
    .process-timeline .timeline-steps .timeline-connector {
        display: none;
    }
}

/*--------------------------------------------------------------
# List Page
--------------------------------------------------------------*/
.content-head, .content-body, .content-foot {
    z-index: 2;
    position: relative;
}

.content-head {
    padding-top: 30px;
    padding-bottom: 60px;
}

@media (max-width: 1199px) {
    .content-head {
        padding-top: 0px;
    }
}

.content-head .tagline {
    display: inline-block;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.content-head h1, .content-head h2 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1.2rem;
}

.content-head p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    max-width: 900px;
    margin: 0 auto;
    text-wrap: balance;
}

/*--------------------------------------------------------------
# TPL-detail style
--------------------------------------------------------------*/
.tpl-detail {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    min-height: 620px;
}


.tpl-detail .section-inner {
    max-width: 1300px;
    padding-left: 3%;
    padding-right: 3%
}

.tpl-detail .tpl-detail-preview-desktop img, .tpl-detail .tpl-detail-preview-mobile img, .tpl-detail .tpl-detail-preview-tablet img, .tpl-detail-preview-desktop .tpl-detail img, .tpl-detail-preview-mobile .tpl-detail img, .tpl-detail-preview-tablet .tpl-detail img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: 0;
    height: 100%
}

.tpl-detail .tpl-detail-preview-desktop-content, .tpl-detail .tpl-detail-preview-mobile-content, .tpl-detail .tpl-detail-preview-tablet-content {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    position: relative;
    line-height: 0;
    overflow: hidden;
    z-index: 10
}

.tpl-detail-preview {
    width: 100%
}

.tpl-detail-preview-wrapper {
    position: relative;
    padding-top: 100%
}

.tpl-detail-preview-desktop {
    position: absolute;
    top: 0;
    left: 2%;
    width: 80.802%;
    display: inline-block
}

.tpl-detail-preview-desktop-content {
    padding-top: 82.922%;
    background-image: url(/static/img/cases/wz-desktop.png)
}

.tpl-detail-preview-desktop-image {
    position: absolute;
    top: 5%;
    left: 4.23%;
    bottom: auto;
    right: 4.23%;
    padding-top: 52.464%;
    overflow: hidden
}

.tpl-detail-preview-tablet {
    position: absolute;
    top: 23%;
    left: 66.302%;
    width: 33%;
    display: inline-block
}


.tpl-detail-preview-tablet-content {
    padding-top: 172.244%;
    background-image: url(/static/img/cases/wz-tablet.png)
}

.tpl-detail-preview-tablet-image {
    padding-top: 127.123%;
    position: absolute;
    top: 3%;
    left: 5.5%;
    bottom: auto;
    right: 6%;
    border-radius: 10px;
    overflow: hidden;
}

.tpl-detail-preview-mobile {
    position: absolute;
    top: 42%;
    left: 56.5%;
    width: 25%;
    display: inline-block
}

.tpl-detail-preview-mobile-content {
    padding-top: 210%;
    background-image: url(/static/img/cases/wz-mobile.png);
    z-index: 80 !important;
}

.tpl-detail-preview-mobile-image {
    position: absolute;
    top: 1.9%;
    left: 2.9%;
    bottom: 5%;
    right: 2.9%;
    overflow: hidden;
    z-index: 70;
}

.tpl-detail-name {
    padding: 0 0 20px
}

.tpl-detail-name h1 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 12px;
    font-weight: 500
}

.tpl-detail-name h1 b, .tpl-detail-name h1 strong {
    font-weight: 600
}

.tpl-detail-desc-wrapper {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.tpl-detail-desc-text {
    -webkit-transition: all .5s;
    transition: all .5s;
    position: relative;
    overflow: hidden
}

.tpl-detail-desc-back {
    text-align: center;
    padding: 10px 0 0
}

.tpl-detail-desc-buttons {
    padding: 10px 0;
    margin: auto;
    max-width: 250px;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.tpl-detail-desc-buttons .button {
    margin: 0;
    padding: 10px;
    -webkit-box-flex: 1;
    -moz-box-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.tpl-detail-desc-buttons .button:first-child {
    padding-top: 0
}

.tpl-detail-desc-buttons .button:last-child {
    padding-bottom: 0
}

.tpl-detail-desc-buttons .button a {
    padding: 0 15px;
    width: 100%;
    line-height: 48px;
    height: 48px
}

.tpl-m {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 218.244%;
}

.tpl-m-content {
    position: absolute;
    background-image: url(/static/img/cases/wz-mobile.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 100;

}

.tpl-m-image {
    position: absolute;
    left: 4.5%;
    top: 1.705%;
    right: 4.5%;
    bottom: 8.89%;
    z-index: 80;
    overflow: hidden;
}

@media (max-width: 991px) {
    .tpl-detail {
        padding-top: 0;
    }

}

@media all and (min-width: 992px) {

    .tpl-detail-desc-back, .tpl-detail-name h1 {
        text-align: left
    }

    .tpl-detail-preview {
        width: 100%;
        float: left;
        padding-right: 1.25%;
        padding-left: 1.5%
    }

    .tpl-detail-preview-wrapper {
        padding-top: 80%
    }

    .tpl-detail-preview-desktop {
        width: 73.802%;
        left: 0
    }

    .tpl-detail-preview-tablet {
        top: 12.5%;
        width: 35%;
        left: 60%
    }

    .tpl-detail-desc, .tpl-detail-name {
        width: 39.135%;
        float: right
    }

    .tpl-detail-preview-mobile {
        top: 28%;
        left: 46%;
    }

    .tpl-detail-name {
        padding: 20px 2px 0 0
    }

    .tpl-detail-desc-wrapper {
        text-align: left;
        padding-right: 2px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .tpl-detail-desc-buttons {
        padding: 15px 0 25px;
        margin: 0
    }

    .tpl-detail-desc-buttons .button {
        float: left
    }
}

.article .content-head {
    padding: 0;
}

.article .content-head h1 {
    font-size: 1.8rem;
    color: var(--heading-color);
}

@media (max-width: 991px) {
    .article .content-head h1 {
        font-size: 1.5rem;
    }
}

.article .content-body a,
.article a {
    color: var(--default-color);
}

.article .content-body p {
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


.tpl-detail .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tpl-detail .action-buttons a {
    height: 48px;
    min-width: 176px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.tpl-detail .action-buttons .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 50px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tpl-detail .action-buttons .btn-main:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.tpl-detail .action-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 50px;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tpl-detail .action-buttons .btn-outline:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (min-width: 576px) {
    .tpl-detail .action-buttons {
        flex-direction: row;
    }
}

.article .share, .share a {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.article .share svg {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 8px;
    color: var(--heading-color);
}

.article .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.article .tags i {
    font-size: 1rem;
    color: var(--heading-color);
}

.article .tags a {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    border-bottom: 2px solid transparent;
    transition: ease-in-out 0.3s all;
}

.article .tags a:hover {
    border-bottom: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.article .content-body a {
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-bottom .15s ease-in;
}

.article .content-body a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.article .prev-next p {
    margin-bottom: 0.5rem;
}

.article .prev-next a {
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-bottom .15s ease-in;
}

.article .prev-next a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}


/*--------------------------------------------------------------
# Price page
--------------------------------------------------------------*/
.price-box {
    border-radius: 15px;
    background: var(--surface-color);
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color) 8%, transparent);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.price-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color) 12%, transparent);
}

.price-box .box-header {
    padding-bottom: 100px !important;
    margin: 0;
    border: none;
    position: relative;
    background-color: var(--accent-color);
    color: var(--surface-color);
}

@media (max-width: 991.98px) {
    .price-box .box-header {
        padding-bottom: 8rem !important;
    }
}

.price-box .price-svg {
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: 0px;
    top: auto;
}

.price-box .price-wave-bottom {
    margin-bottom: 0;
}


.price-box .price-wave-bottom object {
    margin-bottom: -6px;
}

.price-box .box-body {
    position: relative;
    z-index: 10;
}

.price-box ul > li {
    padding: 10px 0;
}

.price-box > .box-body > ul > li:not(:last-child) {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%)
}

.price-box .box-body i {
    color: var(--accent-color);
}

.price-box .action-btn .price-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 50px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-box .action-btn .price-btn:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.price .tips {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}


/*--------------------------------------------------------------
# Post
--------------------------------------------------------------*/
.post-sidebar {
    position: sticky;
    top: 100px;
}

.post-sidebar .sidebar-section {
    padding: 1.5rem;
    background-color: var(--surface-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 2rem;
}

.post-sidebar .sidebar-section h4 {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent)
}

.post-sidebar .category-list {
    margin-bottom: 0;
}


.post-sidebar .category-list a {
    padding: 8px 0;
    position: relative;
    font-size: 1rem;
    color: var(--default-color);
}

.post-sidebar .category-list a.active {
    color: var(--accent-color);
}

.post-sidebar .category-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.post-sidebar .category-list a:hover::after,
.post-sidebar .category-list a.active::after {
    opacity: 1;
    transform: scale(1);
}

.post-sidebar .badge-total {
    font-size: 12px;
    font-weight: 300;
    background-color: color-mix(in srgb, var(--default-color), transparent 65%);
}

.post-sidebar .sidebar-section .topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-sidebar .sidebar-section .topic-tags .topic-tag {
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-sidebar .sidebar-section .topic-tags .topic-tag:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.post-sidebar .sidebar-section.sidebar-advs {
    padding: 0;
    overflow: hidden;
}

.article-content img {
    max-width: 1000px;
    height: auto;
    margin: 1rem 0;
}

@media (max-width: 991.98px) {
    .article-content img {
        max-width: 100%;
        height: auto;
    }
}

.article-content pre {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    word-wrap: normal;
    word-break: normal;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    resize: both;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);;
    font-family: 'SourceCodePro', sans-serif;
    color: #333;
}

.article-content code {
    margin: 0 .25em;
    padding: .125em .25em;
    border: 1px solid #dadce0;
    hyphens: none;
    tab-size: 2;
    text-align: left;
    word-spacing: normal;
    white-space: pre-wrap;
    word-wrap: normal;
    word-break: normal;
    background-color: #edf7ff;
    font-family: 'Source Code Pro', monospace, Consolas, Tahoma, Verdana, Arial, Helvetica, "Microsoft Yahei";
}

.article-content .title-h3 {
    position: relative;
    font-size: 1.5rem;
    display: table;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.article-content .title-h3:after {
    content: "";
    width: 25%;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    border-radius: 0.25rem;
    border: 2px solid var(--accent-color);
}

.article-content p {
    line-height: 2;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
}

.article-content a {
    color: var(--default-color);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all .15s ease-in;
}

.article-content a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Related section
--------------------------------------------------------------*/
.related {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    position: relative;
    overflow: hidden;
}

.related::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
    pointer-events: none;
}

.related::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
    pointer-events: none;
}

/*--------------------------------------------------------------
# About page
--------------------------------------------------------------*/
.about .article-content {
    font-size: 1.1rem;
}

.process {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
    pointer-events: none;
}

.process::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
    pointer-events: none;
}

.process .box-how-works, .process .how-arrow {
    padding-right: 15px;
    padding-left: 15px;
}

.process .box-how-works img {
    max-width: 130px;
}

.process .box-how-works .t {
    font-weight: 600;
    color: var(--accent-color);
}

@media (min-width: 992px) {
    .process .box-how-works {
        width: 25%;

    }

    .process .how-arrow {
        width: 12.5%;
    }
}

.process .about-cta {
    display: flex;
    justify-content: center;
}


/*--------------------------------------------------------------
# Contact page
--------------------------------------------------------------*/
.contact .contact-box h2,
.contact .content-body h2 {
    font-size: 1.2rem;
    font-weight: bold;
}

.contact .contact-box p > a {
    color: var(--accent-color);
}

.contact .qr-wrapper img {
    margin: 0;
    width: 130px;
    height: auto;
}

.contact .qr-wrapper span {
    font-size: 12px;
}

/*--------------------------------------------------------------
# tags page
--------------------------------------------------------------*/

.tags-lists .post-card .image-wrapper {
    height: 200px;
}

/*--------------------------------------------------------------
# Faq page
--------------------------------------------------------------*/
.faq .faq-list .faq-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: border-color 0.3s ease;
}

.faq .faq-list .faq-item:first-child {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.faq .faq-list .faq-item h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1.6;
    color: var(--heading-color);
}

.faq .faq-list .faq-item h3 .question {
    flex: 1;
    padding-right: 16px;
}

.faq .faq-list .faq-item h3 .faq-toggle {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    flex-shrink: 0;
}

.faq .faq-list .faq-item .faq-content {
    display: none;
    padding-bottom: 24px;
}

.faq .faq-list .faq-item .faq-content p {
    margin: 0;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

.faq .faq-list .faq-item .faq-content p + p {
    margin-top: 12px;
}

.faq .faq-list .faq-item .faq-content p:last-child {
    margin-bottom: 0;
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
    display: block;
}

.faq .faq-cta {
    padding: 64px 0 0;
}

.faq .faq-cta p {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 16px;
}

.faq .faq-cta .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.faq .faq-cta .cta-link:hover {
    opacity: 0.7;
}

.faq .faq-cta .cta-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq .faq-cta .cta-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 576px) {
    .faq .faq-list .faq-item h3 {
        padding: 20px 0;
        font-size: 0.95rem;
    }

    .faq .faq-list .faq-item .faq-content {
        padding-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# sitemap page
--------------------------------------------------------------*/
.sitemap .sitemap-item {
    margin: 64px 0;
}

.sitemap .sitemap-item h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.sitemap .sitemap-item .article-lists a {
    color: var(--default-color);
}

/*--------------------------------------------------------------
# payments page
--------------------------------------------------------------*/
.payment h3 {
    font-weight: bold;
    font-size: 20px;
}

.payment p {
    margin-bottom: 0.5rem;
}

img.alipay {
    max-width: 200px;
    height: auto;
}

img.ali-logo {
    max-width: 120px;
    height: auto
}

.bank-logo img {
    max-width: 140px;
}
