/* Variable fonts (preferred): provide weight range and separate italic face */
@font-face {
    font-family: 'Nunito';
    src: url('../text/Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
    line-height: 1;
}

/* 简单的页面加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Box7 卡片动画 */
@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes scaleOnHover {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.02);
    }
}

/* 特色卡片渐进动画 */
.box2 .feature-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.box2 .feature-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.box2 .feature-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.box2 .feature-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.box2 .feature-card:nth-child(5) {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* 主要内容区块动画 */
.box2 h1 {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.box2 p {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Global Variables */
:root {
    --main-color: #FF4000;
    --blur-color: #001B6B;
    --text-color: #0D0D0D;
    --black-text: #000000;
    --semi-bold-font-weight: 600;
    --extra-bold-font-weight: 800;
    --regular-font-weight: 400;
    --bold-font-weight: 700;
    --black-font-weight: 900;
    --light-font-weight: 300;
    --extra-light-font-weight: 200;
    --medium-font-weight: 500;
}

/* Reset */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html,
body {
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-family: 'Nunito', sans-serif;
    line-height: 1 !important;
    overflow-x: hidden;
    background-color: #F9F9F9;
}

img,
video {
    max-height: none !important;
    max-width: none !important;
}

button,
input,
optgroup,
select,
textarea {
    font-size: 100%;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

h1,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

.bg-clip-text {
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

#container {
    position: absolute;
    left: 0;
    top: 0;
    width: 1440px;
    height: auto;
    transform-origin: 0 0;
    transform: scale(1);
    overflow: visible;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    color: #fff;
}

.HEADER {
    align-items: center;
    background-color: #f9f9f93b;
    border: 1px solid;
    border-color: #ffffff;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    height: 96px;
    justify-content: space-between;
    padding: 28px 55px 28px 81px;
    position: fixed;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    top: 0;
    width: 100%;
    z-index: 4;
}

.HEADER .logo-xg {
    height: 34.14px;
    position: relative;
    width: 71px;
}

.HEADER .header-button {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 14px;
    position: relative;
}

.HEADER .contact-us-button {
    align-items: center;
    background-color: #ff4000;
    border-radius: 24px;
    display: flex;
    gap: 10px;
    height: 40px;
    justify-content: center;
    padding: 7px 21px;
    position: relative;
    width: 126px;
}

.HEADER .phone {
    height: 19.5px;
    margin-left: -1.75px;
    position: relative;
    width: 19.5px;
}

.HEADER .button-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: var(--semi-bold-font-weight);
    letter-spacing: 0;
    line-height: 32px;
    margin-bottom: -2.00px;
    margin-right: -1.00px;
    margin-top: -4.00px;
    position: relative;
    white-space: nowrap;
    width: fit-content;
}

.HEADER .email {
    height: 19.5px;
    position: relative;
    width: 19.5px;
}

.HEADER .text-wrapper {
    color: #ffffff;
    font-size: 20px;
    font-weight: var(--regular-font-weight);
    letter-spacing: 0;
    line-height: normal;
    margin-top: -1.50px;
    position: relative;
    width: fit-content;
}

.green-btn {
    border-radius: 0px 15px 15px 15px;
    background: #C0FF14;
    padding: 10px 30px;
    line-height: 22px;
    font-weight: var(--bold-font-weight);
    font-size: 18px;
    display: inline-block;
    color: var(--blur-color);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.green-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 255, 20, 0.4);
    background: #B8F000;
}

.language-btn {
    background-color: #C0FF14;
    border-radius: 0 30px 30px 0;
    position: absolute;
    left: 0;
    top: 150px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 15px 18px;
}

.language-btn .lang-label {
    color: #001B6B;
    font-size: 20px;
    font-weight: var(--bold-font-weight);
}

.box1 {
    height: 727px;
    width: 100%;
    background-color: var(--main-color);
    border-radius: 0 0 30px 30px;
    display: flex;
    padding-left: 79px;
}

.box1 .img-box {
    height: 100%;
    width: auto;
    flex: 1;
    margin-left: -45px;
}

.box1 .img-box img {
    height: 100%;
    width: auto;
}

.box1 .customer-support {
    width: 608px;
}

.box1 .customer-support .span {
    font-weight: var(--semi-bold-font-weight);
    font-size: 70px;
}

.box1 .customer-support .text-wrapper-2 {
    font-weight: var(--extra-bold-font-weight);
    font-size: 70px;
}

.box1 .left {
    width: 587px;
    padding-top: 233px;
}

.box1 .at-XG-we-believe {
    font-weight: var(--regular-font-weight);
    font-size: 20px;
    line-height: 27px;
    margin: 24px 0 37px 0;
}

.box2 {
    text-align: center;
}

.extra-bold {
    font-weight: var(--extra-bold-font-weight);
}

.box2 h1 {
    font-weight: var(--extra-bold-font-weight);
    font-size: 64px;
    color: var(--blur-color);
    /* width: 780px; */
    text-align: center;
    white-space: pre;
    margin: 73px auto 34px auto;
}

.box2 h1 span {
    color: var(--main-color);
}

.box2 p {
    font-weight: var(--semi-bold-font-weight);
    font-size: 30px;
    color: var(--text-color);
    margin: auto;
    width: 856px;
    line-height: 40px;
}

.box2 .features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 47px 0 46px 0;
}

.box2 .feature-card {
    background-color: var(--main-color);
    color: white;
    padding: 18px 48px;
    border-radius: 0 15px 15px 15px;
    width: 400px;
    height: 142px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.box2 .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 64, 0, 0.3);
    background-color: #FF5520;
}

.box2 .feature-card:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.box2 .feature-card:hover .feature-title {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.box2 .feature-card img {
    height: 37px;
    width: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.box2 .feature-title {
    font-weight: var(--medium-font-weight);
    font-size: 25px;
    transition: transform 0.3s ease;
    /* line-height: 34px; */
}

.box2 .feature-card:nth-child(5) {
    padding-left: 25px;
    padding-right: 0;
}

.box2 .feature-subtitle {
    font-size: 15px;
    font-weight: var(--extra-light-font-weight);
    margin-top: 8px;
}

.box3 {
    padding: 46px 138px 64px 138px;
    background: #fff;
    text-align: center;
}

.box3 .img-box {
    position: relative;
    width: 100%;
}

.box3 .box3-img {
    width: 100%;
    height: auto;
}

.box3 .box3-mp-img {
    width: 100%;
    height: auto;
    display: none;
}

.box3 p {
    font-weight: var(--regular-font-weight);
    font-size: 32px;
    color: var(--text-color);
    margin: 37px auto 22px auto;
    line-height: 40px;
}

.box3 .checkward {
    position: absolute;
    background-color: #FF8969;
    border-radius: 300px;
    display: flex;
    padding: 5px;
    width: 204px;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: var(--bold-font-weight);
}

.box3 .checkward img {
    width: 44px;
    height: 44px;
}

.box4 {
    position: relative;
    height: 684px;
    padding: 116px 175px 0 171px;
}

.box4 .text-box {
    --border-radius: 40px;
    --border-width: 2px;
    --border-color: linear-gradient(90deg, #FF4000, #FF400000, #FF4000);
    border-radius: var(--border-radius);
    background: transparent;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    color: #252525;
    padding: 56px 63px;
    font-weight: var(--semi-bold-font-weight);
    font-size: 40px;
    position: relative;
    flex-shrink: 0;
    line-height: 1.3;
}

.box4 .text-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: var(--border-width);
    border-radius: var(--border-radius);
    background: var(--border-color);
    --mask-bg: linear-gradient(white, white);
    --mask-clip: content-box, padding-box;
    -webkit-mask-image: var(--mask-bg), var(--mask-bg);
    -webkit-mask-clip: var(--mask-clip);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}

.box4 .box4-bg {
    position: absolute;
    height: 100%;
    right: 0;
    z-index: 0;
    width: auto;
    top: 0;
}

.box5 {
    background: #001B6B;
    height: 849px;
    width: 100%;
    padding: 85px 120px 96px 120px;
}

/* Box5 服务卡片动画 */
.box5 .title {
    text-align: center;
    width: 100%;
    font-weight: var(--extra-bold-font-weight);
    font-size: 64px;
    color: var(--main-color);
    margin-bottom: 51px;
    line-height: 87px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.box5 .box5-cards {
    display: flex;
    gap: 45px;
}

.box5 .box5-cards .card {
    background: var(--main-color);
    border-radius: 0px 30px 30px 30px;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 36px;
    padding-right: 20px;
    flex: 1;
    min-height: 530px;
    font-weight: var(--regular-font-weight);
    font-size: 20px;
    line-height: 27px;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    /* cursor: pointer; */
}

/* Box5 卡片渐进动画 */
.box5 .box5-cards .card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.box5 .box5-cards .card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.box5 .box5-cards .card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.box5 .box5-cards .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background-color: #FF5520;
}

.box5 .box5-cards .card:hover .icon {
    transform: scale(1.15) rotate(5deg);
    transition: transform 0.3s ease;
}

.box5 .box5-cards .card:hover p {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.box5 .box5-cards .icon {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.box5 .box5-cards p {
    font-size: 28px;
    font-weight: var(--bold-font-weight);
    margin: 10px 0;
    line-height: 41px;
    transition: transform 0.3s ease;
}

.box5 .box5-cards .small-strong {
    margin-top: 17px;
    position: relative;
    padding-left: 20px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.box5 .box5-cards .card:hover .small-strong {
    transform: translateX(3px);
    color: #fff;
}

.box5 .box5-cards .right-icon {
    width: 13px;
    height: auto;
    position: absolute;
    top: 10px;
    left: 0;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.box5 .box5-cards .card:hover .right-icon {
    transform: scale(1.2);
}

.box6 {
    width: 100%;
    padding: 82px 150px 183px 150px;
}

.box6 .title {
    font-weight: var(--extra-bold-font-weight);
    font-size: 64px;
    color: var(--main-color);
    text-align: center;
    width: 100%;
    margin-bottom: 103px;
}

.box6 .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 200px;
    align-items: start;
}

.box6 .step {
    text-align: left;
    flex: 1;
}

.box6 .step-number::after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    left: 160px;
    width: 266px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 137, 105, 0) 0%, #FF8969 100%);
}

.box6 .step:last-child .step-number::after {
    display: none;
}

.box6 .step-number {
    position: relative;
    color: var(--main-color);
    font-weight: var(--black-font-weight);
    font-size: 128px;
    line-height: 1;
}

.box6 .step-title {
    color: var(--main-color);
    font-weight: var(--bold-font-weight);
    font-size: 26px;
    margin: 26px 0 21px 0;
    line-height: 35px;
}

.box6 .step-desc {
    color: var(--text-color);
    font-weight: var(--regular-font-weight);
    font-size: 20px;
    line-height: 27px;
}

.box7 {
    width: 100%;
    padding: 110px 92px 51px 145px;
    height: 1189px;
    background: var(--main-color);
}

/* Box7 卡片动画样式 */
.box7 .card {
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.box7 .card:hover {
    transform: translateY(-5px) scale(1.02);
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

.box7 .card1 {
    width: 100%;
    display: flex;
    margin-bottom: 38px;
    gap: 74px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.box7 .card1:hover {
    transform: translateY(-3px);
}

.box7 .card1:hover .card-title {
    color: #fff;
}

.box7 .card1:hover .green-btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.box7 .card-list .card:nth-child(1) {
    animation-delay: 0.4s;
}

.box7 .card-list .card:nth-child(2) {
    animation-delay: 0.6s;
}

.box7 .card-list .card:nth-child(3) {
    animation-delay: 0.8s;
}

.box7 .card-list {
    display: flex;
    gap: 36px;
}

.box7 .card1 {
    width: 100%;
    display: flex;
    margin-bottom: 38px;
    gap: 74px;
}

.box7 .card1 .btn {
    position: relative;
    /* backdrop-filter: blur(40px); */
    /* border-radius: 10px; */
    font-size: 24px;
    font-weight: var(--light-font-weight);
    /* height: 45px; */
    height: auto;
    width: 193px;
    text-align: center;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    /* filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); */
}

.box7 .bottom-btn {
    position: relative;
    font-weight: var(--bold-font-weight);
    font-size: 32px;
    line-height: 40px;
    margin: 46px auto 0 auto;
    text-align: center;
    cursor: pointer;
    display: table;
    text-decoration: none;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    transition: transform 0.3s ease;
}

.box7 .bottom-btn:hover {
    transform: translateY(-2px);
}

.box7 .bottom-btn:hover::after {
    transform: scaleX(1);
}

.box7 .bottom-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.box7 .card1 .border3 {
    width: 100%;
    /* top: 0; */
    height: auto;
    object-fit: cover;
    border-radius: 0;
    /* object-fit: cover;
    backdrop-filter: blur(40px); */
}

.box7 .card1 .btn span {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 0;
    left: 0;
    line-height: 45px;
}

.box7 .card1 .card-title {
    font-weight: var(--semi-bold-font-weight);
    line-height: 63px;
    font-size: 64px;
    margin-top: 25px;
    transition: color 0.3s ease;
}

.box7 .card1 .card-text {
    font-weight: var(--light-font-weight);
    line-height: 24px;
    font-size: 16px;
    margin: 21px 0 23px 0;
    transition: opacity 0.3s ease;
}

.box7 .card img {
    width: 100%;
    height: 263px;
    transition: transform 0.3s ease;
    border-radius: 0 30px 30px 30px;
    object-fit: cover;
}

.box7 .card:hover img {
    transform: scale(1.05);
}

.box7 .card1 img {
    height: 455px;
    width: auto;
}

.box7 .card-content {
    font-weight: var(--regular-font-weight);
    font-size: 24px;
    line-height: 32px;
    margin-top: 16px;
    transition: color 0.3s ease;
    height: 120px;
}

.box7 .card:hover .card-content {
    color: #fff;
}

.box7 .card-body {
    font-weight: var(--regular-font-weight);
    line-height: 45px;
    font-size: 16px;
    transition: opacity 0.3s ease;
    border-radius: 0 15px 15px 15px;
    border-color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    /* height: 45px; */
    padding: 0 35px;
}

.box7 .card:hover .card-body {
    opacity: 0.9;
}

.box8 {
    height: 688px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.box8 .bg-img {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: -1;
    user-select: none;
    top: -190px;
}

.box8 .content {
    position: relative;
    border-radius: 0 30px 30px 30px;
    width: 900px;
    margin: 0 auto;
    background: var(--blur-color);
    font-size: 20px;
    line-height: 27px;
    font-weight: var(--regular-font-weight);
    padding: 43px 62px 0px 120px;
    height: 375px;
}

.box8 .punctuation {
    position: absolute;
    font-size: 512px;
    font-weight: var(--regular-font-weight);
    color: #C0FF14;
    left: 0;
    top: -120px;
    line-height: 1;
}

.box8 .title {
    font-size: 24px;
    font-weight: var(--bold-font-weight);
    line-height: 33px;
    padding-left: 80px;
    margin-bottom: 32px;
}

/* Carousel controls */
.box8 .carousel-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.box8 .carousel-button {
    width: 21px;
    height: 6px;
    border-radius: 30px;
    background: #A6A59C;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.box8 .carousel-button:hover {
    /* transform: scale(1.15); */
}

.box8 .carousel-button.active {
    background: #C0FF14;
    width: 36px;
}

/* Transition animations for slide */
/* Directional slide transitions */
.slide-left-enter-active,
.slide-left-leave-active,
.slide-right-enter-active,
.slide-right-leave-active {
    transition: transform 350ms ease, opacity 350ms ease;
}

.slide-left-enter {
    opacity: 0;
    transform: translateX(40px);
}

.slide-left-leave-to {
    opacity: 0;
    transform: translateX(-40px);
}

.slide-right-enter {
    opacity: 0;
    transform: translateX(-40px);
}

.slide-right-leave-to {
    opacity: 0;
    transform: translateX(40px);
}

.box9 {
    background: url(../images/bg1.png) no-repeat;
    background-size: 100% 100%;
    height: 676px;
    color: #fff;
    padding: 124px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box9 .hero-title {
    font-size: 64px;
    font-weight: var(--extra-bold-font-weight);
    margin-bottom: 28px;
    max-width: 800px;
}

.box9 .hero-sub {
    font-size: 25px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: var(--regular-font-weight);
}

.box9 .hero-cta {
    display: inline-block;
    background: #d7ff34;
    color: var(--blur-color);
    line-height: 62px;
    border-radius: 0px 15px 15px 15px;
    font-weight: var(--bold-font-weight);
    font-size: 24px;
    text-decoration: none;
    width: 328px;
    text-align: center;
    margin: 63px 0 75px 0;
    transition: all 0.3s ease;
}

.box9 .hero-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(215, 255, 52, 0.4);
    background: #C8F020;
}

.box9 .text {
    font-weight: var(--regular-font-weight);
    font-size: 30px;
}

.box10 {
    width: 100%;
    color: var(--black-text);
}

.box10 .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 98px 148px 71px 101px;
    font-weight: var(--regular-font-weight);
    border-bottom: 2px solid #FF4000;
}

.box10 .row .title {
    margin: 44px 0 5px 0;
    font-size: 32px;
    font-weight: var(--bold-font-weight);
    line-height: 44px;
}

.box10 .row .sub-title {
    font-size: 25px;
    margin-bottom: 48px;
    margin-top: 5px;
    line-height: 34px;
    font-weight: var(--regular-font-weight);
}

.box10 .row span {
    padding-right: 25px;
    margin-right: 25px;
    border-right: 2px solid #001B6B;
    line-height: 36px;
    font-size: 20px;
}

.box10 .row span:last-child {
    border-right: none;
}

.box10 .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.box10 .socials {
    display: flex;
    gap: 30px;
}

.box10 .socials img {
    width: 61px;
    height: auto;
}

.box10 .buttom-text {
    text-align: center;
    width: 100%;
    font-weight: var(--regular-font-weight);
    font-size: 15px;
    color: var(--black-text);
    margin: 31px 0;
}

/* =====================
   Legal Document Styles - Clean & Professional
   ===================== */
.legal-page {
    padding: 205px 318px 201px 318px;
    width: 100%;
}

.legal-page .page-title {
    font-size: 48px;
    font-weight: var(--bold-font-weight);
    color: var(--blur-color);
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.legal-page a {
    text-decoration: underline;
}

.legal-page .content {
    font-size: 20px;
    line-height: 32px;
    color: #3B3C4A;
    text-align: justify;
    font-weight: var(--regular-font-weight);
}

.legal-page .header {
    margin-bottom: 96px;
}

.legal-page .header .section-number {
    margin: 0;
}

.legal-page .subsection {
    margin: 24px 0;
    padding-left: 20px;
    border-left: 3px solid #e2e8f0;
}

/* Legal document specific styles */
.legal-page .numbered-section {
    margin: 30px 0 20px 0;
    font-size: 18px;
    font-weight: var(--semi-bold-font-weight);
    color: var(--blur-color);
}

/* Legal Document Typography */
.legal-page .section-number {
    color: var(--blur-color);
    font-weight: var(--semi-bold-font-weight);
    font-size: 24px;
    line-height: 28px;
    display: block;
    margin: 39px 0;
}

.legal-page .subsection-item {
    margin: 16px 0 8px 0;
    padding-left: 20px;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-page ul li {
    margin: 8px 0;
    line-height: 1.7;
    list-style-type: disc;
}

.legal-page ol {
    margin: 10px 0;
    padding-left: 10px;
}

.legal-page ol li {
    margin: 5px 0;
    line-height: 1.7;
}

/* =====================
   Mobile Responsive Styles (max-width: 900px)
   ===================== */
@media (max-width: 900px) {

    /* Legal Page Styles */
    .legal-page {
        padding: 10rem 1.5rem;
    }

    .legal-page .page-title {
        font-size: 2rem;
        margin-bottom: 4rem;
        max-width: 80vw;
    }

    .legal-page .content {
        font-size: 1.2rem;
        line-height: 2rem;
        text-align: left;
    }

    .legal-page .numbered-section {
        font-size: 16px;
        margin: 24px 0 16px 0;
    }

    .legal-page .subsection-item {
        margin: 12px 0;
        padding-left: 0;
        font-size: 1.25rem;
        line-height: 2rem;
    }

    .legal-page .subsection {
        padding-left: 16px;
        border-left-width: 2px;
    }

    .legal-page .section-number {
        font-size: 1.35rem;
        line-height: 1.75rem;
    }

    .legal-page ul,
    .legal-page ol {
        padding-left: 1.5rem;
        margin: 12px 0;
        font-size: 1.1rem;
        line-height: 1.7rem;
    }

    .legal-page ol {
        padding-left: 0.5rem;
    }

    /* Legal Document Alternative Styles */
    .wrapper {
        padding: 20px 10px;
    }

    .legal-document {
        border-radius: 16px;
        margin: 0;
    }

    .legal-header {
        padding: 24px 20px 20px;
        padding-top: calc(24px + env(safe-area-inset-top));
    }

    .legal-title {
        font-size: clamp(20px, 5vw, 28px);
    }

    .legal-meta {
        font-size: 14px;
    }

    .legal-content {
        padding: 30px 20px;
        font-size: 15px;
        line-height: 1.7;
    }

    .legal-section {
        padding: 16px;
        margin-bottom: 20px;
    }

    .contact-info {
        padding: 20px 16px;
    }

    .language-btn {
        top: 110px;
    }

    .box1 .customer-support {
        width: calc(100% - 40px);
        line-height: 1.2;
    }

    /* Global Base Styles */
    .green-btn {
        height: auto;
        line-height: 1.2rem;
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    html {
        font-size: 4.2667vw;
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }

    body {
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        -webkit-tap-highlight-color: transparent;
    }

    /* Disable scaling layout expectations */
    #container {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        transform: none;
    }

    /* HEADER */
    .HEADER {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 4rem;
        padding: 0.75rem 1rem;
        padding-top: calc(0.75rem + env(safe-area-inset-top));
        border-radius: 0 0 12px 12px;
        z-index: 10;
    }

    .HEADER .contact-us-button {
        height: 32px;
        padding: 0 10px;
    }

    .HEADER .button-text,
    .HEADER .text-wrapper {
        font-size: clamp(0.8125rem, 2.5vw, 0.9375rem);
        line-height: 1.4;
    }

    /* ===================== */
    /* .box1: Hero Section */
    /* ===================== */
    .box1 {
        flex-direction: column;
        padding: 0;
        height: auto;
        overflow: hidden;
    }

    .box1 .left {
        width: 100%;
        padding: 7rem 2rem 1.5rem 2rem;
    }

    .box1 .customer-support .span,
    .box1 .customer-support .text-wrapper-2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        /* 28-36px */
    }

    .box1 .img-box {
        /* margin-left: 0; */
        height: auto;
    }

    .box1 .img-box img {
        width: 100%;
        height: auto;
    }

    .box1 .at-XG-we-believe {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* ===================== */
    /* .box2: Feature Headline */
    /* ===================== */
    .box2 h1,
    .box2 p {
        width: auto;
        max-width: 100%;
        padding: 0 2rem;
        text-wrap: auto;
    }

    .box2 h1 {
        font-size: clamp(1.5rem, 6.2vw, 1.75rem);
        /* ~24-28px */
        line-height: 1.3;
        margin: 3rem 0 1rem 0;
    }

    .box2 p {
        font-size: clamp(0.9375rem, 3.8vw, 1rem);
        /* 15-16px */
        line-height: 1.5;
    }

    .box2 .features {
        gap: 12px;
        padding: 3rem 1.2rem;
        margin: 0;
    }

    .box2 .feature-card {
        padding: 1.5rem 2.5rem;
        width: 100%;
        height: auto;
    }

    .box2 .feature-card:nth-child(5) {
        padding: 1.5rem 2.5rem;
    }

    .box2 .feature-title {
        font-size: clamp(1rem, 3.8vw, 1.125rem);
    }

    .box2 .feature-subtitle {
        font-size: clamp(0.75rem, 3vw, 0.875rem);
        margin-top: 0.5rem;
    }

    /* ===================== */
    /* .box3: Image with Badge */
    /* ===================== */
    .box3 {
        padding: 3rem 1.5rem;
    }

    .box3 .img-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        position: relative;
    }

    .box3 .checkward {
        font-size: 0.75rem;
        display: none;
    }

    .box3 .box3-img {
        display: none;
    }

    .box3 .box3-mp-img {
        border-radius: 30px;
        display: block;
    }

    .box3 .checkward img {
        width: 28px;
        height: 28px;
    }

    .box3 p {
        font-size: clamp(1rem, 4.5vw, 1.25rem);
        line-height: 1.5;
    }

    .box3 div {
        max-width: max-content;
    }

    /* ===================== */
    /* .box4: Text with Blur Background */
    /* ===================== */
    .box4 {
        height: auto;
        padding: 4rem 1.5rem 6rem 1.5rem;
    }

    .box4 .text-box {
        padding: 2.5rem 2rem;
        font-size: clamp(1rem, 5.4vw, 1.55rem);
        line-height: 1.5;
    }

    .box4 .box4-bg {
        height: auto;
        width: 60%;
        bottom: 0;
        top: auto;
    }

    /* ===================== */
    /* .box5: Cards with Icons */
    /* ===================== */
    .box5 {
        height: auto;
        padding: 3rem 1.5rem;
    }

    .box5 .title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
        margin-bottom: 2rem;
    }

    .box5 .box5-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 16px;
    }

    .box5 .box5-cards .card {
        height: auto;
        font-size: clamp(0.9375rem, 3.6vw, 1rem);
        line-height: 1.5;
    }

    .box5 .box5-cards p {
        font-size: clamp(1.125rem, 4.2vw, 1.25rem);
        line-height: 1.35;
    }

    /* ===================== */
    /* .box6: How It Works Steps */
    /* ===================== */
    .box6 {
        padding: 3rem 5rem;
    }

    .box6 .title {
        font-size: clamp(1.5rem, 5.8vw, 2rem);
        line-height: 1.25;
        margin-bottom: 2rem;
    }

    .box6 .steps {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1.6rem;
    }

    .box6 .step {
        text-align: center;
        position: relative;
    }

    .box6 .step-number {
        font-size: clamp(3rem, 25vw, 10rem);
        position: static;
    }

    .box6 .step-title {
        font-size: clamp(1rem, 4.2vw, 1.125rem);
        line-height: 1.4;
        width: 100% !important;
    }

    .box6 .step-desc {
        font-size: clamp(0.9375rem, 3.8vw, 1rem);
        line-height: 1.3;
    }

    .box6 .step-number::after {
        transform: rotate(90deg);
        width: 160px;
        top: calc(100% + 100px);
        left: calc(50% - 80px);
    }

    /* ===================== */
    /* .box7: Feature Cards (Image + Text) */
    /* ===================== */
    .box7 {
        height: auto;
        padding: 3rem 1.5rem;
    }

    .box7 .card-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .box7 .card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .box7 .card1 {
        margin-bottom: 3rem;
    }

    .box7 .card1 .card-title {
        font-size: clamp(1.5rem, 5.8vw, 2rem);
        line-height: 1.25;
    }

    .box7 .card img {
        height: auto;
    }

    .box7 .card1 .btn {
        font-size: clamp(0.875rem, 3.6vw, 1rem);
        line-height: 2.25rem;
    }

    .box7 .card1 .card-text {
        font-size: clamp(0.875rem, 3.6vw, 1rem);
        line-height: 1.6;
    }

    .box7 .card-content {
        font-size: clamp(0.9375rem, 3.8vw, 1rem);
        line-height: 1.6;
    }

    .box7 .card-body {
        font-size: clamp(0.875rem, 3.6vw, 1rem);
        line-height: 1.6;
    }

    /* ===================== */
    /* .box8: Quote Section */
    /* ===================== */
    .box8 {
        height: auto;
        padding: 5rem 1.5rem;
    }

    .box8 .bg-img {
        top: 0;
    }

    .box8 .punctuation {
        font-size: 20rem;
        top: -3.75rem;
    }

    .box8 .content {
        width: auto;
        width: 100%;
        /* margin: 0 1rem; */
        padding: 5rem 2rem 3rem 2rem;
        font-size: 1rem;
        line-height: 1.5;
        height: 40rem;
    }

    .box8 .title {
        font-size: clamp(1rem, 3.8vw, 1.125rem);
        line-height: 1.4;
        padding-left: 0;
    }

    /* ===================== */
    /* .box9: Hero CTA */
    /* ===================== */
    .box9 {
        height: auto;
        padding: 10rem 3rem 7rem 3rem;
        background-size: cover;
        background-position: center;
    }

    .box9 .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        max-width: none;
    }

    .box9 .hero-sub {
        font-size: 1.2rem;
        line-height: 1.35;
    }

    .box9 .hero-cta {
        width: 100%;
        max-width: 328px;
        line-height: 2.2rem;
        font-size: 1rem;
        margin: 2rem 0 3rem 0;
    }

    .box9 .text {
        font-size: 1.3rem;
    }

    /* ===================== */
    /* .box10: Footer */
    /* ===================== */
    .box10 .row {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }

    .box10 .row .title {
        font-size: clamp(1.125rem, 4.2vw, 1.25rem);
        line-height: 1.35;
        width: 50%;
    }

    .box10 .row .sub-title {
        font-size: clamp(1rem, 3.8vw, 1.125rem);
        line-height: 1.5;
        width: 55%;
        margin-top: 1rem;
    }

    .box10 .row span {
        font-size: 0.85rem;
        line-height: 1.6;
        padding-right: 0.6rem;
        margin-right: 0.6rem;
    }

    .pt-main .box10 .row span {
        font-size: 0.7rem;
        line-height: 1.4;
        padding-right: 0.3rem !important;
        margin-right: 0.3rem !important;
    }

    .box10 .buttom-text {
        font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
        margin: 2rem 0;
    }
}

/* =====================
   Legal Document Styles
   ===================== */
.wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 20px;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-header {
    background: linear-gradient(135deg, var(--blur-color) 0%, #002a5c 100%);
    color: white;
    padding: 40px 40px 30px;
    text-align: center;
    position: relative;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.legal-title {
    font-size: 32px;
    font-weight: var(--extra-bold-font-weight);
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.legal-meta {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 12px;
    font-weight: var(--regular-font-weight);
    position: relative;
    z-index: 1;
}

.legal-content {
    padding: 50px 40px;
    line-height: 1.8;
    color: #2d3748;
    font-size: 16px;
    white-space: pre-line;
}

.legal-section {
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--main-color);
    position: relative;
}

.legal-section:nth-child(even) {
    background: #ffffff;
    border-left-color: var(--blur-color);
}



.subsection {
    margin: 16px 0;
    padding-left: 20px;
    border-left: 2px solid #e2e8f0;
}


.contact-info {
    background: linear-gradient(135deg, var(--main-color) 0%, #ff6b35 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
    text-align: center;
}

.contact-email {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: var(--semi-bold-font-weight);
    display: inline-block;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Typography enhancements */
.legal-content strong {
    color: var(--blur-color);
    font-weight: var(--bold-font-weight);
}

.legal-content em {
    color: var(--main-color);
    font-style: normal;
    font-weight: var(--semi-bold-font-weight);
}

/* Safari 特定样式 - 更准确的检测方式 */
@supports (-webkit-backdrop-filter: blur(1px)) and (not (backdrop-filter: blur(1px))) {
    :root {
        /* 在 Safari 中使用更细的字体权重，因为 Safari 渲染字体更粗 */
        --semi-bold-font-weight: 500;
        --extra-bold-font-weight: 700;
        --bold-font-weight: 600;
        --black-font-weight: 800;
        --medium-font-weight: 450;
    }

    .box3 .checkward {
        width: 215px;
    }
}

/* Webkit 浏览器通用调整 */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    _::-webkit-full-page-media,
    _:future,
    :root .safari-only {
        /* Safari 专用样式 */
        --semi-bold-font-weight: 500;
        --extra-bold-font-weight: 700;
        --bold-font-weight: 600;
        --black-font-weight: 800;
    }
}

/* JavaScript 添加的 Safari 类名样式 */
.safari-browser {
    --semi-bold-font-weight: 500;
    --extra-bold-font-weight: 700;
    --bold-font-weight: 600;
    --black-font-weight: 800;
    --medium-font-weight: 450;
}

/* Safari 字体渲染优化 */
.safari-browser * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pt-main {
    .box6 .step:nth-child(2) .step-title {
        width: calc(100% + 80px);
    }

    .box7 .card1 .card-title {
        font-size: 48px;
        line-height: 63px;
        font-weight: var(--bold-font-weight);
        margin-top: 18px;
    }

    .box7 .card1 .card-text {
        margin-bottom: 23px;
        margin-top: 10px;
    }

    .box10 .row span {
        padding-right: 17px;
        margin-right: 17px;
    }
}