.how-it-works-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.95);
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 199, 56, 0.3), transparent);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    align-items: start;
}

.step-card {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(229, 199, 56, 0.05);
    border-color: rgba(229, 199, 56, 0.4);
    transform: translateY(-5px);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 199, 56, 0.1);
    border: 2px solid #e5c738;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    color: #e5c738;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #e5c738;
    opacity: 0.5;
    display: none;
}

.how-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(229, 199, 56, 0.05);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 12px;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .step-card {
        padding: 24px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 14px;
    }

    .how-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .how-cta p {
        font-size: 16px;
    }
}
