/* ===== Header ===== */
.l-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 20; }
.l-header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.l-header-left { display: flex; align-items: center; gap: 20px; }
.l-nav { display: flex; gap: 22px; font-size: 14px; }
.l-nav a:hover { color: var(--teal-600); }
.l-link { font-size: 13px; color: var(--text-muted); }
.l-link:hover { color: var(--teal-600); }
.l-cta-nav-btn {
    background: var(--teal-600);
    color: #fff;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}
.l-cta-nav-btn:hover { background: var(--teal-800); }

/* ===== Hero ===== */
.l-hero { background: linear-gradient(180deg, var(--teal-50) 0%, #fff 65%); padding: 56px 24px 64px; }
.l-hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 860px) { .l-hero-inner { grid-template-columns: 1fr; } }

.l-hero-media { position: relative; }
.l-hero-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 40px -16px rgba(15, 110, 86, 0.25);
}
.l-hero-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, var(--teal-100), var(--teal-50));
    color: var(--teal-600);
}
.l-hero-badge-card {
    position: absolute;
    bottom: -18px;
    right: 24px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.2);
}
.l-hero-badge-icon { font-size: 18px; }

.l-hero-text { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.l-pill {
    display: inline-block;
    background: var(--teal-50);
    color: var(--teal-800);
    border: 1px solid var(--teal-100);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}
.l-hero-text h1 { font-size: 34px; font-weight: 700; line-height: 1.4; margin: 0; }
.l-hero-text > p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin: 0; max-width: 480px; }
.l-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.l-btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}
.l-btn-outline:hover { border-color: var(--teal-400); color: var(--teal-600); }
.l-hero-rating { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.l-stars { color: #E0A82E; letter-spacing: 2px; font-size: 15px; }

/* ===== Generic section ===== */
.l-section { max-width: 1160px; margin: 0 auto; padding: 64px 24px; }
.l-section-alt { background: var(--gray-bg); max-width: none; }
.l-section-alt > * { max-width: 1160px; margin-left: auto; margin-right: auto; }
.l-section-head { text-align: center; margin-bottom: 36px; }
.l-section-head-row { text-align: right; display: flex; justify-content: space-between; align-items: flex-end; }
.l-eyebrow { display: block; font-size: 12px; color: var(--teal-600); font-weight: 500; margin-bottom: 8px; }
.l-section h2 { font-size: 24px; font-weight: 700; margin: 0; }
.l-about-text { font-size: 15px; line-height: 1.9; color: var(--text-muted); text-align: center; max-width: 720px; margin: 0 auto; }

/* ===== Steps ===== */
.l-steps { display: flex; align-items: flex-start; justify-content: center; gap: 8px; flex-wrap: wrap; }
.l-step { flex: 1; min-width: 200px; max-width: 260px; text-align: center; }
.l-step-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--teal-50); color: var(--teal-600);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin: 0 auto 14px;
}
.l-step h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; }
.l-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.l-step-line { flex: 0 0 60px; height: 1px; background: var(--border); margin-top: 28px; }
@media (max-width: 700px) { .l-step-line { display: none; } }

/* ===== Services ===== */
.l-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.l-service-card {
    background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 26px;
    transition: transform .15s ease, box-shadow .15s ease;
}
.l-service-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -18px rgba(0,0,0,0.25); }
.l-service-card-accent { background: #FBEADD; border-color: #F3D9BE; }
.l-service-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--teal-50); font-size: 18px; margin-bottom: 14px;
}
.l-service-card-accent .l-service-icon { background: #F3D9BE; }
.l-service-card h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; color: var(--teal-800); }
.l-service-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ===== CTA band ===== */
.l-cta-band {
    background: var(--teal-800);
    color: #fff;
    text-align: center;
    padding: 64px 24px;
}
.l-cta-star { display: block; font-size: 26px; margin-bottom: 12px; color: var(--teal-100); }
.l-cta-band h2 { font-size: 26px; font-weight: 700; margin: 0 0 14px; }
.l-cta-band p { font-size: 14px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 28px; line-height: 1.8; }
.l-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.l-btn-white { background: #fff; color: var(--teal-800); padding: 11px 24px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.l-btn-white:hover { background: var(--teal-50); }
.l-btn-outline-white { border: 1px solid rgba(255,255,255,0.5); color: #fff; padding: 11px 24px; border-radius: 999px; font-size: 14px; font-weight: 500; }
.l-btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ===== Testimonials ===== */
.l-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.l-testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 24px; position: relative; }
.l-quote-mark { position: absolute; top: 16px; left: 22px; font-size: 40px; color: var(--teal-100); font-family: Georgia, serif; line-height: 1; }
.l-testimonial-card p { font-size: 14px; color: var(--text); line-height: 1.8; margin: 12px 0 18px; }
.l-testimonial-who { display: flex; align-items: center; gap: 10px; }
.l-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--teal-50); color: var(--teal-800);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; flex-shrink: 0;
}
.l-testimonial-who div { display: flex; flex-direction: column; font-size: 13px; }
.l-testimonial-who strong { font-weight: 500; }
.l-testimonial-who span { color: var(--text-muted); font-size: 12px; }

/* ===== Contact (compact) ===== */
.l-contact-compact { text-align: center; padding-top: 40px; padding-bottom: 40px; }
.l-contact-grid { display: flex; flex-direction: column; gap: 8px; align-items: center; font-size: 14px; color: var(--text-muted); margin-top: 12px; }

/* ===== Section images (about/services/contact uploads) ===== */
.l-section-img { max-width: 100%; max-height: 260px; border-radius: 16px; display: block; margin: 0 auto 24px; object-fit: cover; }

/* ===== Footer ===== */
.l-footer { background: #fff; border-top: 1px solid var(--border); padding: 28px 24px; }
.l-footer-inner { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.l-footer-links { display: flex; gap: 18px; font-size: 13px; color: var(--text-muted); }
.l-footer-links a:hover { color: var(--teal-600); }
.l-footer-brand { text-align: left; }
.l-footer-brand p { font-size: 12px; color: var(--text-muted); margin: 4px 0 0; }
.l-header .brand span, .l-footer .brand span { color: var(--teal-600); }
@media (max-width: 700px) { .l-footer-inner { flex-direction: column; text-align: center; } .l-footer-brand { text-align: center; } }
