/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    color: #ffffff;
    min-width: 1400px;
}

/* 主容器 */
.container {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
    justify-content: space-between;
    padding: 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

/* 左侧内容区域 */
.left-content {
    flex: 1;
    max-width: 800px;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
    gap: 10px;
}

/* 品牌头部 */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;    
    gap: 15px;
}

.atom-icon {
    width: 64px;
    height: 64px;
}

.atom-icon svg {
    width: 100%;
    height: 100%;
}

.brand-title {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* 主标题 */
.main-content {
    display: flex;
    flex-direction: column;
}

.main-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.5;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* 副标题 */
.subtitle {
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.4;
}

/* 用户统计区域 */
.user-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: fit-content;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    background: #ffffff;
}

.avatar:first-child {
    margin-left: 0;
}

.stats-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-number {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.stats-description {
    font-size: 11px;
    color: #ffffff;
    opacity: 0.7;
}

/* 右侧内容区域 */
.right-content {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    padding: 60px 0 60px 40px;
}

/* 手机外观 */
.mobile-mockup {
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.phone-image {
    width: 320px;
    height: auto;
    display: block;
}


/* 响应式设计 */
@media (max-width: 1400px) {
    .container {
        padding: 20px 40px;
        gap: 40px;
        max-width: 1200px;
    }
    
    .main-title {
        font-size: 54px;
    }
    
    .phone-image {
        width: 280px;
    }
    
}

@media (max-width: 1200px) {
    .container {
        padding: 20px 30px;
        gap: 30px;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .phone-image {
        width: 260px;
    }
    
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 40px;
    }
    
    .left-content {
        max-width: none;
        width: 100%;
        height: auto;
        justify-content: flex-start;
        gap: 25px;
        padding: 20px 0;
    }
    
    .brand-header {
        gap: 12px;
    }
    
    .atom-icon {
        width: 50px;
        height: 50px;
    }
    
    .brand-title {
        font-size: 20px;
    }
    
    .main-content {
        gap: 15px;
    }
    
    .main-title {
        font-size: 42px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .right-content {
        padding-left: 0;
    }
    
    .phone-image {
        width: 240px;
    }
    
    .user-stats {
        justify-content: center;
    }
    
}

/* Video Section */
.video-section {
    position: relative;
    height: 800px;
    width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* 第三个模块 - 数据分析区域 */
.data-analysis-section {
    min-height: 100vh;
    padding: 80px 0;
    color: #ffffff;
}

.data-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* 模块标题 */
.data-header {
    margin-bottom:40px;
}

.data-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.vega-green {
    background: linear-gradient(66.04deg, #87FF77 6.46%, #DFFF51 96.95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 主要内容区域：左右结构 */
.data-main-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

/* 左侧：手机展示 */
.data-left {
    flex: 0 0 auto;
}

.data-phone-image {
    width: 280px;
    height: auto;
    display: block;
}

/* 右侧：上下结构 */
.data-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 右侧上部分：左文右图 */
.data-right-upper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 描述文字区域（在右侧上部分的左边） */
.data-center {
    flex: 1;
    max-width: 500px;
}

.data-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.data-description:last-child {
    margin-bottom: 0;
}

.btc-card {
    width: 280px;
    flex-shrink: 0;
}

.btc-card-image {
    width: 100%;
    height: auto;
    display: block;
}

/* 右侧下部分：统计数据 */
.data-stats {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.stat-card {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #70B900;
    margin-bottom: 16px;
    line-height: 1;
}

.stat-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 280px;
    margin: 0 auto;
}

/* 数据分析模块响应式设计 */
@media (max-width: 1200px) {
    .data-container {
        padding: 0 40px;
    }
    
    .data-main-content {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .data-right {
        gap: 40px;
    }
    
    .data-right-upper {
        gap: 30px;
    }
    
    .data-title {
        font-size: 42px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .data-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .data-main-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .data-right {
        gap: 40px;
    }
    
    .data-right-upper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .data-center {
        max-width: none;
    }
    
    .data-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .data-title {
        font-size: 32px;
    }
    
    .btc-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

/* 第四个模块 - VEGA推荐分析区域 */
.vega-recommendation-section {
    min-height: 100vh;
    padding: 80px 0;
    color: #ffffff;
    position: relative;
}

.recommendation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* 推荐模块标题 */
.recommendation-header {
    text-align: center;
}

.recommendation-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

/* 主要内容区域：三列布局 */
.recommendation-main-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    min-height: 700px;
}

/* 左侧：机器人图片区域 */
.recommendation-left {
    flex: 0 0 360px;
    position: relative;
    height: 800px;
    display: flex;
    flex-direction: column;
    transform: translateY(-28px);
}

.robot-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.robot-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.robot-intro-card {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 300px;
    z-index: 3;
}

.robot-intro-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.robot-intro-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.you-text {
    background: linear-gradient(66.04deg, #87FF77 6.46%, #DFFF51 96.95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* 中间：功能卡片区域 */
.recommendation-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
    margin-top: 80px;
}

.feature-card {
    background: #36402c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    min-height: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 4px;
}

.feature-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.feature-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* 右侧：手机界面 */
.recommendation-right {
    flex: 0 0 320px;
    margin-top: 80px;
}

.recommendation-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    width: 320px;
    height: 660px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}


/* 推荐模块响应式设计 */
@media (max-width: 1200px) {
    .recommendation-container {
        padding: 0 40px;
    }
    
    .recommendation-main-content {
        gap: 40px;
        min-height: 600px;
    }
    
    .recommendation-left {
        flex: 0 0 260px;
        height: 580px;
        transform: translateY(-50px);
    }
    
    .robot-intro-card {
        width: 260px;
        bottom: 40px;
    }
    
    .recommendation-title {
        font-size: 42px;
    }
    
    .phone-image {
        width: 280px;
        height: 580px;
    }
    
    .feature-card {
        gap: 16px;
        padding: 24px;
    }
    
    .feature-icon img {
        width: 44px;
        height: 44px;
    }
    
    .feature-content h4 {
        font-size: 19px;
    }
    
    .feature-content {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .recommendation-main-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .recommendation-left {
        flex: none;
        height: 480px;
        margin: 0 auto;
        transform: translateY(-30px);
    }
    
    .recommendation-center {
        padding: 0;
        height: auto;
    }
    
    .feature-card {
        flex: none;
        gap: 14px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    
    .feature-content h4 {
        font-size: 18px;
    }
    
    .feature-content {
        gap: 8px;
    }
    
    .recommendation-right {
        flex: none;
        margin: 0 auto;
    }
    
    .recommendation-title {
        font-size: 32px;
    }
    
    .robot-intro-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        width: 100%;
        max-width: 300px;
    }
    
    .phone-image {
        width: 240px;
        height: 480px;
    }
}

/* 第五个模块 - 资本分析区域 */
.capital-analysis-section {
    min-height: 100vh;
    padding: 80px 0;
    color: #ffffff;
}

.capital-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* 资本分析模块标题 */
.capital-header {
    text-align: center;
    margin-bottom: 80px;
}

.capital-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

/* 主要内容区域：左右布局 */
.capital-main-content {
    display: flex;
    align-items: flex-start;
}

/* 左侧：手机图片 */
.capital-left {
    flex: 0 0 400px;
}

.capital-phone-image {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* 右侧：上下结构 */
.capital-right {
    padding-top: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 右侧上部分：左文右图 */
.capital-upper {
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

/* 描述文字区域 */
.capital-description-area {
    flex: 1;
}

.capital-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* 最佳购买点卡片区域 */
.capital-card-area {
    flex: 0 0 300px;
}

.buying-point-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}


/* 对比网格 */
.comparison-grid {
    margin-top: 0;
}

.comparison-row {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.comparison-card {
    flex: 1;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    height: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
}

.comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.comparison-card.traditional {
    border-color: rgba(255, 255, 255, 0.15);
}


.comparison-card {
    background-size: cover;
    background-position: center;
}

.card-1 { background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/Rectangle_34624991.png'); }
.card-2 { background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/Rectangle_34624992.png'); }
.card-3 { background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/Rectangle_34624993.png'); }
.card-4 { background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/Rectangle_34624994.png'); }
.card-5 { background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/Rectangle_34624995.png'); }
.card-6 { background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/Rectangle_34624997.png'); }
.card-7 { background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/Rectangle_34624996.png'); }
.card-8 { background-image: url('https://starpronto.oss-us-east-1.aliyuncs.com/VEGA/images/Rectangle_34624998.png'); }


.comparison-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.comparison-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.comparison-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.vs-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(66.04deg, #87FF77 6.46%, #DFFF51 96.95%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(112, 185, 0, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.vs-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 第一个vs图标的位置 */
.comparison-row .vs-icon:nth-of-type(2) {
    left: calc(25% - 24px);
}

/* 第二个vs图标的位置 */
.comparison-row .vs-icon:nth-of-type(4) {
    left: calc(50% - 24px);
}

/* 第三个vs图标的位置 */
.comparison-row .vs-icon:nth-of-type(6) {
    left: calc(75% - 24px);
}

/* 资本分析模块响应式设计 */
@media (max-width: 1200px) {
    .capital-container {
        padding: 0 40px;
    }
    
    .capital-main-content {
        gap: 40px;
    }
    
    .capital-left {
        flex: 0 0 350px;
    }
    
    .capital-right {
        gap: 40px;
    }
    
    .capital-upper {
        gap: 30px;
    }
    
    .capital-card-area {
        flex: 0 0 260px;
    }
    
    .buying-point-image {
        max-width: 260px;
    }
    
    .capital-title {
        font-size: 42px;
    }
    
    .capital-description {
        font-size: 16px;
    }
    
    .comparison-row {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .vs-icon {
        width: 40px;
        height: 40px;
    }
    
    .vs-icon img {
        width: 20px;
        height: 20px;
    }
    
    .comparison-row .vs-icon:nth-of-type(2) {
        left: calc(25% - 20px);
    }
    
    .comparison-row .vs-icon:nth-of-type(4) {
        left: calc(50% - 20px);
    }
    
    .comparison-row .vs-icon:nth-of-type(6) {
        left: calc(75% - 20px);
    }
}

@media (max-width: 768px) {
    .capital-main-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .capital-left {
        flex: none;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .capital-right {
        gap: 30px;
    }
    
    .capital-upper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .capital-card-area {
        flex: none;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .buying-point-image {
        max-width: 320px;
    }
    
    .capital-title {
        font-size: 32px;
    }
    
    .comparison-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-card {
        max-width: none;
        margin: 0 auto;
    }
    
    .vs-icon {
        position: relative;
        transform: rotate(90deg);
        left: auto;
        top: auto;
        margin: -24px auto;
        z-index: 10;
        width: 36px;
        height: 36px;
    }
    
    .vs-icon img {
        width: 18px;
        height: 18px;
    }
    
    .comparison-row .vs-icon:nth-of-type(2),
    .comparison-row .vs-icon:nth-of-type(4),
    .comparison-row .vs-icon:nth-of-type(6) {
        left: auto;
        position: relative;
    }
}

/* 第六个模块 - 客户评价区域 */
.testimonials-section {
    padding: 80px 0;
    color: #ffffff;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* 评价模块标题 */
.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.testimonials-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    max-width: 900px;
}

/* 评价卡片网格 */
.testimonials-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* 单个评价项目容器 */
.testimonial-item {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 评价卡片（仅包含文字内容） */
.testimonial-card {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    flex: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* 引号图标 */
.quote-icon {
    position: absolute;
    top: -27px;
    right: 7px;
}

.quote-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* 评价文字 */
.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* 客户信息 */
.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-details {
    flex: 1;
}

.customer-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-family: 'Pacifico', cursive;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #70B900;
    font-size: 16px;
}

/* 评价模块响应式设计 */
@media (max-width: 1200px) {
    .testimonials-container {
        padding: 0 40px;
    }
    
    .testimonials-grid {
        gap: 30px;
    }
    
    .testimonials-title {
        font-size: 42px;
    }
    
    .testimonials-description {
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 28px;
    }
    
    .quote-icon {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonial-card {
        max-width: none;
        margin: 0 auto;
        padding: 24px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .quote-icon {
        font-size: 48px;
        top: 16px;
        right: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .customer-name {
        font-size: 16px;
        font-family: 'Pacifico', cursive;
    }
    
    .star {
        font-size: 14px;
    }
}

/* 第七个模块 - 最终模块 */
.final-section {
    color: #ffffff;
}

.final-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* 主要内容区域：左右布局 */
.final-main-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* 左侧：图片 */
.final-left {
    flex: 0 0 500px;
}

.final-left-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* 右侧：上文下图 */
.final-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

/* 右侧上部分：文字内容 */
.final-text-content {
    text-align: left;
}

.final-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* App store buttons */
.app-store-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.app-store-button {
    height: 50px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-store-button:hover {
    transform: scale(1.05);
}


/* 最终模块响应式设计 */
@media (max-width: 1200px) {
    .final-container {
        padding: 0 40px;
    }
    
    .final-main-content {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .final-left {
        flex: 0 0 400px;
    }
    
    .final-right {
        gap: 30px;
    }
    
    .final-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .final-main-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .final-left {
        flex: none;
        max-width: 100%;
    }
    
    .final-right {
        gap: 30px;
        align-items: center;
    }
    
    .final-text-content {
        text-align: center;
    }
    
    .final-title {
        font-size: 28px;
    }

    .app-store-buttons {
        justify-content: center;
    }
}

/* Footer */
.site-footer {
    padding: 40px 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 20px;
    }

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