/* =====================================================================
   Content blocks: stat circles + comparison table
   ===================================================================== */

.sc-container,
.ct-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* ── Stat circles ── */
.sc-stats {
    padding: 50px 0;
    background: #fff;
}

.sc-stats-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: #1f2430;
    text-align: center;
    margin: 0 0 36px;
}

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

.sc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.sc-ring {
    --p: 0;
    --size: 92px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(closest-side, #fff 78%, transparent 79% 100%),
        conic-gradient(#6a4fa3 calc(var(--p) * 1%), #ece9f6 0);
    margin-bottom: 14px;
}

.sc-ring-num {
    font-size: 22px;
    font-weight: 800;
    color: #2a2740;
}

.sc-stat-label {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.45;
    margin: 0;
}

/* ── Comparison table (heading left, image + rows right) ── */
.ct-compare {
    padding: 56px 0;
    background: #fff;
}

.ct-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.ct-compare-left {
    display: flex;
    align-items: center;
}

.ct-compare-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: #1f2430;
    margin: 0;
    line-height: 1.05;
}

.ct-compare-image {
    position: relative;
    text-align: center;
    margin-bottom: 22px;
}

.ct-compare-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.ct-img-cap {
    position: absolute;
    top: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #8a879c;
    max-width: 110px;
    line-height: 1.3;
}

.ct-img-cap-us {
    left: 0;
    text-align: left;
}

.ct-img-cap-others {
    right: 0;
    text-align: right;
}

/* Purple rows — white text + icons */
.ct-compare-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-compare-row {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #a48fd4 0%, #8f78c5 100%);
    border-radius: 12px;
    padding: 15px 18px;
    box-shadow: 0 8px 20px rgba(139, 111, 196, 0.22);
}

.ct-compare-row .ct-feature {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.ct-compare-row .ct-check,
.ct-compare-row .ct-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.ct-compare-row .ct-cross {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .sc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ct-compare-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .ct-compare-title {
        text-align: center;
    }
}

/* ── Product Color Panel ([prodcutcolorpannel]) ── */
.pcp {
    padding: 44px 16px;
}

.pcp-panel {
    max-width: 1240px;
    margin: 0 auto;
    background: var(--pcp-bg, #2c4cc4);
    color: var(--pcp-text, #fff);
    border-radius: 26px;
    padding: 42px 50px 50px;
    box-sizing: border-box;
}

.pcp-title {
    text-align: center;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 800;
    color: var(--pcp-text, #fff);
    margin: 0 0 34px;
    line-height: 1.2;
}

.pcp-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.pcp-image {
    text-align: center;
}

.pcp-image img {
    max-width: 100%;
    height: 461px !important;
    display: inline-block;
}

.pcp-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pcp-feat-heading {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 700;
    color: var(--pcp-text, #fff);
    margin: 0 0 8px;
    line-height: 1.2;
}

.pcp-feat-desc {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--pcp-text, #fff);
    opacity: 0.92;
    margin: 0;
}

@media (max-width: 768px) {
    .pcp-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .pcp-panel {
        padding: 28px 22px 34px;
    }
}

/* ── Slider Product Cards ([sliderproductcards]) ── */
.spc {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 16px 46px;
}

.spc-title {
    text-align: center;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #000 !important;
    margin: 0 0 30px;
}

.spc-accent {
    color: var(--spc-accent, #2f6bd6);
}

.spc-slider-wrap {
    position: relative;
}

.spc-slider {
    overflow: hidden;
    padding: 4px;
}

.spc-card {
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
}

.spc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.spc-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -15px;
    gap: 16px;
}

.spc-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spc-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d4d6db;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.spc-dots .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 4px;
    background: var(--spc-accent, #2f6bd6);
}

.spc-nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.spc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1b825d;
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.spc-arrow:hover {
    filter: brightness(1.1);
    transform: scale(1.06);
}

.spc-arrow.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ── Collective Product Card ([collectiveproductcard]) ── */
.cpc {
    padding: 0;
    background: none;
}

.cpc-card {
    max-width: 1240px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 48px 54px 52px;
    box-shadow: 0 24px 60px rgba(60, 50, 110, 0.10);
    box-sizing: border-box;
}

.cpc-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.cpc-heading {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    color: #161616;
    margin: 0;
    line-height: 1.04;
    letter-spacing: -1px;
}

.cpc-image {
    position: relative;
    text-align: center;
    margin-bottom: 26px;
}

.cpc-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.cpc-img-cap {
    position: absolute;
    top: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #8a879c;
    max-width: 120px;
    line-height: 1.3;
}

.cpc-img-cap-us { left: 0; text-align: left; }
.cpc-img-cap-others { right: 0; text-align: right; }

.cpc-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cpc-row {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--cpc-accent, #7c5fc0) 86%, #fff) 0%, var(--cpc-accent, #7c5fc0) 100%);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 8px 20px rgba(124, 95, 192, 0.22);
}

.cpc-row .cpc-feature {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cpc-row .cpc-check,
.cpc-row .cpc-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.cpc-row .cpc-cross {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .cpc-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .cpc-heading {
        text-align: center;
    }
    .cpc-card {
        padding: 32px 24px 36px;
    }
}

/* Collective Product Card — top-left image (above heading) */
.cpc-left-image {
    margin-bottom: 22px;
}
.cpc-left-image img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.cpc-image { display: none !important; }
