/* Landing Page Specifics */
.landing-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.logo { font-size: 1.8rem; font-weight: bold; }
.logo span { color: #f1c40f; }

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 800; }
.hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 40px; line-height: 1.6; opacity: 0.9; }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: -60px;
    padding-bottom: 80px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    text-align: center;
    color: #333;
}

.btn {
    background-color: #f1c40f;
    color: #2c3e50;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}