/* Special Card Styles for Steps and Process */
.process-description {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 1rem;
    border: 1px dashed var(--primary-color);
    margin: 2rem 0;
}

.process-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.steps-section {
    margin-top: 5rem;
    position: relative;
}

.steps-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.steps-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    border-radius: 1rem;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.1);
}

.step-card:hover::before {
    opacity: 0.05;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-link {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-link:hover {
    background: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
}

/* Empower Section Cards */
.empower-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.empower-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.empower-card {
    border-radius: 12px;
    padding: 40px;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.empower-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.1);
}

.empower-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.empower-card p {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.card-cta {
    display: flex;
    gap: 15px;
}

/* Steps Section - Comprehensive Styles */
.steps-section {
    margin-top: 5rem;
    position: relative;
    padding: 4rem 0;
    background-color: rgba(var(--primary-rgb), 0.03);
    border-radius: 1rem;
}

.steps-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    color: var(--heading-color);
    padding: 0 2rem;
}

.steps-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.step-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.step-card:hover h4 {
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.step-link {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.step-link:hover {
    background: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.1);
}

/* Connector Lines Between Steps */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    .step-card:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 3rem 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .steps-section h3 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .steps-section {
        padding: 2rem 0;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}