        .rt-mission-v1-card {
            min-height: 355px;
        }

        /* ══════════════════════════════════════════════════════════════
           MOXA 73 Product Showcase — bento-grid layout
           Redesigned to match the Device Portfolio reference image.
           Row 1: wide-left (overlay card) + narrow-right (caption card).
           Row 2: narrow-left (caption card) + wide-right (overlay card).
           ══════════════════════════════════════════════════════════════ */
        .rt-moxa73-showcase {
            background-color: #ffffff;
            padding: 5rem 0 5.5rem;
        }

        /* ── Header: eyebrow + title (left) | description (right) ── */
        .rt-moxa73-showcase-head {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            grid-column-gap: 3rem;
            align-items: end;
            padding-bottom: 2.75rem;
        }

        .rt-moxa73-showcase-eyebrow {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #0f172a;
            padding: 0.35rem 0;
            margin-bottom: 0.75rem;
        }

        .rt-moxa73-showcase-title {
            font-size: clamp(1.75rem, 3vw, 2.65rem);
            line-height: 1.12;
            color: #0f172a;
            font-weight: 500;
            margin: 0;
            max-width: 36rem;
            letter-spacing: -0.02em;
        }

        .rt-moxa73-showcase-lead {
            color: #6b7280;
            font-size: 0.88rem;
            line-height: 1.6;
            padding-top: 0;
            margin: 0;
            font-style: italic;
        }

        /* ── Bento Grid: 3-column asymmetric ── */
        .rt-moxa73-showcase-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: 1fr 1fr;
            column-gap: 1.25rem;
            row-gap: 1.25rem;
        }

        .rt-moxa73-showcase-card {
            display: flex;
            flex-direction: column;
            border-radius: 0;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .rt-moxa73-showcase-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        /* Row 1: Card 1 wide, Card 2 narrow */
        .rt-moxa73-showcase-card:nth-child(1) {
            grid-column: 1 / span 2;
            grid-row: 1;
        }
        .rt-moxa73-showcase-card:nth-child(2) {
            grid-column: 3;
            grid-row: 1;
        }

        /* Row 2: Card 3 narrow, Card 4 wide */
        .rt-moxa73-showcase-card:nth-child(3) {
            grid-column: 1;
            grid-row: 2;
        }
        .rt-moxa73-showcase-card:nth-child(4) {
            grid-column: 2 / span 2;
            grid-row: 2;
        }

        /* ── Overlay Cards (Card 1 & Card 4) — image fills, text overlaid ── */
        .rt-moxa73-card-overlay {
            position: relative;
            height: 100%;
        }

        .rt-moxa73-card-overlay .rt-moxa73-showcase-media {
            border-radius: 0;
            overflow: hidden;
            height: 100%;
            min-height: 22rem;
            background: #dfd9d1;
        }

        .rt-moxa73-card-overlay .rt-moxa73-showcase-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .rt-moxa73-card-overlay:hover .rt-moxa73-showcase-media img {
            transform: scale(1.05);
        }

        /* Gradient overlay for text readability */
        .rt-moxa73-card-overlay .rt-moxa73-showcase-media::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.35) 40%,
                rgba(0, 0, 0, 0.05) 70%,
                transparent 100%
            );
            pointer-events: none;
            z-index: 1;
        }

        /* Category badge on overlay cards */
        .rt-moxa73-card-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.3rem 0.65rem;
            border-radius: 0;
            z-index: 2;
        }

        /* Overlaid caption at bottom of card */
        .rt-moxa73-card-overlay .rt-moxa73-showcase-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.25rem 1.5rem;
            z-index: 2;
        }

        .rt-moxa73-card-overlay .rt-moxa73-showcase-caption-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.35rem;
            line-height: 1.3;
        }

        .rt-moxa73-card-overlay .rt-moxa73-showcase-caption-body {
            font-size: 0.8rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        /* ── Caption Cards (Card 2 & Card 3) — image on top, text below ── */
        .rt-moxa73-card-caption {
            background: #f8f9fa;
            border: 1px solid #e8e8e8;
            height: 100%;
        }

        .rt-moxa73-card-caption .rt-moxa73-showcase-media {
            border-radius: 0;
            overflow: hidden;
            flex: 1;
            min-height: 10rem;
            background: #eee;
        }

        .rt-moxa73-card-caption .rt-moxa73-showcase-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .rt-moxa73-card-caption:hover .rt-moxa73-showcase-media img {
            transform: scale(1.05);
        }

        .rt-moxa73-card-caption .rt-moxa73-showcase-caption {
            padding: 1rem 1.25rem 1.35rem;
        }

        .rt-moxa73-card-caption .rt-moxa73-showcase-caption-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.35rem;
            line-height: 1.3;
        }

        .rt-moxa73-card-caption .rt-moxa73-showcase-caption-body {
            font-size: 0.82rem;
            line-height: 1.55;
            color: #64748b;
            margin: 0;
            font-style: italic;
        }

        /* ── Responsive ── */
        @media (max-width: 991px) {
            .rt-moxa73-showcase {
                padding: 3.5rem 0 4rem;
            }

            .rt-moxa73-showcase-head {
                grid-template-columns: 1fr;
                grid-row-gap: 1rem;
                padding-bottom: 2rem;
                align-items: start;
            }

            .rt-moxa73-showcase-grid {
                grid-template-columns: 1fr 1fr;
                column-gap: 1rem;
                row-gap: 1rem;
            }

            .rt-moxa73-showcase-card:nth-child(1),
            .rt-moxa73-showcase-card:nth-child(4) {
                grid-column: 1 / span 2;
            }

            .rt-moxa73-showcase-card:nth-child(2) { grid-column: 1; grid-row: 2; }
            .rt-moxa73-showcase-card:nth-child(3) { grid-column: 2; grid-row: 2; }
            .rt-moxa73-showcase-card:nth-child(4) { grid-row: 3; }

            .rt-moxa73-card-overlay .rt-moxa73-showcase-media {
                height: 100%;
                min-height: 16rem;
            }

            .rt-moxa73-card-caption .rt-moxa73-showcase-media {
                min-height: 9rem;
            }
        }

        @media (max-width: 640px) {
            .rt-moxa73-showcase {
                padding: 2.5rem 0 3rem;
            }

            .rt-moxa73-showcase-grid {
                grid-template-columns: 1fr;
                row-gap: 1rem;
            }

            .rt-moxa73-showcase-card,
            .rt-moxa73-showcase-card:nth-child(1),
            .rt-moxa73-showcase-card:nth-child(2),
            .rt-moxa73-showcase-card:nth-child(3),
            .rt-moxa73-showcase-card:nth-child(4) {
                grid-column: 1;
                grid-row: auto;
            }

            .rt-moxa73-card-overlay .rt-moxa73-showcase-media {
                height: clamp(13rem, 50vw, 16rem);
                min-height: auto;
            }

            .rt-moxa73-card-caption .rt-moxa73-showcase-media {
                flex: none;
                height: clamp(10rem, 40vw, 13rem);
                min-height: auto;
            }

            .rt-moxa73-showcase-title {
                font-size: 1.5rem;
            }
        }
        .rt-large-text {
            display: flex;
            align-items: center;
        }
        .rt-faq-dropdown-list {
            transition: height 0.35s ease;
        }

        .rt-faq-bar-rotate {
            transition: transform 0.35s ease;
        }

        /* ── Video V3: Scroll-scrub scale animation ── */
        .rt-video-v3 {
            /* Extra height creates scroll distance for the scrub effect */
            height: 200vh;
            position: relative;
        }

            .rt-video-v3 .rt-video-main {
                position: sticky;
                top: 0;
                height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .rt-video-v3 .rt-video-wrap {
                transform: scale(0.65);
                border-radius: 20px;
                overflow: hidden;
                will-change: transform, border-radius;
                transition: none; /* scrubbed by JS, no CSS transition */
            }

        /* ── HomeTwo exterior panels: hover accordion ── */
        .rt-exterior-text-item {
            transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .rt-exterior-overlay-wrapper {
            pointer-events: none;
        }

        .rt-exterior-text-item.is-active .rt-exterior-overlay-wrapper,
        .rt-exterior-text-item.is-active .rt-exterior-overlay-wrapper.rt-one {
            pointer-events: auto;
        }

        .rt-exterior-image-overlay {
            transition: opacity 0.4s ease;
        }

        .rt-exterior-text-item.is-active .rt-exterior-image-overlay {
            opacity: 0.7 !important;
        }

        .rt-top-big-text {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
        }

        .rt-exterior-text-item.is-active .rt-top-big-text,
        .rt-exterior-text-item.is-active .rt-top-big-text.two,
        .rt-exterior-text-item.is-active .rt-top-big-text.three,
        .rt-exterior-text-item.is-active .rt-top-big-text.four {
            opacity: 1;
            transform: translateY(0);
        }

        .rt-exterior-text-bottom {
            transition: opacity 0.3s ease;
        }

        .rt-exterior-text-item.is-active .rt-exterior-text-bottom {
            opacity: 0;
        }

        /* ── Background images: layered and crossfade ── */
        .rt-exterior-image-main {
            position: relative;
        }
        .rt-exterior-image-main .rt-image-full-width {
            transition: opacity 0.6s ease;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* First image sets the container height */
        .rt-exterior-image-main .rt-image-full-width:first-child {
            position: relative;
        }

        /* ── Fix 1: Banner description padding on smaller screens ── */
        @media screen and (max-width: 767px) {
            .rt-p-tag-color-white {
                width: 90%;
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        @media screen and (max-width: 479px) {
            .rt-p-tag-color-white {
                width: 100%;
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }
        }

        /* ── Fix 2: Normalize spec card images + fix card text spacing ── */
        @media screen and (max-width: 991px) {
            .about-one-service-card .rt-width-height-full-mobile-l {
                width: auto;
                height: auto;
                flex-shrink: 0;
            }

            .rt-service-v4-card-image,
            .rt-service-v4-card-image.rt-active.rt-auto-fit {
                width: 100%;
                max-width: 180px;
                height: auto;
            }

            .about-one-service-card .rt-service-v4-card-text {
                flex: 1;
                min-width: 0;
            }
        }

        @media screen and (max-width: 767px) {
            .about-one-service-card .rt-width-height-full-mobile-l {
                max-width: 35%;
            }

            .rt-service-v4-card-image,
            .rt-service-v4-card-image.rt-active.rt-auto-fit {
                max-width: 150px;
            }

            .about-one-service-card .rt-service-v4-card-text {
                padding-left: 0;
            }

            .rt-service-v4-card-text ul {
                padding-left: 18px;
            }
        }

        @media screen and (max-width: 479px) {
            .about-one-service-card .rt-width-height-full-mobile-l {
                max-width: 100%;
                max-height: 200px;
                overflow: hidden;
            }

            .rt-service-v4-card-image,
            .rt-service-v4-card-image.rt-active.rt-auto-fit {
                max-width: 100%;
            }

            .about-one-service-card .rt-service-v4-card-text {
                padding-left: 0;
            }
        }

        /* ── Fix 3: Show exterior paragraphs on tab-to-mobile screens ── */
        @media screen and (max-width: 991px) {
            .rt-top-big-text,
            .rt-top-big-text.two,
            .rt-top-big-text.three,
            .rt-top-big-text.four {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }

            .rt-exterior-big-paragraph {
                max-width: 100%;
            }

            .rt-exterior-text-item {
                flex: 1 !important;
            }
        }
