/* ============================================================
   HUSBAROMETERN — LANDING PAGE  (home.css)
   ============================================================ */

/* ── Reset scoped to landing ── */
.ln-nav, .ln-hero {
    box-sizing: border-box;
}

/* ── Navbar ── */
.ln-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e8ede8;
}

.ln-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.ln-nav__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.ln-nav__logo {
    height: 62px;
    width: auto;
    max-width: min(360px, 65vw);
    object-fit: contain;
    display: block;
}

.ln-nav__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.ln-nav__links a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.15s;
}

.ln-nav__links a:hover,
.ln-nav__link--active {
    color: #75af61 !important;
    font-weight: 600;
}

.ln-nav__cta {
    flex-shrink: 0;
    margin-left: auto;
}

/* ── Buttons ── */
.ln-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    border: none;
    white-space: nowrap;
}

.ln-btn--primary {
    background: #75af61;
    color: #fff;
}

.ln-btn--primary:hover {
    background: #669e54;
    color: #fff;
}

.ln-btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 10px;
}

.ln-btn--text {
    background: transparent;
    color: #3D464C;
    padding: 14px 4px;
    font-weight: 500;
}

.ln-btn--text:hover {
    color: #75af61;
}

/* ── Hero section ── */
.ln-hero {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.ln-hero__inner {
    flex: 1;
    max-width: 1200px;
    margin: calc(76px + 32px) auto 80px;
    padding: 48px;
    background: #EFEFEC;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Hero text ── */
.ln-hero__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ln-hero__headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #3D464C;
    line-height: 1.1;
    margin: 0;
}

.ln-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #4b5563;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.ln-hero__description-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ln-hero__description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    max-width: 48ch;
}

.ln-hero__brand-accent {
    color: #7DBE56;
    font-weight: 600;
}

/* ── Feature list ── */
.ln-hero__features {
    list-style: none;
    margin: 4px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ln-hero__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #3D464C;
    font-weight: 500;
}

.ln-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #75af61;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ln-check::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
}

/* ── CTA row ── */
.ln-hero__ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.ln-hero__ctas--mobile {
    display: none;
}

/* ── Hero image ── */
.ln-hero__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ln-hero__image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.reco-container__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Override Bootstrap reboot's height: 100% on iframes */
.reco-container iframe {
    height: 60px !important;
}

/* Reco widget — fixed footer */
.reco-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: center;
    backface-visibility: hidden;
    will-change: transform;
    line-height: 0;
    z-index: 90;
    border-top: 1px solid #e8ede8;
}

/* ── Hamburger button ── */
.ln-nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

.ln-nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3D464C;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.ln-nav__hamburger span.ln-hamburger--open:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.ln-nav__hamburger span.ln-hamburger--open:nth-child(2) {
    opacity: 0;
}
.ln-nav__hamburger span.ln-hamburger--open:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile dropdown menu ── */
.ln-nav__mobile-menu {
    background: #fff;
    border-top: 1px solid #e8ede8;
    padding: 16px 24px 24px;
}

.ln-nav__mobile-menu ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.ln-nav__mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.ln-nav__mobile-menu ul li a:hover,
.ln-nav__mobile-menu ul li a.ln-nav__link--active {
    color: #75af61;
}

/* ── Mobile reco widget ── */
.reco-mobile {
    display: none;
    justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .reco-container {
        display: none;
    }

    .reco-mobile {
        display: flex;
    }
    .ln-nav__links,
    .ln-nav__cta {
        display: none;
    }

    .ln-nav__hamburger {
        display: flex;
    }

    .ln-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: calc(76px + 16px) 16px 32px;
        padding: 32px 24px;
    }

    .reco-mobile {
        margin-bottom: 16px;
    }

    .ln-hero__image-wrap {
        order: -1;
    }

    .ln-hero__ctas--desktop {
        display: none;
    }

    .ln-hero__image-wrap {
        flex-direction: column;
    }

    .ln-hero__ctas--mobile {
        display: flex;
        justify-content: center;
        margin-top: 16px;
    }

    .ln-hero__ctas--mobile .ln-btn {
        width: 100%;
        justify-content: center;
    }

    .ln-hero__image {
        max-height: 300px;
    }
}
