.process-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    color: var(--white);
    text-align: center;
}

.process-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.process-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    padding: 100px 0;
    background: var(--white);
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(197, 165, 114, 0.3);
}

.step-title {
    color: var(--dark-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-time {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1rem;
    background: rgba(197, 165, 114, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
}

.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.benefits-title {
    color: var(--dark-navy);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    padding-left: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--dark-navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(197, 165, 114, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(197, 165, 114, 0.4);
    color: var(--white);
}

@media (max-width: 768px) {
    .process-title {
        font-size: 2.5rem;
    }

    .step-card {
        margin-bottom: 30px;
    }

    .benefits-title {
        font-size: 2.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 2rem;
    }
}
