/* --- SERVICES SECTION CORE --- */
.services-wrapper {
    background: #ffffff;
    color: #0f172a;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

.services-wrapper .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- HERO: SPACIOUS & CLEAN --- */
.services-hero {
    padding: 10rem 0 6rem;
    position: relative;
    background: radial-gradient(circle at 90% 10%, #fffcfc 0%, #ffffff 100%);
}

.hero-bg-layer {
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(209, 44, 44, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.pulse-indicator {
    width: 8px; height: 8px;
    background: #d12c2c;
    border-radius: 50%;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: #d12c2c;
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

.hero-display-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 3rem;
    color: #0f172a;
}

.accent-gradient {
    background: linear-gradient(135deg, #0f172a 30%, #d12c2c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HERO SPLIT LAYOUT --- */
.hero-split-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #475569;
    max-width: 650px;
}

.hero-metrics {
    display: flex;
    gap: 3rem;
    padding-left: 3rem;
    border-left: 2px solid #f1f5f9;
}

.metric-item strong {
    display: block;
    font-size: 2.25rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1;
}

.metric-item span {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- BUTTONS --- */




/* --- NARRATIVE SECTION --- */
.services-narrative {
    padding: 4rem 0 10rem;
}

.narrative-box {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 5rem;
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.03);
}

.tag {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #d12c2c;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    display: block;
}

.narrative-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
}

.text-red { color: #d12c2c; }

.narrative-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
}

/* --- ANIMATIONS --- */
@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-split-content, .narrative-box {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-metrics { padding-left: 0; border-left: none; gap: 4rem; }
}

@media (max-width: 768px) {
    .services-hero { padding: 7rem 0 4rem; text-align: left; }
    .hero-display-title { font-size: 2.75rem; }
    .hero-button-group { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .btn-solid { width: 100%; text-align: center; }
    .narrative-box { padding: 3.5rem 1.5rem; border-radius: 24px; }
    .narrative-header h2 { font-size: 2.25rem; }
}