/* 海外主体注册服务页面专用样式 */

/* Hero 区域样式 */
.hero-section {
    padding: 160px 0 80px;
    text-align: left;
    margin-bottom: 80px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
    flex: 1;
}


.main-title {
    font-size: 90px;
    font-weight: 900;
    color: #272932;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 40px;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    }

.stat-icon img {
    width: 100%;
    height: 100%;
        object-fit: contain;
}

.stat-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #272932;
    margin-bottom: 5px;
    background: linear-gradient(142deg, #EE49FD 0%, #6157FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-desc {
    font-size: 14px;
    color: #666;
}

.btn-cta {
    padding: 12px 30px;
    font-size: 18px;
    margin-top: 20px;
}

/* 章节通用样式 */
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* 优势对比部分样式 */
.comparison-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    margin-bottom: 80px;
}

.comparison-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.comparison-card {
    flex: 1;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-card.traditional {
    background-color: #fff;
}

.comparison-card.lemft {
    background-color: #272932;
    color: #fff;
}

.comparison-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.titletext {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-card.lemft .comparison-title {
    background: linear-gradient(142deg, #EE49FD 0%, #6157FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-item {
    margin-bottom: 25px;
    position: relative;
    padding-left: 60px;
}

.icon-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.comparison-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.comparison-item p {
    font-size: 16px;
    line-height: 1.6;
    color: inherit;
    opacity: 0.8;
}

.comparison-card.lemft .comparison-item h3 {
    color: #fff;
}

/* 注册流程部分样式 */
.process-section {
    padding: 80px 0;
    margin-bottom: 80px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #272932;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background-color: #f8f8f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    position: relative;
}

.process-connector {
    height: 3px;
    background: white;
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 50px;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(142deg, #EE49FD 0%, #6157FF 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-icon {
    margin-bottom: 15px;
}

.step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #272932;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* 客户评价部分样式优化 */
.testimonial-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #272932;
}

.testimonial-slider {
    position: relative;
    margin: 60px auto 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.process-testimonial {
    flex: 0 0 100%;
    background-color: #fff;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    min-height: 200px;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    position: relative;
}

.testimonial-icon {
    position: absolute;
    top: -15px;
    right: 0;
    width: 30px;
    height: 30px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.6;
    color: #272932;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #272932;
}

.testimonial-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #ccc;
}

.dot.active {
    background-color: #6157FF;
    transform: scale(1.2);
}

.testimonial-arrows {
    display: flex;
    gap: 15px;
}

.arrow-prev,
.arrow-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.arrow-prev:hover,
.arrow-next:hover {
    background: linear-gradient(142deg, #EE49FD 0%, #6157FF 100%);
}

.arrow-prev:hover i,
.arrow-next:hover i {
    color: #fff;
}

.arrow-prev i,
.arrow-next i {
    width: 20px;
    height: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .process-testimonial {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .testimonial-icon {
        position: static;
        margin: 0 auto 10px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author {
        font-size: 14px;
    }
}

/* 价格方案部分样式 */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    margin-bottom: 0;
}

.pricing-tags {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.pricing-tag-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-tag-item img {
    width: 24px;
    height: 24px;
}

.pricing-tag-item span {
    font-size: 16px;
    font-weight: 600;
    color: #272932;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.pricing-card {
    flex: 1;
    max-width: 500px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(142deg, #EE49FD 0%, #6157FF 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

.pricing-header {
    padding: 30px;
    background-color: #272932;
    color: white;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-tag {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(142deg, #EE49FD 0%, #6157FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-content {
    padding: 30px;
    flex: 1;
}

.pricing-detail {
    margin-bottom: 20px;
}

.pricing-detail h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #272932;
}

.pricing-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.pricing-detail ul {
    padding-left: 20px;
    margin-top: 10px;
}

.pricing-detail ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

.pricing-card .btn {
    margin: 0 30px 30px;
}

.pricing-more {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.more-regions h3 {
    font-size: 18px;
    font-weight: 600;
    color: #272932;
    margin-bottom: 20px;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.region-item {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f0f0f0;
    color: #272932;
    border-radius: 30px;
    font-size: 14px;
}

/* 常见问题部分样式 */
.faq-section {
    padding: 80px 0;
    margin-bottom: 0;
}

.faq-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.faq-card {
    background-color: #f8f8f8;
    border-radius: 16px;
    height: 230px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote {
    position: absolute;
    top: 20px;
    left: 25px;
}

.quote img {
    width: 28px;
    height: auto;
    opacity: 0.2;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-top: 30px;
    color: #272932;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

.faq-more p {
    font-size: 18px;
    color: #272932;
    margin-bottom: 20px;
}

/* 安全保障部分样式 */
.security-section {
    background-color: #f8f8f8;
    margin-bottom: 0;
    padding-bottom: 100px;
    padding-top: 120px;
}

.security-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    }

.security-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.security-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.security-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #272932;
    margin-bottom: 15px;
}

.security-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* CTA部分样式 */
.cta-section {
    padding: 100px 0;
    background: #f8f8f8;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
}

.cta-content {
    max-width: 100%;
    margin: 0 auto;
    color: #272932;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #272932;
    background: none;
    -webkit-text-fill-color: #272932;
    text-shadow: none;
}

.cta-section p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(39, 41, 50, 0.05);
    padding: 12px 20px;
    border-radius: 50px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-feature:hover {
    transform: translateY(-3px);
    background: rgba(39, 41, 50, 0.1);
}

.cta-feature i {
    color: #6157FF;
}

.cta-feature span {
    color: #272932;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: linear-gradient(142deg, #EE49FD 0%, #6157FF 100%);
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    }

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(97, 87, 255, 0.4);
}

.cta-contact {
    margin-top: 30px;
}

.cta-contact p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-method:hover {
    opacity: 0.8;
}

.contact-method img {
    width: 20px;
    height: 20px;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .comparison-wrapper {
        flex-direction: column;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 25px;
    }
    
    .process-step {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .process-connector {
        width: 3px;
        height: 30px;
        max-width: none;
    }
    
    .process-connector::after {
        right: 50%;
        top: auto;
        transform: translateX(50%);
        bottom: -5px;
    }
    
    .security-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .security-card {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .process-testimonial {
        flex-direction: column;
        padding: 20px;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .testimonial-icon {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 10px;
    }
    
    .testimonial-avatar {
        margin: 0 auto 15px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .faq-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .pricing-tags {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .region-list {
        flex-direction: column;
        align-items: center;
    }
}

/* 淡入动画效果 */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 为不同部分设置不同的延迟，创造级联效果 */
.comparison-card:nth-child(1) {
    transition-delay: 0.1s;
}

.comparison-card:nth-child(2) {
    transition-delay: 0.3s;
}

.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.2s;
}

.process-step:nth-child(3) {
    transition-delay: 0.3s;
}

.process-step:nth-child(4) {
    transition-delay: 0.4s;
}

.pricing-card:nth-child(1) {
    transition-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    transition-delay: 0.3s;
}

.faq-card:nth-child(1) {
    transition-delay: 0.1s;
}

.faq-card:nth-child(2) {
    transition-delay: 0.2s;
}

.faq-card:nth-child(3) {
    transition-delay: 0.3s;
}

.faq-card:nth-child(4) {
    transition-delay: 0.4s;
}

.security-card:nth-child(1) {
    transition-delay: 0.1s;
}

.security-card:nth-child(2) {
    transition-delay: 0.2s;
}

.security-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* 移动设备和平板设备的优化 */
@media (max-width: 1024px) {
    .fade-in-section {
        transform: translateY(30px); /* 减小移动距离 */
        transition: opacity 0.6s ease, transform 0.6s ease; /* 加快动画速度 */
    }
    
    /* 减少移动设备上的延迟时间 */
    .comparison-card:nth-child(n),
    .process-step:nth-child(n),
    .pricing-card:nth-child(n),
    .faq-card:nth-child(n),
    .security-card:nth-child(n) {
        transition-delay: 0.1s; /* 所有元素使用相同的较短延迟 */
    }
}

/* 专门针对手机设备的优化 */
@media (max-width: 768px) {
    .fade-in-section {
        transform: translateY(20px); /* 进一步减小移动距离 */
        transition: opacity 0.5s ease, transform 0.5s ease; /* 进一步加快动画速度 */
    }
    
    /* 移动设备上禁用will-change以提高性能 */
    .mobile-device .fade-in-section {
        will-change: auto;
    }
} 