 /* ===== STATS SECTION ===== */
.stats-section-premium {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 101, 42, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.stats-glow-1 {
    top: -100px;
    left: -100px;
}

.stats-glow-2 {
    bottom: -100px;
    right: -100px;
}

.stat-card-premium {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.stat-card-premium::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(transparent, rgba(255,255,255,0.2), transparent);
}

.stat-card-premium:last-child::after {
    display: none;
}

.stat-number-premium {
    font-family:var(--font-01);
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number-premium .plus {
    color: var(--accent-orange);
    font-size: 3rem;
}

.stat-label-premium {
    font-family: var(--font-03);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stats-quote-premium {
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 0;
    position: relative;
}

.stats-quote-premium p {
    font-family: var(--font-01);
    font-size: 1.5rem;
    font-style: italic;
    color: #000;
    line-height: 1.6;
}

.stats-quote-premium .quote-author {
    font-family: var(--font-03);
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-top: 1rem;
    display: block;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.trust-badge {
    text-align: center;
}

.trust-badge-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 101, 42, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(232, 101, 42, 0.3);
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-icon {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.trust-badge-icon i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: color 0.3s ease;
}

.trust-badge:hover .trust-badge-icon i {
    color: var(--white);
}

.trust-badge span {
    font-family: var(--font-03);
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}