.home2-metrics-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.home2-metrics-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(99, 102, 241, 0.15) 0%,
        rgba(99, 102, 241, 0) 70%
    );
    animation: rotate 20s linear infinite;
}

.home2-metrics-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    pointer-events: none;
}

.home2-metrics-content {
    position: relative;
    padding: 3rem;
    text-align: center;
}

.home2-metrics-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.home2-metrics-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home2-metrics-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.home2-metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.home2-metric-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.home2-metric-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.home2-metric-card:hover {
    transform: translateY(-5px);
}

.home2-metric-progress {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
}

.home2-progress-ring {
    transform: rotate(-90deg);
    width: 160px;
    height: 160px;
}

.home2-progress-ring-circle {
    fill: none;
    stroke: #6366f1;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 465;
    stroke-dashoffset: 465;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home2-progress-ring-circle.secondary {
    stroke: #8b5cf6;
}

.home2-progress-ring-circle.tertiary {
    stroke: #ec4899;
}

.home2-progress-ring-circle.active {
    stroke-dashoffset: var(--progress-offset, 465);
}

.home2-progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.home2-progress-ring-glow {
    fill: none;
    stroke: rgba(99, 102, 241, 0.3);
    stroke-width: 12;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 1s ease;
}

.home2-progress-ring-glow.secondary {
    stroke: rgba(139, 92, 246, 0.3);
}

.home2-progress-ring-glow.tertiary {
    stroke: rgba(236, 72, 153, 0.3);
}

.home2-progress-ring-glow.active {
    opacity: 1;
}

.home2-metric-value-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.home2-metric-value {
    text-align: center;
}

.home2-value-number, .home2-percent {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 30%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home2-value-number.visible, .home2-percent.visible {
    opacity: 1;
    transform: translateY(0);
}

.home2-metric-info {
    text-align: center;
}

.home2-metric-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.home2-metric-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.home2-metrics-social-proof {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home2-social-proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.home2-client-avatars {
    display: flex;
    align-items: center;
}

.home2-client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-left: -10px;
    transition: transform 0.3s ease;
}

.home2-client-avatar:first-child {
    margin-left: 0;
}

.home2-client-avatar:hover {
    transform: translateY(-5px);
}

.home2-client-avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #6366f1;
    margin-left: -10px;
}

.home2-social-proof-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .home2-metrics-content {
        padding: 2rem 1rem;
    }

    .home2-metrics-title {
        font-size: 2rem;
    }

    .home2-metrics-container {
        gap: 1.5rem;
    }

    .home2-social-proof-item {
        flex-direction: column;
        text-align: center;
    }
}