.lifeezi-hero-graphic-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.lifeezi-pulse-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lifeezi-wellness-circle {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Heart */
.lifeezi-main-heart {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 15px rgba(255, 77, 77, 0.4));
    z-index: 10;
    animation: lifeezi-heart-beat 1.5s ease-in-out infinite;
}

@keyframes lifeezi-heart-beat {
    0% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Orbiting Items */
.lifeezi-orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: lifeezi-orbit 20s linear infinite;
}

@keyframes lifeezi-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lifeezi-orbit-item {
    position: absolute;
    width: 45px;
    height: 45px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: lifeezi-counter-orbit 20s linear infinite;
}

@keyframes lifeezi-counter-orbit {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.item-fitness { top: -20px; left: 10%; }
.item-gym { top: -20px; right: 10%; }
.item-holistic { bottom: -10px; left: 10%; }
.lifeezi-orbit-item.item-health { bottom: -10px; right: 10%; }

.lifeezi-orbit-item svg {
    width: 24px;
    height: 24px;
}

.lifeezi-label {
    position: absolute;
    bottom: -20px;
    font-size: 8px;
    font-weight: 800;
    color: #fff;
    opacity: 0.6;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Glow Rings */
.lifeezi-glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.r1 { width: 140%; height: 140%; animation: lifeezi-rotate 30s linear infinite; }
.r2 { width: 180%; height: 180%; animation: lifeezi-rotate 45s linear reverse infinite; }

@keyframes lifeezi-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .lifeezi-hero-graphic-container {
        padding: 40px;
    }
    .lifeezi-wellness-circle {
        width: 150px;
        height: 150px;
    }
    .lifeezi-main-heart {
        width: 70px;
        height: 70px;
    }
}
