/* ===== SOFTER HEADER STYLES ===== */

.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    z-index: 0;
}

.header > * {
    position: relative;
    z-index: 1;
}

/* Header Main Section */
.header-main {
    margin-bottom: 35px;
}

.header-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Three Pillars Display */
.header-pillars {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 18px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-width: 130px;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.pillar-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.pillar-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    opacity: 0.95;
}

/* ===== PROCESS FLOW SECTION ===== */

.process-flow-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f5f9 100%);
    padding: 60px 20px;
}

.flow-container {
    max-width: 1400px;
    margin: 0 auto;
}

.flow-header {
    text-align: center;
    margin-bottom: 50px;
}

.flow-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.flow-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Flow Steps - Compact Version */
.flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    min-width: 180px;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Flow Arrows - Smaller */
.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-arrow svg {
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 30px;
    height: 16px;
}

.flow-arrow:hover svg {
    opacity: 1;
    transform: translateX(2px);
}

/* Flow Footer */
.flow-footer {
    text-align: center;
    margin-top: 50px;
}

.key-message {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px 40px;
    border-radius: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.key-message strong {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Responsive - Compact Flow */
@media (max-width: 768px) {
    .header {
        padding: 35px 20px;
    }
    
    .header-icon {
        font-size: 2.5rem;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .header-pillars {
        gap: 15px;
    }
    
    .pillar {
        min-width: 110px;
        padding: 15px 12px;
    }
    
    .pillar-icon {
        font-size: 1.6rem;
    }
    
    .pillar-text {
        font-size: 0.8rem;
    }
    
    .process-flow-section {
        padding: 40px 15px;
    }
    
    .flow-header h2 {
        font-size: 1.6rem;
    }
    
    .flow-header p {
        font-size: 1rem;
    }
    
    .flow-steps {
        gap: 12px;
        margin: 30px 0;
    }
    
    .step-card {
        min-width: 140px;
        padding: 12px 15px;
    }
    
    .step-card h3 {
        font-size: 0.9rem;
    }
    
    .flow-arrow svg {
        width: 25px;
        height: 14px;
    }
    
    .key-message {
        padding: 20px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-pillars {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .pillar {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        max-width: 250px;
        gap: 12px;
        padding: 12px 15px;
    }
    
    .pillar-text {
        text-align: left;
    }
    
    .flow-header h2 {
        font-size: 1.4rem;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-card {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .step-card h3 {
        white-space: normal;
        font-size: 0.95rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .key-message {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
}