/* Homepage Modern Redesign Styles */

/* Link Styling */
.hero-section-full a,
.steps-section a {
    color: var(--primary) !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: opacity 0.2s;
    border-bottom: none !important;
}

.hero-section-full a:hover,
.steps-section a:hover {
    opacity: 0.8;
    color: var(--accent) !important;
}

/* Step Cards - Clean Look with Separators */
.step-card {
    background: transparent;
    border-radius: 0;
    padding: 1rem 2rem;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
    text-align: center;
}

/* Pink Separator between cards */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 2px;
    background: var(--accent);
    opacity: 0.3;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.step-description {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Hero Enhancement */
.hero-background {
    background: linear-gradient(135deg, hsl(260, 100%, 98%) 0%, hsl(330, 100%, 98%) 100%);
    border-radius: 24px;
    padding: 3rem 0;
}

/* CTA Button Glow */
/* FIX: Force white text specifically for the CTA button in Hero */
.hero-section-full .btn-primary,
.hero-section-full a.btn-primary,
.btn-primary {
    color: #ffffff !important;
    text-decoration: none !important;
}

.hero-section-full .btn-primary:hover,
.hero-section-full a.btn-primary:hover,
.btn-primary:hover {
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
    color: #ffffff !important;
    opacity: 1 !important;
}

/* Responsive Grid */
@media (max-width: 900px) {
    .step-cards-grid {
        grid-template-columns: 1fr !important;
    }

    /* Hide separator on mobile since items are stacked */
    .step-card:not(:last-child)::after {
        display: none;
    }

    .step-card {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 2rem;
    }

    .step-card:last-child {
        border-bottom: none;
    }
}