/* ============================================================
   useCases.html - 精简后的 CSS
   仅保留页面实际使用的样式，移除未使用的代码
   ============================================================ */

/* 全局重置 */
* {
    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 */
.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: 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-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;
}

.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 Navigation */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

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

.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: 12px;
    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: 12px;
    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: 11px;
    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 11px rgba(139, 92, 246, 0.4);
}

body.drawer-open {
    overflow: hidden;
}

/* Section Titles */
.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;
}

.hero {
    padding-top: 81px;
    padding-bottom: 160px;
}

.hero-container {
    width: 1160px;
    margin: auto;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content-left-title {
    font-weight: bold;
    font-size: 64px;
    line-height: 72px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(181.09639485973966deg, #B6CFFF 0%, #B5B0FF 52%, #FACCFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.production_select {
    margin-bottom: 32px;
}

.production_select_item {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #CACFD8;
}

.production_select_item + .production_select_item {
    margin-top: 16px;
}

.production_select_item img {
    width: 23px;
    height: 23px;
    margin-right: 8px;
}

.hero-content-right {
    position: relative;
    width: 467px;
    height: 419px;
}

.hero-content-right-mainImg {
    width: 467px;
    height: 419px;
    position: relative;
    z-index: 1;
}

.location-item {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 2;
    cursor: pointer;
}

.hero-content-right-locationImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.location-tooltip2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 11px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    width: 142px;
    pointer-events: none;
    background: linear-gradient(0deg, #222530 0%, #181B25 100%);
    box-shadow: inset 0px 3px 16px 0px #2B303B, inset 0px -8px 8px 0px #181B25, 0px 0 0px 3px #6C52FF, 0px 16px 24px 11px rgba(14, 18, 27, 0.5);
    font-weight: normal;
    font-size: 12px;
    color: #CACFD8;
    line-height: 16px;
    padding: 12px 16px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-item:hover .location-tooltip2 {
    opacity: 1;
    visibility: visible;
}

/* 3x3网格布局定位 - 以620x556大图为参照 */
.location-top {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.location-top-left {
    top: 66px;
    left: 91px;
}

.location-top-right {
    top: 68px;
    right: 90px;
}

.location-left {
    top: 208px;
    left: 41px;
    transform: translateY(-50%);
}

.location-right {
    top: 209px;
    right: 41px;
    transform: translateY(-50%);
}

.location-bottom-left {
    bottom: 68px;
    left: 90px;
}

.location-bottom-right {
    bottom: 68px;
    right: 92px;
}

.location-bottom {
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.features {
    background-image: url("../images/33.png");
    background-size: 1365px auto;
    background-position: center 151px;
    background-repeat: no-repeat;
}
.feature-img .img-hover {
    display: none;
    position: relative;
    z-index: 1;
}

.feature-img .img-default {
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-img .img-default {
    display: none;
}

.feature-card:hover .feature-img .img-hover {
    display: inline-block;
}
.features-content {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.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;
    position: relative;
    overflow: hidden;
}

.feature-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #181A25;
    z-index: 0;
    transition: background 0.3s ease;
}

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

.feature-img img {
    position: relative;
    z-index: 1;
    display: block;
}

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

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

.datacenter-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 181px;
    background: #181B25;
    border-radius: 15px 15px 15px 15px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary img {
    width: 12px;
}

.btn-secondary p {
    font-weight: 400;
    font-size: 11px;
    color: #99A0AE;
    line-height: 18px;
    text-align: left;
}

.datacenter-container-right img {
    width: 401px;
}

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

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

.location-container {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 136px;
    background: #181B25;
    border-radius: 20px;
    padding: 40px;
    background-image: url("../images/residential/6.png");
    /* 高度100% 宽度auto*/
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-content-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.location-content-right img {
    width: 105px;
    height: 105px;
}

.location-content-left-btn-group {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    margin-bottom: 43px;
}

.location-content-left-title {
    font-weight: normal;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: left;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.location-content-left-list {
    display: flex;
    gap: 48px;
}

.location-content-left-list-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.location-content-left-list-item-title {
    font-weight: 400;
    font-size: 14px;
    color: #99A0AE;
    line-height: 24px;
    text-align: left;
}

.location-content-left-list-item img {
    width: 18px;
    height: 18px;
}


.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-black img {
    width: 20px;
    height: 20px;
}

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

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

/* Primary Button */
.btn-primary {
    padding: 10px 20px;
    background: linear-gradient(90deg, #6C52FF 0%, #8341FF 100%);
    border-radius: 11px;
    font-size: 14px;
    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;
    margin: auto;
}

.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 {
    opacity: 0;
}

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

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

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

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

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

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

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

.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;
    opacity: 0.8;
    background: url('../images/bg2.png') no-repeat top center;
    background-size: 100% auto;
}

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

.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:hover::before {
    opacity: 1;
} */

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

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

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

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

.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-title {
    font-size: 48px;
    color: #FFFFFF;
    line-height: 56px;
    text-align: center;
    margin-bottom: 12px;
}

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

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

/* 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: #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;
}

/* ============================================================
   平板设备: 578px <= 屏幕宽度 < 771px
   ============================================================ */
@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .logo img {
        width: 150px;
    }

    .Residential-Proxies-container {
        padding: 100px 1.5rem;
    }

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

    .container-item {
        padding: 24px;
    }

    .container-item-icon {
        width: 72px;
        height: 72px;
    }

    .container-item-title {
        margin-top: 24px;
        margin-bottom: 8px;
        font-size: 24px;
        line-height: 36px;
    }

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

    .bottom-card {
        padding: 40px;
    }

    .bottom-card-icon {
        width: 56px;
        height: 56px;
    }

    .bottom-card-title {
        font-size: 24px;
        line-height: 36px;
        margin-top: 16px;
        margin-bottom: 8px;
    }

    .bottom-card-desc {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .cta {
        margin-bottom: 100px;
    }

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

    .cta-container .cta-logo {
        width: 70px;
        height: 70px;
    }

    .cta-title {
        font-size: 24px;
        line-height: 36px;
    }

    .cta-desc {
        font-size: 16px;
        line-height: 28px;
    }

    .btn-primary {
        font-size: 18px;
        line-height: 32px;
        padding: 12px 24px;
    }

    .footer {
        padding: 100px 1.5rem;
    }

    .footer-container-top {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 60px;
    }

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

    .footer-container-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

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

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

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

    /* Hero Section - Tablet */
    .hero {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .hero-container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-content-left {
        align-items: center;
    }

    .hero-content-left-title {
        font-size: 56px;
        line-height: 68px;
    }

    .hero-content-left-desc {
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 40px;
    }

    .hero-content-right {
        width: 500px;
        height: 448px;
        margin: 0 auto;
    }

    .hero-content-right-mainImg {
        width: 500px;
        height: 448px;
    }

    .location-item {
        width: 42px;
        height: 42px;
    }

    .location-top {
        top: 17px;
    }

    .location-top-left {
        top: 71px;
        left: 97px;
    }

    .location-top-right {
        top: 72px;
        right: 97px;
    }

    .location-left {
        top: 222px;
        left: 43px;
    }

    .location-right {
        top: 224px;
        right: 43px;
    }

    .location-bottom-left {
        bottom: 72px;
        left: 97px;
    }

    .location-bottom-right {
        bottom: 72px;
        right: 98px;
    }

    .location-bottom {
        bottom: 18px;
    }

    .stats-group {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 60px;
    }

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

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

    .stats-card .stats-card-subtitle {
        font-size: 16px;
        line-height: 28px;
    }

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

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

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

    .feature-content {
        padding: 24px;
    }

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

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

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

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

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

    .useCase-bottom {
        margin-top: 60px;
        padding: 24px;
        width: 100%;
    }

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

    /* location Section - Tablet */
    .location-container {
        flex-direction: column;
        margin-bottom: 120px;
        padding: 40px;
        background-position: bottom center;
        background-size: 80% auto;
    }

    .location-content-right {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .location-content-right img {
        width: 100px;
        height: 100px;
    }

    .location-content-left-title {
        font-size: 32px;
        line-height: 42px;
    }

    .location-content-left-desc {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 32px;
    }

    .location-content-left-btn-group {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }

    .location-content-left-list {
        flex-wrap: wrap;
        gap: 16px;
    }

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

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

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

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

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

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

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

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

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

    .FAQ-item {
        padding: 24px;
    }

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

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

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

    /* Buttons - Tablet */
    .btn-black {
        font-size: 18px;
        line-height: 32px;
        padding: 12px 24px;
    }
}

/* ============================================================
   移动设备: 屏幕宽度 < 768px
   ============================================================ */
@media (max-width: 767px) {
    .nav-container {
        height: 60px;
        padding: 0 1rem;
    }

    .logo img {
        width: 130px;
    }

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

    .container {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .container-item {
        padding: 20px;
    }

    .container-item-icon {
        width: 64px;
        height: 64px;
    }

    .container-item-title {
        margin-top: 20px;
        margin-bottom: 6px;
        font-size: 20px;
        line-height: 30px;
    }

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

    .bottom-card {
        padding: 32px 20px;
    }

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

    .bottom-card-title {
        font-size: 20px;
        line-height: 30px;
        margin-top: 14px;
        margin-bottom: 6px;
    }

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

    .cta {
        margin-bottom: 60px;
    }

    .cta-container {
        margin: 0 1rem;
        padding: 50px 1rem;
        border-radius: 20px;
    }

    .cta-container::before {
        border-radius: 20px;
    }

    .cta-container .cta-logo {
        width: 50px;
        height: 50px;
    }

    .cta-title {
        font-size: 20px;
        line-height: 30px;
    }

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

    .btn-primary {
        font-size: 16px;
        line-height: 28px;
        padding: 12px 20px;
    }

    .footer {
        padding: 60px 1rem;
    }

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

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

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

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

    .footer-container-menu-item {
        gap: 10px;
    }

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

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

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

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

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

    /* Hero Section - Mobile */
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-container {
        width: 100%;
        padding: 0 1rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .hero-content-left {
        align-items: center;
    }

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

    .hero-content-left-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 32px;
    }

    .hero-content-right {
        width: 280px;
        height: 250px;
    }

    .hero-content-right-mainImg {
        width: 280px;
        height: 250px;
    }

    .location-item {
        width: 24px;
        height: 24px;
    }

    .location-top {
        top: 9px;
    }

    .location-top-left {
        top: 40px;
        left: 54px;
    }

    .location-top-right {
        top: 40px;
        right: 54px;
    }

    .location-left {
        top: 124px;
        left: 24px;
    }

    .location-right {
        top: 125px;
        right: 24px;
    }

    .location-bottom-left {
        bottom: 40px;
        left: 54px;
    }

    .location-bottom-right {
        bottom: 40px;
        right: 55px;
    }

    .location-bottom {
        bottom: 10px;
    }

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

    .stats-card {
        flex: 1 1 100%;
        padding: 20px;
        gap: 6px;
    }

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

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

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

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

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

    .feature-content {
        padding: 20px;
    }

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

    .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: 14px;
        line-height: 24px;
    }

    .useCase-bottom {
        flex-direction: column;
        gap: 20px;
        margin-top: 48px;
        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;
    }

    /* location Section - Mobile */
    .location-container {
        flex-direction: column;
        margin-bottom: 80px;
        padding: 24px;
        background-position: bottom center;
        background-size: 100% auto;
    }

    .location-content-right {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        order: 2;
    }

    .location-content-right img {
        width: 80px;
        height: 80px;
    }

    .location-content-left {
        order: 1;
    }

    .location-content-left-title {
        font-size: 24px;
        line-height: 34px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

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

    .location-content-left-btn-group {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .location-content-left-list {
        flex-direction: column;
        gap: 12px;
    }

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

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

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

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

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

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

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

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

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

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

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

    /* Buttons - Mobile */
    .btn-black,
    .btn-primary {
        font-size: 14px;
        line-height: 24px;
        padding: 10px 16px;
        justify-content: center;
        width: 100%;
    }

    /* FAQ-bottom - Mobile */
    .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 {
        width: 100%;
        justify-content: center;
    }
}

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