/* Parallax hero with floating card on the left */
.llhome-hero {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.llhome-hero-card {
    background: rgba(16, 34, 44, 0.92);
    width: 90%;
    max-width: 420px;
    margin-left: 5%;
    padding: 45px 38px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    text-align: center;
}
.llhome-hero-logo-panel {
    background: #F4F8FA;
    border-radius: 12px;
    padding: 18px 24px;
    display: inline-block;
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.llhome-hero-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
}
.llhome-hero-card h1 {
    font-family: 'Brush Script MT', cursive;
    color: #FFFFFF;
    font-size: 60px;
    font-weight: 400;
    margin: 0 0 2px;
    line-height: 1.1;
}
.llhome-hero-sub {
    color: #4FB3A0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase !important;
    letter-spacing: 2px;
    margin: 0 0 22px;
}
.llhome-hero-blurb {
    color: #C9D9DE;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 26px;
}

@media (max-width: 900px) {
    .llhome-hero { justify-content: center; align-items: flex-end; padding-bottom: 40px; }
    .llhome-hero-card { margin-left: 0; max-width: 92%; }
}
@media (max-width: 768px) {
    .llhome-hero { background-attachment: scroll; }
}

.llhome-bg {
    background-color: #10222C;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 14px);
}
.llhome-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.llhome-wrap * { text-transform: none !important; }

.llhome-founding-banner {
    background: #142A38;
    border-left: 3px solid #4FB3A0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 70px;
}
.llhome-founding-banner p { color: #C9D9DE; font-size: 14px; margin-bottom: 12px; line-height: 1.6; }
.llhome-founding-banner strong { color: #FFFFFF; }

.llhome-intro { text-align: center; max-width: 750px; margin: 0 auto 70px; }
.llhome-intro h2 { color: #FFFFFF; font-size: 24px; margin-bottom: 16px; }
.llhome-intro p { color: #A9C2CE; font-size: 15px; line-height: 1.7; }

.llhome-services-header { text-align: center; margin-bottom: 30px; }
.llhome-services-header h2 { color: #FFFFFF; font-size: 24px; }

.llhome-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.llhome-service-card {
    background: #1B3A4B;
    border-top: 3px solid #2E8B7A;
    border-radius: 12px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
}
.llhome-service-card h3 { color: #4FB3A0; font-size: 18px; margin-bottom: 12px; }
.llhome-service-card p { color: #C9D9DE; font-size: 14px; line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
.llhome-card-link { color: #F4F8FA; font-size: 13px; font-weight: 600; text-decoration: underline; }
.llhome-card-link:hover { color: #4FB3A0; }

.llhome-cta {
    text-align: center;
    background: #142A38;
    border-top: 3px solid #4FB3A0;
    border-radius: 12px;
    padding: 50px 30px;
    margin-top: 40px;
}
.llhome-cta h2 { color: #FFFFFF; font-size: 26px; margin-bottom: 12px; }
.llhome-cta p { color: #C9D9DE; font-size: 14px; margin-bottom: 24px; }

.llhome-btn, .llhome-btn-alt {
    display: inline-block;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}
.llhome-btn { background: #F4F8FA; color: #1B3A4B; }
.llhome-btn:hover { background: #4FB3A0; color: #FFFFFF; }
.llhome-btn-alt { background: #4FB3A0; color: #FFFFFF; margin-top: 10px; }
.llhome-btn-alt:hover { background: #F4F8FA; color: #1B3A4B; }

@media (max-width: 600px) {
    .llhome-hero-card h1 { font-size: 40px; }
}