/* === CE Stat Grid === */
.ce-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ce-stat-card {
    background: #f9f7f4;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ce-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(47, 71, 73, 0.08);
}

.ce-stat-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #f7c99b;
}

.ce-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #2f4749;
    margin-bottom: 8px;
}

.ce-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #625a53;
    line-height: 1.4;
}

.ce-stat-source {
    font-size: 0.75rem;
    color: #ad9771;
    margin-top: 8px;
}

.ce-stat-source a {
    color: #ad9771;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
}

.ce-stat-source a:hover {
    color: #2f4749;
}

/* === CE Tracker CTA === */
.ce-tracker-cta {
    background-color: #1a2c2e;
    color: #ffffff;
    padding: 48px;
    border-radius: 12px;
}

.ce-tracker-cta--centered {
    text-align: center;
}

.ce-tracker-cta--centered .ce-tracker-cta-features {
    display: inline-block;
    text-align: left;
}

.ce-tracker-cta--split {
    display: flex;
    align-items: center;
    gap: 48px;
}

.ce-tracker-cta--split .ce-tracker-cta-content {
    flex: 1;
}

.ce-tracker-cta--split .ce-tracker-cta-features {
    flex: 1;
}

.ce-tracker-cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.ce-tracker-cta-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.ce-tracker-cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.ce-tracker-cta-features li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 6px 0;
    opacity: 0.9;
}

.ce-check-icon {
    color: #f7c99b;
    margin-right: 8px;
    font-weight: 700;
}

.ce-tracker-cta-btn {
    display: inline-block;
    background-color: #f7c99b;
    color: #2f4749;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.ce-tracker-cta-btn:hover {
    background-color: #f5bc84;
    transform: translateY(-1px);
    color: #2f4749;
}

/* Responsive */
@media (max-width: 768px) {
    .ce-tracker-cta--split {
        flex-direction: column;
        gap: 24px;
    }
    
    .ce-tracker-cta {
        padding: 32px 24px;
    }
}
