/* blog-grids.html — vouches hero */

#banner-section.vouches-hero.services-hero,
#banner-section.vouches-hero.page-hero {
    background: linear-gradient(160deg, #ffffff 0%, #ecfdf5 28%, #eff6ff 62%, #f8fafc 100%);
}

#banner-section.vouches-hero.services-hero::before,
#banner-section.vouches-hero.page-hero::before {
    background:
        radial-gradient(circle at 12% 40%, rgba(16, 185, 129, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 88% 24%, rgba(59, 130, 246, 0.14) 0%, transparent 40%),
        radial-gradient(circle at 50% 92%, rgba(52, 211, 153, 0.1) 0%, transparent 38%);
}

#banner-section.vouches-hero.services-hero::after,
#banner-section.vouches-hero.page-hero::after {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
}

html.dark #banner-section.vouches-hero.services-hero,
html.dark #banner-section.vouches-hero.page-hero {
    background: linear-gradient(160deg, #0f172a 0%, #134e4a 38%, #1e3a5f 70%, #0f172a 100%);
}

html.dark #banner-section.vouches-hero.services-hero::before,
html.dark #banner-section.vouches-hero.page-hero::before {
    background:
        radial-gradient(circle at 12% 40%, rgba(16, 185, 129, 0.22) 0%, transparent 42%),
        radial-gradient(circle at 88% 24%, rgba(59, 130, 246, 0.16) 0%, transparent 40%);
}

.vouches-hero .services-hero-badge,
.vouches-hero .page-hero-badge {
    color: #047857;
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.28);
}

.vouches-hero .services-hero-badge::before,
.vouches-hero .page-hero-badge::before {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
}

html.dark .vouches-hero .services-hero-badge,
html.dark .vouches-hero .page-hero-badge {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(52, 211, 153, 0.35);
}

.vouches-hero .services-hero-title,
.vouches-hero .page-hero-title {
    background: linear-gradient(135deg, #0f172a 0%, #059669 45%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.dark .vouches-hero .services-hero-title,
html.dark .vouches-hero .page-hero-title {
    background: linear-gradient(135deg, #f8fafc 0%, #6ee7b7 42%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vouches-hero .hero-stat-value,
.vouches-hero .page-hero-stat-value {
    color: #047857;
}

html.dark .vouches-hero .hero-stat-value,
html.dark .vouches-hero .page-hero-stat-value {
    color: #6ee7b7;
}

.vouches-hero-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #047857;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 999px;
}

html.dark .vouches-hero-notice {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(52, 211, 153, 0.35);
}

.vouches-hero-notice__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
    animation: vouchesHeroPulse 2s ease-in-out infinite;
}

@keyframes vouchesHeroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.88); }
}
