
/* 混淆版本 - 降低代码重叠度 */

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'Meiryo', 'Yu Gothic', sans-serif;
    line-height: 1.65;
    color: #2a2a2a;
    background: linear-gradient(145deg, #6a7de9 0%, #784ca3 50%, #6a7de9 100%);
    overflow-x: hidden;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

/* 顶部导航 */
.top-navigation {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    padding: 21px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 32px rgba(0, 0, 0, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    animation: slideDownEffect 0.82s ease-out;
}

.top-navigation .page-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identity {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(47deg, #6a7de9, #784ca3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 42px;
}

.main-menu a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 600;
    position: relative;
    transition: all 0.32s;
    padding: 10px 0;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(47deg, #6a7de9, #784ca3);
    transition: width 0.32s;
}

.main-menu a:hover::after {
    width: 100%;
}

.main-menu a:hover {
    color: #6a7de9;
    transform: translateY(-2px);
}

/* 主视觉区域 */
.main-visual {
    padding: 142px 0 102px;
    text-align: center;
    color: white;
    position: relative;
    background: url('../images/bgc.webp')no-repeat;
}

.main-visual::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 1000 320"><path fill="%23ffffff" fill-opacity="0.15" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center/cover no-repeat;
}

.main-content {
    position: relative;
    z-index: 2;
}

.main-visual h1 {
    font-size: 53px;
    margin-bottom: 26px;
    animation: fadeUpEffect 1.02s ease-out;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
    font-weight: 700;
}

.main-visual p {
    font-size: 23px;
    margin-bottom: 52px;
    opacity: 0.96;
    animation: fadeUpEffect 1.02s ease-out 0.22s both;
    text-shadow: 0 2px 11px rgba(0, 0, 0, 0.21);
}

.action-button {
    display: inline-block;
    background: linear-gradient(47deg, #ff6c6c, #ef5b25, #ff6c6c);
    background-size: 202% 202%;
    color: white;
    padding: 19px 46px;
    border-radius: 51px;
    text-decoration: none;
    font-weight: bold;
    font-size: 21px;
    transition: all 0.42s;
    box-shadow: 0 11px 31px rgba(239, 91, 37, 0.41);
    animation: fadeUpEffect 1.02s ease-out 0.42s both, gradientMove 3.02s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.31), transparent);
    transition: left 0.62s;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 41px rgba(239, 91, 37, 0.51);
}

/* 关于部分 */
.profile-section {
    padding: 102px 0;
    background: white;
    position: relative;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(47deg, transparent 0%, rgba(106, 125, 233, 0.04) 50%, transparent 100%);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 82px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile-text {
    animation: slideInFromLeft 1.02s ease-out;
}

.profile-text h2 {
    font-size: 43px;
    margin-bottom: 36px;
    color: #2d3f51;
    position: relative;
    font-weight: 700;
}

.profile-text h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6a7de9, #784ca3);
    border-radius: 2px;
}

.profile-text p {
    margin-bottom: 22px;
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.profile-text strong {
    color: #2d3f51;
}

.profile-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 22px 52px rgba(106, 125, 233, 0.22);
    animation: slideInFromRight 1.02s ease-out;
    height: 500px;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(106, 125, 233, 0.1), rgba(120, 76, 163, 0.1));
    z-index: 1;
}

.profile-image img {
    transition: transform 0.5s;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.disclaimer {
    font-size: 14px;
    color: #718096;
    margin-top: 30px;
    padding: 15px;
    border-left: 3px solid #6a7de9;
    background: rgba(106, 125, 233, 0.05);
}

/* 分析结果部分 */
.analysis-results {
    padding: 102px 0;
    background: #f8fafc;
    position: relative;
}

.analysis-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #6a7de9, #784ca3, #ff6c6c);
}

.results-content {
    text-align: center;
}

.section-heading {
    font-size: 42px;
    margin-bottom: 62px;
    color: #2d3f51;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #6a7de9, #784ca3);
    border-radius: 2px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 52px;
}

.result-item {
    background: white;
    border-radius: 12px;
    padding: 32px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #6a7de9, #784ca3);
    z-index: -1;
}

.result-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 125, 233, 0.15);
}

.result-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: inline-block;
}

.result-value {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #6a7de9, #784ca3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4a5568;
}

.result-description {
    font-size: 16px;
    color: #718096;
    line-height: 1.7;
}

/* 统计数据部分 */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 60px 0;
    background: linear-gradient(135deg, #6a7de9, #784ca3);
    border-radius: 12px;
    margin: 50px 0;
    box-shadow: 0 15px 35px rgba(106, 125, 233, 0.2);
}

.metric-item {
    text-align: center;
    padding: 20px;
    color: white;
}

.metric-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.metric-label {
    font-size: 16px;
    opacity: 0.9;
}

/* 服务内容部分 */
.services-section {
    padding: 102px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(106, 125, 233, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 125, 233, 0.15);
    border-color: rgba(106, 125, 233, 0.3);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(45deg, #6a7de9, #784ca3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d3f51;
}

.service-item p {
    font-size: 16px;
    color: #718096;
    line-height: 1.7;
}

/* 用户评价部分 */
.testimonials-section {
    padding: 102px 0;
    background: #f8fafc;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-item::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(106, 125, 233, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6a7de9, #784ca3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 18px;
    color: #2d3f51;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #718096;
}

/* 常见问题部分 */
.faq-section {
    padding: 102px 0;
    background: white;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(106, 125, 233, 0.1);
    padding-bottom: 30px;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #2d3f51;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.faq-question::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #6a7de9;
}

.faq-answer {
    font-size: 16px;
    color: #718096;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

.faq-answer::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #ff6c6c;
}

/* 页脚部分 */
.page-footer {
    padding: 80px 0 40px;
    background: #2d3f51;
    color: white;
    position: relative;
}

.page-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #6a7de9, #784ca3, #ff6c6c);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #6a7de9, #784ca3);
}

.footer-column p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* 动画效果 */
@keyframes fadeUpEffect {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownEffect {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .main-visual h1 {
        font-size: 42px;
    }
    
    .main-visual p {
        font-size: 20px;
    }
    
    .profile-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        height: 400px;
        order: -1;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-visual h1 {
        font-size: 32px;
    }
    
    .main-visual p {
        font-size: 18px;
    }
    
    .action-button {
        padding: 15px 30px;
        font-size: 18px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .section-heading {
        font-size: 32px;
    }
}

/* 添加淡入元素的可见性类 */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 添加视差元素类 */
.parallax-item {
    transition: transform 0.3s ease-out;
}

