/* --- HERO SECTION --- */
.service-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.service-hero p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* --- INFOGRAPHIC: THE PROCESS FLOW --- */
.process-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
}

/* The Line connecting steps (Desktop only) */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.step-card:hover { transform: translateY(-10px); }

.step-number {
    width: 50px;
    height: 50px;
    background: #0069ff;
    color: white;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 20px auto; /* Pulls it up */
    border: 5px solid white;
    font-size: 1.2rem;
}

/* --- STATS GRID --- */
.service-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.stat-box h3 { font-size: 2.5rem; color: #0069ff; margin: 0; font-weight: 800; }
.stat-box p { color: #64748b; font-weight: 500; margin: 5px 0 0; }

/* --- FEATURES LIST --- */
.features-grid-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0069ff;
}
.feature-box h4 { margin: 0 0 10px 0; font-size: 1.1rem; }
.feature-box p { margin: 0; font-size: 0.95rem; color: #666; }

/* Mobile */
@media (max-width: 900px) {
    .process-steps::before { display: none; }
    .features-grid-service { grid-template-columns: 1fr; }
    .service-stats { grid-template-columns: 1fr 1fr; }
    .service-hero h1 { font-size: 2.5rem; }
}