* {

    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 {

    background: #FFB6C1;
    padding: 8px 0;
    text-align: center;

}

.ad-container {

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

}

.ad-banner span {

    color: #333;
    font-size: 11px;
    font-weight: 500;

}

.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 15px;
    cursor: pointer;

}

.nav-menu li::after {

    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    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: 16px;
    height: 16px;
    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);

}

/* 用户下拉菜单 */
.user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.user-dropdown .nav-arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.user-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);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

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

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

.user-dropdown-content a {
    display: block;
    padding: 10px 16px;
    color: #FFFFFF;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

.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-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.active .menu-dropdown-content {

    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.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.active::after {

    opacity: 1;

}

.dropdown-column {

    display: flex;
    flex-direction: column;
    gap: 12px;

}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}

.locations-grid .dropdown-item {
    padding: 8px 12px;
}

.locations-grid .dropdown-item:hover {
    background: #222530;
    border-radius: 8px;
}

.flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.locations-grid .dropdown-item-content {
    gap: 0;
}

.locations-grid .dropdown-item-title {
    font-size: 14px;
    line-height: 20px;
}

.all-locations-link .dropdown-item-title {
    color: #99A0AE;
}

.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: 9px 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: 25px;
    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: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    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: #717784;
    line-height: 28px;
    text-align: center;
    margin-top: 12px;

}

.btn-group {

    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 56px;

}

.btn-primary {

    padding: 11px 20px;
    background: #6C52FF;
    border-radius: 8px;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    border: none;

}

.btn-primary:hover {

    background: #5A30F7;

}

.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,
.tab-content-item-btn: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,
.tab-content-item-btn: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: 14px;
    color: #0E121B;
    line-height: 28px;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-content: center;

}

.btn_white:hover {

    background: #E5E8FF;

}

.stats-group {

    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 120px;

}

.stats-card {

    display: flex;
    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: 8px;

}

.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: #717784;
    line-height: 28px;
    text-align: center;

}

/* Mobile Navigation */
.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;

}

.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: #717784;
    line-height: 1.6;
    text-align: center;
    margin-top: 12px;

}

.Residential-Proxies-container {

    padding: 120px 0;
    max-width: 1200px;
    margin: auto;

}

.tabs {

    display: flex;
    justify-content: center;
    align-items: center;
    background: #181B25;
    border-radius: 12px;
    margin: auto;
    gap: 5px;
    margin-top: 30px;
    width: fit-content;
    padding: 5px;

}

.tab-item {

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 11px 24px;
    color: #99A0AE;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.tab-item-title {

    font-size: 15px;
    color: #99A0AE;
    line-height: 28px;
    text-align: center;
    font-weight: 400;

}

.tab-item-active {

    background: #6C52FF;
    border-radius: 8px;

}

.tab-item-active .tab-item-title {

    color: #FFFFFF;
    font-weight: normal;

}

.tab-item-title:hover {

    color: #FFFFFF;

}

/* 子tabs */
.sub-tabs {

    display: none;
    justify-content: center;
    align-items: center;
    background: #181B25;
    border-radius: 12px;
    margin: auto;
    gap: 5px;
    margin-top: 30px;
    width: fit-content;
    padding: 5px;

}

.sub-tab-item {

    display: flex;
    align-items: center;
    padding: 11px 24px;
    color: #99A0AE;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;

}

.sub-tab-item-title {

    font-size: 15px;
    color: #99A0AE;
    line-height: 28px;
    text-align: center;

}

.sub-tab-item-active {

    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    border-radius: 8px;


}

.sub-tab-item-active .sub-tab-item-content {
    background: #3F18BF;
}

.sub-tab-item-active {

    color: #FFFFFF;

}

.sub-tab-item:hover {

    color: #FFFFFF;

}

.sub-tab-item-content {

    display: flex;
    background: #2B303B;
    border-radius: 18px;
    padding: 3px 6px;
    font-size: 12px;
    align-items: center;
    gap: 5px;

}

.sub-tab-item-content-title {

    font-weight: normal;
    font-size: 12px;
    color: #99A0AE;
    line-height: 16px;
    text-align: center;

}

.sub-tab-item-content-desc {

    background: #0E121B;
    border-radius: 14px;
    padding: 0 5px;
    font-weight: normal;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 16px;
    text-align: center;

}

.tab-content {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 64px;

}

.tab-sub-content {

    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 64px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 75px;

}

.tab-sub-content .tab-content-item {

    flex: 0 0 calc(100% / 6 - 11px);
    min-width: 151px;

}

.tab-sub-content.hidden {

    display: none;

}

.tab-content-item {
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #181B25;
    border: 1px solid rgba(108, 82, 255, 0.1);
}

.tab-content-item:hover {

    border: 1px solid #6C52FF;
    /* 阴影 */
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);

}

.tab-content-item-icon {

    width: 40px;
    height: 40px;

}

.tab-content-item-title {
    font-size: 22px;
    color: #6C52FF;
    line-height: 32px;
    text-align: left;
    margin: 23px 0 10px 0;
    margin-top: 0;
}

.tab-content-item-desc {

    font-weight: 400;
    font-size: 15px;
    color: #717784;
    line-height: 28px;
    text-align: left;
    margin-bottom: 24px;

}

.tab-content-item-desc .original-price {

    text-decoration-line: line-through;

}

.tab-content-item-desc .price {

    color: #FFFFFF;

}

.tab-content-item.active .tab-content-item-desc .price {

    color: #717784;

}

.tab-sub-content .tab-content-item-tag {
    top: 32px;
}

.tab-content-item.active .tab-content-item-original-price {

    color: #717784;

}

.tab-content-item-price {

    font-size: 32px;
    line-height: 48px;
    text-align: left;
    font-weight: bold;
    background: linear-gradient(180deg, #FFFFFF 0%, #99A0AE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.tab-content-item-original-price {

    font-weight: 400;
    font-size: 14px;
    color: #717784;
    line-height: 24px;
    text-align: left;
    text-decoration-line: line-through;
    margin-bottom: 24px;

}

.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;
    font-weight: normal;

}

.tab-content-item-select {

    background: #0E121B;
    border-radius: 8px;
    border: 1px solid #2B303B;
    padding: 5px 16px;
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;

}

.tab-content-item-select .select-trigger {

    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;

}

.tab-content-item-select .select-trigger p {

    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: left;

}

.tab-content-item-select .select-arrow {

    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;

}

.tab-content-item-select.open .select-arrow {

    transform: rotate(180deg);

}

.tab-content-item-select .select-dropdown {

    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #181B25;
    border-radius: 8px;
    border: 1px solid #2B303B;
    padding: 9px 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);

}

.tab-content-item-select.open .select-dropdown {

    max-height: 301px;
    opacity: 1;
    visibility: visible;

}

.tab-content-item-select .select-dropdown::before {

    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 9px;
    height: 9px;
    background: #181B25;
    border-left: 1px solid #2B303B;
    border-top: 1px solid #2B303B;
    transform: rotate(45deg);

}

.tab-content-item-select .select-option {

    padding: 8px 0;
    font-weight: 400;
    font-size: 15px;
    color: #99A0AE;
    line-height: 28px;
    text-align: left;
    transition: color 0.2s ease;
    cursor: pointer;

}

.tab-content-item-select .select-option:hover {

    color: #FFFFFF;

}

.tab-content-item-select .select-option.active {

    color: #6C52FF;

}

.tab-content-item-icon-container {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.tab-sub-content-item-icon-container {

    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0;

}

.tab-content-item-btn {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #222530;
    border-radius: 8px;
    padding: 12px 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.tab-content-item-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.tab-content-item-btn:hover::before {
    opacity: 1;
}

.tab-content-item-btn p {

    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;

}

.tab-content-item-btn img {

    width: 20px;
    height: 20px;

}

.tab-content-item-divider {

    width: 100%;
    height: 1px;
    border-top: 1px solid #2B303B;
    margin: 23px 0;

}

.tab-content-item-features {

    display: flex;
    flex-direction: column;
    gap: 15px;

}

.tab-content-item-feature {

    display: flex;
    align-items: center;
    gap: 12px;

}

.tab-content-item-feature-title {

    font-weight: 400;
    font-size: 12px;
    color: #717784;
    line-height: 24px;

}

.tab-content-item-feature-title img {

    width: 20px;
    height: 20px;

}

.tab-content-item.active {

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

}

.tab-content-item.active .tab-content-item-divider {

    border-top: 1px solid #9185FF;

}

.tab-content-item.active .tab-content-item-select {

    border: 1px solid #9185FF;
    background: transparent;

}

.our-resources-item-row {

    display: flex;
    align-items: center;

}

.our-resources-item-row:hover {

    border-bottom: 1px solid #9185FF;

}

.tab-content-item .tab-content-item-select:hover {

    border: 1px solid #717784;

}

.tab-content-item.active .tab-content-item-select:hover {

    border: 1px solid #FFFFFF;

}

/* Dropdown styles */
.dropdown-wrapper {

    position: relative;
    cursor: pointer;

}

.dropdown-wrapper .select-trigger {

    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

}

.dropdown-wrapper .select-trigger p {

    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: left;

}

.dropdown-wrapper .select-arrow {

    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;

}

.dropdown-wrapper.open .select-arrow {

    transform: rotate(180deg);

}

.dropdown-wrapper .select-dropdown {

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;

}

.dropdown-wrapper.open .select-dropdown {

    max-height: 226px;

}

.dropdown-wrapper .select-option {

    padding: 8px 0;
    font-weight: 400;
    font-size: 15px;
    color: #99A0AE;
    line-height: 28px;
    text-align: left;
    transition: all 0.2s ease;

}

.dropdown-wrapper .select-option:hover {

    color: #FFFFFF;

}

.dropdown-wrapper .select-option.active {

    color: #6C52FF;

}

.tab-content-item.active .tab-content-item-icon {

    background: #9185FF;

}

.tab-content-item.active .tab-content-item-btn {

    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    transition: all 0.3s ease;

}

.tab-content-item.active .tab-content-item-btn p {

    color: #FFFFFF;

}

.tab-content-item.active .tab-content-item-btn img {

    width: 20px;
    height: 20px;

}

.tab-content-item.active .tab-content-item-btn:hover {

    background: #525866;

}

.tab-content-item-tag {
    padding: 4px 8px;
    color: #FFFFFF;
    text-align: center;
    background: #6C52FF;
    border-radius: 8px 0px 8px 0px;
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: Inter, Inter;
    font-weight: normal;
    font-size: 10px;
    line-height: 10px;
}

.sub-bottom-con {

    margin: auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 38px;
    background: #181B25;
    border-radius: 16px;

}

.sub-bottom-left-img {

    width: 40px;

}

.sub-bottom-left-desc {

    font-weight: normal;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
    margin: 15px 0;

}

.sub-bottom-left-icon {

    height: 32px;
    margin-bottom: 75px;

}

.sub-bottom-con-btn {

    background: #F5F7FA;
    box-shadow: inset 0px 3 8px 0px #FFFFFF, inset 0px -3 5px 0px rgba(14, 18, 27, 0.2), 0px 21 24px -11px rgba(24, 27, 37, 0.1), 0px 0 0px 1px #E1E4EA;
    border-radius: 11px 11px 11px 11px;
    border: 1px solid #FFFFFF;
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    color: #0E121B;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;

}

.sub-bottom-con-btn:hover {

    background: #FFFFFF;

}

.sub-bottom-right-title {

    font-weight: normal;
    font-size: 40px;
    line-height: 48px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    color: transparent;
    margin-bottom: 38px;
    background: linear-gradient(180deg, #FFFFFF 0%, #99A0AE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.sub-bottom-right-content {

    display: flex;
    flex-direction: column;
    gap: 15px;

}

.sub-bottom-right-item {

    display: flex;
    align-items: center;
    gap: 12px;

}

.sub-bottom-right-item img {

    width: 20px;
    height: 20px;

}

.sub-bottom-right-item p {

    font-weight: normal;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 10px;
    text-align: left;

}

.type-tag {

    padding: 10px 11px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    margin: auto;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #FF6A94 0%, #FFBE84 100%);
}

.type-tag img {

    width: 18px;
    height: 18px;

}

.type-tag span {

    font-weight: 400;
    font-size: clamp(11px, 2vw, 16px);
    text-align: center;
    color: #2B303B;
    line-height: 16px;
}

.our-resources-container {

    max-width: 1200px;
    margin: auto;
    padding-bottom: 120px;

}

.our-resources-content {

    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 64px 0px;

}

.our-resources-item {

    display: flex;
    flex-direction: column;
    align-items: center;

}

.our-resources-item img {

    width: 81px;
    height: 81px;

}

.our-resources-item-title {

    font-weight: normal;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    margin-top: 23px;
    margin-bottom: 5px;

}

.our-resources-item-desc {

    font-weight: 400;
    font-size: 15px;
    color: #717784;
    line-height: 28px;
    text-align: center;

}

.our-resources-item-desc-all {

    font-weight: 500;
    font-size: 15px;
    color: #9185FF;
    line-height: 28px;
    text-align: left;

}

.our-advantages {

    padding: 120px 0;

}

.our-advantages-container {

    max-width: 1200px;
    margin: auto;

}

.our-advantages-content {

    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);

}

.our-advantages-item {

    display: flex;
    flex-direction: column;
    align-items: center;

}

.our-advantages-item-icon {

    width: 100px;
    height: 100px;
    background-image: url(../images/proxies/13.svg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

.our-advantages-item-title {

    font-weight: normal;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
    margin-top: 23px;
    margin-bottom: 5px;

}

.our-advantages-item-desc {

    font-weight: 400;
    font-size: 15px;
    color: #717784;
    line-height: 28px;
    text-align: center;

}

.FAQ {

    padding: 120px 0;

}

.FAQ-container {

    max-width: 1200px;
    margin: auto;

}

.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: #717784;
    line-height: 28px;
    text-align: left;

}

.cta-container {

    position: relative;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 81px;
    background: #0E121B;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 内边距给伪元素留空间，或用 background-clip */
    z-index: 1;

}

/* 渐变边框层 */
.cta-container::before {

    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    /* 边框厚度 */
    background: linear-gradient(360deg,
            rgba(76, 30, 227, 1),
            rgba(43, 48, 59, 1));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;

}

.cta-container .cta-logo {

    width: 819px;
    object-fit: cover;

}

.cta-title {

    font-weight: normal;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;

}

.cta-desc {

    font-weight: 400;
    font-size: 15px;
    color: #717784;
    line-height: 28px;
    text-align: center;

}

.cta {

    margin-bottom: 120px;

}

/* Footer */
.footer {

    padding: 120px 0;
    background: #181B25;
    position: relative;

}

.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: #717784;
    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;

}

/* Modal Styles */
.modal-overlay {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

}

.modal-overlay.active {

    opacity: 1;
    visibility: visible;

}

.modal {

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

}

.modal.active {

    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);

}

.modal-content {
    background: #181B25;
    border-radius: 12px;
    border: 1px solid #2B303B;
    overflow-y: auto;
    padding: 32px;
    min-height: 400px;
}

.modal-header {

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 18px;

}

.modal-header .back-btn {

    position: absolute;
    left: 0;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;

}

.modal-header .back-btn:hover {

    background: rgba(255, 255, 255, 0.05);

}

.modal-title {

    font-size: 18px;
    color: #8A8F98;
    line-height: 27px;
    text-align: center;
    font-weight: 600;

}

.alipay-title {

    color: #1677FF;
    font-weight: 600;

}

.alipay-title-img {

    width: 136px;
    height: auto;

}

.modal-body {

    padding: 0;

}

.modal-footer {

    display: flex;
    justify-content: center;
    margin-top: 18px;

}

.payment-footer {
    gap: 12px;
    display: flex;
    justify-content: flex-end;
    justify-content: space-between;

}

.modal-btn {

    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;

}

.modal-btn.full-width {

    width: 100%;

}

.btn-secondary {

    background: #222530;
    color: #FFFFFF;
    border: 1px solid #2B303B;
    cursor: pointer;
    transition: all 0.3s ease;

}

.btn-secondary:hover {

    background: #2B303B;

}

/* Login Modal */
.tips-icon {

    text-align: center;
    margin-bottom: 18px;

}

.tips-text {

    font-size: 14px;
    color: #717784;
    line-height: 24px;
    text-align: center;

}


.payment-section-title {

    font-size: 11px;
    color: #717784;
    line-height: 18px;
    margin-bottom: 9px;

}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
}

.method {

    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;

}

.method h3 {

    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: left;

}

.method-row {

    display: flex;
    align-items: center;
    gap: 10px;

}

.method-row img {

    width: 20px;
    height: 20px;
    object-fit: contain;

}

.method-row p {

    font-size: 12px;
    color: #717784;
    line-height: 16px;
    text-align: left;

}

.payment-method {

    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: #0E121B;
    border-radius: 11px 11px 11px 11px;
    border: 1px solid #2B303B;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    width: 100%;

}

.payment-method:hover {

    border-color: #6C52FF;

}

.payment-method.active {

    border-color: #6C52FF;

}

.payment-method.active .method-name {

    color: #FFFFFF;

}

.payment-method input[type="radio"] {

    display: none;

}

.payment-method .checkmark {

    width: 20px;
    height: 20px;
    border: 2px solid #717784;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.2s ease;

}

.payment-method input[type="radio"]:checked+.checkmark {

    border-color: #6C52FF;

}

.payment-method input[type="radio"]:checked+.checkmark::after {

    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #6C52FF;
    border-radius: 50%;

}

.method-name {

    flex: 1;
    font-size: 14px;
    color: #717784;
    line-height: 28px;

}

.method-discount {

    background: #3F18BF;
    color: #FFFFFF;
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 12px;
    position: absolute;
    top: 0;
    right: 0;

}

.method-icons {

    display: flex;
    gap: 8px;

}

.method-icons img,
.method-single-icon {

    width: 21px;
    height: 21px;
    object-fit: contain;

}

.balance-amount {

    font-size: 14px;
    color: #6C52FF;
    line-height: 24px;
    text-align: right;

}

.order-summary {

    background: #222530;
    border-radius: 8px;
    padding: 15px;
    margin-top: 12px;

}

.order-row {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.order-row:first-child {

    padding-top: 0;

}

.order-row.total {

    padding-top: 12px;

}

.order-label {

    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: left;

}

.order-value {

    font-size: 14px;
    color: #6C52FF;
    line-height: 24px;
    text-align: right;

}

.order-row.total .order-label,
.order-row.total .order-value {

    font-size: 14px;

}


.currency-row {

    display: flex;
    gap: 12px;
    margin-bottom: 9px;

}

.currency-item {

    flex: 1;
    background: #222530;
    border-radius: 8px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 10px;

}

.currency-item img {

    width: 18px;
    height: 18px;
    border-radius: 4px;

}

.currency-value {

    font-size: 12px;
    color: #FFFFFF;
    font-weight: 600;

}

.exchange-rate {

    font-size: 11px;
    color: #717784;
    margin-bottom: 18px;

}

.form-group {

    margin-bottom: 12px;

}

.form-row {

    display: flex;
    gap: 9px;

}

.form-group.half {

    flex: 1;
    position: relative;

}

.form-label {

    font-size: 11px;
    color: #717784;
    margin-bottom: 8px;
    display: block;

}

.form-input {

    width: 100%;
    background: #0E121B;
    border: 1px solid #2B303B;
    border-radius: 8px;
    padding: 11px 12px;
    font-size: 12px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s ease;

}

.form-input:focus {

    border-color: #6C52FF;

}

.form-input::placeholder {

    color: #4A4F59;

}

select.form-input {

    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23717784' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    background-size: 12px;

}

.method-badge {

    background: #0E121B;
    border: 1px solid #2B303B;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 11px;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;

}

.method-badge::before {

    content: '';
    width: 15px;
    height: 11px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236C52FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;

}

.card-input-wrap {

    position: relative;

}

.card-icons {

    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;

}

.card-icons img {

    width: 18px;
    height: 18px;

}

.input-with-icon {

    position: relative;

}

.input-icon {

    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;

}

/* Alipay Modal */
.alipay-modal {}

.qrcode-section {

    text-align: center;
    margin-bottom: 18px;

}

.qrcode-title {

    font-size: 15px;
    color: #FFFFFF;
    margin-bottom: 18px;

}

.qrcode-content {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;

}

.alipay-logo {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

}

.alipay-logo .qrcode-title {

    font-size: 12px;
    margin-bottom: 8px;

}

.alipay-logo img {

    width: 60px;
    height: auto;

}

.qrcode {

    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 9px;

}

.qrcode-svg {

    width: 100%;
    height: 100%;

}

.qrcode-expiry {

    font-size: 11px;
    color: #717784;
    line-height: 1.6;

}

.order-summary-box {

    background: #0E121B;
    border-radius: 20px 20px 20px 20px;
    border: 1px solid #2B303B;
    padding: 24px;

}

.order-summary-title {

    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 15px;

}

.order-detail {

    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #2B303B;

}

.order-detail:last-of-type {

    border-bottom: none;

}

.order-detail-label {

    font-size: 11px;
    color: #99A0AE;

}

.order-detail-value {

    font-size: 11px;
    color: #FFFFFF;

}

.order-total {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 8px;

}

.order-total-label {

    font-size: 12px;
    color: #FFFFFF;

}

.order-total-value {

    font-size: 15px;
    color: #FF4757;
    font-weight: 600;

}

/* Responsive */
@media (max-width: 992px) {
    .modal {
        top: auto;
        left: auto;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
    }

    .modal.active {
        transform: translateY(0);
    }

    .modal-content {
        padding: 24px;
        border-radius: 24px 24px 0 0;
        max-height: 85vh;
    }

    .payment-methods {
        width: 100% !important;
    }

    .payment-method {
        padding: 12px 16px;
    }

    .method-name {
        font-size: 16px;
        line-height: 24px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

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

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

    .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: 40px;
    }

    .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;
    }

    .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;
    }

    /* Residential Proxies Responsive */
    .Residential-Proxies-container {
        padding: 80px 1.5rem;
    }

    .tabs {
        margin-top: 30px;
        margin-bottom: 50px;
        padding: 4px;
    }

    .tab-item {
        padding: 8px 20px;
    }

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

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

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

    .tab-content-item-title {
        font-size: 20px;
        line-height: 30px;
        margin: 20px 0 8px 0;
    }

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

    .tab-content-item-price {
        font-size: 36px;
        line-height: 40px;
    }

    .tab-content-item-price span {
        font-size: 20px;
    }

    .tab-content-item-original-price {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .tab-content-item-select {
        padding: 4px 16px;
        margin-bottom: 16px;
    }

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

    .tab-content-item-select .select-option {
        font-size: 16px;
        line-height: 28px;
    }

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

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

    .tab-content-item-divider {
        margin: 20px 0;
    }

    .tab-content-item-features {
        gap: 14px;
    }

    .tab-content-item-feature-title {
        font-size: 14px;
        line-height: 24px;
    }

    .tab-content-item-tag {
        padding: 4px 12px;
        font-size: 16px;
        line-height: 28px;
    }

    /* Our Resources Responsive */
    .our-resources-container {
        padding: 0 1.5rem 80px;
    }

    .our-resources-content {
        margin-top: 50px;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 0;
    }

    .our-resources-item img {
        width: 70px;
        height: 70px;
    }

    .our-resources-item-title {
        font-size: 20px;
        line-height: 30px;
        margin-top: 16px;
    }

    .our-resources-item-desc,
    .our-resources-item-desc-all {
        font-size: 16px;
        line-height: 28px;
    }

    /* Our Advantages Responsive */
    .our-advantages {
        padding: 80px 0;
    }

    .our-advantages-container {
        padding: 0 1.5rem;
    }

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

    .our-advantages-item-icon {
        width: 100px;
        height: 100px;
    }

    .our-advantages-item-title {
        font-size: 20px;
        line-height: 30px;
        margin-top: 20px;
    }

    .our-advantages-item-desc {
        font-size: 16px;
        line-height: 28px;
    }

    /* FAQ Responsive */
    .FAQ {
        padding: 80px 0;
    }

    .FAQ-container {
        padding: 0 1.5rem;
    }

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

    .FAQ-item {
        padding: 20px;
    }

    .FAQ-item-title {
        font-size: 18px;
        line-height: 28px;
    }

    .FAQ-item-answer {
        font-size: 16px;
        line-height: 28px;
    }

    /* CTA Responsive */
    .cta {
        margin-bottom: 80px;
    }

    .cta-container {
        margin: 0 1.5rem;
        padding: 60px 1.5rem 80px;
    }

    .cta-container .cta-logo {
        width: calc(100% - 3rem);
        max-width: 600px;
        height: auto;
        margin-bottom: 40px;
    }

    .cta-title {
        margin-bottom: 40px;
    }

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

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

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

    .footer-container-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-container-bottom-right {
        gap: 30px;
    }

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

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

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

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

    /* sub-tabs Responsive */
    .sub-tabs {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }

    .sub-tab-item {
        padding: 10px 20px;
    }

    .sub-tab-item-title {
        font-size: 16px;
        line-height: 24px;
    }

    .sub-tab-item-content {
        padding: 2px 6px;
    }

    .sub-tab-item-content-title {
        font-size: 12px;
        line-height: 18px;
    }

    .sub-tab-item-content-desc {
        font-size: 12px;
        line-height: 18px;
    }

    /* tab-sub-content Responsive */
    .tab-sub-content {
        margin-top: 40px;
        margin-bottom: 60px;
        gap: 16px;
    }

    .tab-sub-content .tab-content-item {
        flex: 0 0 calc(33.333% - 12px);
        min-width: 180px;
        padding: 24px;
    }

    /* sub-bottom-con Responsive */
    .sub-bottom-con {
        margin-top: 30px;
        padding: 30px;
        gap: 30px;
    }

    .sub-bottom-left-img {
        width: 44px;
    }

    .sub-bottom-left-desc {
        font-size: 20px;
        line-height: 28px;
        margin: 16px 0;
    }

    .sub-bottom-left-icon {
        height: 32px;
        margin-bottom: 50px;
    }

    .sub-bottom-con-btn {
        padding: 12px 0;
        font-size: 16px;
        line-height: 28px;
    }

    .sub-bottom-right-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .sub-bottom-right-content {
        gap: 14px;
    }

    .sub-bottom-right-item img {
        width: 20px;
        height: 20px;
    }

    .sub-bottom-right-item p {
        font-size: 12px;
        line-height: 16px;
    }
}

@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;
    }

    .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;
    }

    /* Residential Proxies Mobile */
    .Residential-Proxies-container {
        padding: 60px 1rem;
    }

    .tabs {
        flex-direction: column;
        width: 100%;
        margin-top: 24px;
        margin-bottom: 40px;
    }

    .tab-item {
        padding: 10px 16px;
    }

    .tab-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tab-content-item {
        padding: 20px;
    }

    .tab-content-item-title {
        font-size: 18px;
        line-height: 26px;
        margin: 16px 0 6px 0;
    }

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

    .tab-content-item-price {
        font-size: 32px;
        line-height: 40px;
    }

    .tab-content-item-price span {
        font-size: 18px;
    }

    .tab-content-item-original-price {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .tab-content-item-select {
        padding: 4px 12px;
        margin-bottom: 14px;
    }

    .tab-content-item-select p {
        font-size: 14px;
        line-height: 24px;
    }

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

    .tab-content-item-btn p {
        font-size: 14px;
        line-height: 24px;
    }

    .tab-content-item-divider {
        margin: 16px 0;
    }

    .tab-content-item-features {
        gap: 12px;
    }

    .tab-content-item-feature-title {
        font-size: 13px;
        line-height: 22px;
    }

    .tab-content-item-tag {
        padding: 3px 10px;
        font-size: 14px;
        line-height: 24px;
    }

    /* Our Resources Mobile */
    .our-resources-container {
        padding: 0 1rem 60px;
    }

    .our-resources-content {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .our-resources-item img {
        width: 56px;
        height: 56px;
    }

    .our-resources-item-title {
        font-size: 16px;
        line-height: 24px;
        margin-top: 12px;
    }

    .our-resources-item-desc,
    .our-resources-item-desc-all {
        font-size: 14px;
        line-height: 24px;
    }

    /* Our Advantages Mobile */
    .our-advantages {
        padding: 60px 0;
    }

    .our-advantages-container {
        padding: 0 1rem;
    }

    .our-advantages-content {
        margin-top: 40px;
        gap: 30px;
    }

    .our-advantages-item-icon {
        width: 80px;
        height: 80px;
    }

    .our-advantages-item-title {
        font-size: 18px;
        line-height: 26px;
        margin-top: 16px;
    }

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

    /* FAQ Mobile */
    .FAQ {
        padding: 60px 0;
    }

    .FAQ-container {
        padding: 0 1rem;
    }

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

    .FAQ-item {
        padding: 16px;
    }

    .FAQ-item-title {
        font-size: 16px;
        line-height: 24px;
    }

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

    /* CTA Mobile */
    .cta {
        margin-bottom: 60px;
    }

    .cta-container {
        margin: 0 1rem;
        padding: 40px 1rem 60px;
    }

    .cta-container .cta-logo {
        width: calc(100% - 2rem);
        max-width: 400px;
        height: auto;
        margin-bottom: 30px;
    }

    .cta-title {
        margin-bottom: 30px;
    }

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

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

    .footer-container-bottom-right {
        flex-direction: column;
        gap: 16px;
    }

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

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

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

    .footer-container-bottom-left,
    .footer-container-bottom-right p {
        font-size: 13px;
        line-height: 22px;
    }

    /* sub-tabs Mobile */
    .sub-tabs {
        flex-direction: column;
        gap: 6px;
        padding: 6px;
    }

    .sub-tab-item {
        padding: 8px 16px;
        justify-content: center;
    }

    .sub-tab-item-title {
        font-size: 14px;
        line-height: 22px;
    }

    .sub-tab-item-content {
        padding: 2px 4px;
    }

    .sub-tab-item-content-title {
        font-size: 11px;
        line-height: 16px;
    }

    .sub-tab-item-content-desc {
        font-size: 11px;
        line-height: 16px;
    }

    /* tab-sub-content Mobile */
    .tab-sub-content {
        margin-top: 24px;
        margin-bottom: 40px;
        gap: 12px;
    }

    .tab-sub-content .tab-content-item {
        flex: 0 0 calc(50% - 8px);
        min-width: 140px;
        padding: 16px;
    }

    .tab-sub-content-item-icon-container {
        display: none;
    }

    /* sub-bottom-con Mobile */
    .sub-bottom-con {
        margin-top: 24px;
        padding: 20px;
        gap: 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sub-bottom-left-img {
        width: 36px;
    }

    .sub-bottom-left-desc {
        font-size: 16px;
        line-height: 24px;
        margin: 12px 0;
        text-align: center;
    }

    .sub-bottom-left-icon {
        height: 24px;
        margin-bottom: 30px;
    }

    .sub-bottom-con-btn {
        padding: 10px 0;
        font-size: 14px;
        line-height: 24px;
    }

    .sub-bottom-right-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
        text-align: center;
    }

    .sub-bottom-right-content {
        gap: 12px;
    }

    .sub-bottom-right-item {
        gap: 10px;
        justify-content: center;
    }

    .sub-bottom-right-item img {
        width: 16px;
        height: 16px;
    }

    .sub-bottom-right-item p {
        font-size: 11px;
        line-height: 14px;
    }
}

/* 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;

}

/* 支持定制卡片样式 */
.custom-plan-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
}

.custom-plan-item:hover {
    border: 1px solid #6C52FF;
    background: rgba(108, 82, 255, 0.05);
}

.custom-plan-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #717784;
    margin: 23px 0 10px 0;
    text-align: left;
    width: 100%;
}

.custom-plan-title {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 18px 0;
    line-height: 48px;
    text-align: left;
    width: 100%;
}

.custom-plan-desc {
    font-size: 15px;
    font-weight: 400;
    color: #717784;
    margin: 0;
    line-height: 28px;
    text-align: left;
    width: 100%;
    flex: 1;
}

.custom-plan-btn {
    background: linear-gradient(90deg, #6C52FF 0%, #592BFF 100%);
    gap: 8px;
    padding: 12px 20px;
    width: 100%;
    white-space: nowrap;
    justify-content: center;
}

.custom-plan-btn p {
    white-space: nowrap;
}

.custom-plan-btn img {
    width: 18px;
    height: 18px;
}

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