/* ==========================================================================
   MWT HERO SECTION + RESPONSIVE CENTER IMAGE + COMMON IMAGE POPUP
   ========================================================================== */

/* -------------------- HERO SECTION -------------------- */

.mwt-full-hero-split-sec {
    position: relative;
    width: 100%;
    padding: 30px;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.mwt-edge-to-edge-container {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}

.mwt-full-flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.mwt-full-flex-col {
    width: 50%;
    min-width: 0;
}

/* -------------------- LEFT CONTENT -------------------- */

.text-dock-left {
    padding-right: 40px;
    text-align: left;
}

.mwt-luxury-tag {
    display: inline-flex;
    align-items: center;
    background: #f4f7ff;
    border: 1px solid rgba(11, 49, 103, 0.08);
    color: #0b3167;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.mwt-luxury-title {
    color: #0b3167;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 950;
    line-height: 1.15;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.mwt-gradient-orange {
    color: #ff9f1c;
}

.mwt-luxury-price-tag {
    color: #475569;
    font-size: clamp(15px, 1.3vw, 19px);
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 22px;
}

.mwt-luxury-price-tag strong {
    color: #0b3167;
    font-weight: 900;
}

.mwt-luxury-price-tag span {
    color: #ff9f1c;
}

.mwt-luxury-desc {
    color: #475569;
    font-size: clamp(14px, 1.15vw, 16px);
    line-height: 1.8;
    font-weight: 500;
    margin: 0 0 30px;
    text-align: justify;
}

/* -------------------- CHECKPOINTS -------------------- */

.mwt-luxury-checkpoints {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.mwt-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mwt-check-item i {
    color: #0b3167;
    font-size: 15px;
    flex-shrink: 0;
}

.mwt-check-item span {
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

/* -------------------- BUTTONS -------------------- */

.mwt-luxury-action-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.mwt-luxury-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #0b3167;
    color: #ffffff;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(11, 49, 103, 0.12);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.mwt-luxury-cta-btn:hover {
    background: #ff9f1c;
    color: #0b3167;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 159, 28, 0.25);
}

.btn-scheme-secondary {
    background: transparent;
    color: #ff9f1c;
    border: 1px solid rgba(255, 159, 28, 0.4);
    box-shadow: none;
}

.btn-scheme-secondary:hover {
    background: rgba(255, 159, 28, 0.08);
    color: #0b3167;
    border-color: #ff9f1c;
}

/* ==========================================================================
   RIGHT SIDE IMAGE — LARGE, CENTERED AND FULL RESPONSIVE
   ========================================================================== */

.visual-dock-right {
    width: 50%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 20px;
    overflow: visible;
}

.mwt-browser-mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 700px;
    min-height: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.mwt-browser-window {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* બંને popup links માટે common CSS */
.mwt-image-popup,
.mwt-image-popup-accounting {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: zoom-in;
    overflow: visible;
}

/* Main hero image */
.mwt-responsive-vector-img {
    display: block;
    width: 100%;
    max-width: 680px;
    height: auto;
    max-height: 500px;
    margin: 0 auto;
    padding: 0;
    object-fit: contain;
    object-position: center;
    position: static;
    left: auto;
    right: auto;
    transform-origin: center;
    animation: mwtResponsiveFloat 6s ease-in-out infinite;
    transition:
        filter 0.35s ease,
        opacity 0.35s ease;
}

/* Hover effect */
.mwt-image-popup:hover .mwt-responsive-vector-img,
.mwt-image-popup-accounting:hover .mwt-responsive-vector-img {
    filter: drop-shadow(0 18px 28px rgba(11, 49, 103, 0.16));
}

/* Floating animation */
@keyframes mwtResponsiveFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   LARGE DESKTOP
   ========================================================================== */

@media (min-width: 1400px) {
    .mwt-browser-mockup-wrap,
    .mwt-browser-window {
        max-width: 750px;
        min-height: 500px;
    }

    .mwt-responsive-vector-img {
        max-width: 730px;
        max-height: 540px;
    }
}

/* ==========================================================================
   LAPTOP
   ========================================================================== */

@media (max-width: 1199px) {
    .visual-dock-right {
        padding-left: 10px;
    }

    .mwt-browser-mockup-wrap,
    .mwt-browser-window {
        min-height: 400px;
        max-width: 600px;
    }

    .mwt-responsive-vector-img {
        width: 100%;
        max-width: 580px;
        max-height: 450px;
    }
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {
    .mwt-full-flex-row {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 35px;
    }

    .mwt-full-flex-col,
    .visual-dock-right {
        width: 100%;
    }

    .visual-dock-right {
        padding: 0;
        margin: 0;
        justify-content: center;
    }

    .mwt-browser-mockup-wrap,
    .mwt-browser-window {
        width: 100%;
        max-width: 650px;
        min-height: auto;
        margin: 0 auto;
    }

    .mwt-responsive-vector-img {
        width: 100%;
        max-width: 620px;
        max-height: none;
        margin: 0 auto;
    }
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {
    .visual-dock-right {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .mwt-browser-mockup-wrap,
    .mwt-browser-window {
        width: 100%;
        max-width: 520px;
        min-height: auto;
        padding: 0;
    }

    .mwt-image-popup,
    .mwt-image-popup-accounting {
        width: 100%;
        padding: 0;
    }

    .mwt-responsive-vector-img {
        width: 100%;
        max-width: 500px;
        max-height: none;
        margin: 0 auto;
        object-fit: contain;
    }
}

/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 575px) {
    .mwt-browser-mockup-wrap,
    .mwt-browser-window {
        max-width: 100%;
    }

    .mwt-responsive-vector-img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* ==========================================================================
   VERY SMALL MOBILE
   ========================================================================== */

@media (max-width: 400px) {
    .visual-dock-right {
        padding: 0;
    }

    .mwt-responsive-vector-img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Disable animations for accessibility */
@media (prefers-reduced-motion: reduce) {
    .mwt-responsive-vector-img {
        animation: none;
    }
}
/* ==========================================================================
   SINGLE COMMON POPUP CSS
   ========================================================================== */

.mwt-popup,
.mwt-popup-accounting {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.90);
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 999999;
    overflow: auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* JavaScript display:flex કરશે ત્યારે centerમાં ખુલશે */
.mwt-popup[style*="display: flex"],
.mwt-popup-accounting[style*="display: flex"] {
    align-items: center;
    justify-content: center;
}

.mwt-popup img,
.mwt-popup-accounting img {
    display: block;
    width: auto;
    max-width: min(95%, 1200px);
    max-height: 90vh;
    height: auto;
    margin: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    animation: mwtPopupZoom 0.3s ease;
}

@keyframes mwtPopupZoom {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Both close buttons */
.mwt-close,
.mwt-close-accounting {
    position: fixed;
    top: 18px;
    right: 28px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.mwt-close:hover,
.mwt-close-accounting:hover {
    background: #ff9f1c;
    color: #0b3167;
    transform: rotate(90deg);
}

/* ==========================================================================
   E-COMMERCE TECHNOLOGIES SECTION
   ========================================================================== */

.mwt-full-eco-tech-expert-sec {
    position: relative;
    width: 100%;
    padding: 30px;
    overflow: hidden;
    background: #f4f7ff;
    border-bottom: 1px solid #f1f5f9;
}

.mwt-true-edge-to-edge-fluid-container {
    width: 100%;
    padding: 0 4%;
    margin: 0 auto;
}

.mwt-eco-tech-master-head {
    max-width: 800px;
    margin: 0 auto 75px;
    text-align: center;
}

.mwt-luxury-main-title {
    color: #0b3167;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 950;
    line-height: 1.25;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.mwt-eco-tech-fluid-mesh {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    width: 100%;
    align-items: stretch;
}

.mwt-eco-prestige-slat {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: clamp(25px, 3.5vw, 45px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 49, 103, 0.006);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.mwt-eco-laser-shimmer-wire {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #0b3167;
    transition: height 0.4s ease;
}

.orange-wire-scheme {
    background: #ff9f1c;
}

.mwt-eco-slat-inner-dock {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    text-align: left;
}

.mwt-eco-icon-vault {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    transition:
        transform 0.4s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.mwt-eco-icon-vault img {
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.mwt-eco-text-vault {
    width: 100%;
}

.mwt-eco-text-vault h3 {
    color: #0b3167;
    font-size: clamp(17px, 1.4vw, 22px);
    font-weight: 900;
    margin: 0 0 12px;
    letter-spacing: -0.2px;
}

.mwt-eco-text-vault p {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
    text-align: justify;
}

.mwt-eco-prestige-slat:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 49, 103, 0.12);
    box-shadow: 0 15px 35px rgba(11, 49, 103, 0.025);
}

.mwt-eco-prestige-slat:hover .mwt-eco-laser-shimmer-wire {
    height: 100%;
}

.mwt-eco-prestige-slat:hover .mwt-eco-icon-vault {
    transform: scale(1.06) rotate(3deg);
    background: #ffffff;
    border-color: rgba(255, 159, 28, 0.25);
}

/* ==========================================================================
   RESPONSIVE — LARGE TABLET
   ========================================================================== */

@media (max-width: 1199px) {
    .mwt-full-flex-row {
        gap: 25px;
    }

    .text-dock-left {
        padding-right: 20px;
    }

    .mwt-responsive-vector-img {
        width: 115%;
        max-width: 620px;
    }
}

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 991px) {
    .mwt-full-hero-split-sec {
        padding: 45px 20px;
    }

    .mwt-edge-to-edge-container {
        padding: 0 3%;
    }

    .mwt-full-flex-row {
        flex-direction: column-reverse;
        gap: 35px;
    }

    .mwt-full-flex-col {
        width: 100%;
    }

    .text-dock-left {
        padding-right: 0;
        margin-top: 0;
        text-align: center;
    }

    .mwt-luxury-desc {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .mwt-luxury-checkpoints {
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        align-items: flex-start;
        text-align: left;
    }

    .mwt-luxury-action-row {
        justify-content: center;
    }

    .visual-dock-right {
        width: 100%;
        justify-content: center;
    }

    .mwt-browser-mockup-wrap {
        max-width: 580px;
    }

    .mwt-browser-window {
        min-height: auto;
    }

    .mwt-responsive-vector-img {
        width: 100%;
        max-width: 580px;
        margin: 0 auto;
    }

    .mwt-eco-tech-fluid-mesh {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */

@media (max-width: 767px) {
    .mwt-full-hero-split-sec {
        padding: 35px 15px;
    }

    .mwt-edge-to-edge-container,
    .mwt-true-edge-to-edge-fluid-container {
        padding: 0;
    }

    .mwt-luxury-title {
        font-size: clamp(28px, 9vw, 40px);
    }

    .mwt-luxury-desc {
        text-align: left;
        line-height: 1.7;
    }

    .mwt-luxury-checkpoints {
        width: 100%;
    }

    .mwt-browser-mockup-wrap {
        max-width: 480px;
    }

    .mwt-responsive-vector-img {
        width: 100%;
        max-width: 100%;
    }

    .mwt-full-eco-tech-expert-sec {
        padding: 50px 15px;
    }

    .mwt-eco-tech-master-head {
        margin-bottom: 45px;
    }

    .mwt-popup,
    .mwt-popup-accounting {
        padding: 60px 15px 20px;
    }

    .mwt-popup img,
    .mwt-popup-accounting img {
        max-width: 100%;
        max-height: 82vh;
        border-radius: 8px;
    }

    .mwt-close,
    .mwt-close-accounting {
        top: 10px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }
}

/* ==========================================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================================== */

@media (max-width: 600px) {
    .mwt-eco-tech-fluid-mesh {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mwt-eco-prestige-slat {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .mwt-eco-icon-vault {
        margin-bottom: 20px;
    }
}

@media (max-width: 530px) {
    .mwt-luxury-action-row {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .mwt-luxury-cta-btn {
        width: 100%;
    }

    .mwt-responsive-vector-img {
        width: 100%;
    }
}

/* Accessibility: Reduce animation when user prefers it */
@media (prefers-reduced-motion: reduce) {
    .mwt-responsive-vector-img {
        animation: none;
    }

    .mwt-popup img,
    .mwt-popup-accounting img {
        animation: none;
    }
}

/* ==========================================================================
   FINAL MWT HERO IMAGE FIX — LARGE, CENTERED, UNCROPPED & FULL RESPONSIVE
   Keep this block at the VERY END of the CSS file.
   ========================================================================== */

/* Prevent padding from increasing element width */
.mwt-full-hero-split-sec,
.mwt-full-hero-split-sec *,
.mwt-popup,
.mwt-popup *,
.mwt-popup-accounting,
.mwt-popup-accounting * {
    box-sizing: border-box;
}

/* Hero section */
.mwt-full-hero-split-sec {
    width: 100%;
    padding: clamp(30px, 4vw, 60px) 0;
    overflow: hidden;
}

.mwt-edge-to-edge-container {
    width: 100%;
    /*max-width: 1600px;*/
    margin: 0 auto;
    padding-left: clamp(18px, 5vw, 80px);
    padding-right: clamp(18px, 5vw, 80px);
}

.mwt-full-flex-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    align-items: center !important;
    justify-content: initial !important;
    gap: clamp(30px, 5vw, 80px) !important;
    width: 100%;
}

.mwt-full-flex-col {
    width: 100% !important;
    min-width: 0;
}

.text-dock-left {
    width: 100%;
    padding-right: 0 !important;
}

/* Right image column */
.visual-dock-right {
    width: 100% !important;
    min-width: 0;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
}

/* Image outer wrapper */
.mwt-browser-mockup-wrap {
    position: relative;
    width: 100% !important;
    max-width: 760px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
}

/* Image inner wrapper */
.mwt-browser-window {
    position: relative;
    width: 100% !important;
    max-width: 760px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Both clickable image links */
.mwt-image-popup,
.mwt-image-popup-accounting {
    width: 100% !important;
    max-width: 760px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    cursor: zoom-in;
    line-height: 0;
    text-decoration: none;
}

/* Actual image — large and fully visible */
.mwt-responsive-vector-img {
    display: block !important;
    width: min(100%, 760px) !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform-origin: center center;
    animation: mwtFinalHeroFloat 6s ease-in-out infinite !important;
    transition: filter .35s ease, opacity .35s ease !important;
}

.mwt-image-popup:hover .mwt-responsive-vector-img,
.mwt-image-popup-accounting:hover .mwt-responsive-vector-img {
    filter: drop-shadow(0 18px 30px rgba(11, 49, 103, .16));
}

@keyframes mwtFinalHeroFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    .mwt-full-flex-row {
        grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
    }

    .mwt-browser-mockup-wrap,
    .mwt-browser-window,
    .mwt-image-popup,
    .mwt-image-popup-accounting {
        max-width: 820px !important;
    }

    .mwt-responsive-vector-img {
        width: min(100%, 820px) !important;
    }
}

/* Laptop */
@media (max-width: 1199px) {
    .mwt-full-flex-row {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr);
        gap: 35px !important;
    }

    .mwt-browser-mockup-wrap,
    .mwt-browser-window,
    .mwt-image-popup,
    .mwt-image-popup-accounting {
        max-width: 620px !important;
    }

    .mwt-responsive-vector-img {
        width: min(100%, 620px) !important;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .mwt-full-hero-split-sec {
        padding: 40px 0;
    }

    .mwt-full-flex-row {
        display: flex !important;
        flex-direction: column-reverse !important;
        align-items: center !important;
        gap: 35px !important;
    }

    .mwt-full-flex-col,
    .visual-dock-right {
        width: 100% !important;
    }

    .text-dock-left {
        margin-top: 0 !important;
        text-align: center;
    }

    .mwt-luxury-desc {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .mwt-luxury-checkpoints {
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        align-items: flex-start;
        text-align: left;
    }

    .mwt-luxury-action-row {
        justify-content: center;
    }

    .mwt-browser-mockup-wrap,
    .mwt-browser-window,
    .mwt-image-popup,
    .mwt-image-popup-accounting {
        width: 100% !important;
        max-width: 680px !important;
    }

    .mwt-responsive-vector-img {
        width: min(100%, 680px) !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mwt-full-hero-split-sec {
        padding: 32px 0;
    }

    .mwt-edge-to-edge-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mwt-full-flex-row {
        gap: 28px !important;
    }

    .visual-dock-right {
        overflow: visible !important;
    }

    .mwt-browser-mockup-wrap,
    .mwt-browser-window,
    .mwt-image-popup,
    .mwt-image-popup-accounting {
        width: 100% !important;
        max-width: 560px !important;
    }

    .mwt-responsive-vector-img {
        width: min(100%, 560px) !important;
    }

    .mwt-luxury-desc {
        text-align: left;
    }

    .mwt-luxury-checkpoints {
        width: 100%;
    }
}

/* Small mobile */
@media (max-width: 575px) {
    .mwt-edge-to-edge-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mwt-browser-mockup-wrap,
    .mwt-browser-window,
    .mwt-image-popup,
    .mwt-image-popup-accounting,
    .mwt-responsive-vector-img {
        width: 100% !important;
        max-width: 100% !important;
    }

    .mwt-luxury-action-row {
        width: 100%;
        flex-direction: column;
    }

    .mwt-luxury-cta-btn {
        width: 100%;
    }
}

/* Popup — common for both */
.mwt-popup,
.mwt-popup-accounting {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: clamp(55px, 6vw, 80px) clamp(12px, 3vw, 35px) 25px;
    background: rgba(2, 6, 23, .92);
    align-items: center;
    justify-content: center;
    overflow: auto;
    z-index: 999999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mwt-popup img,
.mwt-popup-accounting img {
    display: block;
    width: auto !important;
    max-width: min(96vw, 1400px) !important;
    height: auto !important;
    max-height: 88vh !important;
    margin: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
    animation: mwtFinalPopupZoom .3s ease;
}

@keyframes mwtFinalPopupZoom {
    from {
        transform: scale(.88);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.mwt-close,
.mwt-close-accounting {
    position: fixed;
    top: 14px;
    right: 18px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000000;
}

.mwt-close:hover,
.mwt-close-accounting:hover {
    background: #ff9f1c;
    color: #0b3167;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .mwt-responsive-vector-img,
    .mwt-popup img,
    .mwt-popup-accounting img {
        animation: none !important;
    }
}