/* ============================================= */
/* GLOBAL VARIABLES & FONTS */
/* ============================================= */
:root {
    --primary-color: #655fff;
    --primary-light-color: #7b61ff1a;
    --font-main: "SF-Pro-Display-Regular";
    --text-color: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --bg-light: #f8faff;
    --border-color: #e6eaf2;
    --bg-section: #f9f9fe;
    --regular: "SF-Pro-Display-Regular";
    --medium: "SF-Pro-Display-Medium";
    --semibold: "SF-Pro-Display-SemiBold";
    --bold: "SF-Pro-Display-Bold";
    --color-hover: #3f38f2;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --m-10: 10px;
    --m-20: 20px;
    --m-30: 30px;
    --m-34: 34px;
    --m-40: 40px;
    --m-50: 50px;
    --m-60: 60px;
    --m-70: 70px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-24: 24px;
    --fs-30: 30px;
}
p {
    margin-bottom: 0;
}
a {
    color: inherit;
}
body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.bg-primary-light {
    background-color: var(--primary-light-color) !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-light {
    color: var(--text-light) !important;
}
.text-dark {
    color: var(--text-color) !important;
}
.color-white {
    color: #fff;
}
.gap-12 {
    gap: 12px;
}
.mb-10 {
    margin-bottom: var(--m-10) !important;
}
.mb-20 {
    margin-bottom: var(--m-20) !important;
}
.mb-30 {
    margin-bottom: var(--m-30);
}
.mb-34 {
    margin-bottom: var(--m-34);
}
.mb-40 {
    margin-bottom: var(--m-40);
}
.pb-40 {
    padding-bottom: var(--m-40);
}
.mb-50 {
    margin-bottom: var(--m-50);
}
.mb-60 {
    margin-bottom: var(--m-60);
}
.mb-70 {
    margin-bottom: var(--m-70);
}
.fs-14 {
    font-size: var(--fs-14);
}
.fs-15 {
    font-size: var(--fs-15);
}
.fs-16 {
    font-size: var(--fs-16);
}
.fs-18 {
    font-size: var(--fs-18);
}
.fs-20 {
    font-size: var(--fs-20);
}
.fs-24 {
    font-size: var(--fs-24);
}
.fs-30 {
    font-size: var(--fs-30);
}
.ff-regular {
    font-family: var(--regular);
}
.ff-medium {
    font-family: var(--medium);
}
.ff-semibold {
    font-family: var(--semibold);
}
.ff-bold {
    font-family: var(--bold);
}
.small-text-feedback {
    font-family: var(--regular);
    font-size: 16px;
    line-height: 26px;
    color: #475569;
    margin-bottom: 32px;
}
.heading-title {
    font-family: var(--semibold);
    font-size: 40px;
    line-height: 48px;
    color: var(--text-color);
    margin-bottom: 0;
}

/* ============================================= */
/* BOOTSTRAP OVERRIDES */
/* ============================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}
.bg-light-subtle {
    background-color: var(--bg-section) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--semibold);
}
.btn-primary:hover {
    background-color: #6a53f0;
    border-color: #6a53f0;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--semibold);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.badge {
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--bold);
}
.badge-sm-title {
    display: inline-flex;
    padding: 6px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid rgba(224, 231, 255, 0.5);
    background: #eef2ff;
    color: #655fff;
    text-align: center;
    font-family: var(--bold);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.header__offcanvas.offcanvas-end {
    width: 300px;
}
.flag-icon {
    width: 24px;
    height: 24px;
    background-color: #ddd;
    display: inline-block;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}
.flag-icon-vn {
    background-color: #da251d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd21e;
}
.flag-icon-uk {
    background-color: #00247d;
}
.header__lang-trigger {
    border: 1px solid #e6eaf1 !important;
    padding: 7px 14px;
    border-radius: 100px;
}

/* ============================================= */
/* HEADER & NAVIGATION (BEM) */
/* ============================================= */
.header {
    transition: all 0.3s ease;
}
.header__logo img {
    height: 40px;
}
.header__nav-list .nav-link {
    font-family: var(--medium);
    font-size: 15px;
    color: var(--text-muted);
    padding: 0 !important;
}
.header__nav-list .nav-link:hover,
.header__nav-list .nav-link.active {
    color: var(--primary-color);
}
.header__nav-list .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    font-size: 8px;
    opacity: 0.7;
}
.navbar-nav {
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}
.offcanvas-body {
    gap: 52px;
}
.border-radius-round {
    border-radius: 100px;
}
.btn-shadow {
    box-shadow: 0 8px 10px -6px #c7d2fe;
}
.header__btn {
    font-size: 14px;
}
.header__btn.header__btn--filled:hover {
    background-color: var(--color-hover);
}
.header__btn.header__btn--outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}
.header__language .header__lang-trigger {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header__language .header__lang-trigger:focus {
    box-shadow: none;
}
.header__lang-box .header__lang-title {
    color: var(--text-color) !important;
    font-family: var(--semibold);
    font-size: 15px;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}
.header__lang-box {
    position: absolute;
    top: 130%;
    right: 0;
    width: 240px;
    display: none;
    z-index: 1000;
    box-shadow: 1px 0 16px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.lang-list-item {
    padding: 2px 0;
    gap: 16px;
    font-family: var(--regular);
    font-size: 15px;
    color: var(--text-color);
}
.lang-list-item:hover {
    color: var(--primary-color);
}
.header__lang-box.show {
    display: flex;
    animation: slideDownIn 0.3s ease forwards;
    flex-direction: column;
    gap: 12px;
}
.header__lang-list .dropdown-item {
    font-size: 15px;
}
.header__lang-list .dropdown-item.active {
    color: var(--primary-color);
}

@keyframes slideDownIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section__title {
    font-size: calc(1.8rem + 1.5vw);
    line-height: 1.3;
}
.hero-section__desc {
    max-width: 500px;
}
.slideshow {
    position: relative;
}
.slideshow__inner {
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.slideshow__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
}
.slideshow__control:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}
.slideshow__control--prev {
    left: -22px;
}
.slideshow__control--next {
    right: -22px;
}
.hero-banner {
    background-color: var(--white);
    padding: 85px 0;
}
.hero-banner__title {
    font-family: var(--semibold);
    line-height: 1.2;
    color: var(--text-color);
    font-size: 40px;
}
.hero-banner__desc {
    font-family: var(--regular);
    font-size: 18px;
    line-height: 1.6;
}
.hero-btn-main {
    border-radius: 16px !important;
    padding: 12px 30px !important;
    font-size: 16px;
    box-shadow: 0 25px 50px -12px #c7d2fe;
}
.hero-btn-main:hover {
    background-color: var(--color-hover);
}
.hero-btn-outline {
    border-radius: 16px !important;
    padding: 12px 30px !important;
    font-size: 16px;
    color: var(--text-muted);
    border: 1px solid var(--border-color) !important;
    background: transparent;
}
.hero-btn-outline:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-color: var(--primary-color) !important;
}
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-main-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
.hero-bg-circle {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary-light-color);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================= */
/* FEATURES SECTION STYLES */
/* ============================================= */
.features {
    background-color: var(--white);
    padding: 70px 0;
}
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.carousel-nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.carousel-nav-btn.prev {
    left: -60px;
}
.carousel-nav-btn.next {
    right: -60px;
}
.carousel-indicators-custom {
    margin-bottom: 0;
}
.carousel-indicators-custom button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #e2e8f0 !important;
    border: none !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    box-sizing: content-box;
}
.carousel-indicators-custom button.active {
    width: 30px !important;
    border-radius: 10px !important;
    background-color: var(--primary-color) !important;
}
.feature-graphic-container {
    padding: 20px;
}
.feature-graphic-container img {
    max-height: 422px;
}
.letter-spacing-1-4 {
    letter-spacing: 1.4px;
}
.features__title {
    font-family: var(--medium);
    font-size: 48px;
    color: var(--text-color);
}
.features__desc {
    font-family: var(--medium);
    font-size: 18px;
    color: var(--text-muted);
}
.num-slide {
    display: inline-block;
    font-family: var(--medium);
    font-size: 14px;
    color: #94a3b8;
    letter-spacing: 1.4px;
}
/* ============================================= */
/* MISSION & VISION STYLES */
/* ============================================= */
.mission {
    padding: 70px 0;
}
.mission__content {
    display: flex;
    gap: 40px;
    align-items: center;
}
.mission-card {
    padding: 48px;
    border-radius: 40px;
    border: 1px solid #f8fafc;
    background: #fff;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
}
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}
.mission-card__tag {
    display: inline-flex;
    padding: 4px 12px;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    margin-bottom: 24px;
}
.mission .text-tag {
    font-family: var(--semibold);
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}
.letter-spacing-1 {
    letter-spacing: 1px;
}
.mission_desc {
    font-family: var(--regular);
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-right: 180px;
    line-height: 29.3px;
}
.mission-card__line {
    position: absolute;
    bottom: 48px;
    left: 48px;
    width: 60px;
    height: 6px;
    border-radius: 9999px;
    background: rgba(101, 95, 255, 0.3);
}
.mission-card:hover .mission-card__line {
    background-color: var(--primary-color);
    width: 80px;
    transition: all 0.3s ease;
}
.text-warning {
    color: #ffb800 !important;
}

/* ============================================= */
/* MULTI-DEVICE SECTION STYLES */
/* ============================================= */
.multi-device {
    background-color: var(--white);
    padding: 40px 0;
}
.device-container {
    gap: 64px;
}
.multi-device__graphic {
    flex: 1;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 25px 50px -12px rgba(224, 231, 255, 0.5);
}
.multi-device__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.check-icon-box {
    width: 24px;
    height: 24px;
    background-color: #eef2ff;
    color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.device-tag-list {
    padding-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.device-tag {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: var(--semibold);
    font-size: 14px;
    color: #475569;
}
.device-tag:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.device-tag:hover i {
    color: var(--primary-color);
}
.multi-device__bg-glow-right {
    position: absolute;
    width: 70%;
    height: 70%;
    right: -40px;
    bottom: -40px;
    border-radius: 9999px;
    opacity: 0.5;
    background: #eff6ff;
    filter: blur(32px);
}
.multi-device__bg-glow-top {
    position: absolute;
    width: 70%;
    height: 70%;
    left: -40px;
    top: -40px;
    border-radius: 9999px;
    opacity: 0.5;
    background: #eef2ff;
    filter: blur(32px);
}
.multi-device__bg-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(30px);
}
.multi-device__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
}
.multi-device_list-text {
    font-family: var(--medium);
    font-size: 16px;
    color: #334155;
}
.testimonials .multi-device__bg-glow-top {
    position: absolute;
    width: 20%;
    height: 40%;
    left: 0px;
    top: 16px;
    border-radius: 9999px;
    opacity: 0.4;
    background: #eef2ff;
    filter: blur(32px);
}

/* ============================================= */
/* TESTIMONIALS STYLES */
/* ============================================= */
.testimonials {
    padding: 40px 0 70px 0;
}
.testimonials__content-title {
    display: flex;
    padding-bottom: 21px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.testimonial-card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.small-text {
    font-size: 0.95rem;
    line-height: 1.7;
}
.testimonial-card__line {
    width: 48px;
    height: 6px;
    background-color: var(--primary-light-color);
    border-radius: 100px;
    position: absolute;
    bottom: 32px;
}
.testimonial-card:hover .testimonial-card__line {
    background-color: var(--primary-color);
    width: 60px;
    transition: all 0.3s ease;
}
.testimonial-item {
    padding: 0 18px;
    outline: none;
}
.testimonials .carousel-nav-btn.prev {
    left: -60px;
}
.testimonials .carousel-nav-btn.next {
    right: -60px;
}
.avatar-wrapper .avatar-user {
    width: 56px;
    height: 56px;
}
.slick-dots li button:before {
    content: "" !important;
    display: none;
}
.testimonial-slider .slick-dots li {
    width: 6px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 9999px;
    margin: 0 5px;
    transition: var(--transition);
}
.slick-dots li button {
    visibility: hidden;
}
.testimonial-slider .slick-dots li.slick-active {
    background-color: var(--primary-color);
    width: 32px;
}
.testimonial-slider .slick-dots {
    bottom: -60px;
}

/* ============================================= */
/* DOWNLOAD APP SECTION STYLES */
/* ============================================= */
.download-app {
    padding: 40px 0;
}
.download-app__card {
    background-color: #0b062d;
    border-radius: 48px !important;
    min-height: 810px;
    padding: 64px 80px;
}
.download-app__badge .badge {
    display: inline-flex;
    padding: 8px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid #e0e7ff;
    background: #eef2ff;
    font-family: var(--bold);
    font-size: 14px;
    color: var(--primary-color);
}
.download-app .heading-title {
    font-size: 50px;
    line-height: 60px;
    color: #fff;
}
.text-primary-light-bright {
    color: #9d88ff !important;
}
.download-app__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/gettheapp-img.svg");
    background-size: cover;
    background-position: center bottom;
}
.download-app__list {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.download-app__list-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.download-app__qr {
    margin-top: 50px;
    display: flex;
    justify-content: end;
}

.qr-card {
    border-radius: 24px;
    transform: rotate(5deg);
    position: relative;
    z-index: 5;
}
.qr-badge {
    top: -10px;
    right: -10px;
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 50px;
    background-color: #7b61ff !important;
}
.bg-success-light {
    background-color: rgba(40, 167, 69, 0.1) !important;
    font-size: 10px;
}
.x-small {
    font-size: 10px;
}
.qr-stats {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-top: 80px;
    padding-right: 80px;
}
.qr-stats .text-start .small {
    font-family: var(--semibold);
    font-size: 10px;
    color: #e2e8f0;
}
.badge-grow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e2e8f0;
    font-family: var(--semibold);
    font-size: 12px;
    border-radius: 9999px;
}
.badge-grow > span {
    color: #10b981;
}

/* ============================================= */
/* STATISTICS SECTION STYLES */
/* ============================================= */
.stats {
    padding: 80px 0 40px 0;
}
.stats__content {
    display: flex;
    gap: 32px;
    align-items: center;
}
.stats-card {
    display: flex;
    flex: 1;
    padding: 32px;
    flex-direction: column;
    align-items: center;
    border-radius: 40px;
    border: 1px solid #f8fafc;
    background: #fff;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}
.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    border-color: var(--primary-light-color) !important;
}
.stats-card__icon-box {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    border-radius: 16px;
    background: rgba(101, 95, 255, 0.1);
    margin-bottom: 24px;
}
.stats-card h3 {
    font-family: var(--bold);
    font-size: 30px;
    color: var(--text-color);
}
.stats-card:hover .stats-card__icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}
.stats-card .desc-text-1 {
    font-family: var(--bold);
    font-size: 18px;
    color: #334155;
}
.stats-card .small {
    color: #94a3b8;
    font-family: var(--regular);
    font-size: 14px;
    line-height: 20px;
}

/* ============================================= */
/* PARTNERSHIP SECTION STYLES */
/* ============================================= */
.gap-64 {
    gap: 64px;
}
.partnership {
    padding: 40px 0;
}
.partnership .heading-title {
    color: #fff;
}
.opacity-90 {
    opacity: 0.9;
}
.partnership__card {
    position: relative;
    padding: 50px 80px;
    border-radius: 48px;
    background: #655fff;
    box-shadow: 0 25px 50px -12px #c7d2fe;
}
.card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(255, 255, 255, 0.15) 4.42%, rgba(255, 255, 255, 0) 4.42%);
}
.partnership__card .text-desc {
    padding-right: 60px;
}
.btn-white {
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background: #fff;
    transition: var(--transition);
    color: #655fff;
    text-align: center;
    font-family: var(--semibold);
    font-size: 18px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
    background-color: #f8f9fa;
    transform: translateY(4px);
    color: var(--primary-color);
}
.btn-capsule-lg {
    border-radius: 50px !important;
    padding: 14px 40px !important;
    font-size: 16px;
}
.partnership__img-wrapper img {
    border-radius: 32px !important;
    object-fit: cover;
}

/* ============================================= */
/* GAME PARTNERS AUTO-SLIDER STYLES */
/* ============================================= */
.game-partners {
    border: 1px solid #f8fafc;
    background-color: #fff;
    padding: 70px 0;
}
.partner-slick {
    padding-bottom: 20px;
}
.partner-slick .slick-list,
.partner-slick .slick-track,
.partner-slick .partner-logo-item {
    outline: none !important;
}
.partner-logo-item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 100px;
}
.partner-logo-item img {
    max-width: 159px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}
.partner-logo-item img:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ============================================= */
/* FAQ CUSTOM STYLES (REFINED) */
/* ============================================= */
.faq {
    padding: 70px 0;
}
.faq__item {
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 16px !important;
    border: 1px solid #f1f5f9 !important;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.faq__item:has(.show) {
    box-shadow: 0 15px 40px rgba(123, 97, 255, 0.08) !important;
}
.faq__btn {
    transition: all 0.3s ease;
    padding: 24px 32px;
}
.faq__btn::after {
    display: none;
}
.faq__question {
    font-family: var(--semibold);
    font-size: 18px;
    color: var(--text-color);
    transition: color 0.3s ease;
}
.faq__icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}
.accordion-button {
    gap: 16px;
}
.faq__btn:not(.collapsed) {
    box-shadow: 0 15px 40px -10px rgba(101, 95, 255, 0.12);
}
.faq__btn:not(.collapsed) .faq__icon {
    transform: rotate(180deg);
}
.accordion-button:focus {
    border-color: transparent;
}
.faq__answer {
    font-family: var(--regular);
    line-height: 24px;
    font-size: 16px;
    border-radius: 0 0 24px 24px;
    padding: 0px 32px 24px 32px;
}
.faq__indicator {
    position: absolute;
    top: 0;
    left: 24px;
    width: 48px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 999;
}
.faq__item:has(.show) .faq__indicator {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================= */
/* FOOTER STYLES */
/* ============================================= */
.footer {
    border-color: #e2e8f0 !important;
    padding-top: 80px;
    padding-bottom: 40px;
}
.footer-content {
    display: flex;
    gap: 32px;
}
.footer-item {
    flex: 1;
}
.footer-info-main {
    flex: 2;
}
.footer__logo {
    max-height: 52px;
    margin-bottom: 20px;
}
.footer__desc {
    font-family: var(--medium);
    font-size: 15px;
    line-height: 26px;
    max-width: 385px;
    margin-bottom: 20px;
}
.footer__links li a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--regular);
    font-size: 15px;
    transition: var(--transition);
}
.footer__links li a:hover {
    color: var(--primary-color);
}
.hr-line {
    color: #e2e8f0;
    margin-top: 50px;
    margin-bottom: 32px;
}
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}
.social-link:hover .svg-border {
    stroke: var(--primary-color);
}
.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.arrow-right {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #7b61ff;
    -webkit-mask-image: url("/assets/img/icon-arrow-right.svg");
    mask-image: url("/assets/img/icon-arrow-right.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
}
header .navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================= */
/* SCROLL TO TOP BTN */
/* ============================================= */
.scrollToTopBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 32px;
    bottom: 32px;
    color: #cfcfcf;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    opacity: 0;
    z-index: 99;
    transform: translateY(100px);
    transition: all 0.5s ease;
}
.showBtn {
    opacity: 0.5;
    transform: translateY(0);
}
.scrollToTopBtn:hover {
    opacity: 1;
    color: #fff;
}

.avatar-user-check {
    display: block;
    width: 20px;
    height: 20px;
}
.ic-check-avat {
    position: absolute;
    right: 0;
    bottom: 0;
}
.testimonials .slick-list {
    padding-top: 4px;
}
.testimonials .slick-track {
    display: flex;
}
.testimonials .testimonial-item {
    height: inherit !important;
}
/* xử lý hiệu ứng slide carousel */
.carousel-fade .carousel-item {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.2s;
    z-index: 0;
}

/* 2. Slide Active: Chiếm quyền hiển thị và giữ chiều cao thực */
.carousel-fade .carousel-item.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Giúp khung chứa tự co dãn theo nội dung slide này */
    z-index: 1;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. Hiệu ứng mượt cho các thành phần chữ bên trong */
.carousel-item .item-content {
    opacity: 0;

    transition: all 0.2s ease-out;
}

.carousel-item.active .item-content {
    opacity: 1;
}

/* 4. Hiệu ứng khi nội dung co dãn (Smart Height) */
.carousel-inner {
    transition: height 0.4s cubic-bezier(0.3, 0, 0.5, 1) !important;
    will-change: height; /* Báo cho trình duyệt chuẩn bị trước */
}
.carousel-fade .carousel-item:not(.active) {
    opacity: 0;
    transition:
        opacity 0.1s linear,
        visibility 0.1s;
}

/* Trang Hệ sinh thái */
.hst {
    margin-top: 60px;
}
.hst .nav-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    margin-bottom: 40px;
}
.hst .nav-link {
    padding: 10px 24px;
    border-radius: 9999px;
    background: #f3f3f8;
    color: #464555;
    border: none;
}
.hst .nav-link:hover {
    color: var(--primary-color);
}
.hst .nav-link.active {
    color: #fff;
    border-radius: 9999px;
    border: none;
    background: linear-gradient(108deg, #4b42e5 0%, #655fff 100%);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.tab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.tab-grid__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px 0 rgba(75, 66, 229, 0.08);
    transition: var(--transition);
}
.hst-item__content {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.title-wrap__text h5 {
    font-family: var(--bold);
    font-size: 24px;
    color: #1a1c1f;
}
.title-wrap__text-label {
    display: flex;
    gap: 8px;
    align-items: center;
}
.title-wrap__text-label span {
    background-color: #e2dfff;
    color: #130e56;
    padding: 2px 8px;
    border-radius: 16px;
}
.hst-item__btn {
    margin-top: 16px;
    color: #4b42e5;
    display: flex;
    align-items: center;
    font-family: var(--semibold);
    font-size: 16px;
    gap: 8px;
    transition: var(--transition);
}
.hst-label-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.btn-clear {
    box-shadow: none;
    border: none;
    background-color: transparent;
}
.btn-clear:hover,
.btn-clear:focus {
    box-shadow: none;
    border: none;
}
.tab-grid__item:hover {
    transform: translateY(-4px);
}

.tab-grid__item:hover .hst-item__btn {
    padding-left: 16px;
}

.article {
    background-color: #f9f9fe;
}
.article__content {
    max-width: 1120px;
    display: flex;
    justify-self: center;
    flex-direction: column;
    gap: 30px;
    padding: 70px 0;
}
.article__content p {
    font-family: var(--regular);
    font-size: 18px;
    line-height: 29px;
    color: #464555;
}
.article .has-line {
    border-left: 4px solid var(--primary-color);
    padding: 16px 16px 16px 32px;
    font-family: var(--medium);
    font-size: 24px;
    line-height: 39px;
    color: #1a1c1f;
}
.article-features {
    background-color: #f3f3f8;
    padding: 70px 0;
}
.article-features__wrap {
    display: flex;
    align-items: center;
    gap: 64px;
}
.article-features__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.article-features__title {
    font-family: var(--bold);
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 12px;
}
.article-features__item {
    display: flex;
    padding: 28px 32px;
    align-items: flex-start;
    gap: 24px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 40px 0 rgba(75, 66, 229, 0.05);
    backdrop-filter: blur(10px);
}
.article-features__item img {
    width: 56px;
    height: 56px;
}
.article-features_itemcontent h5 {
    font-family: var(--bold);
    font-size: 20px;
    line-height: 28px;
    color: #0f172a;
}
.article-features_itemcontent p {
    font-family: var(--regular);
    font-size: 16px;
    line-height: 26px;
    color: #464555;
}
.article-features__img-text {
    position: absolute;
    left: -32px;
    bottom: -32px;
    max-width: 320px;
    font-family: var(--regular);
    letter-spacing: 0.5px;
    font-size: 14px;
    line-height: 20px;
    color: #1a1c1f;
    padding: 24px;
    border-radius: 32px;
    background-color: #fff;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.products-image {
    background: #f9f9fe;
    padding: 70px 0;
}
.products-image__title {
    font-family: var(--bold);
    font-size: 30px;
    line-height: 36px;
    color: #1a1c1f;
    margin-bottom: 48px;
    text-align: center;
}
.products-image__wrap {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.products-image__item {
    padding-bottom: 20px;
}
.products-image__item img {
    border-radius: 32px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.products-image__item p {
    font-family: var(--regular);
    font-size: 14px;
    line-height: 20px;
    color: #464555;
    text-align: center;
    margin-top: 16px;
}
.partnership-introduce {
    background-color: #f9f9fe;
    padding: 0 0 90px 0;
}
.partnership-introduce .heading-title {
    font-family: var(--bold);
    text-align: center;
}
.partnership-introduce .text-desc {
    font-family: var(--regular);
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 595px;
    margin: 0 auto;
}
.partnership-introduce__btn {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}
.partnership-introduce__btn .btn-white-outline {
    display: flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(75, 66, 229, 0.2);
    backdrop-filter: blur(6px);
    font-family: var(--semibold);
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}
.partnership-introduce .partnership__card {
    max-width: 992px;
    margin: 0 auto;
}
.story {
    padding: 70px 0;
    background-color: #f9f9fe;
}
.story__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}
.story__img img {
    border-radius: 20px;
    max-width: 600px;
}
.story__content h5 {
    font-family: var(--bold);
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 24px;
}
.story__content p {
    font-family: var(--regular);
    font-size: 18px;
    line-height: 29px;
    color: #464555;
    margin-bottom: 8px;
}
.value {
    padding: 70px 0;
}
.value__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.value__item {
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 41px 41px 49px 41px;
    transition: var(--transition);
}
.value__item:hover {
    transform: translateY(-4px);
}
.value__item img {
    width: 56px;
    height: 56px;
}
.value__item h5 {
    font-family: var(--bold);
    font-size: 20px;
    line-height: 29px;
    color: #1a1c1f;
    margin-top: 32px;
}
.value__item p {
    font-family: var(--regular);
    font-size: 16px;
    line-height: 26px;
    color: #464555;
    margin-top: 16px;
    padding-right: 60px;
}
.camket {
    background: #f9f9fe;
    padding: 70px 0;
}
.camket__wrap {
    display: flex;
    gap: 64px;
    align-items: center;
    padding: 50px 80px;
    border-radius: 32px;
    border: 1px solid rgba(75, 66, 229, 0.05);
    background: #fff;
    box-shadow: 0 20px 40px 0 rgba(75, 66, 229, 0.08);
}
.camket__content h5 {
    font-family: var(--bold);
    font-size: 40px;
    letter-spacing: -1.2px;
    color: #0f172a;
    margin-bottom: 24px;
}
.camket__content p {
    font-family: var(--regular);
    font-size: 20px;
    line-height: 32px;
    color: #464555;
}
.camket__img img {
    border-radius: 32px;
    background: #fff;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    max-width: 256px;
}
.stats-chitiet {
    padding-bottom: 70px;
}
.sumenh {
    background: #f9f9fe;
    padding-bottom: 70px;
}
.logo-grid {
    background: #f9f9fe;
}
.logo-grid__title h5 {
    font-family: var(--bold);
    font-size: 30px;
    color: #1a1c1f;
}
.logo-grid__title p {
    font-family: var(--regular);
    font-size: 16px;
    color: #464555;
    border-bottom: 1px solid rgba(199, 196, 216, 0.2);
    padding-bottom: 24px;
}
.logo-grid__wrap {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 32px;
    row-gap: 48px;
}
.logo-grid__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 40px 0 rgba(75, 66, 229, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.hoptac {
    padding: 70px 0;
    background: #f9f9fe;
}
.hoptac__title {
    text-align: center;
    margin-bottom: 40px;
}
.hoptac__title h5 {
    font-family: var(--bold);
    font-size: 36px;
    color: #0f172a;
}
.hoptac__title p {
    font-family: var(--regular);
    font-size: 18px;
    line-height: 28px;
    color: #464555;
    letter-spacing: 0.015em;
}
.hoptac__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.hoptac__item {
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 41px;
    transition: var(--transition);
}
.hoptac__item:hover {
    transform: translateY(-4px);
}
.hoptac__item img {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}
.hoptac__item h5 {
    font-family: var(--bold);
    font-size: 20px;
    color: #1a1c1f;
    margin-bottom: 16px;
    padding-right: 100px;
}
.hoptac__item p {
    font-family: var(--regular);
    font-size: 16px;
    line-height: 26px;
    color: #464555;
    padding-bottom: 8px;
    letter-spacing: 0.015em;
}
.contact-form {
    background: #f9f9fe;
    padding-bottom: 110px;
}
.contact-form__title {
    text-align: center;
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.contact-form__title h5 {
    font-family: var(--bold);
    font-size: 30px;
    color: #1a1c1f;
}
.contact-form__title p {
    font-family: var(--regular);
    font-size: 18px;
    color: #464555;
    padding-left: 60px;
    padding-right: 60px;
    letter-spacing: 0.015em;
}
.contact-form__wrap {
    padding: 48px 48px 64px 48px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 40px 0 rgba(75, 66, 229, 0.08);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}
.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.contact-form__wrap label {
    font-family: var(--bold);
    font-size: 14px;
    color: #1a1c1f;
    letter-spacing: 0.015em;
}
.contact-form__wrap input,
.contact-form__wrap textarea {
    padding: 18px 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.6);
}
.contact-form__wrap input::placeholder,
.contact-form__wrap textarea::placeholder {
    color: rgba(70, 69, 85, 0.4);
    font-family: var(--regular);
    font-size: 16px;
}
.btn-solid-primary {
    display: flex;
    padding: 20px 48px;
    border-radius: 9999px;
    background: #655fff;
    box-shadow: 0 20px 40px 0 rgba(75, 66, 229, 0.08);

    color: #fff;
    text-align: center;
    font-family: var(--bold);
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}
.form-control:focus,
.form-control:hover {
    border: 1px solid #b1bee9;
    box-shadow: unset;
}
.footer-downloadpage {
    padding-top: 0px;
    padding-bottom: 40px;
}
.multi-device-downloadpage {
    margin-top: 100px;
}
.footer-downloadpage .hr-line {
    margin-top: 0;
    color: #E2E8F0;
    opacity: 1;
}
.logo-grid__item:hover {
    transform: translateY(-4px);
}