/* Process Flow Custom CSS - Premium Grade */

/* Modern Segmented Control Style Switcher */
.process-switch-wrapper {
    display: inline-flex;
    background: #f3f4f6;
    /* Lighter background for the track */
    padding: 5px;
    /* Slightly tighter padding */
    border-radius: 16px;
    /* Pill shape */
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    /* Very subtle inset */
    margin: 0 auto 4rem auto;
    left: 50%;
    transform: translateX(-50%);
}

.process-btn {
    border: none;
    background: transparent;
    padding: 0.8rem 2.2rem;
    /* Wider touch area */
    border-radius: 12px;
    font-weight: 600;
    color: #64748b;
    /* Slate 500 */
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
    opacity: 0.7;
    /* Distinct inactive visual */
}

.process-btn:hover {
    color: #334155;
    background: rgba(0, 0, 0, 0.05);
    /* Subtle hover for inactive */
    opacity: 1;
}

.process-btn.active {
    background: #4f46e5;
    /* Full Primary Background */
    color: #ffffff !important;
    /* Force White Text */
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
    /* Colored Shadow */
    font-weight: 700;
    transform: none;
    opacity: 1;
}

/* Icons in buttons */
.process-btn i {
    font-size: 1.15rem;
    /* transition: transform 0.3s ease; Removed excessive animation */
}

.process-btn.active i {
    /* transform: scale(1.1); Removed excessive scale */
    color: #ffffff !important;
    /* Ensure icon is white */
}

.process-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.process-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(102, 126, 234, 0.4), 0 10px 10px -5px rgba(102, 126, 234, 0.2);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.7;
    text-transform: uppercase;
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    /* transition: transform 0.3s ease; Removed excessive animation */
}



.process-card.light .process-icon {
    background: #eff6ff;
    color: #4f46e5;
}

.process-card.highlight .process-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(12px);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.process-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.85;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.process-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.process-tag:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Section Header Styling */
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4f46e5;
    display: block;
    margin-bottom: 0.75rem;
}

.modern-title {
    font-size: 2.75rem;
    font-weight: 800;
    /* Dark gradient for text */
    background: -webkit-linear-gradient(45deg, #111827, #374151);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}