﻿
/*howitworkshero*/
.body {
    background: #f8fafc;
}
.how-hero {
    background: #f8fafc; /* slate-50 */
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.breadcrumb-link {
    color: #475569;
    text-decoration: none;
    transition: color .2s ease;
}

    .breadcrumb-link:hover {
        color: #059669;
    }

.how-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #0f172a;
    line-height: 1.2;
}

.how-gradient {
    background: linear-gradient(to right, #059669, #16a34a);
    -webkit-background-clip: text;
    color: transparent;
}

.how-subtitle {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #1e293b;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    background: #d1fae5;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn-primary {
    background: white;
    color: #059669;
    padding: 16px 36px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 1.25rem;
    border: none;
    transition: all .3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    width: 100%; 
    min-height: 60px; 
    justify-content: center;
    text-align: center;
}

    .cta-btn-primary:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 18px 40px rgba(0,0,0,.25);
    }

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.25rem;
    border: 2px solid white;
    transition: all .3s ease;
}

    .cta-btn-secondary:hover {
        background: white;
        color: #059669;
        transform: translateY(-5px);
   