@import "/css/public-fcc5fda76142186ad094f59be9e8fb4f.css";

/* ========== Price Hero ========== */
.price-hero {
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 50%, #667eea 100%);
    color: white;
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(102,126,234,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(118,75,162,0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20px, -20px); }
}

.price-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.price-hero-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.price-hero-subtitle {
    font-size: 16px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.9;
    text-align: left;
    text-indent: 2em;
}

.price-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
}

.price-hero-badge .highlight-9 {
    color: #ffd700;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
    margin: 0 2px;
}

/* ========== Price Cards Section ========== */
.price-cards-section {
    padding: 80px 40px;
    background: #f8f9ff;
}

.price-cards-container {
    max-width: 1340px;
    margin: 0 auto;
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ========== Price Card ========== */
.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 28px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid #eef2f7;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102,126,234,0.15);
    border-color: #667eea;
}

.price-card.recommended {
    border-color: #667eea;
    box-shadow: 0 8px 40px rgba(102,126,234,0.15);
    transform: scale(1.03);
    z-index: 2;
}

.price-card.recommended:hover {
    transform: scale(1.03) translateY(-8px);
}

.price-card .card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 18px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.price-card .card-badge.best {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.price-card .card-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    text-align: center;
}

.price-card .card-desc {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-card .card-price {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    margin-bottom: 20px;
}

.price-card .card-price .price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
}

.price-card .card-price .price-unit {
    font-size: 14px;
    color: #888;
}

.price-card .card-price .price-tag {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-top: 8px;
}

.price-card .card-highlights {
    flex: 1;
    padding: 0;
    margin-bottom: 24px;
}

.price-card .card-highlights li {
    list-style: none;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.price-card .card-highlights li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
}

.price-card .card-highlights li.major::before {
    color: #22c55e;
}

.price-card .card-highlights li.major {
    font-weight: 600;
    color: #1a1a2e;
}
.price-card .card-highlights li .spec-detail {
    font-weight: 400;
    font-size: 12px;
    color: #999;
    background: #f5f5f7;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 6px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5;
}

.price-card .card-highlights li.discount-tag {
    font-weight: 700;
    color: #e74c3c;
    font-size: 13px;
}

.price-card .card-highlights li.discount-tag::before {
    content: '🏷';
    color: #e74c3c;
    font-size: 13px;
    margin-right: 2px;
}

.price-card .card-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: #f0f4ff;
    color: #667eea;
}

.price-card .card-btn:hover {
    background: #667eea;
    color: white;
    box-shadow: 0 6px 20px rgba(102,126,234,0.35);
    transform: translateY(-2px);
}

.price-card.recommended .card-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.price-card.recommended .card-btn:hover {
    box-shadow: 0 6px 20px rgba(102,126,234,0.45);
    transform: translateY(-3px);
}

.price-card .card-btn.contact-btn {
    background: #fff;
    border: 2px solid #667eea;
    color: #667eea;
}

.price-card .card-btn.contact-btn:hover {
    background: #667eea;
    color: white;
}

/* ========== Price Cards Footer ========== */
.price-cards-footer {
    margin-top: 40px;
    padding: 20px 32px;
    background: white;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.price-footer-promo {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.price-footer-promo .promo-icon {
    font-size: 18px;
}

.price-footer-promo .promo-text {
    font-size: 14px;
    color: #555;
}

.price-footer-promo .promo-text strong {
    color: #e74c3c;
    font-weight: 700;
    margin-right: 4px;
}

.price-footer-divider {
    width: 1px;
    height: 28px;
    background: #e8ecf4;
    flex-shrink: 0;
}

.price-footer-note {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.price-footer-note .note-icon {
    color: #667eea;
    font-weight: bold;
    font-size: 14px;
}

.price-footer-note .note-text {
    font-size: 13px;
    color: #888;
}

.price-footer-hotline {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.price-footer-hotline .hotline-label {
    font-size: 13px;
    color: #888;
}

.price-footer-hotline .hotline-number {
    font-size: 17px;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 1px;
}

.price-footer-help {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.price-footer-help .help-label {
    font-size: 13px;
    color: #888;
}

.price-footer-help a {
    font-size: 13px;
    color: #667eea;
    cursor: pointer;
    transition: color 0.3s;
}

.price-footer-help a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.price-footer-help .help-sep {
    color: #d0d5dd;
    font-size: 12px;
}

/* ========== Partner Section ========== */
.partner-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf2f8 100%);
}

.partner-inner {
    max-width: 1340px;
    margin: 0 auto;
}

.partner-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 12px;
}

.partner-section .sub-text {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(102,126,234,0.12);
    border-color: #667eea;
}

.partner-card .partner-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.partner-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.partner-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    flex: 1;
}

.partner-card .partner-btn {
    margin-top: 20px;
    padding: 10px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.partner-card .partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.35);
}

/* ========== Cloud Advantage Banner ========== */
.cloud-advantage {
    background: linear-gradient(135deg, #eef2ff 0%, #f5f0ff 100%);
    padding: 60px 40px;
    text-align: center;
}

.cloud-advantage-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.cloud-advantage h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.cloud-advantage .sub-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.cloud-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cloud-advantage-item {
    background: white;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.cloud-advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102,126,234,0.1);
}

.cloud-advantage-item .adv-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
}

.cloud-advantage-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.cloud-advantage-item p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* ========== Feature Comparison Table ========== */
.price-features-section {
    padding: 80px 40px;
    background: white;
}

.price-features-inner {
    max-width: 1340px;
    margin: 0 auto;
}

.price-features-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 12px;
}

.price-features-section .sub-text {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.price-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-size: 14px;
}

.price-compare-table thead th {
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 100%);
    color: white;
    padding: 18px 16px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.price-compare-table thead th:first-child {
    text-align: left;
    padding-left: 24px;
}

.price-compare-table tbody td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #eef2f7;
    color: #555;
}

.price-compare-table tbody td:first-child {
    text-align: left;
    padding-left: 24px;
    font-weight: 500;
    color: #333;
}

.price-compare-table tbody tr:hover td {
    background: #f8f9ff;
}

.price-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.price-compare-table .feature-category td {
    background: #f0f4ff;
    font-weight: 700;
    color: #1a1a2e;
    font-size: 15px;
    padding: 12px 16px 12px 24px;
    border-bottom: 2px solid #dce3f5;
}

.price-compare-table .tick {
    color: #22c55e;
    font-weight: bold;
    font-size: 16px;
}

.price-compare-table .cross {
    color: #d1d5db;
    font-size: 16px;
}

.price-compare-table .emoji-tick::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    font-size: 16px;
}

.price-compare-table .emoji-cross::before {
    content: '✗';
    color: #d1d5db;
    font-size: 14px;
}

/* Table responsive wrapper */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 80px 40px;
    background: #f8f9ff;
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a2e;
    user-select: none;
}

.faq-question .faq-arrow {
    transition: transform 0.3s;
    color: #667eea;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 20px;
}

/* ========== CTA Section ========== */
.price-cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 50%, #667eea 100%);
    text-align: center;
    color: white;
}

.price-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.price-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-cta-section p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.8;
}

.price-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.price-cta-btn {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.price-cta-btn.primary {
    background: white;
    color: #1a1a3e;
}

.price-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.price-cta-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.price-cta-btn.outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .price-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .price-hero { padding: 60px 20px 50px; }
    .price-hero-title { font-size: 30px; }
    .price-hero-subtitle { font-size: 15px; }

    .price-cards-section { padding: 50px 16px; }
    .price-cards-grid { grid-template-columns: 1fr; gap: 20px; }

    .price-card { padding: 30px 20px; }
    .price-card.recommended { transform: none; }
    .price-card.recommended:hover { transform: translateY(-8px); }

    .price-cards-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 14px;
    }
    .price-footer-divider {
        width: 100%;
        height: 1px;
    }
    .price-footer-promo,
    .price-footer-note,
    .price-footer-hotline,
    .price-footer-help {
        white-space: normal;
    }

    .partner-section { padding: 50px 16px; }
    .partner-section h2 { font-size: 24px; }
    .partner-grid { grid-template-columns: 1fr; gap: 16px; }
    .partner-card { padding: 28px 20px; }

    .cloud-advantage { padding: 50px 16px; }
    .cloud-advantage-grid { grid-template-columns: 1fr; gap: 16px; }
    .cloud-advantage h2 { font-size: 24px; }

    .price-features-section { padding: 50px 16px; }
    .price-features-section h2 { font-size: 24px; }
    .price-compare-table { font-size: 12px; }
    .price-compare-table thead th,
    .price-compare-table tbody td { padding: 10px 8px; }

    .faq-section { padding: 50px 16px; }
    .faq-section h2 { font-size: 24px; }
    .faq-question { padding: 16px 20px; font-size: 14px; }

    .price-cta-section { padding: 50px 20px; }
    .price-cta-section h2 { font-size: 26px; }
    .price-cta-btn { padding: 14px 28px; font-size: 14px; }
}

@media (max-width: 480px) {
    .price-cards-grid { grid-template-columns: 1fr; }
}
