* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif !important;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    background: #0E121B;
    background-image: url('../images/gg.svg');
    background-repeat: no-repeat;
    background-position: top center;
}

/* Sticky Header Container */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Ad Banner */
.ad-banner {
    overflow: hidden;
    position: relative;
}

.ad-banner.hidden {
    display: none;
}

.ad-close-btn {
    position: absolute;
    right: 2rem;
    z-index: 99;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ad-close-btn:hover {
    background: rgba(0, 0, 0, 0.3);
}

.ad-close-btn::before,
.ad-close-btn::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 1.5px;
    background: #fff;
    transform: rotate(45deg);
}

.ad-close-btn::after {
    transform: rotate(-45deg);
}

.ad-carousel {
    position: relative;
}

.ad-slide {
    display: none;
    color: #333;
    font-size: 11px;
    font-weight: 500;
}

.ad-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.ad-slide img {
    display: block;
    width: 100%;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ad-indicators {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.2s;
}

.indicator.active {
    background: rgba(0, 0, 0, 0.6);
}

.header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    background: rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    height: 81px;
    border-radius: 0px 0px 0px 0px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.logo img {
      width: 133px;
    margin-right: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    height: 100%;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
    cursor: pointer;
}

.nav-menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    opacity: 0;
    /* transition: opacity 0.3s ease; */
}

.nav-menu li:hover::after {
    opacity: 1;
}

.nav-menu a {
    text-decoration: none;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    font-family: Inter, Inter;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-menu a.dimmed {
    color: #54555A;
}

.nav-menu a.dimmed .nav-arrow {
    opacity: 0.15;
}

/* .nav-menu>li>a.dimmed::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 12px;
    height: 12px;
    background-image: url('images/下箭头2.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
} */

.nav-menu a .nav-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nav-menu a.active .nav-arrow {
    transform: rotate(180deg);
}

.nav-actions {
      display: flex;
    gap: 1.5rem;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: flex-end;
}

.nav-actions .nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    position: relative;
    height: 100%;
}

.nav-actions .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-actions .nav-link:hover::after {
    opacity: 1;
}

.nav-actions .nav-link:hover {
    color: #ffffff;
}

.nav-actions .nav-link .nav-arrow {
    width: 20px;
    height: 20px;
}

.nav-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.nav-btn-primary {
    background: linear-gradient(271deg, #FFFFFF 0%, #FFFFFF 52.4%, #FFFFFF 100%);
    color: #181B25;
    transition: all 0.3s ease;
}

.nav-btn-primary:hover {
    background: linear-gradient(271deg, #B6CFFF 0%, #B5B0FF 52.4%, #FACCFF 100%);
    box-shadow: 0 4px 11px rgba(139, 92, 246, 0.4);
}

.nav-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.user-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 160px;
    background: #181B25;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
    border-radius: 8px;
}

.user-dropdown.active .user-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown.active .nav-arrow {
    transform: rotate(180deg);
}

.user-option {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.user-option:hover {
    background: rgba(108, 82, 255, 0.15);
    color: #A78BFA;
}

.user-option.logout {
    color: #FF4757;
}

.user-option.logout:hover {
    background: rgba(255, 71, 87, 0.15);
    color: #FF6B7A;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    display: flex;
    align-items: center;
}

.lang-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 136px;
    background: #181B25;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.lang-dropdown.active .lang-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown.active .nav-arrow {
    transform: rotate(180deg);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(108, 82, 255, 0.15);
    color: #A78BFA;
}

.lang-option.selected {
    color: #A78BFA;
}

.lang-option.selected:hover {
    background: rgba(108, 82, 255, 0.15);
}

.lang-flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.menu-dropdown {
    position: relative;
}

.small-icon {
    width: 15px !important;
    height: 15px !important;
}

.menu-dropdown-content {
    position: fixed;
    top: 81px;
    left: 0;
    width: 100%;
    background: #000000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
    padding: 24px 0;
}

.dropdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 24px;
}

.dropdown-divider {
    width: 1px;
    border: 1px solid #2B303B;
    margin: 0 8px;
    height: 100%;
}

.pricing {
    background: linear-gradient(180deg, rgba(65, 49, 153, 0.3) 0%, rgba(108, 82, 255, 0) 50%);
    padding-top: 105px;
}

.pricing-dropdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 12px;
}

.pricing-dropdown-inner .dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.menu-dropdown:hover .menu-dropdown-content,
.menu-dropdown.active .menu-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown:hover .nav-arrow,
.menu-dropdown.active .nav-arrow {
    transform: rotate(180deg);
}

.menu-dropdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-dropdown:hover::after,
.menu-dropdown.active::after {
    opacity: 1;
}

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

.dropdown-column-title {
    font-weight: normal;
    font-size: 12px;
    color: #717784;
    line-height: 16px;
    text-align: left;
    padding: 0 16px;
}

.menu-dropdown-content .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.2s ease;
    background: transparent;
}


.dropdown-item:hover {
    background: #222530;
    border-radius: 11px 11px 11px 11px;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-title {
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    text-align: left;
}

.dropdown-item-desc {
    font-weight: 400;
    font-size: 12px;
    color: #99A0AE;
    line-height: 16px;
    text-align: left;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.2s ease;
    background: transparent;
}

.pricing-item:hover {
    background: #222530;
    border-radius: 11px 11px 11px 11px;
}

.pricing-item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pricing-item-title {
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    text-align: left;
}

.pricing-item-desc {
    font-weight: 400;
    font-size: 12px;
    color: #99A0AE;
    line-height: 16px;
    text-align: left;
    width: 226px;
}

.pricing-item-price {
    font-weight: 400;
    font-size: 12px;
    color: #99A0AE;
    line-height: 16px;
    text-align: left;
    margin-left: 16px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-label {
    font-weight: 400;
    font-size: 10px;
    color: #99A0AE;
    line-height: 16px;
    text-align: left;
}

.price-value {
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    text-align: left;
}

.price-tag {
    font-size: 10px;
    color: #FFFFFF;
    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    padding: 4px 9px;
    border-radius: 12px;
}

.price-tagJ {
    background: linear-gradient(271deg, #B6CFFF 0%, #B5B0FF 52.4%, #FACCFF 100%);
    font-weight: normal;
    font-size: 10px;
    color: #2B303B;
    line-height: 16px;
    text-align: center;
    border-radius: 12px;
    padding: 4px 9px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 19px;
    height: 2px;
    background: #FFFFFF;
}

.hero {
    padding-top: 53px;
    padding-bottom: 120px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 51px;
    background-image: url('images/hero-bg.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
}

.hero-card {
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 11px 12px;
    margin: auto;
}

.hero-card .icon {
    width: 60px;
    height: auto;
    flex-shrink: 0;
}

.hero-card .title {
    font-weight: 400;
    font-size: clamp(10px, 2.5vw, 14px);
    color: #99A0AE;
    line-height: 1.5;
    text-align: center;
    font-style: normal;
    text-transform: none;
    white-space: nowrap;
}

.hero-card .subtitle {
    font-weight: 500;
    font-size: clamp(10px, 2.5vw, 14px);
    color: #FFFFFF;
    line-height: 1.5;
    text-align: center;
    font-style: normal;
    text-transform: none;
    white-space: nowrap;
}

.hero-card .arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-content {
    margin-top: 32px;
}

.hero-content .title {
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    /* 文字渐变色 */
    background: linear-gradient(181.79144555872577deg, #C9DBFF 0%, #D4D0FF 52%, #F9C1FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content .subtitle {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: center;
    margin-top: 12px;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 56px;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    width: 100%;
    margin-top: 60px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #CACFD8;
    font-size: 14px;
    font-weight: 500;
}

.hero-feature-icon {
    width: 16px;
    height: 16px;
}

.btn-primary {
    padding: 10px 20px;
    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    border-radius: 11px;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #5A30F7 0%, #5A30F7 100%);
}

.btn-arrow-wrap {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-arrow-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-arrow-wrap .arrow-default {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.btn-arrow-wrap .arrow-hover {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-arrow-wrap .arrow-default,
.btn-black:hover .btn-arrow-wrap .arrow-default,
.pricing-tab-content-item-btn:hover .btn-arrow-wrap .arrow-default,
.hero-card:hover .btn-arrow-wrap .arrow-default {
    opacity: 0;
}

.btn-primary:hover .btn-arrow-wrap .arrow-hover,
.btn-black:hover .btn-arrow-wrap .arrow-hover,
.pricing-tab-content-item-btn:hover .btn-arrow-wrap .arrow-hover,
.hero-card:hover .btn-arrow-wrap .arrow-hover {
    opacity: 1;
}

.hero-card .btn-arrow-wrap {
    width: 18px;
    height: 18px;
}

.hero-card .btn-arrow-wrap img {
    width: 18px;
    height: 18px;
}

.hero-card:hover .btn-arrow-wrap .arrow-default {
    opacity: 0;
}

.hero-card:hover .btn-arrow-wrap .arrow-hover {
    opacity: 1;
}

.btn-primary img,
.btn_white img {
    width: 20px;
    height: 20px;
}

.btn-container {
    width: fit-content;
    margin: auto;
}

.btn_white {
    padding: 10px 20px;
    width: fit-content;
    font-size: 15px;
    color: #0E121B;
    line-height: 28px;
    text-align: center;
    background: #ffffff;
    border-radius: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_white:hover {
    background: #E5E8FF;
}

.stats-group {
    display: flex;
    justify-content: space-around;
    gap: 41px;
    margin-top: 120px;
}

.stats-card {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    padding: 24px;
    background: linear-gradient(0deg, #222530 0%, #181B25 100%);
    box-shadow: inset 0px 3px 16px 0px #2B303B, inset 0px -8px 8px 0px #181B25;
    border-radius: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stats-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 11px;
    padding: 1px;
    background: linear-gradient(90deg, rgba(108, 82, 255, 1), rgba(131, 65, 255, 1));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stats-card:hover::before {
    opacity: 1;
}

.stats-card .stats-card-title {
    font-size: 40px;
    color: #FFFFFF;
    line-height: 48px;
    text-align: center;
}

.stats-card .stats-card-subtitle {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: center;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 105px;
}

.type-tag {
    padding: 10px 11px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 5px;
    background: #222530;
    border-radius: 11px;
    margin: auto;
    margin-bottom: 18px;
}

.type-tag img {
    width: 18px;
    height: 18px;
}

.type-tag span {
    font-weight: 400;
    font-size: clamp(11px, 2vw, 16px);
    color: #FFFFFF;
    line-height: 1.5;
    text-align: center;
}

.section-title {
    font-size: clamp(21px, 5vw, 48px);
    line-height: 1.2;
    text-align: center;
    /* 从上到下渐变色 */
    background: linear-gradient(180deg, #FFFFFF 0%, #99A0AE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-weight: 400;
    font-size: clamp(11px, 2vw, 16px);
    color: #CACFD8;
    line-height: 1.6;
    text-align: center;
    margin-top: 12px;
}

.features {
    background-image: url("images/6.svg");
    background-size: 1365px auto;
    background-position: center 151px;
    background-repeat: no-repeat;
}

.features-content {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 33px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    background-color: #0E121B;
    overflow: hidden;
    border: 1px solid #2B303B;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #0E121B;
}

.feature-card:hover {
    border: 1px solid #6C52FF;
}

.feature-img {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-img {
    background: linear-gradient(180deg, #0F131D 0%, #1D1B41 100%);
}

.bottom-feature-card .feature-img {
    transition: all 0.3s ease;
}

.bottom-feature-card:hover .feature-img {
    background: linear-gradient(180deg, #0F131D 0%, #1D1B41 100%);
}

.feature-card img {
    width: 100%;
    height: auto;
    max-height: 322px;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 24px;
}

.feature-content-title {
    font-weight: normal;
    font-size: clamp(14px, 2.5vw, 22px);
    color: #FFFFFF;
    line-height: 1.4;
    text-align: left;
}

.feature-content-subtitle {
    font-weight: 400;
    font-size: clamp(11px, 2vw, 16px);
    color: #CACFD8;
    line-height: 1.6;
    text-align: left;
    margin-top: 9px;
}

.bottom-feature-card {
    display: flex;
    align-items: center;
    border-radius: 15px;
    background-color: #0E121B;
    overflow: hidden;
    width: 100%;
    margin-top: 33px;
    border: 1px solid #2B303B;
    cursor: pointer;
    transition: border .3s ease-in-out;
}

.bottom-feature-card:hover {
    border: 1px solid #6C52FF;
}

.bottom-feature-card img {
    height: 301px;
    object-fit: cover;
}

.bottom-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.bottom-feature-content-title {
    font-weight: normal;
    font-size: clamp(14px, 2.5vw, 22px);
    color: #FFFFFF;
    line-height: 1.4;
    text-align: left;
}

.bottom-feature-content-subtitle {
    font-weight: 400;
    font-size: clamp(11px, 2vw, 16px);
    color: #CACFD8;
    line-height: 1.6;
    text-align: left;
    margin-top: 9px;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 211px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #181B25;
    border-radius: 51px;
    padding: 5px;
    width: fit-content;
    margin: auto;
    margin-top: 24px;
    margin-bottom: 64px;
}

.tab-item {
    padding: 11px 24px;
    font-weight: 400;
    font-size: 15px;
    color: #99A0AE;
    line-height: 28px;
    text-align: center;
    background: #181B25;
    border-radius: 54px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-item:hover {
    font-weight: normal;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    border-radius: 54px;
}

.tab-item.active {
    font-weight: normal;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    background: #222530;
    border-radius: 54px;
}

.pricing-tabs-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tab Content Display Control */
.pricing-tab-content-item[data-tab-content] {
    display: none;
}

.pricing-tab-content-item[data-tab-content].active-tab {
    display: flex;
}

.pricing-tab-content-item {
    border-radius: 16px;
    border: 1px solid #2B303B;
    padding: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.pricing-tab-content-item:hover {
    border: 1px solid #6C52FF;
}

.pricing-tab-content-item.active:hover {
    background-image: url(images/bg.png), linear-gradient(360deg, #542de2 0%, #542de2 100%);
}

.pricing-tab-content-item-icon {
    width: 40px;
    height: 40px;
}

.pricing-tab-content-item-title {
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
    margin: 15px 0 10px 0;
    min-height: 64px;
    display: flex;
    align-items: flex-start;
}

.pricing-tab-content-item-desc {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: left;
    margin-bottom: 38px;
    min-height: 84px;
}

.pricing-tab-content-item-price {
    font-size: 40px;
    line-height: 48px;
    text-align: left;
    background: linear-gradient(180deg, #FFFFFF 0%, #99A0AE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 38px;
}

.pricing-tab-content-item-price span {
    font-size: 22px;
    background: linear-gradient(180deg, #FFFFFF 0%, #99A0AE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-tab-content-item-icon-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.pricing-tab-content-item-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    border-radius: 11px;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab-content-item-top {
    display: flex;
    flex-direction: column;
}

.pricing-tab-content-item-bottom {
    display: flex;
    flex-direction: column;
}

.pricing-tab-content-item-btn:hover {
    background: linear-gradient(90deg, #5A30F7 0%, #5A30F7 100%);
}

.pricing-tab-content-item-btn p {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
}

.pricing-tab-content-item-btn img {
    width: 20px;
    height: 20px;
}

.pricing-tab-content-item-divider {
    width: 100%;
    height: 1px;
    border-top: 1px solid #2B303B;
    margin: 23px 0;
}

.pricing-tab-content-item-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-tab-content-item-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-tab-content-item-feature-title {
    font-weight: normal;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: left;
}

.pricing-tab-content-item-feature img {
    width: 20px;
    height: 20px;
}

.pricing-tab-content-item.active {
    background-image: url(images/bg.png), linear-gradient(360deg, #6C52FF 0%, #592BFF 100%);
    background-size: cover;
    background-position: top;
}

.pricing-tab-content-item.active .pricing-tab-content-item-btn {
    background: #222530;
    transition: all 0.3s ease;
}

.pricing-tab-content-item.active .pricing-tab-content-item-btn p {
    color: #FFFFFF;
}

.pricing-tab-content-item.active .pricing-tab-content-item-btn img {
    width: 20px;
    height: 20px;
}

.pricing-tab-content-item.active .pricing-tab-content-item-divider {
    border-top: 1px solid #9185FF;
}

.pricing-tab-content-item.active .pricing-tab-content-item-btn:hover {
    background: #181B25;
}

.locations {
    background:
        linear-gradient(360deg, rgba(65, 49, 153, 0.3) 0%, rgba(108, 82, 255, 0) 20%);
}

.locations-container {
    max-width: 1200px;
    margin: auto;
    padding-bottom: 136px;
    margin-bottom: 136px;

}

.locations-data {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 38px;
}

.locations-data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.locations-data-item img {
    width: 24px;
    height: 24px;
}

.locations-data-item-desc {
    font-weight: 400;
    font-size: 15px;
    color: #717784;
    line-height: 28px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
}

.locations-data-item-title {
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
}

.locations-map {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

.locations-map-img {
    width: 100%;
    object-fit: cover;
}

.location-marker {
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.location-marker>img {
    width: 113px;
    transition: all 0.3s ease;
}

.location-marker:hover img {
    transform: scale(1.2);
}

.location-marker:hover .location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.location-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #222530 0%, #181B25 100%);
    border: 1px solid #2B303B;
    border-radius: 9px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.location-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #2B303B;
}

.tooltip-flag {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.us-flag {
    background-image: linear-gradient(180deg, #B22334 0%, #B22334 33%, #FFFFFF 33%, #FFFFFF 66%, #3C3B6E 66%, #3C3B6E 100%);
}

.ca-flag {
    background: linear-gradient(90deg, #FF0000 0%, #FF0000 33%, #FFFFFF 33%, #FFFFFF 66%, #FF0000 66%, #FF0000 100%);
    position: relative;
}

.ca-flag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #FF0000;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.uk-flag {
    background: linear-gradient(90deg, #012169 0%, #012169 50%, #C8102E 50%, #C8102E 100%);
    position: relative;
}

.uk-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 3px, #FFFFFF 3px, #FFFFFF 6px);
}

.fr-flag {
    background: linear-gradient(90deg, #002654 0%, #002654 33%, #FFFFFF 33%, #FFFFFF 66%, #CE1126 66%, #CE1126 100%);
}

.de-flag {
    background: linear-gradient(180deg, #000000 0%, #000000 33%, #DD0000 33%, #DD0000 66%, #FFCC00 66%, #FFCC00 100%);
}

.ru-flag {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 33%, #0039A6 33%, #0039A6 66%, #D52B1E 66%, #D52B1E 100%);
}

.jp-flag {
    background: #FFFFFF;
    position: relative;
}

.jp-flag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #BC002D;
    border-radius: 50%;
}

.cn-flag {
    background: #DE2910;
    position: relative;
}

.cn-flag::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 20%;
    width: 6px;
    height: 6px;
    background: #FFDE00;
    border-radius: 50%;
    box-shadow: 8px -2px 0 #FFDE00, 9px 3px 0 #FFDE00, 4px 6px 0 #FFDE00, 10px 8px 0 #FFDE00;
}

.in-flag {
    background: linear-gradient(180deg, #FF9933 0%, #FF9933 50%, #FFFFFF 50%, #FFFFFF 100%);
    position: relative;
}

.in-flag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    background: #000080;
    border-radius: 50%;
}

.br-flag {
    background: #009B3A;
    position: relative;
}

.br-flag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background: #FFCC00;
    border-radius: 50%;
    border: 2px solid #002776;
}

.mx-flag {
    background: linear-gradient(90deg, #006644 0%, #006644 33%, #FFFFFF 33%, #FFFFFF 66%, #CE1126 66%, #CE1126 100%);
    position: relative;
}

.mx-flag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid #000;
}

.au-flag {
    background: linear-gradient(90deg, #00008B 0%, #00008B 50%, #00008B 50%, #00008B 100%);
    position: relative;
}

.au-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 2px, #FFFFFF 2px, #FFFFFF 4px);
}

.au-flag::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #FF0000;
    border-radius: 50%;
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tooltip-country {
    font-size: 11px;
    font-weight: 600;
    color: #FFFFFF;
}

.tooltip-ips {
    font-size: 9px;
    color: #99A0AE;
}

.useCase-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 241px;
}

.useCase-content {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 23px;
}

.useCase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.useCase-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 26px;
}

.useCase-item h3 {
    font-weight: normal;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.useCase-item p {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: center;
}

.useCase-bottom {
    margin: auto;
    display: flex;
    align-items: center;
    margin-top: 64px;
    padding: 16px 24px;
    background: #181B25;
    border-radius: 11px;
    width: fit-content;
}

.useCase-bottom h3 {
    font-weight: normal;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    margin-right: 23px;
}

.useCase-bottom-imgBox {
    width: 48px;
    height: 48px;
    background: #0E121B;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.useCase-bottom-imgBox img {
    width: 24px;
    height: 24px;
}

.testimonials-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 241px;
}

.left-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.left-header .type-tag {
    margin: 0;
    margin-bottom: 18px;
}

.testimonials-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 64px;
}

.testimonials-item {
    position: relative;
    border-radius: 20px;
    border: 1px solid #2B303B;
    padding: 32px;
    background: #181B25;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.testimonials-item.active {
    background: #181B25;
    box-shadow: 0px 5 5px 0px rgba(108, 82, 255, 0.3);
    opacity: 0.8;
    background: url('images/bg2.png') no-repeat top center;
    background-size: 100% auto;
}

.testimonials-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(360deg, #6C52FF 0%, #592BFF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonials-item:hover {
    border-color: #6C52FF;
    box-shadow: 0px 5px 5px 0px rgba(108, 82, 255, 0.3);
    opacity: 0.8;
}

.testimonials-item-title {
    background: #0E121B;
    border-radius: 11px;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    margin-bottom: 15px;
    width: fit-content;
}

.testimonials-item-content {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
    margin-bottom: 41px;
}

.testimonials-item-imgBox {
    display: flex;
    align-items: center;
}

.testimonials-item-imgBox img {
    width: 48px;
    height: 48px;
    margin-right: 15px;
}

.testimonials-item-name-title {
    font-weight: normal;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: left;
}

.testimonials-item-name-position {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    text-align: left;
}

.Integration-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 241px;
}

.Integration-imgBox-top {
    width: 100%;
    margin-bottom: 15px;
}

.Integration-imgBox-bottom {
    width: 100%;
    margin-top: 15px;
}

.Blog-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 241px;
}

.Blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
}

.btn-black {
    background: #222530;
    border-radius: 11px;
    padding: 10px 20px;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-black:hover {
    background: #525866;
}

.btn-hover:hover {
    background: #525866;
}

.btn-black img {
    width: 20px;
    height: 20px;
}

.Blog-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.Blog-item {
    border-radius: 16px;
    border: 1px solid #2B303B;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.Blog-item:hover {
    border-color: #6C52FF;
    box-shadow: 0px 5px 5px 0px rgba(108, 82, 255, 0.3);
    opacity: 0.8;
}


.Blog-item-content {
    padding: 32px;
    background: #181B25;
    border-radius: 0 0 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Blog-item img {
    width: 100%;
    height: 223px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.Blog-item-title {
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
    margin-bottom: 38px;
}

.Blog-item-desc {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: left;
}

.FAQ-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 241px;
}

.FAQ-content {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.FAQ-item {
    background: #0E121B;
    box-shadow: 0px 1px 3px 0px rgba(10, 13, 20, 0.03);
    border-radius: 12px;
    border: 1px solid #2B303B;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.FAQ-item:hover {
    border-color: #6C52FF;
}

.FAQ-item.active {
    border-color: #6C5CE7;
    background: #181B25;
}

.FAQ-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.FAQ-item-title {
    font-weight: normal;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
}

.FAQ-item-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.FAQ-item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, padding-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding-top: 0;
}

.FAQ-item-body>.FAQ-item-answer {
    overflow: hidden;
}

.FAQ-item.active .FAQ-item-body {
    grid-template-rows: 1fr;
    padding-top: 12px;
    opacity: 1;
}

.FAQ-item-answer {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: left;
}

.FAQ-bottom {
    margin-top: 75px;
    padding: 38px 0;
    background: #181B25;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.FAQ-bottom-icon {
    width: 48px;
    height: 48px;
    background: #0E121B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.FAQ-bottom-icon img {
    width: 24px;
    height: 24px;
}

.FAQ-bottom-title {
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

.FAQ-bottom-desc {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: center;
    margin-bottom: 38px;
}

.cta {
    background-image: url(images/30.svg);
    background-size: cover;
    background-position: center;
}

.cta-container {
    padding: 75px 0;
    background-image: url(images/31.svg);
    background-size: cover;
    background-position: center;
}

.cta-content-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
}

.cta-title {
    font-size: 48px;
    color: #FFFFFF;
    line-height: 56px;
    text-align: left;
    margin-bottom: 12px;
}

.cta-desc {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: left;
    margin-bottom: 23px;
}

.cta-desc span {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: center;
}

.footer {
    padding: 120px 0;
    background: #181B25;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 56px;
}

.footer-container-top-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-container-top-left-desc {
    font-weight: 400;
    font-size: 15px;
    color: #CACFD8;
    line-height: 28px;
    text-align: left;
}

.footer-container-top-left-email {
    font-weight: 400;
    font-size: 15px;
    color: #6C52FF;
    line-height: 28px;
    text-align: left;
}

.footer-container-top-left img {
    width: 206px;
}

.footer-container-top-right {
    display: flex;
    gap: 23px;
}

.footer-container-top-right img {
    width: 24px;
    height: 24px;
}

.footer-container-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-container-menu-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-container-menu-item-title {
    font-weight: 400;
    font-size: 15px;
    color: #717784;
    line-height: 28px;
    text-align: left;
}

.footer-container-menu-item-desc {
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: left;
}

.footer-container-divider {
    width: 100%;
    height: 0px;
    border: 1px solid #2B303B;
    margin: 64px 0;
}

.footer-container-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container-bottom-left {
    font-weight: 400;
    font-size: 14px;
    color: #717784;
    line-height: 24px;
    text-align: left;
}

.footer-container-bottom-right {
    display: flex;
    gap: 64px;
    align-items: center;
}

.footer-container-bottom-right p {
    font-weight: 500;
    font-size: 14px;
    color: #717784;
    line-height: 24px;
    text-align: left;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1002;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-drawer {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: #181B25;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1003;
        overflow-y: auto;
        flex-direction: column;
    }

    .mobile-nav-drawer.active {
        transform: translateX(0);
    }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-logo img {
        width: 140px;
    }

    .mobile-nav-close {
        background: transparent;
        border: none;
        color: #FFFFFF;
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-close:hover {
        opacity: 0.8;
    }

    .mobile-nav-menu {
        list-style: none;
        padding: 1rem 0;
        margin: 0;
    }

    .mobile-nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        color: #FFFFFF;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: background 0.2s ease;
    }

    .mobile-nav-menu a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-nav-actions {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-link {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 0.75rem 1rem;
        text-align: center;
        transition: opacity 0.2s ease;
    }

    .mobile-nav-link:hover {
        opacity: 0.8;
    }

    .mobile-nav-btn {
        padding: 0.875rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        width: 100%;
    }

    .mobile-nav-btn-primary {
        background: #ffffff;
        color: #181B25;
    }

    .mobile-nav-btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    }

    body.drawer-open {
        overflow: hidden;
    }

    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .logo img {
        width: 140px;
    }

    .hero {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .hero-container {
        padding: 20px 1rem 0;
        background-size: cover;
    }

    .hero-card {
        width: calc(100% - 2rem);
        max-width: 400px;
        min-height: auto;
        padding: 10px 14px;
        margin: 0 auto;
        gap: 6px;
    }

    .hero-card .icon {
        width: 70px;
        height: auto;
    }

    .hero-card .title {
        font-size: 13px;
        line-height: 1.4;
        white-space: normal;
    }

    .hero-card .subtitle {
        font-size: 13px;
        line-height: 1.4;
        white-space: normal;
    }

    .hero-card .arrow {
        width: 20px;
        height: 20px;
    }

    .hero-content {
        margin-top: 30px;
    }

    .hero-content .title {
        font-size: 36px;
        line-height: 44px;
    }

    .hero-content .subtitle {
        font-size: 16px;
        line-height: 28px;
        margin-top: 12px;
        padding: 0 1rem;
    }

    .hero-content .subtitle br {
        display: none;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 40px;
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-black,
    .mobile-nav-btn-primary,
    .btn_white {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        font-size: 16px;
        line-height: 28px;
        padding: 12px 20px;
    }

    .hero-features {
        gap: 12px;
        margin-top: 24px;
    }

    .hero-feature-item {
        justify-content: center;
        width: 45%;
    }

    .stats-group {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 80px;
        padding: 0 1rem;
    }

    .stats-card {
        flex: 1 1 calc(50% - 16px);
        min-width: 140px;
        padding: 20px;
        gap: 8px;
    }

    .stats-card .stats-card-title {
        font-size: 32px;
        line-height: 40px;
    }

    .stats-card .stats-card-subtitle {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .nav-container {
        height: 60px;
    }

    .logo img {
        width: 120px;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-content .title {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-content .subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .btn-primary,
    .btn-black,
    .mobile-nav-btn-primary,
    .btn_white {
        font-size: 14px;
        padding: 10px 16px;
    }

    .hero-features {
        gap: 10px;
        margin-top: 20px;
    }

    .hero-feature-item {
        width: 100%;
        font-size: 13px;
    }

    .stats-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .stats-card {
        flex: 1 1 100%;
        padding: 16px;
    }

    .stats-card .stats-card-title {
        font-size: 28px;
        line-height: 36px;
    }

    .stats-card .stats-card-subtitle {
        font-size: 13px;
        line-height: 20px;
    }

    .hero-card {
        width: calc(100% - 1.5rem);
        padding: 8px 10px;
        gap: 4px;
        border-radius: 8px;
    }

    .hero-card .icon {
        width: 60px;
    }

    .hero-card .title {
        font-size: 12px;
        line-height: 1.3;
    }

    .hero-card .subtitle {
        font-size: 12px;
        line-height: 1.3;
    }

    .hero-card .arrow {
        width: 18px;
        height: 18px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .feature-card {
        border-radius: 16px;
    }

    .feature-content {
        padding: 24px;
    }

    .bottom-feature-card {
        flex-direction: column;
        border-radius: 16px;
    }

    .bottom-feature-card img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    .bottom-feature-content {
        padding: 24px;
    }

    .features {
        background-size: 800px auto;
        background-position: center 100px;
    }

    .feature-content {
        padding: 20px;
    }

    .bottom-feature-content {
        padding: 20px;
    }

    .feature-card {
        border-radius: 12px;
    }

    .bottom-feature-card {
        border-radius: 12px;
    }
}

/* 平板设备响应式 (578px - 746px) */
@media (max-width: 991px) {

    /* Features Section */
    .features-container {
        padding: 0 1.5rem;
        margin-bottom: 60px;
    }

    .pricing {
        padding-top: 60px;
    }

    .features-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .feature-content {
        padding: 28px;
    }

    .bottom-feature-card {
        flex-direction: column;
        border-radius: 16px;
    }

    .bottom-feature-card img {
        width: 100%;
        height: auto;
        max-height: 350px;
    }

    .bottom-feature-content {
        padding: 28px;
    }

    /* Pricing Section */
    .pricing-content {
        padding: 0 1.5rem;
        margin-bottom: 120px;
    }

    .pricing-tabs-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pricing-tab-content-item {
        padding: 32px;
    }

    .pricing-tab-content-item:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .pricing-tab-content-item-price {
        font-size: 42px;
        line-height: 52px;
    }

    /* Locations Section */
    .locations-container {
        padding: 0 1.5rem;
        margin-bottom: 6px;
        padding-bottom: 60px;
    }

    .locations-data {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .location-marker img {
        width: 100px;
    }

    /* UseCase Section */
    .useCase-container {
        padding: 0 1.5rem;
        margin-bottom: 120px;
    }

    .useCase-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 24px;
        margin-top: 60px;
    }

    .useCase-item h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .useCase-item p {
        font-size: 18px;
        line-height: 32px;
    }

    /* Testimonials Section */
    .testimonials-container {
        padding: 0 1.5rem;
        margin-bottom: 120px;
    }

    .testimonials-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 60px;
    }

    .testimonials-item {
        padding: 32px;
    }

    .testimonials-item-content {
        font-size: 20px;
        line-height: 36px;
        margin-bottom: 40px;
    }

    /* Integration Section */
    .Integration-container {
        padding: 0 1.5rem;
        margin-bottom: 120px;
    }

    /* Blog Section */
    .Blog-container {
        padding: 0 1.5rem;
        margin-bottom: 120px;
    }

    .Blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 60px;
    }

    .Blog-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .Blog-item img {
        height: 220px;
    }

    .Blog-item-content {
        padding: 28px;
    }

    .Blog-item-title {
        font-size: 22px;
        line-height: 34px;
        margin-bottom: 30px;
    }

    /* FAQ Section */
    .FAQ-container {
        padding: 0 1.5rem;
        margin-bottom: 120px;
    }

    .FAQ-content {
        margin-top: 60px;
    }

    .FAQ-item {
        padding: 24px;
    }

    .FAQ-item-title {
        font-size: 22px;
        line-height: 34px;
    }

    .FAQ-item-answer {
        font-size: 18px;
        line-height: 32px;
    }

    .FAQ-bottom {
        margin-top: 60px;
        padding: 40px 24px;
    }

    /* CTA Section */
    .cta-container {
        padding: 80px 1.5rem;
    }

    .cta-title {
        font-size: 48px;
        line-height: 60px;
    }

    .cta-title br {
        display: none;
    }

    /* Footer */
    .footer {
        padding: 100px 1.5rem;
    }

    .footer-container-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-container-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-container-divider {
        margin: 60px 0;
    }

    .footer-container-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}

/* 手机设备响应式 (max-width: 578px) */
@media (max-width: 767px) {

    /* Features Section */
    .features-container {
        padding: 0 1rem;
        margin-bottom: 40px;
    }

    .pricing {
        padding-top: 40px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .feature-card {
        border-radius: 12px;
    }

    .feature-content {
        padding: 20px;
    }

    .bottom-feature-card {
        border-radius: 12px;
        margin-top: 16px;
    }

    .bottom-feature-card img {
        max-height: 250px;
    }

    .bottom-feature-content {
        padding: 20px;
    }

    .features {
        background-size: 600px auto;
        background-position: center 80px;
    }

    /* Pricing Section */
    .pricing-content {
        padding: 0 1rem;
        margin-bottom: 80px;
    }

    .pricing-tabs {
        width: calc(100% - 2rem);
        margin: 24px auto 40px;
    }

    .tab-item {
        padding: 10px 20px !important;
        font-size: 16px !important;
        line-height: 28px !important;
        flex: 1 !important;
    }

    .pricing-tabs-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-tab-content-item {
        padding: 24px;
    }

    .pricing-tab-content-item:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .pricing-tab-content-item-title {
        font-size: 22px;
        line-height: 34px;
        margin: 16px 0 8px 0;
    }

    .pricing-tab-content-item-desc {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .pricing-tab-content-item-price {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 30px;
    }

    .pricing-tab-content-item-btn {
        padding: 12px 0;
    }

    .pricing-tab-content-item-btn p {
        font-size: 16px;
        line-height: 28px;
    }

    .pricing-tab-content-item-feature-title {
        font-size: 15px;
        line-height: 26px;
    }

    /* Locations Section */
    .locations-container {
        padding: 0 1rem;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .locations-data {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .locations-data-item-desc {
        font-size: 14px;
        line-height: 24px;
        margin-top: 12px;
    }

    .locations-data-item-title {
        font-size: 22px;
        line-height: 34px;
    }

    .locations-map {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .location-marker img {
        width: 60px;
    }

    .location-tooltip {
        padding: 8px 12px;
    }

    .tooltip-country {
        font-size: 12px;
    }

    .tooltip-ips {
        font-size: 10px;
    }

    /* UseCase Section */
    .useCase-container {
        padding: 0 1rem;
        margin-bottom: 80px;
    }

    .useCase-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .useCase-item img {
        width: 28px;
        height: 28px;
        margin-bottom: 20px;
    }

    .useCase-item h3 {
        font-size: 22px;
        line-height: 34px;
        margin-bottom: 8px;
    }

    .useCase-item p {
        font-size: 16px;
        line-height: 28px;
    }

    .useCase-bottom {
        flex-direction: column;
        gap: 20px;
        margin-top: 60px;
        padding: 24px;
        width: 100%;
    }

    .useCase-bottom h3 {
        font-size: 20px;
        line-height: 32px;
        margin-right: 0;
        text-align: center;
    }

    .useCase-bottom-imgBox {
        margin-right: 0;
    }

    /* Testimonials Section */
    .testimonials-container {
        padding: 0 1rem;
        margin-bottom: 80px;
    }

    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }

    .testimonials-item {
        padding: 24px;
        border-radius: 20px;
    }

    .testimonials-item-title {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .testimonials-item-content {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .testimonials-item-imgBox img {
        width: 48px;
        height: 48px;
        margin-right: 16px;
    }

    .testimonials-item-name-title {
        font-size: 16px;
        line-height: 28px;
    }

    .testimonials-item-name-position {
        font-size: 14px;
        line-height: 24px;
    }

    /* Integration Section */
    .Integration-container {
        padding: 0 1rem;
        margin-bottom: 80px;
    }

    .Integration-container .btn-primary {
        margin-top: 30px;
    }

    /* Blog Section */
    .Blog-container {
        padding: 0 1rem;
        margin-bottom: 80px;
    }

    .Blog-header {
        margin-bottom: 40px;
    }

    .Blog-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .Blog-item img {
        height: 200px;
    }

    .Blog-item-content {
        padding: 24px;
    }

    .Blog-item-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .Blog-item-desc {
        font-size: 14px;
        line-height: 24px;
    }

    /* FAQ Section */
    .FAQ-container {
        padding: 0 1rem;
        margin-bottom: 80px;
    }

    .FAQ-content {
        margin-top: 50px;
        gap: 12px;
    }

    .FAQ-item {
        padding: 20px;
        border-radius: 12px;
    }

    .FAQ-item-title {
        font-size: 16px;
        line-height: 26px;
        padding-right: 40px;
    }

    .FAQ-item-icon {
        width: 20px;
        height: 20px;
    }

    .FAQ-item-answer {
        font-size: 14px;
        line-height: 24px;
    }

    .FAQ-bottom {
        margin-top: 50px;
        padding: 32px 20px;
        border-radius: 20px;
    }

    .FAQ-bottom-icon {
        width: 48px;
        height: 48px;
    }

    .FAQ-bottom-icon img {
        width: 24px;
        height: 24px;
    }

    .FAQ-bottom-title {
        font-size: 22px;
        line-height: 34px;
    }

    .FAQ-bottom-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .FAQ-bottom .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .FAQ-bottom .btn-primary,
    .FAQ-bottom .btn-black {
        width: 100%;
        justify-content: center;
    }

    /* right-header - Mobile */
    .right-header {
        width: 100%;
    }

    .right-header .btn-black,
    .right-header .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* CTA Section */
    .cta-container {
        padding: 60px 1rem;
    }

    .cta-title {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 12px;
    }

    .cta-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .cta .btn-black {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 60px 1rem;
    }

    .footer-container-top {
        margin-bottom: 40px;
    }

    .footer-container-top-left img {
        width: 180px;
    }

    .footer-container-top-left-desc,
    .footer-container-top-left-email {
        font-size: 14px;
        line-height: 24px;
    }

    .footer-container-top-right {
        gap: 20px;
    }

    .footer-container-top-right img {
        width: 24px;
        height: 24px;
    }

    .footer-container-menu {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-container-menu-item-title,
    .footer-container-menu-item-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .footer-container-divider {
        margin: 40px 0;
    }

    .footer-container-bottom-right {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .footer-container-bottom-right p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* 大屏手机/小屏平板 (434px - 578px) */
@media (min-width: 576px) and (max-width: 767px) {
    .pricing-tabs-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-tab-content-item:nth-child(3) {
        grid-column: span 2;
        max-width: 80%;
        margin: 0 auto;
    }

    .useCase-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .Blog-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-data {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-container-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 桌面端隐藏移动导航 */
@media (min-width: 993px) {

    .mobile-nav-overlay,
    .mobile-nav-drawer {
        display: none !important;
    }
}

/* Footer hover effects */
.footer-container-menu-item-desc {
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-container-menu-item-desc:hover {
    color: #6C52FF;
    transform: translateX(4px);
}

.footer-container-top-right img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-container-top-right img:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.footer-container-bottom-right p {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-container-bottom-right p:hover {
    color: #6C52FF;
}

.footer-container-top-left-email {
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-container-top-left-email:hover {
    color: #8a78ff;
}

/* 悬浮弹窗 */
.float-popup {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #1A1F2E;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 240px;
    height: 275px;
}

.float-popup-close {
    position: absolute;
    top: 6.5px;
    right: 6.5px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s ease;
    z-index: 10;
}

.float-popup-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.float-popup-close img {
    width: 12px;
    height: 12px;
    opacity: 0.8;
}

.float-popup-close:hover img {
    opacity: 1;
}

.float-popup-content {
    padding: 0;
    height: 100%;
    width: 100%;
}

.float-popup-image {
    display: block;
    max-width: 100%;
    height: 100%;
}