:root {
    --cs-primary: #0A5EB0;
    --cs-accent: #22A652;
}

.cs-section-db647dd6 {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5fc 100%);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Abstract Background */
.cs-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.cs-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(10, 94, 176, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: cs-float-bg 15s ease-in-out infinite alternate;
}

.cs-shape-1 { width: 600px; height: 600px; top: -100px; left: -200px; }
.cs-shape-2 { width: 500px; height: 500px; bottom: -100px; right: -150px; animation-delay: -5s; }
.cs-shape-3 { width: 300px; height: 300px; top: 30%; left: 50%; animation-delay: -10s; }

@keyframes cs-float-bg {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

.cs-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cs-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cs-section-db647dd6.is-visible .cs-header {
    opacity: 1;
    transform: translateY(0);
}

.cs-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cs-accent);
    text-transform: uppercase;
    background: rgba(34, 166, 82, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.cs-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--cs-primary);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cs-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cs-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
}

.cs-section-db647dd6.is-visible .cs-card {
    animation: cs-fade-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes cs-fade-up {
    to { opacity: 1; transform: translateY(0); }
}

.cs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 94, 176, 0.1);
    border-color: rgba(10, 94, 176, 0.2);
}

.cs-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, var(--cs-primary), #1e7dd6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(10, 94, 176, 0.2);
    animation: cs-float-icon 3s ease-in-out infinite, cs-pulse 4s ease-in-out infinite;
}

.cs-icon-wrapper svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

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

@keyframes cs-pulse {
    0%, 100% { box-shadow: 0 10px 20px rgba(10, 94, 176, 0.2); }
    50% { box-shadow: 0 15px 30px rgba(10, 94, 176, 0.4); }
}

.cs-counter-wrap {
    font-size: 64px;
    font-weight: 700;
    color: var(--cs-primary);
    margin-bottom: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: text-shadow 0.3s ease;
}

.cs-number.is-done {
    animation: cs-glow 1s ease-out;
}

@keyframes cs-glow {
    0% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 20px rgba(10, 94, 176, 0.5); }
    100% { text-shadow: 0 0 0 transparent; }
}

.cs-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.cs-desc {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .cs-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-heading { font-size: 36px; }
}

@media (max-width: 768px) {
    .cs-grid { grid-template-columns: 1fr; }
    .cs-heading { font-size: 32px; }
    .cs-counter-wrap { font-size: 48px; }
}
