/* =============================================================================
   LibParl v3 — front-page-style.css
   ============================================================================= */

.lp-hero {
    position: relative; overflow: hidden;
    min-height: 520px; display: flex; align-items: flex-end; background: #1a1a1a;
}
.lp-hero__bg {
    position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat;
    background-position: var(--hero-focal, 50% 20%);
}
@media (max-width: 640px) {
    .lp-hero { min-height: 420px; }
    .lp-hero__bg { background-image: var(--hero-img-mobile) !important; }
}
.lp-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.lp-hero__inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; padding: 48px 24px; }
.lp-hero__prefix { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.lp-hero__name { font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.lp-hero__riding { display: inline-block; font-size: 13px; font-weight: 500; color: #fff; background: var(--lp-accent); padding: 4px 10px; border-radius: 4px; margin-bottom: 14px; }
.lp-hero__bio { font-size: 16px; color: rgba(255,255,255,.85); max-width: 520px; line-height: 1.6; margin-bottom: 24px; }
.lp-hero__cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #1d2327; font-size: 14px; font-weight: 600;
    padding: 11px 20px; border-radius: 8px; text-decoration: none;
    transition: background .15s, transform .15s;
}
.lp-hero__cta:hover { background: #f0f0f0; transform: translateY(-1px); color: #1d2327; }

.lp-news { max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.lp-news__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.lp-news__title { font-size: 22px; font-weight: 700; color: #1d2327; letter-spacing: -.02em; }
.lp-news__more { font-size: 13px; font-weight: 600; color: var(--lp-accent); text-decoration: none; }
.lp-news__more:hover { text-decoration: underline; }

.lp-signup { background: var(--lp-accent); padding: 48px 24px; }
.lp-signup__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.lp-signup__title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.lp-signup__desc { font-size: 15px; color: rgba(255,255,255,.82); margin-bottom: 24px; line-height: 1.5; }
.lp-signup__form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; }
.lp-signup__input { flex: 1; padding: 11px 14px; border-radius: 8px; border: none; font-size: 14px; font-family: inherit; }
.lp-signup__input:focus { outline: 3px solid rgba(255,255,255,.5); }
.lp-signup__btn { padding: 11px 18px; background: #1d2327; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; }
.lp-signup__btn:hover { background: #000; }
@media (max-width: 480px) { .lp-signup__form { flex-direction: column; } }

.lp-services-hp { background: #f9f9f9; padding: 56px 24px; border-top: 1px solid #f0f0f1; }
.lp-services-hp__inner { max-width: 1200px; margin: 0 auto; }
.lp-services-hp__title { font-size: 22px; font-weight: 700; color: #1d2327; margin-bottom: 8px; }
.lp-services-hp__desc { font-size: 15px; color: #555; margin-bottom: 28px; }
.lp-services-hp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 700px) { .lp-services-hp__grid { grid-template-columns: 1fr; } }
.lp-services-hp__item {
    background: #fff; border: 1px solid #e8e8e8; border-radius: 10px;
    padding: 20px; text-decoration: none; display: block; transition: border-color .15s;
}
.lp-services-hp__item:hover { border-color: var(--lp-accent); }
.lp-services-hp__item-name { font-size: 14px; font-weight: 600; color: #1d2327; margin-bottom: 4px; }
.lp-services-hp__item-count { font-size: 12px; color: #787c82; }

.lp-investments-hp { max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.lp-investments-hp__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.lp-investments-hp__title { font-size: 22px; font-weight: 700; color: #1d2327; }
.lp-investments-hp__more { font-size: 13px; font-weight: 600; color: var(--lp-accent); text-decoration: none; }

.lp-fp-signup__form-wrap {
    min-width: 320px; flex-shrink: 0;
}