/*
======================================
    Monthly Plan Page Styles
======================================
*/

.monthly-banner {
    width: 100%;
    height: 746px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.monthly-banner-container {
    width: 1320px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.monthly-banner-content {
    max-width: 650px;
}

.monthly-banner-title {
    font-size: 56px;
    font-weight: 900;
    color: #101828;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.monthly-banner-subtitle {
    font-size: 20px;
    color: #667085;
    line-height: 1.6;
    margin: 0;
}

/* Plan Section */
.monthly-plans-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.monthly-plans-inner {
    width: 1356px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.monthly-plans-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 14px 20px;
    background: #FFF8E6;
    border-radius: 16px;
    box-sizing: border-box;
}

.monthly-plans-notice-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.monthly-plans-notice-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #101828;
    font-weight: 500;
}

/* Toggle Tabs */
.monthly-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.monthly-toggle-tabs {
    display: flex;
    align-items: center;
    background: #F9FAFB;
    padding: 6px;
    border-radius: 100px;
    position: relative;
    width: 320px; /* 固定宽度确保居中计算准确 */
    margin: 0 auto;
    overflow: hidden;
}

.monthly-toggle-slider {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: calc(50% - 6px);
    background: #01488c;
    border-radius: 100px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.monthly-toggle-tabs[data-active="1"] .monthly-toggle-slider {
    transform: translateX(100%);
}

.monthly-toggle-tab {
    flex: 1; /* 平分宽度 */
    height: 48px;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #667085;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center; /* 确保文字居中 */
    gap: 8px;
    padding: 0;
}

.monthly-toggle-tab.active {
    color: #fff;
}

.monthly-discount-tag {
    background: #ffb200;
    color: #101828;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
    margin-left: 4px;
}

/* Plan Cards（欄數由模板 --mp-cols 依方案數量 1～4） */
.monthly-plans-grid--hidden {
    display: none !important;
}

.monthly-plans-grid {
    display: grid;
    grid-template-columns: repeat(var(--mp-cols, 2), minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    max-width: 1356px;
    margin: 0 auto;
    align-items: stretch;
    box-sizing: border-box;
}

.monthly-plans-grid--empty {
    min-height: 100px;
    place-items: center;
}

.monthly-plans-empty-msg {
    margin: 0;
    padding: 24px 16px;
    text-align: center;
    color: #667085;
    font-size: 16px;
    line-height: 1.5;
}

.monthly-plan-card {
    width: 100%;
    max-width: none;
    min-height: 500px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #E4E7EC;
    padding: 30px 26px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.monthly-plan-card.selected {
    background: #EFF6FF;
    border-color: #01488C;
    box-shadow: 0 12px 32px rgba(1, 72, 140, 0.08);
}

.monthly-plan-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 23px;
    min-height: 36px;
}

.monthly-plan-days {
    font-size: 36px;
    font-weight: 700;
    color: #4A5565;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.57px;
}

.monthly-plan-discount-badge {
    flex-shrink: 0;
    background: #FFB200;
    color: #101828;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.monthly-plan-badge {
    background: #ffb200;
    color: #101828;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 24px;
}

.monthly-plan-title {
    font-size: 38px;
    font-weight: 900;
    color: #101828;
    margin: 0 0 12px 0;
}

.monthly-plan-desc {
    font-size: 16px;
    color: #4A5565;
    margin-bottom: 32px;
}

.monthly-plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.monthly-plan-currency {
    font-size: 32px;
    color: #101828;
    font-weight: 600;
    line-height: 1;
}

.monthly-plan-price {
    font-size: 40px;
    font-weight: 900;
    color: #101828;
    line-height: 1;
    letter-spacing: 0.53px;
}

.monthly-plan-monthly-equiv {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 600;
    color: #12B76A;
    line-height: 1.4;
    min-height: 22px;
}

.monthly-plan-monthly-equiv--empty {
    visibility: hidden;
    pointer-events: none;
}

.monthly-plan-unit {
    font-size: 24px;
    color: #98A2B3;
    font-weight: 600;
    margin-left: 8px;
}

.monthly-plan-btn {
    width: 100%;
    max-width: 260px;
    height: 48px;
    background: #01488c;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    margin: 0 0 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.monthly-plan-btn:hover {
    background: #01488c;
    box-shadow: 0 0 16px rgba(1, 72, 140, 0.45);
    color: #fff;
}

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

.monthly-plan-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #101828;
    font-weight: 400;
    margin-bottom: 8px;
}

.monthly-feature-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    object-fit: contain;
}

.monthly-feature-text {
    line-height: 1.4;
}

@media (max-width: 1400px) {
    .monthly-banner-container,
    .monthly-plans-inner {
        width: 100%;
    }
    .monthly-plans-grid:not(.monthly-plans-grid--empty) {
        gap: 30px;
    }
    .monthly-plan-card {
        height: auto;
        min-height: 0;
        padding: 40px;
    }
}

@media (max-width: 1200px) {
    .monthly-plan-days,
    .monthly-plan-title {
        font-size: 32px;
    }
    .monthly-plan-price {
        font-size: 72px;
    }
}

@media (max-width: 992px) {
    .monthly-banner {
        height: 600px;
    }
    .monthly-banner-title {
        font-size: 42px;
    }
    .monthly-banner-subtitle {
        font-size: 18px;
    }
    .monthly-plan-card {
        min-height: 0;
    }
    .monthly-plan-btn {
        max-width: none;
    }
    .monthly-plans-grid:not(.monthly-plans-grid--empty) {
        grid-template-columns: 1fr !important;
        max-width: 640px;
    }
}

@media (max-width: 768px) {
    .monthly-banner {
        height: 500px;
        text-align: center;
    }
    .monthly-banner-content {
        margin: 0 auto;
    }
    .monthly-banner-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .monthly-banner-subtitle {
        font-size: 16px;
    }
    .monthly-plan-price {
        font-size: 60px;
    }
    .monthly-plan-days,
    .monthly-plan-title {
        font-size: 28px;
    }
    .monthly-plans-inner {
        padding: 0 20px;
    }
    .monthly-plans-notice {
        margin-left: 20px;
        margin-right: 20px;
        padding: 12px 16px;
    }
    .monthly-plans-notice-text {
        font-size: 14px;
    }
    .monthly-toggle-tabs {
        width: 280px;
    }
    .monthly-toggle-tab {
        font-size: 16px;
    }
    .monthly-plan-card {
        padding: 30px 20px;
    }
    .monthly-plan-feature-item {
        font-size: 18px;
        gap: 12px;
    }
}

/* Destinations Section */
.monthly-destinations-section {
    padding: 100px 0 0;
    background-color: #fff;
}

.monthly-destinations-inner {
    width: 1365px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 85px;
}

.monthly-destinations-media {
    flex: 0 0 650px;
    max-width: 100%;
}

.monthly-destinations-map {
    width: 100%;
    min-height: 596px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #F5EFE6;
    position: relative;
    overflow: hidden;
}

.monthly-destinations-badge {
    position: absolute;
    left: 33px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.monthly-destinations-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(360deg, #01488C 0%, #0165C9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.monthly-destinations-badge-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.monthly-destinations-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.monthly-destinations-badge-tag {
    font-size: 12px;
    line-height: 1.2;
    color: #4A5565;
}

.monthly-destinations-badge-title {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #101828;
    white-space: nowrap;
}

.monthly-destinations-content {
    flex: 1;
    min-width: 0;
    max-width: 630px;
}

.monthly-destinations-title {
    margin: 0;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: #101828;
    letter-spacing: 0.71px;
}

.monthly-destinations-desc {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 26px;
    color: #4A5565;
    letter-spacing: 0.25px;
}

.monthly-destinations-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 86px;
    min-width: 190px;
    height: 64px;
    padding: 0 20px;
    background: #01488C;
    color: #fff;
    border: 0;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.monthly-destinations-btn:hover {
    color: #fff;
    box-shadow: 0 0 16px rgba(1, 72, 140, 0.35);
}

/* Application Flow Section */
.monthly-flow-section {
    padding: 100px 0 70px;
    background-color: #fff;
}

.monthly-flow-inner {
    width: 1320px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    text-align: center;
}

.monthly-flow-header {
    margin-bottom: 60px;
}

.monthly-flow-title {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    color: #101828;
}

.monthly-flow-subtitle {
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.6;
    color: #4A5565;
}

.monthly-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.monthly-flow-card {
    background: #F9FAFB;
    border-radius: 16px;
    min-height: 300px;
    padding: 60px 44px 32px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.monthly-flow-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #01488C;
    color: #F2F3F5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.monthly-flow-card-title {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    color: #101828;
}

.monthly-flow-card-desc {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
    color: #4A5565;
    max-width: 211px;
}

@media (max-width: 1200px) {
    .monthly-destinations-inner {
        flex-direction: column;
        gap: 48px;
    }
    .monthly-destinations-media {
        flex: none;
        width: 100%;
    }
    .monthly-destinations-map {
        min-height: 420px;
    }
    .monthly-destinations-content {
        max-width: none;
        width: 100%;
    }
    .monthly-destinations-btn {
        margin-top: 32px;
    }
    .monthly-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .monthly-destinations-section {
        padding-top: 60px;
    }
    .monthly-destinations-title {
        font-size: 32px;
    }
    .monthly-flow-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .monthly-flow-title {
        font-size: 32px;
    }
}

/* Feature Sections */
.monthly-features-section {
    padding: 42px 0 70px;
    background-color: #fff;
}

.monthly-features-inner {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 72px; /* 两行之间的间距 */
}

.monthly-feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.monthly-feature-row.reverse {
    flex-direction: row-reverse;
}

.monthly-feature-col-text {
    flex: 1;
    max-width: 600px;
}

.monthly-feature-col-img {
    flex: 0 0 520px;
    height: 480px;
    border-radius: 42px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.monthly-feature-title {
    font-size: 38px;
    font-weight: 900;
    color: #101828;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.monthly-feature-desc {
    font-size: 14px;
    color: #4A5565;
    line-height: 1.8;
    margin: 0 0 24px 0;
}

.monthly-feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 204px;
    height: 56px;
    background: #01488C;
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.monthly-feature-btn:hover {
    background: #01488C;
    box-shadow: 0 0 16px rgba(1, 72, 140, 0.45);
    color: #fff;
}

/* Pain Points Section */
.monthly-pain-section {
    padding: 80px 0 60px;
    background-color: #fff;
}

.monthly-pain-inner {
    width: 1320px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    text-align: center;
}

.monthly-pain-title {
    font-size: 48px;
    font-weight: 900;
    color: #101828;
    margin: 0 0 41px;
    letter-spacing: -0.5px;
}

.monthly-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.monthly-pain-card {
    position: relative;
    background: #F9FAFB;
    border-radius: 24px;
    min-height: 300px;
    padding: 60px 44px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.monthly-pain-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* background: rgba(255, 178, 0, 0.9); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    flex-shrink: 0;
}

.monthly-pain-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.monthly-pain-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    line-height: 25px;
    margin: 0 0 20px;
    letter-spacing: -0.39px;
}

.monthly-pain-card-desc {
    font-size: 13px;
    font-weight: 400;
    color: #4A5565;
    line-height: 20px;
    margin: 0;
    letter-spacing: -0.13px;
    max-width: 211px;
}

@media (max-width: 1200px) {
    .monthly-pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .monthly-pain-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .monthly-pain-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .monthly-pain-section {
        padding: 60px 0 40px;
    }
    .monthly-pain-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
}

/* Why Choose Section */
.monthly-why-section {
    padding: 80px 0;
    background-color: #fff;
}

.monthly-why-inner {
    width: 1320px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    text-align: center;
}

.monthly-why-header {
    margin-bottom: 80px;
}

.monthly-why-title {
    font-size: 48px;
    font-weight: 900;
    color: #101828;
    margin: 0 0 16px 0;
}

.monthly-why-subtitle {
    font-size: 16px;
    color: #4A5565;
    max-width: 800px;
    margin: 0 auto;
}

.monthly-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 60px;
    text-align: left;
}

.monthly-why-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.monthly-why-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monthly-why-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.monthly-why-item-title {
    font-size: 24px;
    font-weight: 900;
    color: #101828;
    margin: 0;
}

.monthly-why-item-desc {
    font-size: 16px;
    color: #4A5565;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .monthly-why-grid {
        gap: 60px 40px;
    }
    .monthly-why-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .monthly-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .monthly-why-section {
        padding: 60px 0;
    }
    .monthly-why-inner {
        padding: 0 20px;
    }
    .monthly-why-header {
        margin-bottom: 48px;
    }
    .monthly-why-title {
        font-size: 28px;
    }
    .monthly-why-subtitle {
        font-size: 15px;
    }
    .monthly-why-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .monthly-destinations-badge-title {
        white-space: normal;
    }
}

/* How to Use Section */
.monthly-how-section {
    padding: 42px 0 70px;
    background-color: #fff;
}

.monthly-how-inner {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    text-align: center;
}

.monthly-how-header {
    margin-bottom: 36px;
}

.monthly-how-title {
    font-size: 38px;
    font-weight: 900;
    color: #101828;
    margin: 0 0 16px 0;
}

.monthly-how-subtitle {
    font-size: 16px;
    color: #4A5565;
}

.monthly-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.monthly-how-card {
    background: #F2F4F7;
    border-radius: 24px;
    padding: 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 386px;
    height: 420px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.monthly-how-card.no-visual-bg .monthly-how-card-visual {
    background: transparent;
    border: none;
}

.monthly-how-number {
    width: 38px;
    height: 38px;
    background: #00478B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.monthly-how-card-title {
    font-size: 20px;
    font-weight: 900;
    color: #101828;
    margin: 0 0 12px 0;
}

.monthly-how-card-desc {
    font-size: 14px;
    color: #4A5565;
    line-height: 1.6;
    margin-bottom: 22px;
}

.monthly-how-card-visual {
    margin-top: auto;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    box-sizing: border-box;
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #E4E7EC;
}

/* Visual 1: Selection */
.monthly-visual-selection {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 2px solid #101828;
    border-radius: 12px;
    margin-bottom: 12px;
}

.monthly-visual-radio {
    width: 20px;
    height: 20px;
    border: 6px solid #101828;
    border-radius: 50%;
}

.monthly-visual-text-line {
    height: 12px;
    background: #E4E7EC;
    border-radius: 6px;
}

/* Visual 2: Installed */
.monthly-visual-installed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.monthly-visual-check {
    width: 64px;
    height: 64px;
    background: #00478B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.monthly-visual-check svg {
    width: 32px;
    height: 32px;
}

/* Visual 3: Connected */
.monthly-visual-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.monthly-visual-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1200px) {
    .monthly-how-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .monthly-how-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .monthly-how-card {
        width: 100%;
        height: auto;
        min-height: 482px;
        padding: 30px;
    }
}

/* FAQ Section */
.home-faq {
	margin-top: 60px;
	background: #ffffff;
}

.home-faq-inner {
	width: 1320px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
	text-align: left;
}

.home-faq-inner .faq-title,
.home-faq-inner .faq-subtitle,
.home-faq-inner .faq-tabs {
	text-align: center;
}

.faq-title {
	font-size: 36px;
	font-weight: 900;
	color: #101828;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.faq-subtitle {
	font-size: 20px;
	color: #4A5565;
	margin: 0 0 32px 0;
}

/* FAQ 选项卡 */
.faq-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}

.faq-tab {
	padding: 13px 29px;
	border-radius: 14px;
	border: 2px solid #E5E7EB;
	background: #ffffff;
	color: #333;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	white-space: nowrap;
}

.faq-tab:hover {
	border-color: #01488c;
	color: #01488c;
}

.faq-tab.active {
	background: #01488c;
	color: #ffffff;
	border-color: #01488c;
}

/* FAQ 卡片网格 */
.faq-grid {
	display: flex;
	gap: 30px;
}

.faq-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* FAQ 单个卡片 */
.faq-item {
	width: 100%;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	transition: all 0.3s;
}

.faq-item.hidden {
	display: none;
}

.faq-question {
	display: flex;
	align-items: center;
	height: 66px;
	padding: 0 20px;
	cursor: pointer;
	gap: 12px;
	user-select: none;
}

.faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	background: #F3F4F6;
	border-radius: 10px;
}

.faq-icon img {
	width: 14px;
	height: 14px;
	display: block;
}

.faq-icon svg {
	display: none;
}

.faq-question-text {
	flex: 1;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #1a1a2e;
	text-align: left;
}

.faq-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #888;
	transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
	transform: rotate(180deg);
}

/* FAQ 答案区域 */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
	padding: 0 20px;
}

.faq-item.open .faq-answer {
	max-height: 300px;
	padding: 0 20px 20px 20px;
}

.faq-answer,
.faq-answer p,
.faq-answer ul,
.faq-answer ol,
.faq-answer li,
.faq-answer div,
.faq-answer h1,
.faq-answer h2,
.faq-answer h3,
.faq-answer h4 {
	text-align: left;
}

.faq-answer p {
	margin: 0;
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}

/* FAQ 响应式 */
@media (max-width: 1400px) {
	.faq-grid {
		gap: 24px;
	}
	.home-faq {
		padding: 60px 0;
	}
	.home-faq-inner {
		padding: 0 30px;
	}
}

@media (max-width: 992px) {
	.home-faq {
		margin-top: 40px;
		padding: 40px 0;
	}
	.home-faq-inner {
		padding: 0 20px;
	}
	.faq-title {
		font-size: 28px;
	}
	.faq-subtitle {
		font-size: 14px;
		margin-bottom: 24px;
	}
	.faq-grid {
		flex-direction: column;
		gap: 10px;
	}
}

@media (max-width: 768px) {
	.home-faq {
		margin-top: 30px;
		padding: 30px 0;
	}
	.faq-title {
		font-size: 24px;
	}
	.faq-subtitle {
		font-size: 13px;
	}
	.faq-tabs {
		gap: 8px;
		margin-bottom: 24px;
	}
	.faq-tab {
		padding: 8px 18px;
		font-size: 13px;
	}
	.faq-question {
		height: 56px;
		padding: 0 16px;
		gap: 10px;
	}
	.faq-question-text {
		font-size: 14px;
	}
	.faq-answer p {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.home-faq {
		margin-top: 24px;
		padding: 24px 0;
	}
	.faq-title {
		font-size: 22px;
	}
	.faq-subtitle {
		font-size: 12px;
	}
	.faq-tabs {
		gap: 6px;
		margin-bottom: 20px;
	}
	.faq-tab {
		padding: 7px 14px;
		font-size: 12px;
	}
	.faq-question {
		height: 50px;
		padding: 0 14px;
		gap: 8px;
	}
	.faq-question-text {
		font-size: 13px;
	}
	.faq-answer p {
		font-size: 12px;
	}
}

/* 浮层内容样式 */
.monthly-img-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    min-width: 280px;
}

.monthly-overlay-icon-wrap {
    width: 80px;
    height: 80px;
    background: #00478B;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.monthly-overlay-icon {
    width: 48px;
    height: 48px;
    color: #fff;
}

.monthly-overlay-text {
    display: flex;
    flex-direction: column;
}

.monthly-overlay-tag {
    font-size: 24px;
    color: #667085;
    margin-bottom: 4px;
    font-weight: 500;
}

.monthly-overlay-main {
    font-size: 32px;
    font-weight: 900;
    color: #101828;
    white-space: nowrap;
}

@media (max-width: 1400px) {
    .monthly-features-inner {
        width: 100%;
    }
    .monthly-feature-col-img {
        flex: 0 0 500px;
        height: 485px;
    }
}

@media (max-width: 1200px) {
    .monthly-feature-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .monthly-features-inner {
        gap: 60px;
    }
    .monthly-feature-row,
    .monthly-feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .monthly-feature-col-text {
        max-width: 100%;
    }
    .monthly-feature-col-img {
        flex: 0 0 auto;
        width: 100%;
        max-width: 614px;
        height: 500px;
    }
    .monthly-img-overlay {
        left: 20px;
        bottom: 20px;
        min-width: auto;
        padding: 12px;
    }
    .monthly-overlay-icon-wrap {
        width: 60px;
        height: 60px;
    }
    .monthly-overlay-icon {
        width: 36px;
        height: 36px;
    }
    .monthly-overlay-tag {
        font-size: 18px;
    }
    .monthly-overlay-main {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .monthly-feature-title {
        font-size: 28px;
    }
    .monthly-feature-col-img {
        height: 350px;
        border-radius: 24px;
    }
    .monthly-overlay-icon-wrap {
        width: 44px;
        height: 44px;
    }
    .monthly-overlay-icon {
        width: 24px;
        height: 24px;
    }
    .monthly-overlay-tag {
        font-size: 14px;
    }
    .monthly-overlay-main {
        font-size: 18px;
    }
}

/* CTA Banner Section */
.monthly-cta-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.monthly-cta-inner {
    width: 1320px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.monthly-cta-link {
    display: block;
    width: 100%;
    height: 341px;
    border-radius: 49px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.monthly-cta-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1400px) {
    .monthly-cta-inner {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .monthly-cta-link {
        height: auto;
        aspect-ratio: 1320 / 341; /* 保持原始比例 */
        border-radius: 32px;
        background-size: contain; /* 确保图片完整显示 */
    }
}

@media (max-width: 768px) {
    .monthly-cta-link {
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .monthly-cta-link {
        border-radius: 16px;
    }
}

/* ── 支援國家/地區彈窗 ── */
body.mp-support-modal-open {
    overflow: hidden;
}

.mp-support-modal {
    position: fixed;
    inset: 0;
    z-index: 100050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.mp-support-modal[hidden] {
    display: none !important;
}

.mp-support-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 41, 66, 0.45);
}

.mp-support-modal__dialog {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: min(1260px, 100%);
    max-height: min(90vh, 790px);
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 33px 48px 37px;
    box-shadow: 0 20px 48px rgba(26, 41, 66, 0.18);
}

.mp-support-modal__dialog[data-tier-tone='amber'] {
    border-color: #e8c873;
}

.mp-support-modal__dialog[data-tier-tone='slate'] {
    border-color: #c1c8d1;
}

.mp-support-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 23px;
}

.mp-support-modal__title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    color: #000;
    letter-spacing: -0.15px;
}

.mp-support-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #5a6478;
    cursor: pointer;
}

.mp-support-modal__close:hover {
    background: #f7f9fc;
    color: #1a2942;
}

.mp-support-modal__filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
}

.mp-support-modal__search {
    display: flex;
    align-items: center;
    flex: 1 1 360px;
    min-width: 0;
    height: 40px;
    padding: 0 18px;
    border: 1px solid #d1d5dc;
    border-radius: 9px;
    background: #fff;
}

.mp-support-modal__search-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-right: 9px;
    color: #99a1af;
}

.mp-support-modal__search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    line-height: 26px;
    color: #1a2942;
    outline: none;
}

.mp-support-modal__search-input::placeholder {
    color: #99a1af;
}

.mp-support-modal__search-input::-webkit-search-cancel-button {
    display: none;
}

.mp-support-modal__select {
    flex: 1 1 360px;
    min-width: 0;
    height: 40px;
    padding: 0 36px 0 12px;
    border: 1px solid #cfd5de;
    border-radius: 6px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%2386909c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    font-size: 14px;
    line-height: 22px;
    color: #86909c;
    appearance: none;
    cursor: pointer;
}

.mp-support-modal__select:focus {
    outline: 2px solid rgba(1, 72, 140, 0.25);
    outline-offset: 1px;
}

.mp-support-modal__summary {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 19px;
}

.mp-support-modal__summary[hidden],
.mp-support-modal__dialog[data-tier-mode='all'] > .mp-support-modal__summary {
    display: none !important;
}

.mp-support-modal__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 118px;
    height: 32px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
}

.mp-support-modal__badge.is-green {
    background: #1a7f37;
}

.mp-support-modal__badge.is-amber {
    background: #b8860b;
}

.mp-support-modal__badge.is-slate {
    background: #5a6478;
}

.mp-support-modal__tier-desc {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    line-height: 16px;
    color: #666;
}

.mp-support-modal__count {
    flex-shrink: 0;
    margin-left: auto;
    font-size: 16px;
    line-height: 16px;
    color: #666;
    white-space: nowrap;
}

.mp-support-modal__panel {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.mp-support-modal__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px 43px;
}

.mp-support-modal__grid.is-all-tiers {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.mp-support-modal__tier-block .mp-support-modal__summary {
    margin-bottom: 19px;
}

.mp-support-modal__tier-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px 43px;
}

.mp-support-modal__dialog[data-tier-mode='all'] {
    border-color: #e5e7eb;
}

.mp-support-modal__chip {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 9px 14px;
    border-radius: 6px;
    background: #f7f7f8;
}

.mp-support-modal__chip-label {
    font-size: 14px;
    line-height: 16px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mp-support-modal__empty,
.mp-support-modal__no-results {
    margin: 24px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #86909c;
    text-align: center;
}

.mp-support-modal__empty[hidden],
.mp-support-modal__no-results[hidden] {
    display: none !important;
}

@media (max-width: 1200px) {
    .mp-support-modal__dialog {
        padding: 24px 24px 28px;
    }

    .mp-support-modal__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px 16px;
    }

    .mp-support-modal__tier-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px 16px;
    }
}

@media (max-width: 900px) {
    .mp-support-modal__filters {
        flex-wrap: wrap;
    }

    .mp-support-modal__search,
    .mp-support-modal__select {
        flex: 1 1 100%;
    }

    .mp-support-modal__summary {
        flex-wrap: wrap;
        gap: 12px;
    }

    .mp-support-modal__count {
        margin-left: 0;
        width: 100%;
    }

    .mp-support-modal__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mp-support-modal__tier-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .mp-support-modal__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp-support-modal__tier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
