.rental-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--rental-hero-bg, #172554);
    color: var(--rental-hero-text, #fff);
}

.rental-hero__slide {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    background: var(--rental-hero-bg, #172554);
    overflow: hidden;
}

.rental-hero__glow {
    position: absolute;
    width: min(70vw, 900px);
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.13), transparent 65%);
    filter: blur(45px);
    pointer-events: none;
}

.rental-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    align-items: center;
    gap: 54px;
    box-sizing: border-box;
}

.rental-hero__copy { min-width: 0; }
.rental-hero__badge {
    display: inline-flex;
    padding: 6px 13px;
    border: 1px solid currentColor;
    border-radius: 999px;
    opacity: .68;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}
.rental-hero__headline {
    margin: 16px 0 12px;
    color: inherit;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -.035em;
}
.rental-hero__description {
    margin: 0 0 30px;
    color: inherit;
    opacity: .76;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
}
.rental-hero__gift { white-space: nowrap; }
.rental-hero__gift-amount {
    display: inline-block;
    margin: 0 .12em;
    color: inherit;
    font-size: 1.35em;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.035em;
}
.rental-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--rental-hero-button, #fff);
    color: var(--rental-hero-button-text, #172554);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    transition: transform .2s ease, filter .2s ease;
}
.rental-hero__button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.rental-hero__visual {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.rental-hero__visual img {
    width: 100%;
    max-width: 430px;
    height: 310px;
    object-fit: contain;
    filter: drop-shadow(0 24px 42px rgba(0,0,0,.32));
}
.rental-hero__placeholder {
    display: grid;
    place-items: center;
    width: 300px;
    height: 220px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 24px;
    color: inherit;
    opacity: .5;
    letter-spacing: .2em;
}
.rental-hero__pagination { bottom: 22px !important; }
.rental-hero__pagination .swiper-pagination-bullet { background: currentColor; opacity: .28; }
.rental-hero__pagination .swiper-pagination-bullet-active { width: 28px; border-radius: 5px; opacity: 1; }
.rental-hero__empty { max-width: 1200px; margin: 0 auto; padding: 80px 32px; text-align: center; }
.rental-hero__empty h2 { margin: 16px 0 10px; color: inherit; font-size: clamp(28px, 4vw, 42px); }
.rental-hero__empty p { margin: 0; opacity: .75; }

.rental-hero--b .rental-hero__inner { grid-template-columns: 1fr; text-align: center; }
.rental-hero--b .rental-hero__visual { order: -1; }
.rental-hero--b .rental-hero__visual img { height: 220px; }
.rental-hero--c .rental-hero__backdrop {
    position: absolute;
    inset: -10%;
    opacity: .15;
    filter: blur(2px);
}
.rental-hero--c .rental-hero__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 75% 50%;
}
.rental-hero--c .rental-hero__visual { display: none; }
.rental-hero--c .rental-hero__inner { grid-template-columns: minmax(0, 720px); }
.rental-hero--d .rental-hero__visual { grid-column: 1; grid-row: 1; }
.rental-hero--d .rental-hero__copy { grid-column: 2; grid-row: 1; }

@media (max-width: 767px) {
    .rental-hero__slide { min-height: 0; }
    .rental-hero__inner,
    .rental-hero--d .rental-hero__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 42px 20px 62px;
        text-align: center;
    }
    .rental-hero__visual,
    .rental-hero--d .rental-hero__visual { grid-column: 1; grid-row: 1; order: -1; }
    .rental-hero__copy,
    .rental-hero--d .rental-hero__copy { grid-column: 1; grid-row: 2; }
    .rental-hero__visual img { height: 190px; max-width: 280px; }
    .rental-hero__button { width: 100%; justify-content: center; box-sizing: border-box; }
    .rental-hero--c .rental-hero__inner { grid-template-columns: 1fr; text-align: left; }
}
