.wwc-wrap {
    width: 100%;
    padding: 50px 40px 50px;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.wwc-heading {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: #f5f0e8;
    text-transform: uppercase;
    margin: 0 0 40px 0;
    letter-spacing: -0.01em;
    line-height: 1;
    font-family: 'Arial Black', Arial, sans-serif;
}

.wwc-stage {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.wwc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.wwc-circle-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.wwc-circle {
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.wwc-dots {
    flex: 1;
    height: 4px;
    overflow: visible;
    margin: 0 -2px;
}

.wwc-dots svg {
    display: block;
    overflow: visible;
}

.wwc-text {
    width: 100%;
    padding: 0 6px;
    box-sizing: border-box;
    font-size: 0.78rem;
    color: #fff;
    line-height: 1.45;
    text-align: left;
}

.wwc-text-top {
    margin-bottom: 14px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.wwc-text-bottom {
    margin-top: 14px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wwc-label {
    font-weight: 700;
    font-style: italic;
    color: #fff;
}

.wwc-desc {
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

/* Animations */
@keyframes wwc-fadein {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes wwc-pop {
    0%   { opacity: 0; transform: scale(0.5); }
    70%  { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes wwc-dots-in {
    from { opacity: 0; clip-path: inset(0 100% 0 0); }
    to   { opacity: 1; clip-path: inset(0 0% 0 0); }
}

.wwc-anim {
    opacity: 0;
    animation: wwc-fadein 0.55s ease forwards;
}

.wwc-circle-anim {
    opacity: 0;
    animation: wwc-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.wwc-dots-anim {
    opacity: 0;
    animation: wwc-dots-in 0.4s ease forwards;
}

/* Hover bounce */
.wwc-circle {
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.wwc-circle:hover {
    transform: scale(1.12);
}

/* Responsive */
@media (max-width: 768px) {
    .wwc-stage {
        flex-direction: column;
        gap: 24px;
    }
    .wwc-dots {
        display: none;
    }
    .wwc-text-top, .wwc-text-bottom {
        min-height: auto;
        text-align: center;
    }
    .wwc-item {
        width: 100%;
    }
}
