/*
 * Motorino Price List 2026 v1.5.6
 * All front-end styles are scoped to .mp26. The plugin does not register,
 * replace, hide or reposition the active RentIt theme header/navigation.
 */

.mp26 {
    --mp26-navy: #07365f;
    --mp26-navy-deep: #032541;
    --mp26-blue: #0b82c5;
    --mp26-sky: #eef8ff;
    --mp26-red: #ef322d;
    --mp26-red-dark: #d8211d;
    --mp26-green: #10aa4b;
    --mp26-green-dark: #07893a;
    --mp26-ink: #102c47;
    --mp26-muted: #5d7185;
    --mp26-line: #d8e6f0;
    --mp26-soft: #f5f9fc;
    --mp26-white: #fff;
    --mp26-shadow: 0 22px 58px rgba(3, 37, 65, .13);
    --mp26-shadow-small: 0 10px 28px rgba(3, 37, 65, .10);
    --mp26-radius: 20px;
    --mp26-radius-small: 12px;

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    position: relative;
    isolation: isolate;
    background: #fff;
    color: var(--mp26-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px !important;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.mp26,
.mp26 *,
.mp26 *::before,
.mp26 *::after {
    box-sizing: border-box;
}

.mp26 img {
    display: block;
    max-width: 100%;
    height: auto;
}

.mp26 a {
    color: inherit;
    text-decoration: none;
}

.mp26 button,
.mp26 input,
.mp26 select {
    font: inherit;
}

.mp26 button,
.mp26 select,
.mp26 summary {
    cursor: pointer;
}

.mp26 [hidden] {
    display: none !important;
}

.mp26-shell {
    width: min(1380px, calc(100% - 48px));
    max-width: 100%;
    margin-inline: auto;
}

.mp26 h1,
.mp26 h2,
.mp26 h3,
.mp26 p {
    margin-top: 0;
}

.mp26 h1,
.mp26 h2,
.mp26 h3 {
    color: var(--mp26-navy-deep);
    font-family: inherit;
    font-weight: 850;
    letter-spacing: -.028em;
    line-height: 1.08;
    text-transform: none;
}

.mp26 h2 {
    font-size: clamp(30px, 2.5vw, 42px);
}

.mp26 h3 {
    font-size: 22px;
}

.mp26-icon {
    width: 1.18em;
    height: 1.18em;
    display: inline-block;
    flex: 0 0 auto;
    vertical-align: -.18em;
}

.mp26 button:focus-visible,
.mp26 summary:focus-visible,
.mp26 input:focus-visible,
.mp26 select:focus-visible,
.mp26 a:focus-visible {
    outline: 3px solid rgba(24, 163, 219, .38);
    outline-offset: 3px;
}

/* Buttons */
.mp26-btn {
    min-height: 50px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid transparent;
    border-radius: 9px;
    font-size: 15px !important;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: .01em;
    text-align: center;
    text-transform: uppercase;
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}

.mp26-btn:hover,
.mp26-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(3, 37, 65, .18);
}

.mp26-btn--primary {
    border-color: var(--mp26-red);
    background: var(--mp26-red);
    color: #fff !important;
}

.mp26-btn--primary:hover,
.mp26-btn--primary:focus-visible {
    border-color: var(--mp26-red-dark);
    background: var(--mp26-red-dark);
}

.mp26-btn--whatsapp,
.mp26-btn--quick {
    border-color: var(--mp26-green);
    background: var(--mp26-green);
    color: #fff !important;
}

.mp26-btn--whatsapp:hover,
.mp26-btn--whatsapp:focus-visible,
.mp26-btn--quick:hover,
.mp26-btn--quick:focus-visible {
    border-color: var(--mp26-green-dark);
    background: var(--mp26-green-dark);
}

.mp26-btn--secondary {
    border-color: var(--mp26-navy);
    background: #fff;
    color: var(--mp26-navy) !important;
}

.mp26-btn--secondary:hover,
.mp26-btn--secondary:focus-visible {
    background: var(--mp26-navy);
    color: #fff !important;
}

.mp26-btn--outline {
    border-color: var(--mp26-red);
    background: #fff;
    color: var(--mp26-red) !important;
}

.mp26-btn--outline:hover,
.mp26-btn--outline:focus-visible {
    background: var(--mp26-red);
    color: #fff !important;
}

.mp26-btn--disabled {
    border-color: #d6dfe7;
    background: #eff3f6;
    color: #7b8996 !important;
    cursor: not-allowed;
    opacity: .9;
}

.mp26-btn--disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Hero */
.mp26-hero {
    padding: 42px 0 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: clamp(30px, 4vw, 58px);
    align-items: stretch;
}

.mp26-hero__copy {
    min-width: 0;
    min-height: 610px;
    padding: clamp(36px, 4vw, 58px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    border-radius: var(--mp26-radius);
    background: var(--mp26-navy-deep);
    box-shadow: var(--mp26-shadow);
    isolation: isolate;
}

.mp26-hero__copy::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(3, 37, 65, .58) 0%, rgba(7, 54, 95, .38) 54%, rgba(7, 54, 95, .20) 100%),
        linear-gradient(0deg, rgba(3, 37, 65, .18), rgba(7, 54, 95, .08) 62%, transparent 100%);
    pointer-events: none;
}

.mp26-hero__bg {
    width: 100%;
    height: 100% !important;
    position: absolute;
    inset: 0;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    filter: brightness(1.19) saturate(1.03);
}

.mp26-hero__content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.mp26-hero__content p,
.mp26-hero__content b,
.mp26-hero__content small {
    text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.mp26-eyebrow,
.mp26-kicker {
    margin-bottom: 9px;
    color: var(--mp26-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.mp26-hero .mp26-eyebrow {
    color: #fff;
    font-size: clamp(27px, 2.2vw, 35px);
    letter-spacing: .01em;
}

.mp26-display-title {
    max-width: 720px;
    margin-bottom: 20px !important;
    color: #fff !important;
    font-size: clamp(58px, 5.2vw, 84px) !important;
    font-weight: 920 !important;
    letter-spacing: -.058em !important;
    line-height: .92 !important;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .34);
    text-transform: uppercase !important;
}

.mp26-hero__subtitle {
    max-width: 700px;
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(21px, 1.55vw, 27px) !important;
    font-weight: 750;
    line-height: 1.32;
}

.mp26-hero__subtitle strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-weight: 850;
}

.mp26-hero__delivery {
    max-width: 680px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .92);
    font-size: 17px !important;
    font-weight: 680;
    line-height: 1.45;
}

.mp26-trust {
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mp26-trust span {
    min-height: 42px;
    padding: 8px 11px;
    display: flex;
    flex: 1 1 145px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(7px);
}

.mp26-trust .mp26-icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.mp26-trust b,
.mp26-trust small {
    display: block;
}

.mp26-trust b {
    color: #fff;
    font-size: 13px;
    line-height: 1.15;
    text-transform: uppercase;
}

.mp26-trust small {
    display: none;
}

.mp26-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mp26-hero .mp26-actions {
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mp26-hero .mp26-actions .mp26-btn {
    min-height: 54px;
}

.mp26-hero__location {
    max-width: 690px;
    margin: 16px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255, 255, 255, .94);
    font-size: 15px !important;
    font-weight: 750;
    line-height: 1.42;
    text-transform: uppercase;
}

.mp26-hero__location .mp26-icon {
    margin-top: 1px;
    color: #fff;
}

.mp26-pricelist-card {
    width: 100%;
    max-width: 520px;
    min-width: 0;
    align-self: center;
    justify-self: end;
}

.mp26-pricelist-open {
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--mp26-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--mp26-shadow);
}

.mp26-pricelist-open img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
}

.mp26-pricelist-zoom {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    position: absolute;
    left: 16px;
    bottom: 16px;
    border-radius: 10px;
    background: rgba(3, 37, 65, .94);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

/* Quick booking */
.mp26-quick {
    margin: 8px 0 clamp(64px, 6vw, 88px);
    padding: 28px 30px 26px;
    border-radius: 18px;
    background: linear-gradient(112deg, var(--mp26-navy-deep), #075d95);
    color: #fff;
    box-shadow: var(--mp26-shadow-small);
}

.mp26-quick__heading {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.mp26-quick__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, .65);
    border-radius: 13px;
    color: #fff;
}

.mp26-quick__icon .mp26-icon {
    width: 27px;
    height: 27px;
}

.mp26-quick__heading h2 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 26px !important;
    line-height: 1.08;
}

.mp26-quick__heading p {
    max-width: 980px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 16px !important;
    line-height: 1.45;
}

.mp26-email-notice {
    margin-top: 9px !important;
    font-size: 14px !important;
}

.mp26-email-notice a {
    color: #fff !important;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.mp26-quick-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.mp26-field {
    min-width: 0;
    position: relative;
}

/* Compact floating labels: the field name stays visible after a value is selected. */
.mp26-field label {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 15px;
    right: 42px;
    margin: 0;
    display: block;
    color: #63778c;
    font-size: 11px !important;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .045em;
    text-transform: uppercase;
    pointer-events: none;
}

.mp26-field input,
.mp26-field select {
    width: 100%;
    height: 62px;
    padding: 23px 42px 6px 15px;
    border: 2px solid transparent;
    border-radius: 9px;
    background: #fff;
    color: var(--mp26-ink);
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.2;
}

.mp26-field select:disabled {
    background: #bfd0dc;
    color: #24445e;
    cursor: not-allowed;
}

.mp26-field input::placeholder {
    color: #8193a3;
}

.mp26-field input[aria-invalid="true"],
.mp26-field select[aria-invalid="true"] {
    border-color: #ffdf58;
    box-shadow: 0 0 0 3px rgba(255, 223, 88, .16);
}

.mp26-other-place {
    margin-top: 8px;
    height: 54px !important;
    padding: 0 15px !important;
}

.mp26-quick-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
}

.mp26-quick-actions .mp26-btn {
    width: min(310px, 100%);
    min-height: 54px;
    font-size: 16px !important;
}

.mp26-form-error {
    grid-column: 1 / -1;
    margin: 0;
    color: #ffe469;
    font-size: 14px !important;
    font-weight: 800;
}

/* Fleet and tabs */
.mp26-fleet {
    padding-bottom: clamp(62px, 6vw, 88px);
}

.mp26-section-title {
    margin-bottom: 10px;
    text-align: center;
    font-size: clamp(34px, 2.7vw, 46px) !important;
}

.mp26-section-lead {
    max-width: 850px;
    margin: 0 auto 30px;
    color: var(--mp26-muted);
    font-size: 17px !important;
    line-height: 1.52;
    text-align: center;
}

.mp26-tabs {
    width: 100%;
    margin: 0 auto 28px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    overflow-x: auto;
    border-radius: 12px;
    background: var(--mp26-navy-deep);
    box-shadow: 0 10px 28px rgba(3, 37, 65, .14);
    scrollbar-width: none;
}

.mp26-tabs::-webkit-scrollbar {
    display: none;
}

.mp26-tabs button {
    min-width: 0;
    min-height: 48px;
    padding: 11px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 15px !important;
    font-weight: 850;
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.mp26-tabs button[aria-selected="true"] {
    background: var(--mp26-red);
    color: #fff;
}

.mp26-panel[hidden] {
    display: none !important;
}

.mp26-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.mp26-card {
    min-width: 0;
    align-self: start;
    overflow: hidden;
    border: 1px solid var(--mp26-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--mp26-shadow-small);
}

.mp26-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
    background: #edf4f8;
}

.mp26-gallery__slides,
.mp26-gallery__slide {
    width: 100%;
    height: 100%;
}

.mp26-gallery__slides {
    display: grid;
    place-items: center;
}

.mp26-gallery__slide {
    display: none !important;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    object-fit: contain;
    object-position: 50% 50% !important;
    background: #edf4f8;
}

.mp26-gallery__slide.is-active {
    display: block !important;
}

.mp26-card__badge {
    padding: 7px 11px;
    position: absolute;
    left: 13px;
    bottom: 13px;
    z-index: 4;
    border-radius: 999px;
    background: rgba(7, 54, 95, .94);
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.mp26-gallery__prev,
.mp26-gallery__next {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    background: rgba(7, 54, 95, .9);
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.mp26-gallery__prev { left: 12px; }
.mp26-gallery__next { right: 12px; }

.mp26-gallery__dots {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 5;
    transform: translateX(-50%);
}

.mp26-gallery__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.mp26-gallery__dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: #fff;
}

.mp26-gallery__count {
    padding: 6px 9px;
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 5;
    border-radius: 999px;
    background: rgba(7, 54, 95, .92);
    color: #fff;
    font-size: 12px;
    font-weight: 850;
}

.mp26-card__body {
    padding: 21px;
}

.mp26-card__category {
    margin-bottom: 8px;
    color: var(--mp26-blue);
    font-size: 13px !important;
    font-weight: 850;
    text-transform: uppercase;
}

.mp26-card__body h3 {
    margin-bottom: 9px;
    font-size: 22px !important;
}

.mp26-card__meta {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--mp26-muted);
    font-size: 15px !important;
}

.mp26-card__pricing {
    margin-bottom: 14px;
}

.mp26-card__price {
    margin-bottom: 2px;
    color: var(--mp26-navy-deep);
    font-weight: 750;
}

.mp26-card__price small,
.mp26-card__price span {
    font-size: 14px !important;
}

.mp26-card__price strong {
    margin-inline: 5px;
    color: var(--mp26-red);
    font-size: 32px;
    line-height: 1;
}

.mp26-card__full-rent {
    margin-bottom: 0;
    color: var(--mp26-navy);
    font-size: 13px !important;
    font-weight: 850;
    text-transform: uppercase;
}

.mp26-price-details {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--mp26-line);
    border-radius: 10px;
}

.mp26-price-details summary {
    min-height: 48px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--mp26-navy);
    font-size: 15px !important;
    font-weight: 850;
    list-style: none;
}

.mp26-price-details summary::-webkit-details-marker {
    display: none;
}

.mp26-price-details summary::after {
    content: "+";
    color: var(--mp26-blue);
    font-size: 22px;
}

.mp26-price-details[open] summary::after {
    content: "−";
}

.mp26-price-details__content {
    padding: 4px 14px 10px;
    border-top: 1px solid var(--mp26-line);
}

.mp26-price-details__content dl {
    margin: 0;
}

.mp26-price-details__content dl > div {
    padding: 9px 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px dashed #dbe6ee;
    font-size: 14px !important;
}

.mp26-price-details__content dl > div:last-child {
    border-bottom: 0;
}

.mp26-price-details__content dt {
    color: var(--mp26-muted);
}

.mp26-price-details__content dd {
    margin: 0;
    color: var(--mp26-navy-deep);
    font-weight: 850;
    text-align: right;
}

.mp26-card__actions {
    display: grid;
    gap: 9px;
}

.mp26-card .mp26-btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px !important;
}

.mp26-center {
    margin-top: 28px;
    text-align: center;
}

/* Service cards */
.mp26-info-grid {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.mp26-info-card {
    min-width: 0;
    min-height: 510px;
    padding: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--mp26-line);
    border-radius: 17px;
    background: linear-gradient(155deg, #fff, var(--mp26-soft));
    box-shadow: var(--mp26-shadow-small);
}

.mp26-info-card h2 {
    margin-bottom: 14px;
    font-size: 28px !important;
}

.mp26-info-card > p:not(.mp26-kicker):not(.mp26-info-price),
.mp26-info-card__overlay > p:not(.mp26-kicker):not(.mp26-info-price) {
    font-size: 16px !important;
    line-height: 1.52;
}

.mp26-info-card--image {
    padding: 0;
    background: var(--mp26-navy-deep);
    color: #fff;
}

.mp26-info-card--image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(3, 37, 65, .96), rgba(3, 37, 65, .18) 76%);
    pointer-events: none;
}

.mp26-info-card--image > img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.mp26-info-card__overlay {
    min-height: 510px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    color: #fff;
}

.mp26-info-card__overlay .mp26-kicker,
.mp26-info-card__overlay h2,
.mp26-info-card__overlay p {
    color: #fff;
}

.mp26-info-card__overlay h2 {
    font-size: 29px !important;
}

.mp26-info-price {
    margin: 7px 0 18px;
    color: #fff;
    font-weight: 800;
}

.mp26-info-price strong {
    color: #ff4c44;
    font-size: 31px;
}

.mp26-info-actions {
    display: grid;
    gap: 9px;
}

.mp26-btn--light {
    background: #fff;
    color: var(--mp26-navy) !important;
}

.mp26-btn--whatsapp-light {
    border-color: rgba(255, 255, 255, .85);
    background: rgba(3, 37, 65, .34);
    color: #fff !important;
}

.mp26-info-card--locations .mp26-kicker,
.mp26-info-card--instagram .mp26-kicker {
    color: var(--mp26-red);
}

.mp26-location-unit + .mp26-location-unit {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--mp26-line);
}

.mp26-location-unit h3 {
    margin-bottom: 10px;
    font-size: 20px !important;
}

.mp26-location-photo-link {
    display: block;
    border-radius: 12px;
}

.mp26-location-image,
.mp26-location-placeholder {
    width: 100%;
    height: 132px !important;
    border-radius: 12px;
}

.mp26-location-image {
    object-fit: cover;
}

.mp26-location-placeholder {
    padding: 15px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border: 1px dashed #a9cde3;
    background: #e8f5fd;
    color: var(--mp26-navy);
    text-align: center;
}

.mp26-location-placeholder .mp26-icon {
    width: 30px;
    height: 30px;
}

.mp26-location-placeholder b {
    font-size: 13px;
}

.mp26-location-actions {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mp26-location-actions .mp26-btn {
    min-height: 45px;
    padding: 9px 8px;
    font-size: 12px !important;
}

.mp26-instagram-profile {
    margin: 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp26-instagram-avatar {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 110%, #fdf497 0 10%, #fdf497 12%, #fd5949 34%, #d6249f 60%, #285aeb 92%);
    color: #fff;
}

.mp26-instagram-profile p {
    margin: 0;
}

.mp26-instagram-profile strong,
.mp26-instagram-profile small {
    display: block;
}

.mp26-instagram-profile strong {
    font-size: 15px;
}

.mp26-instagram-profile small {
    color: var(--mp26-muted);
    font-size: 13px;
}

.mp26-instagram-grid {
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.mp26-instagram-post {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: 9px;
}

.mp26-instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mp26-instagram-post span {
    position: absolute;
    top: 6px;
    right: 6px;
    color: #fff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .5));
}

.mp26-btn--instagram {
    width: 100%;
    border-color: #d6249f;
    background: #fff;
    color: #b71c83 !important;
}

/* Benefit strip */
.mp26-benefits {
    margin: 0 0 64px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid var(--mp26-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--mp26-shadow-small);
}

.mp26-benefits > div {
    min-width: 0;
    padding: 17px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--mp26-line);
}

.mp26-benefits > div:last-child {
    border-right: 0;
}

.mp26-benefits .mp26-icon {
    width: 25px;
    height: 25px;
    color: var(--mp26-blue);
}

.mp26-benefits p {
    margin: 0;
}

.mp26-benefits b,
.mp26-benefits small {
    display: block;
}

.mp26-benefits b {
    color: var(--mp26-navy-deep);
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}

.mp26-benefits small {
    margin-top: 3px;
    color: var(--mp26-muted);
    font-size: 11px;
    line-height: 1.3;
}

/* FAQ */
.mp26-faq {
    padding-bottom: 64px;
}

.mp26-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    align-items: start;
}

.mp26-faq-column {
    display: grid;
    gap: 12px;
    align-self: start;
}

.mp26-faq-item {
    align-self: start;
    overflow: hidden;
    border: 1px solid var(--mp26-line);
    border-radius: 12px;
    background: #fff;
}

.mp26-faq-item summary {
    min-height: 62px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--mp26-navy-deep);
    font-size: 16px !important;
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
}

.mp26-faq-item summary::-webkit-details-marker {
    display: none;
}

.mp26-faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--mp26-blue);
    font-size: 22px;
}

.mp26-faq-item[open] summary::after {
    content: "−";
}

.mp26-faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--mp26-muted);
    font-size: 16px !important;
    line-height: 1.55;
}

/* SEO/editorial section */
.mp26-seo {
    margin-bottom: 24px;
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: 28px;
    align-items: center;
    border: 1px solid var(--mp26-line);
    border-radius: 18px;
    background: var(--mp26-soft);
}

.mp26-seo__image {
    overflow: hidden;
    border-radius: 14px;
}

.mp26-seo__image img {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
}

.mp26-seo__copy h2 {
    margin-bottom: 15px;
}

.mp26-seo__copy > p:not(.mp26-kicker) {
    color: var(--mp26-muted);
    font-size: 16px !important;
    line-height: 1.62;
}

.mp26-seo__copy a {
    color: var(--mp26-blue);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mp26-seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mp26-seo-links a {
    min-height: 40px;
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9deed;
    border-radius: 999px;
    background: #f4faff;
    color: var(--mp26-navy) !important;
    font-size: 14px !important;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.mp26-seo-links a:hover,
.mp26-seo-links a:focus-visible {
    border-color: var(--mp26-blue);
    background: #e7f5ff;
    color: var(--mp26-navy-deep) !important;
}

.mp26-small-print {
    margin-bottom: 38px;
    padding: 16px 18px;
    border: 1px solid #cfe3f1;
    border-radius: 12px;
    background: #f2f9fe;
    color: #435e74;
    font-size: 13px !important;
    line-height: 1.55;
}

.mp26-small-print p {
    margin-bottom: 7px;
}

.mp26-small-print p:last-child {
    margin-bottom: 0;
}

.mp26-small-print__terms a {
    color: var(--mp26-red);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Final CTA */
.mp26-final {
    min-height: 330px;
    overflow: hidden;
    position: relative;
    background: var(--mp26-navy-deep);
    color: #fff;
}

.mp26-final::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(3, 37, 65, .96), rgba(3, 37, 65, .65) 58%, rgba(3, 37, 65, .2));
}

.mp26-final__bg {
    width: 100%;
    height: 100% !important;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.mp26-final__inner {
    min-height: 330px;
    padding-block: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.mp26-final h2,
.mp26-final p,
.mp26-final .mp26-kicker {
    color: #fff;
}

.mp26-final h2 {
    margin-bottom: 10px;
    font-size: 42px !important;
}

.mp26-final p {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 17px !important;
}

/* Mobile WhatsApp */
.mp26-mobile-float-wa {
    display: none;
}

/* Price-list modal */
html.mp26-modal-open,
html.mp26-modal-open body {
    overflow: hidden;
}

.mp26-modal {
    padding: 24px;
    display: grid;
    place-items: center;
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(1, 20, 36, .88);
}

.mp26-modal[hidden] {
    display: none !important;
}

.mp26-modal__content {
    width: min(900px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 90px rgba(0, 0, 0, .38);
}

.mp26-modal__content img {
    width: 100%;
    height: auto;
}

.mp26-modal__close {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 100001;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--mp26-navy-deep);
    font-size: 30px;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
}

/* Compact desktop */
@media (max-width: 1180px) {
    .mp26-shell {
        width: min(1080px, calc(100% - 36px));
    }

    .mp26-hero {
        grid-template-columns: minmax(0, 1fr) minmax(365px, 455px);
    }

    .mp26-display-title {
        font-size: clamp(52px, 6vw, 72px) !important;
    }

    .mp26-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp26-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp26-info-card,
    .mp26-info-card__overlay {
        min-height: 480px;
    }

    .mp26-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mp26-benefits > div:nth-child(3) {
        border-right: 0;
    }

    .mp26-benefits > div:nth-child(-n+3) {
        border-bottom: 1px solid var(--mp26-line);
    }
}

/* Tablet */
@media (max-width: 960px) {
    .mp26-shell {
        width: min(820px, calc(100% - 30px));
    }

    .mp26-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 28px;
    }

    .mp26-hero__copy {
        min-height: 540px;
    }

    .mp26-pricelist-card {
        width: min(100%, 560px);
        max-width: 560px;
        justify-self: center;
    }

    .mp26-quick-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp26-field--category,
    .mp26-field--model,
    .mp26-field--pickup-place,
    .mp26-field--dropoff-place {
        grid-column: span 1;
    }

    .mp26-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp26-seo {
        grid-template-columns: 1fr;
    }

    .mp26-seo__image img {
        aspect-ratio: 16 / 8;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .mp26 {
        font-size: 17px !important;
    }

    .mp26-shell {
        width: calc(100% - 24px);
    }

    .mp26-btn {
        min-height: 54px;
        font-size: 16px !important;
    }

    .mp26-hero {
        gap: 18px;
        padding: 18px 0 40px;
    }

    .mp26-hero__copy {
        min-height: 0;
        padding: 29px 22px 27px;
        border-radius: 16px;
    }

    .mp26-hero__copy::before {
        background:
            linear-gradient(100deg, rgba(3, 37, 65, .56) 0%, rgba(7, 54, 95, .36) 62%, rgba(7, 54, 95, .24) 100%),
            linear-gradient(0deg, rgba(3, 37, 65, .16), rgba(7, 54, 95, .08) 62%, transparent 100%);
    }

    .mp26-hero__bg {
        object-position: center;
    }

    .mp26-hero .mp26-eyebrow {
        font-size: 22px;
    }

    .mp26-display-title {
        max-width: 100%;
        margin-bottom: 16px !important;
        font-size: clamp(42px, 12vw, 54px) !important;
        line-height: .94 !important;
    }

    .mp26-hero__subtitle {
        font-size: 21px !important;
    }

    .mp26-hero__subtitle strong {
        font-size: 19px;
        line-height: 1.36;
    }

    .mp26-hero__delivery {
        margin-bottom: 18px;
        font-size: 17px !important;
    }

    .mp26-trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin-bottom: 18px;
    }

    .mp26-trust span {
        min-height: 43px;
        padding: 8px 10px;
        border-radius: 10px;
    }

    .mp26-trust span:last-child {
        grid-column: 1 / -1;
    }

    .mp26-trust b {
        font-size: 12px;
    }

    .mp26-hero .mp26-actions {
        grid-template-columns: 1fr;
    }

    .mp26-hero__location {
        font-size: 15px !important;
    }

    .mp26-pricelist-card {
        width: 100%;
        max-width: none;
    }

    .mp26-pricelist-zoom {
        width: 44px;
        height: 44px;
        left: 12px;
        bottom: 12px;
    }

    .mp26-quick {
        margin: 4px 0 58px;
        padding: 20px 16px 18px;
        border-radius: 16px;
    }

    .mp26-quick__heading {
        gap: 11px;
        margin-bottom: 18px;
    }

    .mp26-quick__icon {
        width: 48px;
        height: 48px;
    }

    .mp26-quick__heading h2 {
        font-size: 25px !important;
    }

    .mp26-quick__heading p,
    .mp26-email-notice {
        font-size: 16px !important;
        line-height: 1.48;
    }

    .mp26-quick-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 10px;
    }

    .mp26-field--category,
    .mp26-field--model,
    .mp26-field--pickup-place,
    .mp26-field--dropoff-place {
        grid-column: 1 / -1;
    }

    .mp26-field--pickup-date,
    .mp26-field--pickup-time,
    .mp26-field--dropoff-date,
    .mp26-field--dropoff-time {
        grid-column: span 1;
    }

    .mp26-field label {
        top: 8px;
        left: 13px;
        right: 38px;
        font-size: 11px !important;
    }

    .mp26-field input,
    .mp26-field select {
        height: 60px;
        padding: 22px 38px 5px 13px;
        font-size: 17px !important;
    }

    .mp26-other-place {
        height: 54px !important;
        padding: 0 13px !important;
    }

    .mp26-quick-actions {
        display: block;
    }

    .mp26-quick-actions .mp26-btn {
        width: 100%;
        min-height: 56px;
        font-size: 16px !important;
    }

    .mp26-form-error {
        font-size: 15px !important;
    }

    .mp26-section-title {
        font-size: 31px !important;
        line-height: 1.12;
    }

    .mp26-section-lead {
        margin-bottom: 22px;
        font-size: 17px !important;
    }

    .mp26-tabs {
        grid-template-columns: repeat(4, minmax(92px, 1fr));
        gap: 4px;
        padding: 4px;
        scroll-snap-type: x proximity;
    }

    .mp26-tabs button {
        min-height: 50px;
        padding: 10px 8px;
        font-size: 16px !important;
        scroll-snap-align: start;
    }

    .mp26-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mp26-card__media {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .mp26-card__body {
        padding: 20px;
    }

    .mp26-card__category {
        font-size: 14px !important;
    }

    .mp26-card__body h3 {
        font-size: 24px !important;
    }

    .mp26-card__meta {
        font-size: 17px !important;
    }

    .mp26-card__price small,
    .mp26-card__price span {
        font-size: 16px !important;
    }

    .mp26-card__price strong {
        font-size: 36px;
    }

    .mp26-card__full-rent {
        font-size: 14px !important;
    }

    .mp26-price-details summary {
        min-height: 54px;
        font-size: 17px !important;
    }

    .mp26-price-details__content dl > div {
        font-size: 16px !important;
    }

    .mp26-card .mp26-btn {
        min-height: 54px;
        font-size: 16px !important;
    }

    .mp26-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mp26-info-card {
        min-height: 0;
        padding: 22px;
    }

    .mp26-info-card--image,
    .mp26-info-card__overlay {
        min-height: 480px;
    }

    .mp26-info-card--image {
        padding: 0;
    }

    .mp26-info-card h2,
    .mp26-info-card__overlay h2 {
        font-size: 31px !important;
    }

    .mp26-info-card > p:not(.mp26-kicker):not(.mp26-info-price),
    .mp26-info-card__overlay > p:not(.mp26-kicker):not(.mp26-info-price) {
        font-size: 17px !important;
    }

    .mp26-location-unit h3 {
        font-size: 22px !important;
    }

    .mp26-location-image,
    .mp26-location-placeholder {
        height: 175px !important;
    }

    .mp26-location-actions .mp26-btn,
    .mp26-info-card .mp26-btn {
        min-height: 52px;
        font-size: 15px !important;
    }

    .mp26-benefits {
        display: none;
    }

    .mp26-faq-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mp26-faq-column {
        gap: 10px;
    }

    .mp26-faq-item summary {
        min-height: 66px;
        padding: 16px 17px;
        font-size: 17px !important;
    }

    .mp26-faq-item p {
        padding: 0 17px 17px;
        font-size: 17px !important;
    }

    .mp26-seo {
        padding: 18px;
    }

    .mp26-seo__copy > p:not(.mp26-kicker) {
        font-size: 17px !important;
    }

    .mp26-small-print {
        padding: 16px;
        font-size: 14px !important;
    }

    .mp26-final__inner {
        min-height: 0;
        padding-block: 38px;
        flex-direction: column;
        align-items: flex-start;
    }

    .mp26-final h2 {
        font-size: 38px !important;
    }

    .mp26-final p {
        font-size: 18px !important;
    }

    .mp26-final .mp26-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .mp26-final .mp26-btn {
        width: 100%;
    }

    .mp26-mobile-float-wa {
        width: 56px;
        height: 56px;
        display: grid;
        place-items: center;
        position: fixed;
        right: 14px;
        bottom: 16px;
        z-index: 9990;
        border-radius: 50%;
        background: var(--mp26-green);
        color: #fff !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
    }

    .mp26-mobile-float-wa .mp26-icon {
        width: 29px;
        height: 29px;
    }

    .mp26-modal {
        padding: 12px;
    }

    .mp26-modal__content {
        max-height: calc(100vh - 24px);
    }
}

@media (max-width: 390px) {
    .mp26-shell {
        width: calc(100% - 18px);
    }

    .mp26-hero__copy {
        padding-inline: 18px;
    }

    .mp26-display-title {
        font-size: 41px !important;
    }

    .mp26-trust b {
        font-size: 11.5px;
    }

    .mp26-field label {
        left: 11px;
        right: 34px;
        font-size: 10.5px !important;
    }

    .mp26-field input,
    .mp26-field select {
        padding: 22px 34px 5px 11px;
        font-size: 16px !important;
    }

    .mp26-other-place {
        padding: 0 11px !important;
    }

    .mp26-location-actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mp26 *,
    .mp26 *::before,
    .mp26 *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

@media print {
    .mp26-pricelist-open,
    .mp26-modal,
    .mp26-mobile-float-wa {
        display: none !important;
    }
}
