/**
 * ProSBC Premium Wizard - Landing Page Styles
 * Version: 2.0.0
 */

/* Landing Page (Step 0) */
.landing-page {
    background: #f5f5f5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
}

.landing-page.hidden {
    display: none !important;
}

/* Top Section */
.landing-top-section {
    background: white;
    text-align: center;
    padding: 50px 20px;
}

.landing-top-section h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.landing-prosbc-logo {
    max-width: 280px;
    margin-bottom: 30px;
}

.landing-top-section .subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* CTA Section */
.landing-wizard-cta {
    background: #1e3a5f;
    padding: 40px 20px;
    text-align: center;
}

.landing-wizard-cta p {
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}

.landing-wizard-cta .btn {
    background: white;
    color: #1e3a5f;
    padding: 14px 40px;
    font-size: 16px;
}

.landing-wizard-cta .btn:hover {
    background: #f0f0f0;
}

/* Steps Section */
.landing-bottom-section {
    background: #f0f0f0;
    padding: 50px 20px 40px;
}

.landing-bottom-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.landing-steps-container {
    flex: 1;
}

.landing-steps-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.landing-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.landing-step-number {
    width: 36px;
    height: 36px;
    background: #2b6cb0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 16px;
    margin-top: 2px;
}

.landing-step-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.landing-step-text strong {
    color: #1e3a5f;
}

.landing-support-image {
    flex-shrink: 0;
    width: 350px;
}

.landing-support-image img {
    width: 100%;
    border-radius: 12px;
}

.landing-footer-contact {
    max-width: 1000px;
    margin: 30px auto 0;
    font-size: 16px;
    color: #555;
}

.landing-footer-contact a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
}

.landing-footer-contact a:hover {
    text-decoration: underline;
}

/* Resources Section */
.landing-resources-section {
    background: #f0f0f0;
    padding: 50px 20px 60px;
}

.landing-resources-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.landing-resources-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.landing-resource-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
}

.landing-resource-card h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.landing-resource-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.landing-resource-card ul {
    margin: 0 0 20px 20px;
    padding: 0;
}

.landing-resource-card li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.landing-resource-card a {
    color: #1e3a5f;
    text-decoration: none;
}

.landing-resource-card a:hover {
    text-decoration: underline;
}

.landing-dashboard-image {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

.landing-dashboard-link {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 800px) {
    .landing-bottom-content {
        flex-direction: column;
    }

    .landing-support-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .landing-resources-grid {
        grid-template-columns: 1fr;
    }
}
