/* Hero Section */
.cc-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}
.cc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108,99,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cc-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,101,132,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cc-hero-content {
    position: relative;
    z-index: 2;
}

.cc-hero-illustration {
    position: relative;
    z-index: 2;
}
.cc-hero-illustration img {
    filter: drop-shadow(0 20px 40px rgba(108,99,255,0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Feature Cards */
.cc-feature-card {
    background: #FFFFFF;
    border: 1px solid #E8E6FF;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(108,99,255,0.06);
}
.cc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(108,99,255,0.12);
    border-color: #6C63FF;
}

.cc-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #E8E6FF, #F8F9FF);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

/* CTA Section */
.cc-cta {
    background: linear-gradient(135deg, #6C63FF 0%, #5A52E0 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.cc-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

/* Stats Section */
.cc-stat-number {
    background: linear-gradient(135deg, #6C63FF, #FF6584);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Section divider */
.cc-section-label {
    display: inline-block;
    background: #E8E6FF;
    color: #6C63FF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Post cards hover */
.wp-block-post:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .cc-hero-illustration img {
        max-width: 280px !important;
        margin: 0 auto;
    }
}
