/* HOW IT WORKS - CLEAN & ELEGANT */

/* Section */
.how-it-works {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(55, 111, 229, 0.1);
    border: 2px solid rgba(55, 111, 229, 0.2);
    border-radius: 30px;
    color: #376fe5;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.how-it-works .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.how-it-works .section-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.workflow-interactive {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* Individual Card */
.workflow-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: block;
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(55, 111, 229, 0.15);
    border-color: #376fe5;
}

/* Card Elements */
.card-glow,
.badge-orbit,
.step-visual,
.card-connector,
.workflow-bg-mesh,
.dots-canvas {
    display: none;
}

.card-inner {
    background: none;
    border: none;
    padding: 0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Step Badge */
.step-badge {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #376fe5, #5c85ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(55, 111, 229, 0.3);
}

.step-num {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

/* Titles */
.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 18px;
}

/* Features */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(55, 111, 229, 0.06);
    border: 1px solid rgba(55, 111, 229, 0.15);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #376fe5;
}

.feature-item i {
    font-size: 12px;
}

/* Stats */
.card-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #376fe5;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Step Colors */
.workflow-card[data-step="1"] .step-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.workflow-card[data-step="2"] .step-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.workflow-card[data-step="3"] .step-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.workflow-card[data-step="4"] .step-badge {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.workflow-card[data-step="5"] .step-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.workflow-card[data-step="6"] .step-badge {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.workflow-card[data-step="7"] .step-badge {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

/* Success Section */
.workflow-success {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 50px auto 0;
}

.success-icon {
    margin-bottom: 25px;
}

.success-icon i {
    font-size: 70px;
    color: #10b981;
}

.success-ripple {
    display: none;
}

.workflow-success h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
}

.workflow-success p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 35px;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.success-stat .stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #376fe5;
    margin-bottom: 6px;
}

.success-stat .stat-text {
    font-size: 14px;
    color: #6b7280;
}

/* CTA */
.workflow-cta-mega {
    background: linear-gradient(135deg, #376fe5, #5c85ea);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 50px;
}

.workflow-cta-mega::before {
    display: none;
}

.workflow-cta-mega h2 {
    font-size: 34px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.workflow-cta-mega p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-mega {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-mega::before {
    display: none;
}

.btn-mega.btn-primary {
    background: white;
    color: #376fe5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-mega.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-mega.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-mega.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works .section-title {
        font-size: 32px;
    }
    
    .workflow-interactive {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .workflow-card {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-mega {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
