.rent-page {
    --rent-ink: #10141c;
    --rent-navy: #161d2c;
    --rent-gold: #c9a24a;
    --rent-paper: #f1f5f9;
    --rent-muted: #5b6472;
    color: var(--rent-ink);
    background: var(--rent-paper);
}

.rent-hero {
    position: relative;
    min-height: min(72svh, 640px);
    display: grid;
    align-items: end;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 55% at 15% 0%, rgba(201, 162, 74, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 95% 100%, rgba(102, 126, 234, 0.18) 0%, transparent 50%),
        linear-gradient(135deg, #10141c 0%, #1e3a8a 48%, #161d2c 100%);
    overflow: hidden;
}

.rent-hero__copy {
    position: relative;
    z-index: 1;
    width: 60%;
    margin: 0 auto 4rem;
    text-align: center;
}

.rent-hero__brand {
    margin: 0 0 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rent-gold);
}

.rent-hero__title {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.rent-hero__lead {
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.rent-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.rent-hero__price {
    margin: 1.1rem 0 0;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
}

.rent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.7rem 1.35rem;
    border-radius: 4px;
    background: var(--rent-gold);
    color: var(--rent-ink);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease;
}

.rent-btn:hover {
    color: var(--rent-ink);
    background: #ddb85c;
    transform: translateY(-1px);
}

.rent-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.rent-btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.rent-main {
    width: 60%;
    margin: -1.5rem auto 3.5rem;
    padding: 2rem 2.25rem 2.5rem;
    background: #fff;
    position: relative;
    z-index: 2;
}

.rent-section-title {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.rent-intro {
    margin-bottom: 2.25rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(16, 20, 28, 0.1);
}

.rent-intro__text {
    margin: 0;
    color: var(--rent-muted);
    line-height: 1.65;
    font-size: 1.02rem;
}

.rent-block {
    margin-bottom: 2.5rem;
}

.rent-prices {
    display: grid;
    gap: 0.85rem;
}

.rent-price {
    display: grid;
    grid-template-columns: 5.5rem 1fr auto;
    grid-template-areas:
        "name spec value"
        "name pcs value";
    gap: 0.15rem 1rem;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(16, 20, 28, 0.1);
}

.rent-price:last-child {
    border-bottom: 1px solid rgba(16, 20, 28, 0.1);
}

.rent-price__name {
    grid-area: name;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--rent-navy);
}

.rent-price__spec {
    grid-area: spec;
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
}

.rent-price__pcs {
    grid-area: pcs;
    margin: 0;
    color: var(--rent-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.rent-price__value {
    grid-area: value;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--rent-ink);
    white-space: nowrap;
    text-align: right;
}

.rent-price__value span {
    margin-left: 0.15rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--rent-muted);
}

.rent-feature {
    margin-bottom: 1.75rem;
}

.rent-feature:last-child {
    margin-bottom: 0;
}

.rent-feature__title {
    margin: 0 0 0.65rem;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--rent-navy);
}

.rent-feature__lead {
    margin: 0 0 0.55rem;
    color: var(--rent-muted);
}

.rent-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rent-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.15rem;
    border-top: 1px solid rgba(16, 20, 28, 0.08);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.45;
}

.rent-list li:last-child {
    border-bottom: 1px solid rgba(16, 20, 28, 0.08);
}

.rent-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--rent-gold);
}

.rent-branches {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.rent-branches li {
    display: grid;
    grid-template-columns: 8.5rem 1fr auto;
    gap: 0.75rem 1rem;
    align-items: baseline;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(16, 20, 28, 0.1);
}

.rent-branches li:last-child {
    border-bottom: 1px solid rgba(16, 20, 28, 0.1);
}

.rent-branches strong {
    font-weight: 800;
}

.rent-branches span {
    color: var(--rent-muted);
}

.rent-branches a {
    color: var(--rent-navy);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.rent-branches a:hover {
    color: #1e3a8a;
}

.rent-cta {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--rent-navy);
    color: #fff;
}

.rent-cta__title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 800;
}

.rent-cta__lead {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.78);
}

.rent-cta .rent-btn--ghost {
    border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 899.98px) {
    .rent-hero__copy,
    .rent-main {
        width: min(92%, 40rem);
    }

    .rent-hero__copy {
        margin-bottom: 3rem;
        text-align: left;
    }

    .rent-hero__actions {
        justify-content: flex-start;
    }

    .rent-main {
        margin-top: -1rem;
        padding: 1.5rem 1.15rem 2rem;
    }

    .rent-price {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "name value"
            "spec value"
            "pcs value";
        gap: 0.2rem 0.75rem;
    }

    .rent-branches li {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}
