/* Welcome Page Styles */

/* Hero Section - Clean Background */
.welcome-hero {
    background: #FAFAFA;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
}

/* Logo styling */
.welcome-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Step numbers - Minimalist style */
.step-number {
    width: 40px;
    height: 40px;
    background: var(--brand-accent);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* CTA Button - Bold and Simple */
.btn-cta {
    background: var(--brand-accent);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background: var(--brand-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 154, 138, 0.3);
    color: white;
}

/* Card - Clean White with Subtle Shadow */
.welcome-hero .card {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.welcome-hero .card h1 {
    color: var(--brand-neutral-900);
    font-weight: 700;
}

.welcome-hero .card h2,
.welcome-hero .card h3 {
    color: var(--brand-neutral-800);
    font-weight: 600;
}

.welcome-hero .card .text-muted {
    color: var(--brand-neutral-600) !important;
}

.welcome-hero .card a:not(.btn) {
    color: var(--brand-accent);
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.welcome-hero .card a:not(.btn):hover {
    color: var(--brand-accent-dark);
}
