/* Landing Page Styles */
.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 60%, #dc2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}
.landing-logo { height: 80px; margin-bottom: 24px; }
.landing-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 12px; }
.landing-hero .lead { font-size: 1.2rem; color: #cbd5e1; max-width: 600px; margin: 0 auto 36px; }

.service-cards { padding: 80px 20px; background: #f8fafc; }
.service-card {
    border: none;
    border-radius: 12px;
    text-align: center;
    padding: 36px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
    height: 100%;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.service-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.landing-footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 24px;
    text-align: center;
    font-size: .85rem;
}
