.inv-page {
    background: var(--site-bg);
}

.inv-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-top: calc(var(--site-header-height) * -1);
    margin-bottom: 50px;
    padding: 140px 24px 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.inv-hero__content {
    margin: 0;
    padding: 40px 80px;
    backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius:999px;
    color: white;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.03em;
}

.inv-section {
    padding: 0 0 72px;
}

.inv-list {
    display: grid;
    gap: 18px;
}

.inv-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 430px) 1fr;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--site-line);
    border-radius: var(--site-radius);
    box-shadow: var(--site-shadow);
}

.inv-card__status {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    padding: 4px 14px;
    background: #ffffff;
    border-bottom-right-radius: 9999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.inv-card__bd {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 3;
    padding: 4px 14px;
    background: rgba(126, 193, 38, 0.8);
    border-bottom-right-radius: 9999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: white;
}

.inv-card__image {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 280px;
    border: 0;
    padding: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.inv-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(11, 18, 32, 0);
    transition: background 0.3s ease;
}

.inv-card__image-logo {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.inv-card__image-logo img {
    width: min(62%, 220px);
    max-height: 92px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.3));
}

.inv-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 20px;
}

.inv-card__heading {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: space-between;
}

.inv-card__heading h3 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.03em;
}

.inv-card__address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
}

.inv-card__address i {
    margin-top: 3px;
    color: var(--site-accent);
}

.inv-card__description {
    margin: 0;
    color: var(--site-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inv-card__price {
    white-space: nowrap;
    font-size: 16px;
}

.inv-card__price i {
    color: var(--site-accent);
}

.inv-card__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.inv-card__meta-box,
.inv-card__feature,
.inv-card__features-toggle {
    border: 1px solid #000000;
    background: #ffffff;
}

.inv-card__meta-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 15px;
    color: rgba(11, 18, 32, 0.82);
    font-size: 12px;
    font-weight: 900;
}

.inv-card__meta-box strong {
    font-size: 16px;
}

.inv-card__features-wrap {
    display: grid;
    gap: 10px;
}

.inv-card__features-toggle {
    display: none;
}

.inv-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inv-card__feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    overflow: hidden;
    border-radius: 999px;
    transition: width 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.inv-card__feature i {
    width: 16px;
    flex: 0 0 16px;
    font-size: 16px;
    text-align: center;
}

.inv-card__feature-label {
    display: none;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 800;
}

.inv-card__feature:hover,
.inv-card__feature:focus-within {
    width: 220px;
    justify-content: flex-start;
    transform: translateY(-1px);
    box-shadow: var(--site-shadow);
}

.inv-card__feature:hover .inv-card__feature-label,
.inv-card__feature:focus-within .inv-card__feature-label {
    display: inline-block;
}

.inv-card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inv-hero__grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:40px;
align-items:center;
}

.inv-hero__text h1{
font-size:clamp(42px,5vw,72px);
margin:0 0 16px;
color:white;
letter-spacing:-.04em;
}

.inv-hero__kicker{
font-weight:900;
letter-spacing:.2em;
text-transform:uppercase;
color:white;
margin-bottom:10px;
font-family: Sinesia;
font-size: 16px;
}

.inv-hero__lead{
color:white;
max-width:520px;
font-size:18px;
margin-bottom:28px;
}

.inv-hero__actions{
display:flex;
gap:14px;
flex-wrap:wrap;
}

.inv-hero__stats{
display:grid;
gap:16px;
}

.inv-hero__stat{
background:rgba(255,255,255,.9);
border-radius:22px;
padding:24px;
font-weight:800;
}

.inv-hero__stat span{
font-size:13px;
color:#5d6675;
}

.inv-hero__stat strong{
display:block;
font-size:34px;
margin-top:6px;
}

@media(max-width:900px){

.inv-hero__grid{
grid-template-columns:1fr;
}

.inv-hero__stats{
grid-template-columns:repeat(3,1fr);
}

}

@media (min-width: 981px) {
    .inv-card__feature {
        padding-right: 12px;
    }

    .inv-card__image:hover::before,
    .inv-card__image:focus-within::before {
        background: rgba(11, 18, 32, 0.48);
    }

    .inv-card__image:hover .inv-card__image-logo,
    .inv-card__image:focus-within .inv-card__image-logo {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 980px) {

    .inv-hero__content h1 {
        padding: 16px 20px;
    }

    .inv-hero__content {
        padding: 16px 20px;
	border-radius: 20px;
    }

    .inv-card {
        grid-template-columns: 1fr;
    }

    .inv-card__heading,
    .inv-card__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .inv-card__meta {
        grid-template-columns: 1fr;
    }

    .inv-card__actions {
        width: 100%;
    }

    .inv-card__actions .site-button {
        width: 100%;
    }

    .inv-card__features-wrap {
        gap: 8px;
    }

    .inv-card__features-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 14px 16px;
        border-radius: 15px;
        color: #000000;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .inv-card__features-toggle i {
        transition: transform 0.28s ease;
    }

    .inv-card__features-wrap.is-open .inv-card__features-toggle i {
        transform: rotate(180deg);
    }

    .inv-card__features {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .inv-card__features-wrap.is-open .inv-card__features {
        max-height: 520px;
        opacity: 1;
    }

    .inv-card__feature {
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 52px;
        padding: 14px 16px;
        border-radius: 15px;
        justify-content: flex-start;
        cursor: default;
        transition: none;
    }

    .inv-card__feature:hover,
    .inv-card__feature:focus-within {
        width: 100%;
        justify-content: flex-start;
        transform: none;
        box-shadow: none;
    }

    .inv-card__feature-label {
        display: inline-block;
        white-space: normal;
        opacity: 1;
    }

    .inv-card__image.is-logo-open::before {
        background: rgba(11, 18, 32, 0.48);
    }

    .inv-card__image.is-logo-open .inv-card__image-logo {
        opacity: 1;
        transform: scale(1);
    }
}
