.pgc-83da1b68-wrapper {
    text-align: center;
    padding: 4rem 1rem;
    background: #fff;
}
.pgc-83da1b68-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.pgc-83da1b68-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}
.pgc-83da1b68-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .pgc-83da1b68-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .pgc-83da1b68-grid {
        grid-template-columns: 1fr;
    }
}
.pgc-83da1b68-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pgc-83da1b68-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.pgc-83da1b68-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.pgc-83da1b68-number-wrap {
    position: relative;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}
.pgc-83da1b68-number.glitching {
    animation: glitch-anim-83da1b68 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}
.pgc-83da1b68-label {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
@keyframes glitch-anim-83da1b68 {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}