/* Section: Page variables */
        :root {
            --qs-bg: transparent;
            --qs-bg2: transparent;
            --qs-border: rgba(255,255,255,0.14);
            --qs-accent: #0056ff;
            --qs-accent-light: #00aeef;
            --qs-green: #00bf63;
            --qs-text: #ffffff;
            --qs-muted: rgba(255,255,255,0.7);
        }

        body.about-page {
            background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-deep) 100%);
            color: #ffffff;
        }

        body.about-page main.bg-gradient-hero {
            background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-deep) 100%);
        }

        body.about-page main > * {
            position: relative;
            z-index: 1;
        }

        /* Section: Fade-up */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

            .fade-up.is-visible {
                opacity: 1;
                transform: translateY(0);
            }

        /* Section: Hero */
        .qs-hero {
            background: transparent;
            padding: clamp(72px, 8vw, 92px) 0 clamp(58px, 7vw, 82px);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .qs-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,86,255,0.15);
            border: 1px solid rgba(0,86,255,0.4);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 9999px;
            margin-bottom: 28px;
        }

        .qs-eyebrow-dot {
            width: 7px;
            height: 7px;
            background: #ffffff;
            border-radius: 50%;
            animation: qs-blink 1.4s ease-in-out infinite;
        }

        @keyframes qs-blink {
            0%,100% {
                opacity: 1
            }

            50% {
                opacity: 0.2
            }
        }

        .qs-hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.85rem, 4.4vw, 3.15rem);
            font-weight: 900;
            line-height: 1.12;
            color: #fff;
            max-width: 800px;
            margin: 0 auto clamp(16px, 2.4vw, 24px);
        }

            .qs-hero-title span {
                color: var(--qs-accent-light);
            }
        /* Section: Video */
        .qs-video-section {
            background: radial-gradient(circle at 18% 8%, rgba(0,174,239,0.18), transparent 32%), linear-gradient(180deg, #001a8e 0%, #000b3d 100%);
            padding: 24px 0 88px;
        }

            .qs-video-section .qs-section-tag {
                color: #38d5ff;
            }

            .qs-video-section .qs-section-title {
                color: #ffffff;
            }

                .qs-video-section .qs-section-title span {
                    color: #38d5ff;
                }

            .qs-video-section .qs-section-desc {
                color: rgba(255,255,255,0.72);
            }

        .qs-section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .qs-section-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--qs-accent);
            margin-bottom: 12px;
        }

        .qs-section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0 auto;
            max-width: 640px;
        }

            .qs-section-title span {
                color: var(--qs-accent-light);
            }

        .qs-section-desc {
            font-size: 1rem;
            color: var(--qs-muted);
            margin: 14px auto 0;
            max-width: 540px;
            line-height: 1.65;
        }

        .qs-video-wrapper {
            position: relative;
            max-width: min(980px, 100%);
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            background: #000;
            box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,86,255,0.18);
        }

            .qs-video-wrapper iframe,
            .qs-video-wrapper video {
                width: 100%;
                display: block;
                aspect-ratio: 16/7.8;
                border: none;
            }

        .qs-video-placeholder {
            position: relative;
            width: 100%;
            aspect-ratio: 16/7.8;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            cursor: pointer;
            overflow: hidden;
        }

            .qs-video-placeholder::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(0, 7, 32, 0.1) 0%, rgba(0, 7, 32, 0.6) 100%), radial-gradient(circle at center, rgba(0, 86, 255, 0.12), transparent 38%);
            }

        .qs-video-placeholder-thumb {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .qs-video-placeholder-icon {
            position: relative;
            z-index: 1;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(0,86,255,0.18);
            border: 2px solid rgba(0,86,255,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
        }

        .qs-video-placeholder:hover .qs-video-placeholder-icon {
            background: rgba(0,86,255,0.35);
            transform: scale(1.08);
        }

        .qs-video-placeholder-icon svg {
            color: #fff;
        }

        .qs-video-placeholder p {
            position: relative;
            z-index: 1;
            font-size: 14px;
            color: rgba(255,255,255,0.88);
            font-weight: 600;
            letter-spacing: 0.06em;
        }

        /* Section: Six reasons */
        .qs-motives-section {
            position: relative;
            margin-top: clamp(34px, 5vw, 58px);
            padding-top: clamp(30px, 4vw, 46px);
            border-top: 1px solid rgba(255,255,255,0.12);
            text-align: left;
        }

            .qs-motives-section::before {
                content: '';
                position: absolute;
                inset: clamp(30px, 4vw, 46px) -22px -24px;
                border-radius: 28px;
                background:
                    radial-gradient(circle at 12% 10%, rgba(0,86,255,0.14), transparent 34%),
                    radial-gradient(circle at 88% 18%, rgba(0,174,239,0.10), transparent 38%),
                    rgba(0, 11, 61, 0.22);
                opacity: 0.72;
                pointer-events: none;
            }

            .qs-motives-section .container {
                position: relative;
                z-index: 1;
            }

            .qs-motives-section .qs-section-tag {
                color: #38d5ff;
            }

            .qs-motives-section .qs-section-title {
                color: #ffffff;
            }

                .qs-motives-section .qs-section-title span {
                    color: #38d5ff;
                }

            .qs-motives-section .qs-section-desc {
                color: rgba(255,255,255,0.72);
            }

            .qs-motives-section .security-block {
                position: relative;
                z-index: 1;
                max-width: min(1160px, 100%);
                margin: 0 auto 28px;
            }

                .qs-motives-section .security-block:last-child {
                    margin-bottom: 0;
                }

            .qs-motives-section .security-block-title::before,
            .qs-motives-section .security-block-title::after {
                transform: scaleX(1);
                opacity: 1;
            }

            .qs-motives-section .security-motive-card,
            .qs-motives-section .security-stat-card,
            .qs-motives-section .security-card-value,
            .qs-motives-section .security-motive-card h4,
            .qs-motives-section .security-motive-card p,
            .qs-motives-section .security-stat-card strong,
            .qs-motives-section .security-stat-card p {
                opacity: 1;
                transform: none;
            }

        .qs-motives-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        @media (max-width: 900px) {
            .qs-motives-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 560px) {
            .qs-motives-grid {
                grid-template-columns: 1fr;
            }
        }

        .qs-motive-card {
            background: linear-gradient(180deg, rgba(0,86,255,0.30) 0%, rgba(0,28,122,0.68) 100%);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 18px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
            box-shadow: 0 18px 42px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
        }

            .qs-motive-card:hover {
                border-color: rgba(56,213,255,0.55);
                box-shadow: 0 24px 54px rgba(0,0,0,0.32), 0 0 32px rgba(56,213,255,0.18);
                transform: translateY(-4px);
            }

            .qs-motive-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(90deg, #38d5ff 0%, #00aeef 100%);
                opacity: 0.78;
                transition: opacity 0.25s;
            }

            .qs-motive-card:hover::before {
                opacity: 1;
            }

        .qs-motive-num {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(56,213,255,0.42);
            line-height: 1;
            margin-bottom: 16px;
            transition: color 0.25s;
        }

        .qs-motive-card:hover .qs-motive-num {
            color: rgba(56,213,255,0.72);
        }

        .qs-motive-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .qs-motive-card p {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.76);
            line-height: 1.65;
        }

        /* Section: NPS */
        @media (max-width: 640px) {
            .qs-motives-section {
                margin-top: 30px;
                padding-top: 28px;
            }

                .qs-motives-section .security-block-title {
                    display: block;
                    margin-bottom: 20px;
                    font-size: 1.28rem;
                    line-height: 1.25;
                    letter-spacing: 0;
                    text-align: left;
                }

                    .qs-motives-section .security-block-title::before,
                    .qs-motives-section .security-block-title::after {
                        display: none;
                    }

                    .qs-motives-section .security-block-title span {
                        display: inline;
                    }

                .qs-motives-section .security-motives {
                    grid-template-columns: 1fr;
                    gap: 14px;
                }

                .qs-motives-section .security-motive-card {
                    padding: 18px 16px;
                    border-radius: 16px;
                }

                .qs-motives-section .security-card-value {
                    font-size: 1.9rem;
                }

                .qs-motives-section .security-motive-card h4 {
                    font-size: 1rem;
                    line-height: 1.28;
                }

                .qs-motives-section .security-motive-card p {
                    font-size: 0.9rem;
                    line-height: 1.6;
                    color: rgba(255,255,255,0.74);
                }
        }

        .qs-nps-section {
            background: transparent;
            padding: 80px 0 100px;
        }

        .qs-nps-wrap {
            max-width: 900px;
            margin: 48px auto 0;
            background: rgba(0, 11, 61, 0.28);
            border-radius: 24px;
            padding: 64px 48px 72px;
            position: relative;
            border: 1px solid rgba(255,255,255,0.16);
            box-shadow: 0 8px 40px rgba(0,4,22,0.28);
            backdrop-filter: blur(16px);
        }

        /* NPS track styles (self-contained, white bg) */
        .nps-stage {
            width: 100%;
            position: relative;
        }

        .nps-track-area {
            position: relative;
            width: 100%;
            height: 200px;
        }

        .nps-track {
            position: absolute;
            top: 100px;
            left: 0;
            right: 0;
            height: 28px;
            border-radius: 14px;
            background: linear-gradient(to right, #cc1100 0%,#e83000 8%,#f55500 16%,#ff7a00 24%,#ffa500 32%, #ffcc00 40%,#d4e000 48%,#96cc00 56%,#44c01a 64%, #18b83a 72%,#0aaa38 80%,#009030 90%,#006e26 100%);
            box-shadow: 0 3px 14px rgba(0,0,0,0.15);
            overflow: hidden;
        }

            .nps-track::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(90deg,transparent 0%,rgba(255,255,255,0.28) 45%,rgba(255,255,255,0.1) 55%,transparent 100%);
                background-size: 200% 100%;
                animation: nps-shimmer 3.2s linear infinite;
            }

        @keyframes nps-shimmer {
            from {
                background-position: -200% 0
            }

            to {
                background-position: 200% 0
            }
        }

        /* Market band */
        .nps-mband {
            position: absolute;
            top: 93px;
            left: 15%;
            width: 13%;
            height: 42px;
            border: 2.5px solid #2980b9;
            border-radius: 6px;
            background: rgba(41,128,185,0.10);
            animation: nps-bandpulse 2.8s ease-in-out infinite;
        }

        @keyframes nps-bandpulse {
            0%,100% {
                border-color: #2980b9;
                background: rgba(41,128,185,0.10)
            }

            50% {
                border-color: #5ab8ff;
                background: rgba(90,184,255,0.20)
            }
        }

        .nps-mband-lbl {
            position: absolute;
            top: 52px;
            left: 21.5%;
            transform: translateX(-50%);
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: #2980b9;
            text-align: center;
            line-height: 1.35;
            white-space: nowrap;
            animation: nps-bandpulse 2.8s ease-in-out infinite;
        }

        /* Ticks */
        .nps-tick {
            position: absolute;
            top: 128px;
            width: 1.5px;
            height: 10px;
            background: rgba(255,255,255,0.28);
            transform: translateX(-50%);
        }

        .nps-tick-lbl {
            position: absolute;
            top: 141px;
            transform: translateX(-50%);
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: rgba(255,255,255,0.7);
        }

        /* Company pins */
        .nps-cpin {
            position: absolute;
            top: 56px;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: nps-float 1.8s ease-in-out infinite;
        }

            .nps-cpin .nps-pin-logo {
                width: 36px;
                height: 36px;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-family: 'Montserrat', sans-serif;
                font-size: 10px;
                font-weight: 900;
                color: #fff;
                box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            }

            .nps-cpin .nps-stem {
                width: 1.5px;
                height: 12px;
                background: rgba(0,0,0,0.22);
                margin-top: 2px;
            }

            .nps-cpin .nps-num {
                font-family: 'Montserrat', sans-serif;
                font-size: 13px;
                font-weight: 700;
                color: #333;
                margin-top: 33px;
            }

        @keyframes nps-float {
            0%,100% {
                transform: translateX(-50%) translateY(0)
            }

            50% {
                transform: translateX(-50%) translateY(-6px)
            }
        }

        .nps-cpin.g {
            animation-delay: 0s;
        }

        .nps-cpin.az {
            animation-delay: .65s;
        }

        .nps-cpin.ap {
            animation-delay: 1.3s;
        }

        .nps-cpin.g,
        .nps-cpin.az,
        .nps-cpin.ap {
            animation: none;
        }

        /* Mais Dados big pin */
        .nps-md-wrap {
            position: absolute;
            left: 75%;
            top: -54px;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nps-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            border: 3px solid rgba(0,191,99,0.6);
            animation: nps-ring-expand 2s ease-out infinite;
            pointer-events: none;
        }

        .nps-ring1 {
            width: 82px;
            height: 82px;
            margin: -41px 0 0 -41px;
            animation-delay: 0s
        }

        .nps-ring2 {
            width: 82px;
            height: 82px;
            margin: -41px 0 0 -41px;
            animation-delay: .75s
        }

        @keyframes nps-ring-expand {
            0% {
                transform: scale(1);
                opacity: .7
            }

            100% {
                transform: scale(2.4);
                opacity: 0
            }
        }

        .nps-md-icon {
            position: relative;
            width: 82px;
            height: 82px;
            animation: nps-bounce 2s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes nps-bounce {
            0%,100% {
                transform: translateY(0);
                filter: drop-shadow(0 6px 10px rgba(0,191,99,0.35))
            }

            50% {
                transform: translateY(-10px);
                filter: drop-shadow(0 18px 24px rgba(0,191,99,0.55))
            }
        }

        .nps-md-icon svg.nps-pin-shape {
            width: 82px;
            height: 82px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .nps-md-icon .nps-d-logo {
            position: absolute;
            top: 9px;
            left: 50%;
            transform: translateX(-50%);
            width: 42px;
            height: 42px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: inset 0 0 0 1px rgba(0,191,99,0.22);
        }

            .nps-md-icon .nps-d-logo img {
                width: 34px;
                height: 34px;
                object-fit: contain;
                display: block;
                transform: translateX(1px);
            }

        .nps-md-stem {
            width: 3px;
            height: 46px;
            background: linear-gradient(180deg,#00bf63,rgba(0,191,99,0.08));
            margin-top: -2px;
            flex-shrink: 0;
        }

        .nps-md-76 {
            position: absolute;
            left: 75%;
            top: 141px;
            transform: translateX(-50%);
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 900;
            color: #00bf63;
            letter-spacing: -1px;
            line-height: 1;
            animation: nps-numglow 2s ease-in-out infinite;
        }

        @keyframes nps-numglow {
            0%,100% {
                text-shadow: 0 0 0 rgba(0,191,99,0);
                opacity: 1;
                transform: translateX(-50%) scale(1)
            }

            50% {
                text-shadow: 0 0 18px rgba(0,191,99,0.6);
                opacity: .85;
                transform: translateX(-50%) scale(1.15)
            }
        }

        /* NPS legend */
        .nps-legend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.14);
        }

        .nps-legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.78);
        }

        .nps-legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        /* Section: About */
        @media (max-width: 640px) {
            .qs-nps-wrap {
                margin-top: 30px;
                padding: 34px 14px 42px;
                overflow: visible;
            }

            .nps-stage {
                width: 100%;
                min-width: 0;
                padding: 0;
            }

            .nps-track-area {
                height: 270px;
            }

            .nps-track {
                top: 132px;
                height: 24px;
            }

            .nps-mband {
                top: 124px;
                height: 40px;
            }

            .nps-mband-lbl {
                top: 74px;
                font-size: 10px;
            }

            .nps-tick {
                top: 156px;
            }

            .nps-tick-lbl {
                top: 170px;
                font-size: 10px;
            }

            .nps-cpin {
                top: 82px;
            }

                .nps-cpin.g {
                    top: 56px;
                    left: 50% !important;
                }

                .nps-cpin.az {
                    top: 56px;
                    left: 64% !important;
                }

                .nps-cpin.ap {
                    top: 56px;
                    left: 92% !important;
                }

                .nps-cpin .nps-pin-logo {
                    width: 32px;
                    height: 32px;
                }

                    .nps-cpin .nps-pin-logo svg {
                        display: block;
                        max-width: 22px;
                        max-height: 22px;
                    }

                .nps-cpin.az .nps-pin-logo {
                    overflow: visible;
                }

                    .nps-cpin.az .nps-pin-logo svg {
                        width: 24px;
                        height: 24px;
                        transform: translateY(-1px);
                    }

                .nps-cpin .nps-num {
                    margin-top: 26px;
                    padding: 2px 6px;
                    border-radius: 999px;
                    background: rgba(255,255,255,0.94);
                    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
                    font-size: 12px;
                }

            .nps-md-wrap {
                top: -34px;
            }

            .nps-md-icon,
            .nps-md-icon svg.nps-pin-shape {
                width: 72px;
                height: 72px;
            }

                .nps-md-icon .nps-d-logo {
                    top: 8px;
                    width: 36px;
                    height: 36px;
                }

                    .nps-md-icon .nps-d-logo img {
                        width: 30px;
                        height: 30px;
                    }

            .nps-md-stem {
                height: 70px;
            }

            .nps-md-76 {
                top: 170px;
                font-size: 20px;
            }

            .nps-legend {
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px 12px;
                min-width: 0;
                margin-top: 18px;
                padding-left: 0;
                padding-right: 0;
            }

            .nps-legend-item {
                flex: 0 1 calc(50% - 8px);
                min-width: 132px;
                font-size: 10px;
            }
        }

        .qs-platform-section {
            margin-top: clamp(34px, 5vw, 56px);
            padding-top: clamp(28px, 4vw, 42px);
            border-top: 1px solid rgba(255,255,255,0.12);
        }

            .qs-platform-section .platform-showcase {
                max-width: 1025px;
                margin: 0 auto;
            }

        .qs-about-section {
            background: transparent;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .qs-about-arc {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(0,86,255,0.08);
            pointer-events: none;
        }

        .qs-about-arc-tl {
            width: 600px;
            height: 600px;
            top: -300px;
            left: -200px;
        }

        .qs-about-arc-tr {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -150px;
        }

        .qs-about-grid {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 64px;
            align-items: start;
            margin-top: 48px;
        }

        @media (max-width: 960px) {
            .qs-about-grid {
                grid-template-columns: 1fr;
            }

            .qs-about-image-wrap {
                order: -1;
            }
        }

        .qs-about-grid > div:first-child h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            margin-bottom: 24px;
        }

        .qs-about-grid > div:first-child p {
            font-size: 0.9375rem;
            color: rgba(255,255,255,0.74);
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .qs-about-quote {
            font-style: italic;
            font-weight: 600;
            color: #ffffff !important;
            border-left: 3px solid var(--qs-accent);
            padding-left: 16px;
            margin-top: 24px !important;
        }

        .qs-about-image-wrap {
            position: relative;
        }

        .qs-about-frame {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0,86,255,0.2);
            box-shadow: 0 24px 60px rgba(0,0,0,0.5);
            position: relative;
        }

            .qs-about-frame::after {
                content: '';
                position: absolute;
                inset: 0;
                background: linear-gradient(0deg, rgba(0,86,255,0.12) 0%, transparent 50%);
            }

            .qs-about-frame img {
                width: 100%;
                height: auto;
                display: block;
                object-fit: cover;
            }

        .qs-about-caption {
            text-align: center;
            margin-top: 14px;
            font-size: 13px;
            color: var(--qs-muted);
            font-weight: 500;
        }

        /* Section: Final CTA */
        .qs-cta-section {
            background: transparent;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

            .qs-cta-section .container {
                position: relative;
                z-index: 1;
            }

            .qs-cta-section h2 {
                font-family: 'Montserrat', sans-serif;
                font-size: clamp(2.2rem, 6vw, 4.8rem);
                font-weight: 800;
                color: #fff;
                max-width: 980px;
                margin: 0 auto 18px;
                line-height: 1.02;
                letter-spacing: -0.03em;
            }

            .qs-cta-section p {
                font-size: 1.08rem;
                color: rgba(255,255,255,0.72);
                margin-bottom: 36px;
                max-width: 720px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.65;
            }

        .qs-support-photos {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
            max-width: 980px;
            margin: 42px auto 0;
            text-align: left;
        }

        .qs-support-photo-card {
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 22px;
            background: rgba(3,20,88,0.46);
            box-shadow: 0 22px 54px rgba(0,0,0,0.24);
        }

        .qs-support-photo-frame {
            aspect-ratio: 16/10;
            overflow: hidden;
            background: rgba(255,255,255,0.04);
        }

            .qs-support-photo-frame img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
            }

        .qs-support-photo-card h3 {
            margin: 0;
            padding: 18px 20px 6px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            line-height: 1.3;
        }

        .qs-support-photo-card p {
            max-width: none;
            margin: 0 0 16px;
            padding: 0 20px;
            color: rgba(255,255,255,0.62);
            font-size: 0.9rem;
            line-height: 1.55;
            text-align: left;
        }

        .qs-support-whatsapp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 20px 22px;
            min-height: 44px;
            padding: 12px 22px;
            border-radius: 9999px;
            background: #25d366;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 800;
            line-height: 1.2;
            text-decoration: none;
            box-shadow: 0 12px 28px rgba(37,211,102,0.24);
            transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
        }

            .qs-support-whatsapp:hover {
                filter: brightness(1.06);
                transform: translateY(-2px);
                box-shadow: 0 16px 34px rgba(37,211,102,0.3);
            }

        .qs-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            color: #00249c;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 9999px;
            text-decoration: none;
            box-shadow: 0 8px 32px rgba(0,0,0,0.25);
            transition: transform 0.2s, box-shadow 0.2s;
        }

            .qs-cta-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 16px 40px rgba(0,0,0,0.35);
            }

        /* Section: Responsive */
        @media (max-width: 640px) {
            .qs-nps-wrap {
                padding: 40px 20px 52px;
            }

            .qs-hero {
                padding: 64px 0 20px;
            }

            .qs-hero .container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .qs-video-wrapper {
                border-radius: 18px;
            }

            .qs-video-placeholder,
            .qs-video-wrapper iframe,
            .qs-video-wrapper video {
                aspect-ratio: 16/10;
            }

            .qs-platform-section {
                margin-top: 30px;
                padding-top: 28px;
            }

            .nps-track-area {
                height: 240px;
            }

            .qs-support-photos {
                grid-template-columns: 1fr;
            }
        }
