/* APP下載板塊樣式 */
.app-download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(208, 13, 9, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(208, 13, 9, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(208, 13, 9, 0.1);
    border: 1px solid rgba(208, 13, 9, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #D00D09;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.app-badge span {
    font-size: 13px;
    color: #D00D09;
    font-weight: 600;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(208, 13, 9, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(208, 13, 9, 0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.app-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(208, 13, 9, 0.08), rgba(208, 13, 9, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(208, 13, 9, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-features-list .feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #D00D09, #ff4757);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.app-features-list .feature-item:hover {
    background: linear-gradient(135deg, rgba(208, 13, 9, 0.12), rgba(208, 13, 9, 0.06));
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 13, 9, 0.15);
    border-color: rgba(208, 13, 9, 0.25);
}

.app-features-list .feature-item:hover::before {
    transform: scaleY(1);
}

.app-features-list .feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #D00D09, #ff4757);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(208, 13, 9, 0.3);
}

.app-features-list .feature-item span {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.app-download-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-info {
    flex: 1;
    max-width: 600px;
}

.app-title {
    font-size: 48px;
    font-weight: bold;
    color: #D00D09;
    margin-bottom: 10px;
    line-height: 1.2;
}

.app-subtitle {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}

.app-description {
    margin-bottom: 40px;
}

.app-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.highlight-text {
    color: #D00D09 !important;
    font-weight: 600;
}

.download-section {
    margin-top: 40px;
}

.download-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.download-btn {
    display: block;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.download-btn img {
    height: 50px;
    width: auto;
}

.device-note {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

.app-preview {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.app-swiper {
    width: 100%;
    height: 600px;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 550px;
    margin: 0 auto;
    background: linear-gradient(135deg, #D4A574, #C19660);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.phone-mockup img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    background: #fff;
}

.phone-feature {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.phone-feature p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.app-swiper .swiper-pagination {
    bottom: 10px;
}

.app-swiper .swiper-pagination-bullet {
    background: #D00D09;
    opacity: 0.3;
}

.app-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* 添加Swiper導航按鈕樣式 */
.app-swiper .swiper-button-next,
.app-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(208, 13, 9, 0.8);
    border-radius: 50%;
    color: #fff;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.app-swiper .swiper-button-next:after,
.app-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.app-swiper .swiper-button-next:hover,
.app-swiper .swiper-button-prev:hover {
    background-color: rgba(208, 13, 9, 1);
    transform: scale(1.1);
}

.app-swiper .swiper-button-next {
    right: 5px;
}

.app-swiper .swiper-button-prev {
    left: 5px;
}

/* 平板適配 */
@media (max-width: 1024px) {
    .app-download-content {
        gap: 40px;
        padding: 0 30px;
    }

    .app-title {
        font-size: 40px;
    }

    .app-subtitle {
        font-size: 20px;
    }

    .phone-mockup {
        width: 250px;
        height: 450px;
    }

    .app-swiper {
        height: 500px;
    }

    /* 平板和手機端隱藏導航按鈕 */
    .app-swiper .swiper-button-next,
    .app-swiper .swiper-button-prev {
        display: none;
    }
}

/* 手機適配 */
@media (max-width: 768px) {
    .app-download-section {
        padding: 60px 0;
    }

    .app-download-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .app-info {
        text-align: center;
        max-width: 100%;
    }

    .app-title {
        font-size: 36px;
    }

    .app-subtitle {
        font-size: 18px;
    }

    .app-description p {
        font-size: 15px;
        text-align: left;
    }

    .download-buttons {
        justify-content: center;
    }

    .app-preview {
        max-width: 100%;
    }

    .phone-mockup {
        width: 280px;
        height: 500px;
    }

    .app-swiper {
        height: 550px;
    }
}

@media (max-width: 480px) {
    .app-download-section {
        padding: 40px 0;
        padding-top: 20px;
    }

    .app-title {
        font-size: 28px;
    }

    .app-subtitle {
        font-size: 16px;
    }

    .app-description p {
        font-size: 14px;
    }

    .download-buttons {
        align-items: center;
    }

    .download-btn img {
        height: 40px;
    }

    .phone-mockup {
        width: 250px;
        height: 450px;
    }

    .app-swiper {
        height: 500px;
    }

    .phone-feature {
        padding: 10px;
    }

    .phone-feature p {
        font-size: 12px;
    }
}

/* APP下載板塊樣式結束 */


.phone-mockup {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* 社區板塊樣式 */
.community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.community-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D00D09" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23D00D09" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.community-content {
    position: relative;
    z-index: 1;
}

.community-header {
    text-align: center;
    margin-bottom: 60px;
}

.community-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.community-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(208, 13, 9, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: solid 2px #f0f0f0;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D00D09, #ff4757);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(208, 13, 9, 0.18);
    border-color: rgba(208, 13, 9, 0.3);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: solid 2px #ccc;
    font-style: normal !important;
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
    font-style: normal !important;
}

/* 圖標樣式 */
.icon-users::before {
    content: '👥';
}

.icon-download::before {
    content: '📱';
}

.icon-chart::before {
    content: '💻';
}

.icon-trophy::before {
    content: '💡';
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    display: inline-block;
    font-style: normal;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    margin-top: 10px;
    font-weight: 500;
}

.community-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(208, 13, 9, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(208, 13, 9, 0.15);
    transform: scale(1.05);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 14px;
    color: #fff;
}

.icon-platform::before {
    content: '🏆';
}

.icon-star::before {
    content: '⭐';
}

.icon-growth::before {
    content: '📈';
}

.feature-text {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

/* 平台優勢板塊樣式 */
.platform-advantages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(208, 13, 9, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(208, 13, 9, 0.2);
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    font-size: 14px;
    color: #D00D09;
    font-weight: 600;
}

.features-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.features-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.advantages-list {
    /* max-width: 800px; */
    margin: 0 auto;
    /* display: flex; */
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 0;
    /* border-bottom: 1px solid #e9ecef; */
    box-shadow: 0 0px 12px rgba(208, 13, 9, 0.1);
    border-radius: 10px;
    padding: 25px;

}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #D00D09;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.advantage-number img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.advantage-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(208, 13, 9, 0.05) 0%, rgba(255, 71, 87, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(208, 13, 9, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 30px 20px;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D00D09, #ff4757);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(208, 13, 9, 0.3);
    transition: all 0.3s ease;
}

.advantage-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(208, 13, 9, 0.4);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2.5;
}

.card-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.card-content {
    padding: 0 30px 30px;
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 2px 4px rgba(208, 13, 9, 0.18);
    border-color: rgba(208, 13, 9, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D00D09, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(208, 13, 9, 0.3);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #D00D09, #ff4757);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: #ffffff;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
    font-style: normal;
}

.feature-icon svg {
    width: 38px;
    height: 38px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.card-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.5;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #D00D09, #ff4757);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(208, 13, 9, 0.3);
}

.feature-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D00D09;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #ff4757;
    gap: 12px;
}

/* 平板適配 */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-title {
        font-size: 36px;
    }
}

/* 手機適配 */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-header {
        margin-bottom: 60px;
    }

    .features-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .features-description {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 28px;
    }

    .feature-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }

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

    .features-title {
        font-size: 28px;
    }

    .features-description {
        font-size: 14px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 24px;
    }

    .feature-title {
        font-size: 20px;
    }
}

/* 產品特色板塊 */
.product-highlights-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.product-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(208, 13, 9, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(208, 13, 9, 0.1), rgba(208, 13, 9, 0.15));
    border: 1px solid rgba(208, 13, 9, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.badge-icon {
    font-size: 18px;
}

@keyframes bounce {

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

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

.badge-text {
    font-size: 14px;
    color: #D00D09;
    font-weight: 600;
}

.badge-text.special-text {
    color: #fff;
}

.section-header .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #D00D09 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin: 0 0 40px 0;
}

/* 簡潔統計展示樣式 */
.stats-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(208, 13, 9, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(208, 13, 9, 0.1);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(208, 13, 9, 0.3), transparent);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #D00D09;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(208, 13, 9, 0.1);
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.highlight-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(208, 13, 9, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(208, 13, 9, 0.1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(208, 13, 9, 0.15);
    border-color: #D00D09;
}

.card-image {
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s ease;
}

.highlight-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}


.card-features li {
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    padding-left: 30px;
}

.feature-check-icon {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #D00D09, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(208, 13, 9, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* 圖文板塊 */
.image-text-section {
    padding: 80px 0;
    background: #ffffff;
}

.image-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
}


.text-descriptions p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-content {
    position: relative;
    overflow: hidden;
}

.image-swiper {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.phone-mockup-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
}

.phone-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-pagination {
    bottom: 20px !important;
}

.image-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.image-pagination .swiper-pagination-bullet-active {
    background: #D00D09;
}


@media (min-width: 768px) {
    .image-text-section.ods .image-text-content {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "image text";
    }

    .image-text-section.ods .image-content {
        grid-area: image;
    }

    .image-text-section.ods .text-content {
        grid-area: text;
    }
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .image-text-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-title {
        font-size: 28px;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .image-text-section {
        padding: 60px 0;
    }

    .image-text-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-content .section-title {
        font-size: 28px;
        text-align: center;
    }

    .text-descriptions {
        text-align: center;
    }

    .image-swiper {
        height: 500px;
    }

    .phone-mockup-container {
        padding: 20px;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 567px) {
    .features-section {
        padding: 40px 0;
    }

    .features-title {
        font-size: 24px;
    }

    .features-description {
        font-size: 14px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-list li {
        font-size: 14px;
    }

    .image-text-section {
        padding: 40px 0;
    }

    .text-content .section-title {
        font-size: 24px;
    }

    .text-descriptions p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .image-swiper {
        height: 400px;
    }
}

/* 產品特色板塊響應式 */
@media (max-width: 1024px) {
    .product-highlights-section {
        padding: 80px 0;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-header .section-title {
        font-size: 40px;
    }

    .stats-showcase {
        gap: 30px;
        padding: 20px 25px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .product-highlights-section {
        padding: 60px 0;
    }

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

    .section-header .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .stats-showcase {
        gap: 20px;
        padding: 20px;
        flex-wrap: wrap;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* 平台優勢板塊平板響應式 */
    .advantage-item {
        gap: 25px;
        padding: 30px 15px;
    }

    .advantage-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .advantage-title {
        font-size: 22px;
    }

    .advantage-description {
        font-size: 15px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-image {
        height: 240px;
    }

    .card-content {
        padding: 25px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-features li {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .app-features-list {
        margin-bottom: 25px;
    }

    .app-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .platform-advantages-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .product-highlights-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .stats-showcase {
        gap: 15px;
        padding: 15px;
        margin-top: 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 14px;
    }

    .highlights-grid {
        gap: 25px;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .card-features li {
        font-size: 15px;
        padding-left: 28px;
        margin-bottom: 8px;
    }

    .feature-check-icon {
        width: 16px;
        height: 16px;
    }

    /* 平台優勢板塊手機響應式 */
    .advantage-item {
        gap: 20px;
        padding: 25px 15px;
    }

    .advantage-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .advantage-title {
        font-size: 20px;
    }

    .advantage-description {
        font-size: 14px;
    }
}


/* 特別優惠板塊 */
.special-offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #D00D09 100%);
    position: relative;
    overflow: hidden;
}

.special-offer-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.special-offer-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.badge-icon {
    font-size: 16px;
}

.offer-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.offer-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.offer-button-wrapper {
    margin-bottom: 40px;
}

.contact-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.contact-service-btn:hover::before {
    left: 100%;
}

.contact-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.contact-service-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 20px;
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contact-service-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.offer-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* margin-bottom: 50px; */
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-tag {
    position: relative;
    overflow: hidden;
}

.feature-tag .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.tag-icon {
    font-size: 16px;
}

.offer-bottom-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;

    display: none;
}

.bottom-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.bottom-feature:hover {
    transform: translateY(-3px);
}

.bottom-feature .feature-icon {
    font-size: 24px;
}

.bottom-feature .feature-text {
    font-size: 14px;
    font-weight: 500;
}


/* 客戶評價板塊樣式 */
.customer-reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.customer-reviews-section::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="%23D00D09" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    color: #D00D09;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}


.reviews-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-content {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.reviews-swiper {
    padding: 20px 0 60px;
    overflow: visible;
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(208, 13, 9, 0.1);
    border: 1px solid rgba(208, 13, 9, 0.1);
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D00D09, #ff4757);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(208, 13, 9, 0.15);
    border-color: #D00D09;
}

.review-stars {
    margin-bottom: 20px;
}

.star {
    font-size: 20px;
    margin-right: 2px;
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.review-text p {
    flex: 1;
    margin-bottom: 25px;
    padding-left: 5px;
}

.review-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-style: italic;
    position: relative;
}

.review-text p::before {
    content: '"';
    font-size: 40px;
    color: #D00D09;
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.avatar-initial {
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.reviewer-platform {
    font-size: 14px;
    color: #D00D09;
    font-weight: 500;
    margin-bottom: 2px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

/* Swiper 自定義樣式 */
.reviews-pagination {
    bottom: 20px !important;
    text-align: center;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: #D00D09;
    transform: scale(1.2);
}

.reviews-next,
.reviews-prev {
    width: 50px;
    height: 50px;
    background: #D00D09;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(208, 13, 9, 0.3);
}

.reviews-next:hover,
.reviews-prev:hover {
    background: #b00b08;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(208, 13, 9, 0.4);
}

.reviews-next::after,
.reviews-prev::after {
    font-size: 16px;
    font-weight: 700;
}

/* 響應式設計 */
@media (max-width: 1200px) {

    .reviews-next,
    .reviews-prev {
        display: none;
    }
}

@media (max-width: 768px) {
    .customer-reviews-section {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .reviews-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

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

    .review-card {
        padding: 25px 20px;
        height: auto;
        min-height: 260px;
        margin: 0 10px;
    }

    .review-text p {
        font-size: 15px;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
    }

    .avatar-initial {
        font-size: 16px;
    }

    .reviewer-name {
        font-size: 15px;
    }

    .reviews-swiper {
        padding: 20px 0 50px;
    }

    .stat-number,
    .stat-suffix,
    .community-title {
        font-size: 15px;
    }

    .stat-card {
        padding: 20px;
    }

}

@media (max-width: 480px) {
    .offer-title {
        font-size: 22px;
        line-height: 1.5;
    }

    .offer-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-service-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .offer-features {
        gap: 12px;
    }

    .feature-tag {
        padding: 8px 14px;
        font-size: 13px;
    }

    .offer-bottom-features {
        gap: 25px;
    }

    .offer-bottom-features .bottom-feature:last-child {
        display: none;
    }

    .bottom-feature .feature-icon {
        font-size: 20px;
    }

    .bottom-feature .feature-text {
        font-size: 12px;
    }

    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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


    .customer-reviews-section {
        padding: 40px 0;
    }

    .reviews-title {
        font-size: 24px;
    }

    .reviews-subtitle {
        font-size: 13px;
    }

    .review-card {
        padding: 20px 15px;
        margin: 0 5px;
        min-height: 240px;
    }

    .review-text p {
        font-size: 14px;
    }

    .star {
        font-size: 18px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .avatar-initial {
        font-size: 14px;
    }

    .reviewer-name {
        font-size: 14px;
    }

    .reviewer-platform {
        font-size: 13px;
    }

    .review-date {
        font-size: 11px;
    }

    .community-subtitle {
        font-size: 13px;
    }

    .community-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .community-header {
        margin-bottom: 30px;
    }

    .community-section {
        padding: 60px 0px;
        padding-bottom: 30px;
    }

    .special-offer-section {
        padding: 60px 0;
    }

    .app-features-list .feature-item {
        padding: 12px 16px;
        gap: 12px;
    }

    .app-features-list .feature-icon {
        width: 24px;
        height: 24px;
    }

    .app-features-list .feature-item span {
        font-size: 14px;
    }
}

/* 動畫效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.review-card {
    animation: fadeInUp 0.6s ease forwards;
}

.review-card:nth-child(2) {
    animation-delay: 0.1s;
}

.review-card:nth-child(3) {
    animation-delay: 0.2s;
}

.review-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* 滾動條樣式 */
.reviews-swiper::-webkit-scrollbar {
    display: none;
}

.reviews-swiper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}



/* 常见问题板块样式 */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #D00D09;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(208, 13, 9, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(208, 13, 9, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(208, 13, 9, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-bottom: 1px solid rgba(208, 13, 9, 0.1);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: #D00D09;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #a00a07;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 300px;
}

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

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 40px;
    }

    .faq-grid {
        gap: 25px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

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

    .faq-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .faq-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

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

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .faq-answer p {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-question {
        padding: 15px 18px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-toggle {
        width: 26px;
        height: 26px;
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 18px;
    }

    .faq-answer p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .offer-title {
        font-size: 18px;
        line-height: 1.6;
    }

    .offer-subtitle {
        font-size: 13px;
    }
}

/* 动画效果 */
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.8s;
}

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

/* 滚动动画触发 */
.faq-item.animate {
    animation: fadeInUp 0.6s ease forwards;
}