.wrapper-7f755f75 {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 30px 0;
}

.header-7f755f75 {
    margin-bottom: 35px;
}

.subtitle-7f755f75 {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #3B82F6;
    margin-bottom: 12px;
}

.title-7f755f75 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #122B4F;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.desc-7f755f75 {
    font-size: 18px;
    line-height: 1.6;
    color: #7C8B9E;
    margin: 0;
    max-width: 900px;
}

/* Grid Layout */
.grid-7f755f75 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.card-7f755f75 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #E8EEF5;
    border-radius: 16px;
    padding: 24px 30px;
    min-height: 120px;
    box-shadow: 0 10px 30px rgba(18, 43, 79, 0.015);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-7f755f75:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(18, 43, 79, 0.05);
}

.card-lbl-7f755f75 {
    font-size: 13px;
    font-weight: 500;
    color: #7C8B9E;
    margin-bottom: 10px;
}

.card-val-7f755f75 {
    font-size: 24px;
    font-weight: 800;
    color: #122B4F;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Animation Setup */
.state-hidden-7f755f75 .stagger-card-7f755f75 {
    opacity: 0;
    transform: translateY(30px);
}

.wrapper-7f755f75.reveal-active-7f755f75 .stagger-card-7f755f75 {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: var(--card-delay, 0ms);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .grid-7f755f75 {
        grid-template-columns: repeat(2, 1fr);
    }
    .title-7f755f75 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .grid-7f755f75 {
        grid-template-columns: 1fr;
    }
    .title-7f755f75 {
        font-size: 30px;
    }
    .desc-7f755f75 {
        font-size: 16px;
    }
    .card-7f755f75 {
        padding: 20px 24px;
    }
}
