.process-step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.process-step::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--accent-gradient);
    border-radius: 5px 0 0 5px;
}
.process-step:hover { transform: translateX(6px); box-shadow: var(--shadow-xl); }
.process-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255,90,0,0.3);
}
.process-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(29,78,216,0.25);
}
.process-step-body { flex: 1; }
.process-step-body h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.process-step-body p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.step-detail-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.chip { background: var(--bg-light); color: var(--primary-color); border: 1px solid var(--border-light); border-radius: 50px; padding: 0.25rem 0.875rem; font-size: 0.8rem; font-weight: 600; }
.chip-orange { background: #fff5f0; color: #ff5a00; border-color: rgba(255,90,0,0.2); }
.sticky-panel {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.process-connector { display: flex; justify-content: flex-start; padding-left: 2.5rem; margin: -0.5rem 0; }
.process-connector-line { width: 3px; height: 2.5rem; background: linear-gradient(to bottom, #ff5a00, #1d4ed8); border-radius: 2px; margin-left: 28px; }
.tech-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--secondary-color); }
.tech-card-icon { width: 48px; height: 48px; margin: 0 auto 0.875rem; display: block; object-fit: contain; }
.tech-card h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.tech-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.timeline-visual {
    background: linear-gradient(135deg, #1e3a6e 0%, #2347a0 100%);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.timeline-visual::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,90,0,0.12), transparent 70%);
    right: -100px; top: -100px;
}
.timeline-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 1; }
.timeline-item:last-child { border-bottom: none; }
.timeline-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.timeline-dot.orange { background: rgba(255,90,0,0.2); color: #ff5a00; }
.timeline-dot.blue { background: rgba(29,78,216,0.2); color: #3b82f6; }
.timeline-dot.green { background: rgba(16,185,129,0.2); color: #10b981; }
.timeline-text { flex: 1; }
.timeline-text strong { color: white; font-size: 0.95rem; }
.timeline-text span { display: block; color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 0.15rem; }

@media (max-width: 767.98px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1.25rem 1.5rem 1.5rem;
    }
    .process-step:hover { transform: none; }
    .process-step-num,
    .process-step-icon {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }
    .process-step-body h3 { font-size: 1.1rem; }
    .process-step-body p { font-size: 0.9rem; }
    .step-detail-chips { gap: 0.4rem; }
    .chip { font-size: 0.72rem; padding: 0.2rem 0.65rem; }
    .process-connector { padding-left: 1.5rem; }
    .process-connector-line { margin-left: 20px; }
    .section-title { font-size: 1.75rem !important; }
    .section-pad { padding: 3rem 0; }
    .section-pad-sm { padding: 2rem 0; }
    .tech-card { padding: 1.25rem 1rem; }
    .tech-card-icon { width: 40px; height: 40px; }
    .page-hero h1 { font-size: 1.75rem; }
    .page-hero p { font-size: 0.95rem; }
    .page-hero { min-height: 280px; padding-top: 140px; padding-bottom: 50px; }
    .row.g-4 .col-6 .text-center .fw-600 { font-size: 0.7rem; }
}

/* ── Extracted inline styles ── */
.icon-orange { color: #ff5a00; }
.text-highlight { color: #ff7a30; }
.fs-md { font-size: 1.05rem; }
.fs-xxs { font-size: 0.82rem; }
.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
}
.stat-value.orange {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-value.blue {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { letter-spacing: 0.5px; }
.timeline-heading {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}
.status-box-border { border-color: var(--border-light) !important; }
.status-dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}
.btn-white-primary { color: var(--primary-color); }
.btn-white-accent { color: var(--accent-color); }
