/* ==========================================================================
   Global Hero Section
   ========================================================================== */
.svc-hero {
    position: relative;
    padding: 130px 0 100px;
    text-align: center;
    overflow: hidden;
    background: transparent;
}

.theme-dark .svc-hero {
    background: transparent;
}

.svc-hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.svc-blur-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.blob-primary {
    top: -200px;
    left: -100px;
    background: var(--thm-primary);
}

.blob-secondary {
    bottom: -150px;
    right: -100px;
    background: var(--thm-primary);
    opacity: 0.08;
    filter: blur(120px);
}

.svc-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.8;
}

.theme-dark .svc-grid-overlay {
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
}

.svc-hero-content {
    position: relative;
    z-index: 2;
}

.svc-hero-badge-wrap {
    margin-bottom: 24px;
}

.svc-hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--thm-primary);
    background-color: rgba(97, 206, 112, 0.1);
    padding: 6px 16px;
    border-radius: var(--thm-badge-radius, 50px);
}

@supports (background-color: color-mix(in srgb, var(--thm-primary) 10%, transparent)) {
    .svc-hero-badge {
        background-color: color-mix(in srgb, var(--thm-primary) 10%, transparent);
    }
}

.svc-hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.theme-dark .svc-hero-title {
    color: var(--thm-light);
}

.svc-hero-desc {
    font-size: 19px;
    line-height: 1.8;
    color: #475569;
    max-width: 100%;
    margin: 0 auto;
}

.theme-dark .svc-hero-desc {
    color: #cbd5e1;
}

.svc-hero-desc p {
    margin-bottom: 0;
}
