.rent-page {
    padding-bottom: 72px;
}

/* shared */
.rent-section-head {
    max-width: 780px;
    margin-bottom: 26px;
}

.rent-section-head__label {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.rent-section-head__title {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text);
}

.rent-section-head__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

/* hero */
.rent-hero {
    padding: 38px 0 24px;
}

.rent-hero__box {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
    padding: 38px;
    border-radius: 36px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 255, 0.96) 100%);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 30px 80px rgba(16, 32, 51, 0.08);
}

.rent-hero__label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.rent-hero__title {
    margin: 0 0 16px;
    font-size: 52px;
    line-height: 1.04;
    font-weight: 800;
    color: var(--text);
}

.rent-hero__title span {
    display: block;
    margin-top: 8px;
    color: var(--accent);
}

.rent-hero__text {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
}

.rent-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.rent-hero__badge {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(26, 115, 232, 0.08);
    border: 1px solid rgba(16, 32, 51, 0.08);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}

.rent-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.rent-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.rent-stat {
    padding: 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
}

.rent-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text);
}

.rent-stat span {
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

.rent-hero__visual {
    position: relative;
}

.rent-hero__image-wrap {
    border-radius: 30px;
    overflow: hidden;
    min-height: 560px;
    background: #dfe9f6;
}

.rent-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rent-hero__floating-card {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 20px 50px rgba(16, 32, 51, 0.12);
}

.rent-hero__floating-label {
    margin: 0 0 10px;
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rent-hero__floating-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rent-hero__floating-list span {
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: #f3f7fc;
    border: 1px solid rgba(16, 32, 51, 0.08);
    font-size: 12px;
    font-weight: 700;
}

/* formats */
.rent-formats {
    padding: 0 0 34px;
}

.rent-formats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rent-format-card {
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 16px 36px rgba(16, 32, 51, 0.06);
}

.rent-format-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.rent-format-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}

/* advantages */
.rent-advantages {
    padding: 0 0 34px;
}

.rent-advantages__box {
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(13, 59, 102, 1) 0%, rgba(26, 115, 232, 1) 100%);
    color: #fff;
    box-shadow: 0 24px 50px rgba(16, 32, 51, 0.16);
}

.rent-advantages__content .rent-section-head__title,
.rent-advantages__content .rent-section-head__text {
    color: #fff;
}

.rent-advantages__content .rent-section-head__label {
    color: rgba(255, 255, 255, 0.76);
}

.rent-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rent-advantage {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rent-advantage strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.rent-advantage span {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

/* fleet */
.rent-fleet {
    padding: 0 0 34px;
}

.rent-fleet__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rent-ship-card {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 16px 36px rgba(16, 32, 51, 0.06);
}

.rent-ship-card__image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe9f6;
}
.rent-ship-card__image-wrap img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.rent-ship-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rent-ship-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
}

.rent-ship-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rent-ship-card__title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.rent-ship-card__text {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.rent-ship-card__meta {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.rent-ship-card__meta div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.rent-ship-card__meta strong {
    color: var(--accent);
}

.rent-ship-card__button {
    margin-top: auto;
}

/* how */
.rent-how {
    padding: 0 0 34px;
}

.rent-how__box {
    padding: 28px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 20px 44px rgba(16, 32, 51, 0.08);
}

.rent-how__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rent-how-step {
    padding: 20px;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid rgba(16, 32, 51, 0.08);
}

.rent-how-step strong {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.rent-how-step h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.rent-how-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* form */
.rent-form-section {
    padding: 0 0 34px;
}

.rent-form-box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    padding: 28px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 20px 44px rgba(16, 32, 51, 0.08);
}

.rent-form-box__list {
    margin: 18px 0 0;
    padding-left: 20px;
}

.rent-form-box__list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

.rent-form {
    display: flex;
    flex-direction: column;
}

.rent-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.rent-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rent-form__field--full {
    grid-column: 1 / -1;
}

.rent-form__field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.rent-form__field input,
.rent-form__field textarea {
    width: 100%;
    border: 1px solid rgba(16, 32, 51, 0.1);
    background: #f9fbfd;
    color: var(--text);
    border-radius: 16px;
    outline: none;
}

.rent-form__field input {
    min-height: 54px;
    padding: 0 16px;
}

.rent-form__field textarea {
    min-height: 120px;
    padding: 16px;
    resize: vertical;
}

.rent-form__button {
    width: 100%;
    margin-top: 18px;
}

.rent-form__policy {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
}

/* faq */
.rent-faq__list {
    display: grid;
    gap: 14px;
}

.rent-faq-item {
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.05);
    overflow: hidden;
}

.rent-faq-item.is-open {
    border-color: rgba(26, 115, 232, 0.18);
}

.rent-faq-item__button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
}

.rent-faq-item__button span:first-child {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--text);
}

.rent-faq-item__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.rent-faq-item__icon::before,
.rent-faq-item__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

.rent-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.rent-faq-item.is-open .rent-faq-item__icon::after {
    opacity: 0;
}

.rent-faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.rent-faq-item__content p {
    margin: 0;
    padding: 0 22px 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}

.rent-faq-item.is-open .rent-faq-item__content {
    max-height: 240px;
}

/* responsive */
@media (max-width: 1200px) {
    .rent-hero__box,
    .rent-form-box {
        grid-template-columns: 1fr;
    }

    .rent-advantages__grid,
    .rent-how__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .rent-fleet__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .rent-section-head__title {
        font-size: 34px;
    }

    .rent-hero__title {
        font-size: 44px;
    }

    .rent-formats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rent-hero__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .rent-page {
        padding-bottom: 56px;
    }

    .rent-hero {
        padding-top: 20px;
    }

    .rent-hero__box,
    .rent-advantages__box,
    .rent-how__box,
    .rent-form-box {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .rent-hero__title {
        font-size: 34px;
    }

    .rent-hero__text,
    .rent-section-head__text {
        font-size: 15px;
    }

    .rent-section-head__title {
        font-size: 28px;
    }

    .rent-hero__actions {
        flex-direction: column;
    }

    .rent-hero__actions .btn {
        width: 100%;
    }

    .rent-hero__image-wrap {
        min-height: 320px;
        border-radius: 22px;
    }

    .rent-formats__grid,
    .rent-advantages__grid,
    .rent-fleet__grid,
    .rent-how__steps,
    .rent-form__grid {
        grid-template-columns: 1fr;
    }

    .rent-form__field--full {
        grid-column: auto;
    }

    .rent-ship-card {
        border-radius: 22px;
    }

    .rent-ship-card__body {
        padding: 16px;
    }

    .rent-faq-item__button {
        padding: 18px 16px;
    }

    .rent-faq-item__button span:first-child {
        font-size: 16px;
    }

    .rent-faq-item__content p {
        padding: 0 16px 18px;
        font-size: 14px;
    }
}