/* Landing Page Styles */

.landing-container {
    min-height: 100vh;
    background: #f5f5f5;
}

.landing-header {
    background: #EAEFF2;
    color: #2c3e50;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.landing-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-logo {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    display: block;
}

.landing-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.landing-title {
    font-size: 68px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2C5F7C;
    line-height: 1;
    white-space: nowrap;
}

.landing-tagline {
    font-size: 26px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 4px;
    color: #8AB4C8;
}

.landing-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.landing-hero {
    text-align: center;
    margin-bottom: 80px;
}

.landing-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.landing-hero-subtitle {
    font-size: 20px;
    color: #666;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.landing-cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #2C5F7C;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

.landing-cta-button:hover {
    background: #245A73;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 124, 0.4);
}

.landing-cta-button-large {
    font-size: 20px;
    padding: 20px 40px;
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.landing-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.landing-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.landing-feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 16px 0;
}

.landing-feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.landing-cta-section {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.landing-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 16px 0;
}

.landing-cta-text {
    font-size: 18px;
    color: #666;
    margin: 0 0 32px 0;
}

.landing-footer {
    text-align: center;
    padding: 24px 20px;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.landing-footer a {
    color: #2C5F7C;
    text-decoration: none;
    font-size: 14px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .landing-logo {
        width: 120px;
        height: 120px;
    }

    .landing-title {
        font-size: 42px;
    }

    .landing-tagline {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .landing-hero-title {
        font-size: 36px;
    }

    .landing-hero-subtitle {
        font-size: 18px;
    }

    .landing-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .landing-main {
        padding: 40px 20px;
    }

    .landing-cta-section {
        padding: 40px 20px;
    }
}
