/* ================================================================
   Mosaic Rental Services - Landing Page Stylesheet
   Property-owner focused, single-section, technologically advanced.
   Brand palette and typography aligned with mosaic-home-services.css.
   ================================================================ */

/* ---------- Font ---------- */
@font-face {
    font-family: "Montserrat";
    src:    url("../fonts/montserrat-regular.woff2") format("woff2"),
            url("../fonts/montserrat-regular.woff")  format("woff"),
            url("../fonts/montserrat-regular.ttf")   format("truetype");
    font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
    --mrs-brand: #1d44b8;
    --mrs-brand-deep: rgb(11, 27, 72);
    --mrs-brand-soft: rgba(29, 68, 184, 0.12);
    --mrs-ink: #0c1330;
    --mrs-ink-soft: #404040;
    --mrs-body: #595959;
    --mrs-line: #C0C0C0;
    --mrs-surface: #F8F8F8;
    --mrs-surface-2: #ebebeb;
    --mrs-white: #ffffff;
    --mrs-glass: rgba(255, 255, 255, 0.55);
    --mrs-glass-stroke: rgba(255, 255, 255, 0.65);
    --mrs-radius: 18px;
    --mrs-radius-lg: 28px;
    --mrs-shadow: 0 20px 60px -25px rgba(11, 27, 72, 0.35);
    --mrs-shadow-soft: 0 10px 30px -15px rgba(11, 27, 72, 0.25);
    --mrs-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-size: 100%;
    line-height: 1.55;
    color: var(--mrs-body);
    margin: 0;
    background: var(--mrs-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}

/* ---------- Top Navigation ---------- */
.mosaic-rental-services-top-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 max(2vw, 12px);
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}
.mosaic-rental-services-top-navigation a {
    font-size: 14px;
    letter-spacing: 1.5px;
    padding: 15px 12px;
    display: inline-block;
    color: var(--mrs-white);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.25s var(--mrs-ease), color 0.25s var(--mrs-ease);
    white-space: nowrap;
}
.mosaic-rental-services-top-navigation a:not(.cta):hover {
    color: #b9d0ff;
}
.mosaic-rental-services-top-navigation a.cta {
    background: var(--mrs-brand);
    border-radius: 999px;
    padding: 10px 22px;
    letter-spacing: 1.25px;
    font-weight: 600;
}
.mosaic-rental-services-top-navigation a.cta:hover {
    background: var(--mrs-brand-deep);
}

/* ---------- Page Shell ---------- */
.mosaic-rental-services-shell {
    position: relative;
    padding-top: 50px;
}

/* ---------- Mesh Gradient Background ---------- */
.mosaic-rental-services-mesh {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.mosaic-rental-services-mesh::before,
.mosaic-rental-services-mesh::after {
    content: "";
    position: absolute;
    width: 80vmax;
    height: 80vmax;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    will-change: transform;
}
.mosaic-rental-services-mesh::before {
    top: -30vmax;
    left: -20vmax;
    background: conic-gradient(from 0deg, #1d44b8, #4a7ce0, #c8d6f5, #1d44b8);
    animation: mrsSpin 28s linear infinite;
}
.mosaic-rental-services-mesh::after {
    bottom: -30vmax;
    right: -25vmax;
    background: radial-gradient(circle at 30% 30%, #4a7ce0, transparent 60%),
                radial-gradient(circle at 70% 70%, #1d44b8, transparent 60%);
    animation: mrsSpin 36s linear infinite reverse;
}
@keyframes mrsSpin {
    to { transform: rotate(360deg); }
}

/* ---------- Hero ---------- */
.mosaic-rental-services-hero {
    position: relative;
    min-height: calc(100vh - 50px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
    padding: 80px max(6vw, 32px) 100px;
    scroll-snap-align: start;
}
.mosaic-rental-services-hero-content {
    position: relative;
    z-index: 2;
}
.mosaic-rental-services-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--mrs-brand);
    background: var(--mrs-brand-soft);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
    font-weight: 600;
}
.mosaic-rental-services-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--mrs-ink);
    margin: 0 0 24px;
    font-weight: 200;
}
.mosaic-rental-services-hero h1 strong {
    font-weight: 600;
    background: linear-gradient(120deg, #1d44b8 0%, #4a7ce0 50%, #1d44b8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: mrsShine 6s linear infinite;
}
@keyframes mrsShine {
    to { background-position: 200% center; }
}
.mosaic-rental-services-hero p.lede {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
    color: var(--mrs-ink-soft);
    max-width: 560px;
    margin: 0 0 36px;
    letter-spacing: 0.3px;
}
.mosaic-rental-services-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ---------- Price Hook ---------- */
.mosaic-rental-services-price-hook {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 32px;
    padding: 18px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(29, 68, 184, 0.08) 0%, rgba(74, 124, 224, 0.04) 100%);
    border: 1px solid rgba(29, 68, 184, 0.18);
    box-shadow: 0 14px 35px -18px rgba(29, 68, 184, 0.45);
    position: relative;
    overflow: hidden;
}
.mosaic-rental-services-price-hook::before {
    content: "";
    position: absolute;
    inset: 0;
    background: conic-gradient(from 180deg, transparent 0deg, rgba(29, 68, 184, 0.18) 90deg, transparent 180deg);
    animation: mrsSpin 9s linear infinite;
    opacity: 0.55;
    z-index: 0;
}
.mosaic-rental-services-price-hook::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: var(--mrs-white);
    border-radius: 17px;
    z-index: 1;
}
.mosaic-rental-services-price-hook > * {
    position: relative;
    z-index: 2;
}
.mosaic-rental-services-price-hook .price-tag {
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--mrs-ink-soft);
    text-transform: uppercase;
    font-weight: 600;
}
.mosaic-rental-services-price-hook .price-tag strong {
    font-size: 2rem;
    font-weight: 600;
    color: var(--mrs-brand);
    letter-spacing: -0.5px;
    margin: 0 4px;
}
.mosaic-rental-services-price-hook .price-unit {
    font-size: 0.85rem;
    color: var(--mrs-ink-soft);
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 400;
}
.mosaic-rental-services-price-hook .price-fine {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mrs-body);
    font-weight: 600;
}
.mosaic-rental-services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    background: var(--mrs-brand);
    color: var(--mrs-white);
    padding: 16px 32px;
    border: 1px solid var(--mrs-brand);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.35s var(--mrs-ease), box-shadow 0.35s var(--mrs-ease), background 0.35s var(--mrs-ease);
    box-shadow: 0 14px 30px -12px rgba(29, 68, 184, 0.55);
}
.mosaic-rental-services-button:hover {
    transform: translateY(-2px);
    background: var(--mrs-brand-deep);
    box-shadow: 0 22px 45px -15px rgba(29, 68, 184, 0.65);
}
.mosaic-rental-services-button.ghost {
    background: transparent;
    color: var(--mrs-brand);
    box-shadow: none;
}
.mosaic-rental-services-button.ghost:hover {
    background: var(--mrs-brand-soft);
}

/* ---------- Hero SVG (animated) ---------- */
.mosaic-rental-services-hero-art {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mosaic-rental-services-hero-art svg {
    width: 100%;
    max-width: 560px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(11, 27, 72, 0.25));
}

/* ---------- Section Container ---------- */
.mosaic-rental-services-section {
    position: relative;
    padding: 100px max(6vw, 32px);
    scroll-snap-align: start;
}
.mosaic-rental-services-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--mrs-ink);
    margin: 0 0 16px;
    letter-spacing: -0.3px;
    font-weight: 200;
    text-align: center;
}
.mosaic-rental-services-section h2 strong {
    font-weight: 600;
    color: var(--mrs-brand);
}
.mosaic-rental-services-section p.section-lede {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    color: var(--mrs-ink-soft);
    line-height: 1.65;
    letter-spacing: 0.3px;
}

/* ---------- Glass Pillar Cards ---------- */
.mosaic-rental-services-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    perspective: 1200px;
}
.mosaic-rental-services-pillar {
    position: relative;
    padding: 36px 28px;
    border-radius: var(--mrs-radius);
    background: var(--mrs-glass);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid var(--mrs-glass-stroke);
    box-shadow: var(--mrs-shadow-soft);
    transition: transform 0.5s var(--mrs-ease), box-shadow 0.5s var(--mrs-ease);
    transform-style: preserve-3d;
    overflow: hidden;
}
.mosaic-rental-services-pillar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 68, 184, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}
.mosaic-rental-services-pillar:hover {
    transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
    box-shadow: var(--mrs-shadow);
}
.mosaic-rental-services-pillar-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--mrs-brand);
}
.mosaic-rental-services-pillar h3 {
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mrs-ink);
    margin: 0 0 12px;
    font-weight: 600;
}
.mosaic-rental-services-pillar p {
    margin: 0;
    color: var(--mrs-ink-soft);
    font-size: 0.92rem;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* ---------- Core Competencies Grid ---------- */
.mosaic-rental-services-competencies {
    background: linear-gradient(160deg, #ffffff 0%, #f4f7ff 100%);
    border-top: 1px solid rgba(29, 68, 184, 0.12);
    border-bottom: 1px solid rgba(29, 68, 184, 0.12);
}
.mosaic-rental-services-competencies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1280px;
    margin: 0 auto;
}
.mosaic-rental-services-competency {
    position: relative;
    padding: 26px 22px 24px;
    background: var(--mrs-white);
    border: 1px solid rgba(29, 68, 184, 0.12);
    border-radius: 14px;
    box-shadow: 0 8px 24px -16px rgba(11, 27, 72, 0.28);
    transition: transform 0.35s var(--mrs-ease), box-shadow 0.35s var(--mrs-ease);
    overflow: hidden;
}
.mosaic-rental-services-competency::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--mrs-brand), #4a7ce0);
    opacity: 0.85;
}
.mosaic-rental-services-competency:hover {
    transform: translateY(-4px);
    box-shadow: var(--mrs-shadow);
}
.mosaic-rental-services-competency-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mrs-brand);
    background: var(--mrs-brand-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-weight: 700;
}
.mosaic-rental-services-competency h3 {
    font-size: 0.98rem;
    letter-spacing: 0.5px;
    color: var(--mrs-ink);
    margin: 0 0 8px;
    font-weight: 600;
}
.mosaic-rental-services-competency p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--mrs-ink-soft);
    letter-spacing: 0.2px;
}

/* ---------- Utilities / Access Sections ---------- */
.mosaic-rental-services-utilities {
    background: linear-gradient(160deg, #ffffff 0%, #eef3ff 100%);
    border-top: 1px solid rgba(29, 68, 184, 0.12);
    border-bottom: 1px solid rgba(29, 68, 184, 0.12);
}
.mosaic-rental-services-utilities-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}
.mosaic-rental-services-utilities-grid.mrs-reverse {
    grid-template-columns: 0.95fr 1.05fr;
}
.mosaic-rental-services-access {
    background: linear-gradient(160deg, #f4f7ff 0%, #ffffff 100%);
    border-top: 1px solid rgba(29, 68, 184, 0.12);
    border-bottom: 1px solid rgba(29, 68, 184, 0.12);
}
.mosaic-rental-services-utilities-content h2 {
    margin-top: 12px;
}
.mosaic-rental-services-utilities-content > p {
    color: var(--mrs-ink-soft);
    line-height: 1.7;
    letter-spacing: 0.2px;
    font-size: 1rem;
    margin: 16px 0 24px;
}
.mosaic-rental-services-utilities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 14px;
}
.mosaic-rental-services-utilities-list li {
    position: relative;
    padding: 14px 18px 14px 50px;
    background: var(--mrs-white);
    border: 1px solid rgba(29, 68, 184, 0.12);
    border-radius: 12px;
    color: var(--mrs-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 20px -14px rgba(11, 27, 72, 0.25);
}
.mosaic-rental-services-utilities-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 22px;
    height: 22px;
    margin-top: -11px;
    border-radius: 50%;
    background:
        linear-gradient(var(--mrs-brand), var(--mrs-brand)) center/10px 2px no-repeat,
        linear-gradient(var(--mrs-brand), var(--mrs-brand)) center/2px 10px no-repeat,
        var(--mrs-brand-soft);
    transform: rotate(45deg);
}
.mosaic-rental-services-utilities-list li strong {
    color: var(--mrs-brand);
    font-weight: 600;
}
.mosaic-rental-services-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.mrs-tech-badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mrs-brand);
    background: var(--mrs-brand-soft);
    border: 1px solid rgba(29, 68, 184, 0.25);
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.mosaic-rental-services-utilities-risk {
    padding: 18px 22px;
    background: rgba(29, 68, 184, 0.06);
    border-left: 3px solid var(--mrs-brand);
    border-radius: 8px;
    color: var(--mrs-ink);
    font-size: 0.92rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
    margin: 0 0 28px;
}
.mosaic-rental-services-utilities-risk strong {
    color: var(--mrs-brand);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}
.mosaic-rental-services-utilities-content .mosaic-rental-services-button {
    margin: 0;
}
.mosaic-rental-services-utilities-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mosaic-rental-services-utilities-visual svg {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(11, 27, 72, 0.18));
}

/* ---------- Live Portal Preview (3D Tilt) ---------- */
.mosaic-rental-services-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    perspective: 1400px;
}
.mosaic-rental-services-preview-card {
    position: relative;
    padding: 32px;
    border-radius: var(--mrs-radius-lg);
    background: linear-gradient(160deg, #ffffff 0%, #f4f7ff 100%);
    border: 1px solid rgba(29, 68, 184, 0.12);
    box-shadow: var(--mrs-shadow-soft);
    transition: transform 0.5s var(--mrs-ease), box-shadow 0.5s var(--mrs-ease);
    transform-style: preserve-3d;
}
.mosaic-rental-services-preview-card:hover {
    transform: translateY(-4px) rotateX(3deg) rotateY(-3deg);
    box-shadow: var(--mrs-shadow);
}
.mosaic-rental-services-preview-card .badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mrs-brand);
    background: var(--mrs-brand-soft);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
    font-weight: 600;
}
.mosaic-rental-services-preview-card h3 {
    font-size: 1.3rem;
    color: var(--mrs-ink);
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -0.2px;
}
.mosaic-rental-services-preview-card p {
    margin: 0 0 20px;
    color: var(--mrs-ink-soft);
    line-height: 1.6;
    letter-spacing: 0.2px;
}
.mosaic-rental-services-preview-mock {
    background: var(--mrs-ink);
    color: var(--mrs-white);
    border-radius: 12px;
    padding: 20px;
    font-family: "Montserrat", monospace;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1.7;
    transform: translateZ(20px);
}
.mosaic-rental-services-preview-mock .row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 0;
}
.mosaic-rental-services-preview-mock .row:last-child { border-bottom: none; }
.mosaic-rental-services-preview-mock .row .amount.positive { color: #6ce0a4; }
.mosaic-rental-services-preview-mock .row .amount.negative { color: #ff8a8a; }

/* ---------- Trust Stats ---------- */
.mosaic-rental-services-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}
.mosaic-rental-services-stat {
    position: relative;
    padding: 40px 28px;
    text-align: center;
    border-radius: var(--mrs-radius);
    background: var(--mrs-white);
    border: 1px solid rgba(29, 68, 184, 0.1);
    overflow: hidden;
}
.mosaic-rental-services-stat::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(29, 68, 184, 0.18), transparent 30%);
    animation: mrsSpin 14s linear infinite;
    z-index: 0;
}
.mosaic-rental-services-stat::after {
    content: "";
    position: absolute;
    inset: 1px;
    background: var(--mrs-white);
    border-radius: calc(var(--mrs-radius) - 1px);
    z-index: 1;
}
.mosaic-rental-services-stat > * {
    position: relative;
    z-index: 2;
}
.mosaic-rental-services-stat .value {
    display: block;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--mrs-brand);
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.mosaic-rental-services-stat .label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mrs-ink-soft);
}

/* ---------- ROI Section (dark variant, section differentiation) ---------- */
.mosaic-rental-services-roi {
    background-color: #07112e;
    background-image:
        radial-gradient(circle at 15% 0%, rgba(74, 124, 224, 0.22), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(29, 68, 184, 0.28), transparent 60%),
        linear-gradient(160deg, #07112e 0%, #0b1b48 60%, #102558 100%);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mosaic-rental-services-roi h2,
.mosaic-rental-services-section.mosaic-rental-services-roi h2 {
    color: #ffffff;
}
.mosaic-rental-services-roi h2 strong,
.mosaic-rental-services-section.mosaic-rental-services-roi h2 strong {
    color: #b8ccff;
    font-weight: 600;
}
.mosaic-rental-services-roi p.section-lede,
.mosaic-rental-services-section.mosaic-rental-services-roi p.section-lede {
    color: rgba(255, 255, 255, 0.82);
}
.mosaic-rental-services-roi .mosaic-rental-services-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(184, 204, 255, 0.35);
    box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}
.mosaic-rental-services-roi .mosaic-rental-services-stat::before {
    background: conic-gradient(from 0deg, transparent, rgba(184, 204, 255, 0.55), transparent 30%);
}
.mosaic-rental-services-roi .mosaic-rental-services-stat::after {
    background: linear-gradient(160deg, #2a3f74 0%, #38528f 100%);
}
.mosaic-rental-services-roi .mosaic-rental-services-stat .value {
    color: #ffffff;
}
.mosaic-rental-services-roi .mosaic-rental-services-stat .label {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Proposal Form ---------- */
.mosaic-rental-services-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 48px 48px;
    border-radius: var(--mrs-radius-lg);
    background-color: #07112e;
    background-image:
        radial-gradient(circle at 15% 0%, rgba(74, 124, 224, 0.18), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(29, 68, 184, 0.22), transparent 55%),
        linear-gradient(160deg, #07112e 0%, #0b1b48 60%, #102558 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 40px 90px -25px rgba(7, 17, 46, 0.85),
        0 0 0 1px rgba(7, 17, 46, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
.mosaic-rental-services-form-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7ce0 0%, #ffffff 50%, #4a7ce0 100%);
    background-size: 200% auto;
    animation: mrsShine 6s linear infinite;
    opacity: 0.85;
}
.mosaic-rental-services-form {
    display: grid;
    gap: 18px;
}
.mosaic-rental-services-form .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mosaic-rental-services-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.mosaic-rental-services-form label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}
.mosaic-rental-services-form input[type="text"],
.mosaic-rental-services-form input[type="email"],
.mosaic-rental-services-form input[type="tel"],
.mosaic-rental-services-form input[type="number"],
.mosaic-rental-services-form select,
.mosaic-rental-services-form textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: var(--mrs-ink);
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    box-shadow: 0 6px 18px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: border-color 0.25s var(--mrs-ease), box-shadow 0.25s var(--mrs-ease);
    -webkit-appearance: none;
    appearance: none;
}
.mosaic-rental-services-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.55;
}
.mosaic-rental-services-form input:focus,
.mosaic-rental-services-form select:focus,
.mosaic-rental-services-form textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25), 0 6px 18px -10px rgba(0, 0, 0, 0.5);
}
.mosaic-rental-services-form-submit {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.75px;
    text-transform: uppercase;
    width: 100%;
    background: #ffffff;
    color: var(--mrs-brand-deep);
    padding: 18px;
    margin-top: 8px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s var(--mrs-ease), color 0.25s var(--mrs-ease), transform 0.25s var(--mrs-ease), box-shadow 0.25s var(--mrs-ease);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.55);
}
.mosaic-rental-services-form-submit:hover {
    background: var(--mrs-brand);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 45px -15px rgba(74, 124, 224, 0.7), 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.mosaic-rental-services-form .consent {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}
.mosaic-rental-services-form .consent a {
    color: #ffffff;
    text-decoration: underline;
}

/* ---------- Toast (success / error) ---------- */
.mosaic-rental-services-toast {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mrs-ink);
    color: var(--mrs-white);
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: var(--mrs-shadow);
    z-index: 99;
    animation: mrsToast 4.5s var(--mrs-ease) forwards;
}
.mosaic-rental-services-toast.success { background: #1f7a4d; }
.mosaic-rental-services-toast.error   { background: #b8341d; }
@keyframes mrsToast {
    0%   { opacity: 0; transform: translate(-50%, 20px); }
    10%  { opacity: 1; transform: translate(-50%, 0); }
    90%  { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 20px); }
}

/* ---------- Footer ---------- */
.mosaic-rental-services-footer {
    position: relative;
    width: 100%;
    background: var(--mrs-surface);
    font-weight: 800;
    font-size: 9px;
    letter-spacing: 3px;
    text-align: center;
    border-top: 0.1px solid var(--mrs-line);
    padding: 1em 0.5em;
}
.mosaic-rental-services-footer a {
    text-decoration: none;
    color: var(--mrs-body);
    transition: color 0.25s var(--mrs-ease);
}
.mosaic-rental-services-footer a:hover {
    color: var(--mrs-brand);
}

/* ---------- Section heading left-aligned variant ---------- */
.mosaic-rental-services-section-heading-left {
    text-align: left;
}

/* ---------- NoScript fallback banner ---------- */
.mosaic-rental-services-noscript {
    background: var(--mrs-brand);
    color: var(--mrs-white);
    text-align: center;
    padding: 1rem;
}
.mosaic-rental-services-noscript a {
    color: var(--mrs-white);
    text-decoration: underline;
}

/* ---------- Lift the reCAPTCHA badge above the fixed footer ---------- */
.grecaptcha-badge {
    bottom: 50px !important;
}

/* ================================================================
   Scroll-Driven Reveal Animations (progressive enhancement)
   ================================================================ */
@supports (animation-timeline: view()) {
    .mosaic-rental-services-pillar,
    .mosaic-rental-services-competency {
        animation: mrsReveal linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }
}
@keyframes mrsReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================================================
   View Transitions hooks
   ================================================================ */
@supports (view-transition-name: none) {
    .mosaic-rental-services-form-wrap {
        view-transition-name: mrs-proposal-form;
    }
}

/* ============================================== */
/* MEDIA QUERIES                                  */
/* ============================================== */
@media only screen and (max-width: 1200px) {
    .mosaic-rental-services-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .mosaic-rental-services-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .mosaic-rental-services-competencies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 900px) {
    body { font-size: 90%; }
    .mosaic-rental-services-top-navigation {
        padding: 0 14px;
        gap: 8px;
    }
    .mosaic-rental-services-top-navigation a {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 14px 6px;
    }
    .mosaic-rental-services-top-navigation a.cta {
        padding: 9px 16px;
        letter-spacing: 1px;
    }
    .mosaic-rental-services-shell {
        padding-top: 50px;
    }
    .mosaic-rental-services-hero {
        grid-template-columns: 1fr;
        padding: 50px 24px 70px;
        text-align: center;
        min-height: auto;
    }
    .mosaic-rental-services-hero-art {
        order: -1;
    }
    .mosaic-rental-services-cta-row {
        justify-content: center;
    }
    .mosaic-rental-services-section {
        padding: 70px 24px;
    }
    .mosaic-rental-services-preview {
        grid-template-columns: 1fr;
    }
    .mosaic-rental-services-competencies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mosaic-rental-services-utilities-grid,
    .mosaic-rental-services-utilities-grid.mrs-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mosaic-rental-services-utilities-visual {
        order: -1;
    }
    .mosaic-rental-services-utilities-grid.mrs-reverse .mosaic-rental-services-utilities-visual {
        order: -1;
    }
    .mosaic-rental-services-stat .value {
        font-size: 1.8rem;
    }
    .mosaic-rental-services-form .field-row {
        grid-template-columns: 1fr;
    }
    .mosaic-rental-services-form-wrap {
        padding: 32px 24px;
    }
    .mosaic-rental-services-footer {
        font-size: 7px;
        letter-spacing: 2px;
        padding: 0.6em 0.4em;
    }
    .mosaic-rental-services-footer p {
        margin: 0.25em 0;
    }
}
@media only screen and (max-width: 600px) {
    .mosaic-rental-services-competencies-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .mosaic-rental-services-mesh::before,
    .mosaic-rental-services-mesh::after {
        animation: none !important;
    }
    .mosaic-rental-services-pillar:hover,
    .mosaic-rental-services-preview-card:hover,
    .mosaic-rental-services-competency:hover {
        transform: none;
    }
}

@media print {
    .mosaic-rental-services-top-navigation,
    .mosaic-rental-services-mesh,
    .mosaic-rental-services-footer,
    .grecaptcha-badge {
        display: none !important;
    }
    .mosaic-rental-services-section {
        padding: 30px 0;
        page-break-inside: avoid;
    }
    body { background: white; color: black; }
}
