/* ================== Exclusive Benefits Page ================== */

@font-face {
    font-family: 'HarmonyOS Sans SC';
    src: url('/fonts/HarmonyOS_Sans_SC_Regular.woff2') format('woff2'),
         url('/fonts/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.exclusive-benefits-page {
    background: #f5f5f5;
    font-family: 'HarmonyOS Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.cr-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ================== Hero Section ================== */

.cr-hero-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.cr-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 85%;
    margin: 0 auto;
    padding: 0;
}

.cr-hero-left {
    flex: 1;
    max-width: 500px;
}

.cr-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.cr-hero-subtitle {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 24px;
}

.cr-hero-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
    transition: background 0.3s;
}

.cr-hero-btn:hover {
    background: #555;
}

.cr-hero-link {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
}

.cr-hero-link a {
    color: #44A8F2;
    text-decoration: none;
}

.cr-hero-link a:hover {
    text-decoration: underline;
}

.cr-hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cr-hero-icon {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-hero-icon svg {
    width: 160px;
    height: 160px;
}

/* ================== Section Titles ================== */

.cr-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 12px;
}

.cr-section-desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.6;
}

.cr-section-label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
    text-decoration: underline;
    margin-bottom: 32px;
}

/* ================== Protection Section ================== */

.cr-protection-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.cr-protection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.cr-protection-item {
    text-align: center;
}

.cr-protection-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-protection-icon img {
    width: 85%;
    height: auto;
    object-fit: contain;
}

.cr-protection-item span {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

/* ================== Benefits Carousel ================== */

.cr-benefits-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.cr-benefits-carousel {
    position: relative;
    margin-top: 48px;
}

.cr-carousel-wrapper {
    overflow: hidden;
    border-radius: 4px;
}

.cr-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-out;
    padding: 20px 0;
}

.cr-benefit-card {
    flex-shrink: 0;
    width: 280px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.cr-benefit-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.cr-benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-benefit-content {
    padding: 16px;
}

.cr-benefit-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.cr-benefit-content p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.5;
}

/* Carousel Buttons */

.cr-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.cr-carousel-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.cr-carousel-btn svg {
    width: 24px;
    height: 24px;
}

.cr-carousel-prev {
    left: 20px;
}

.cr-carousel-next {
    right: 20px;
}

/* ================== Options Table ================== */

.cr-options-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.cr-options-table {
    margin-top: 48px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.cr-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.cr-table-row:last-child {
    border-bottom: none;
}

.cr-table-row.cr-table-header {
    background: #f5f5f5;
}

.cr-table-cell {
    padding: 16px 24px;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
}

.cr-table-row:nth-child(even) .cr-table-cell {
    background: #fafafa;
}

/* ================== Process Section ================== */

.cr-process-section {
    background: #fff;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.cr-process-desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
}

.cr-process-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 48px;
    text-align: center;
}

.cr-process-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: space-between;
}

.cr-process-step {
    flex: 1;
    text-align: center;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 4px;
    position: relative;
}

.cr-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cr-step-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.cr-process-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.cr-process-step p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.5;
    margin-bottom: 12px;
}

.cr-process-link {
    color: #44A8F2;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.cr-process-link:hover {
    text-decoration: underline;
}

.cr-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 0 16px;
}

.cr-process-arrow svg {
    width: 40px;
    height: 24px;
}

/* ================== Products Section ================== */

.cr-products-section {
    background: #fff;
    padding: 80px 0;
}

.cr-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.cr-product-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: box-shadow 0.3s;
    flex: 0 0 160px;
    width: 160px;
    box-sizing: border-box;
}

.cr-product-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cr-product-img {
    width: 100%;
    height: 140px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.cr-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cr-product-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.cr-product-link {
    font-size: 12px;
    color: #44A8F2;
    text-decoration: none;
    display: inline-block;
}

.cr-product-link:hover {
    text-decoration: underline;
}

/* ================== Responsive ================== */

@media (max-width: 768px) {
    .cr-container {
        width: 100%;
        padding: 0 16px;
    }

    .cr-hero-section {
        padding: 40px 0;
    }

    .cr-hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .cr-hero-right {
        justify-content: center;
    }

    .cr-hero-icon {
        width: 120px;
        height: 120px;
    }

    .cr-protection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .cr-protection-section,
    .cr-benefits-section,
    .cr-options-section,
    .cr-process-section,
    .cr-products-section {
        padding: 40px 0;
    }

    .cr-products-grid {
        gap: 16px;
    }

    .cr-product-card {
        flex: 0 0 120px;
        width: 120px;
    }

    .cr-carousel-track {
        gap: 12px;
    }

    .cr-benefit-card {
        width: 200px;
    }

    .cr-process-steps {
        flex-direction: column;
        gap: 16px;
    }


}
