:root {
    --qm-primary: #ff6b35;
    --qm-primary-hover: #e95f2f;
    --qm-teal: #0f9f8f;
    --qm-ink: #1d2433;
    --qm-muted: #667085;
    --qm-soft: #fff7f2;
    --qm-soft-2: #eef8f5;
    --qm-line: rgba(29, 36, 51, 0.1);
    --qm-white: #ffffff;
    --qm-shadow: 0 18px 48px rgba(29, 36, 51, 0.12);
}

.qm-body {
    background: var(--qm-white);
    color: var(--qm-ink);
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.qm-container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.qm-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    background: transparent;
    border-bottom: 0;
}

.qm-nav-inner {
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 10px 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-sizing: border-box;
    box-shadow:
        0 22px 54px rgba(29, 36, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        inset 0 -1px 0 rgba(255, 107, 53, 0.08);
    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
    overflow: visible;
}

.qm-nav-inner::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 48%;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.qm-nav-inner > * {
    position: relative;
    z-index: 1;
}

.qm-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 6px 8px 6px 6px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.qm-brand:hover {
    background: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transform: translateY(-1px);
}

.qm-brand-logo {
    width: 38px;
    max-width: 100%;
    height: 32px;
    object-fit: contain;
}

.qm-brand-word {
    color: var(--qm-ink);
    font-size: 1.06rem;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.qm-nav-links,
.qm-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qm-nav-links {
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.qm-nav-links a,
.qm-footer-links a,
.qm-mobile-menu a {
    color: var(--qm-ink);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.qm-nav-links a {
    padding: 9px 11px;
    border-radius: 8px;
    color: rgba(29, 36, 51, 0.72);
    font-size: 0.92rem;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.qm-nav-links a:hover,
.qm-footer-links a:hover,
.qm-mobile-menu a:hover {
    color: var(--qm-primary);
    text-decoration: none;
}

.qm-nav-links a:hover {
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px rgba(29, 36, 51, 0.08);
}

.qm-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.qm-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.qm-btn-primary {
    background: var(--qm-primary);
    color: var(--qm-white);
    box-shadow: 0 10px 24px rgba(255, 107, 53, 0.26);
}

.qm-btn-primary:hover {
    background: var(--qm-primary-hover);
    color: var(--qm-white);
}

.qm-btn-ghost {
    background: var(--qm-white);
    border-color: var(--qm-line);
    color: var(--qm-ink);
}

.qm-btn-ghost:hover {
    border-color: rgba(255, 107, 53, 0.35);
    color: var(--qm-primary);
}

.qm-btn-white {
    background: var(--qm-white);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--qm-ink);
}

.qm-btn-lg {
    min-height: 50px;
    padding: 14px 20px;
}

.qm-lang-menu {
    position: relative;
}

.qm-lang-toggle {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--qm-ink);
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.qm-lang-toggle i {
    font-size: 0.72rem;
}

.qm-lang-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 190px;
    padding: 8px;
    display: none;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: var(--qm-shadow);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.qm-lang-list.open {
    display: grid;
    gap: 4px;
}

.qm-lang-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px;
    border-radius: 8px;
    color: var(--qm-ink);
    font-weight: 700;
    text-decoration: none;
}

.qm-lang-list a:hover,
.qm-lang-list a.active {
    background: var(--qm-soft);
    color: var(--qm-primary);
}

.qm-lang-list img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.qm-mobile-toggle {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.qm-mobile-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--qm-ink);
}

.qm-mobile-menu {
    display: none;
    border-top: 0;
    background: transparent;
}

.qm-mobile-menu.open {
    display: block;
}

.qm-mobile-menu .qm-container {
    margin-top: 10px;
    padding: 12px;
    box-sizing: border-box;
    display: grid;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 54px rgba(29, 36, 51, 0.13);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.qm-mobile-menu a {
    padding: 11px 10px;
    border-radius: 8px;
}

.qm-mobile-menu a:hover {
    background: rgba(255, 107, 53, 0.08);
}

.qm-mobile-lang {
    display: grid;
    gap: 9px;
    margin-top: 4px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.46);
}

.qm-mobile-lang > span {
    color: var(--qm-muted);
    font-size: 0.82rem;
    font-weight: 900;
}

.qm-mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
}

.qm-mobile-lang-grid a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 6px;
    border: 1px solid rgba(29, 36, 51, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--qm-ink);
    font-size: 0.78rem;
    font-weight: 900;
}

.qm-mobile-lang-grid a.active {
    border-color: rgba(255, 107, 53, 0.28);
    background: var(--qm-soft);
    color: var(--qm-primary);
}

.qm-mobile-lang-grid img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.qm-mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 8px;
}

.qm-hero {
    padding: 60px 0 28px;
    background: var(--qm-soft);
    overflow: hidden;
}

.qm-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 48px;
}

.qm-badge,
.qm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--qm-primary);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.qm-badge {
    padding: 8px 12px;
    border: 1px solid rgba(255, 107, 53, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.qm-hero h1 {
    max-width: 690px;
    margin: 0 0 18px;
    color: var(--qm-ink);
    font-size: clamp(40px, 4.55vw, 68px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
}

.qm-hero-lead {
    max-width: 650px;
    margin: 0 0 28px;
    color: var(--qm-muted);
    font-size: 1.18rem;
    line-height: 1.75;
}

.qm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qm-trust-note {
    margin: 16px 0 0;
    color: var(--qm-muted);
    font-size: 0.94rem;
}

.qm-hero-image-panel {
    position: relative;
    min-height: 500px;
    margin: 0;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(24px);
}

.qm-hero-image-panel::before,
.qm-hero-image-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.qm-hero-image-panel::before {
    z-index: -1;
    width: 76%;
    height: 76%;
    margin: auto;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 107, 53, 0.16), rgba(255, 107, 53, 0) 62%),
        radial-gradient(circle at 64% 34%, rgba(15, 159, 143, 0.16), rgba(15, 159, 143, 0) 58%);
    filter: blur(28px);
    transform: translate(7%, 4%);
}

.qm-hero-image-panel::after {
    z-index: 2;
    background:
        linear-gradient(90deg, var(--qm-soft) 0%, rgba(255, 247, 242, 0.88) 12%, rgba(255, 247, 242, 0.58) 26%, rgba(255, 247, 242, 0.24) 42%, rgba(255, 247, 242, 0.06) 58%, rgba(255, 247, 242, 0) 72%),
        linear-gradient(180deg, rgba(255, 247, 242, 0) 68%, rgba(255, 247, 242, 0.72) 100%);
}

.qm-hero-image-panel img {
    position: relative;
    z-index: 1;
    width: min(112%, 620px);
    max-width: none;
    height: auto;
    display: block;
    opacity: 0.96;
    filter: drop-shadow(0 28px 58px rgba(17, 24, 39, 0.14));
    transform: translateX(2%);
    -webkit-mask-image: radial-gradient(ellipse at 58% 50%, #000 0%, #000 54%, rgba(0, 0, 0, 0.82) 64%, rgba(0, 0, 0, 0.28) 75%, transparent 86%);
    mask-image: radial-gradient(ellipse at 58% 50%, #000 0%, #000 54%, rgba(0, 0, 0, 0.82) 64%, rgba(0, 0, 0, 0.28) 75%, transparent 86%);
}

.qm-dashboard-card,
.qm-phone-card,
.qm-floating-card,
.qm-step-card,
.qm-bento-card,
.qm-system-panel,
.qm-demo-panel,
.qm-price-card,
.qm-review-card,
.qm-customer-card,
.qm-blog-card,
.qm-faq-item {
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    background: var(--qm-white);
    box-shadow: var(--qm-shadow);
}

.qm-dashboard-card {
    width: min(100%, 440px);
    padding: 18px;
}

.qm-window-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}

.qm-window-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d8dee8;
}

.qm-window-bar span:first-child {
    background: var(--qm-primary);
}

.qm-dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--qm-line);
}

.qm-skeleton-group > span,
.qm-flow-list span,
.qm-phone-card span {
    color: var(--qm-muted);
}

.qm-skeleton-group > span,
.qm-skeleton-group > strong {
    display: block;
    border-radius: 8px;
    background: #e9eef5;
}

.qm-skeleton-group > span {
    width: 120px;
    height: 10px;
}

.qm-skeleton-group > strong {
    width: 180px;
    height: 20px;
    margin-top: 4px;
}

.qm-live-pill {
    width: 74px;
    height: 28px;
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--qm-soft-2);
}

.qm-flow-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.qm-flow-list div {
    min-height: 72px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 7px;
    padding: 10px 8px;
    border-radius: 8px;
    background: #f8fafc;
    text-align: center;
}

.qm-flow-list i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--qm-soft-2);
    color: var(--qm-primary);
    font-size: 0.9rem;
}

.qm-flow-list span {
    width: 42px;
    height: 7px;
    display: block;
    border-radius: 8px;
    background: #dfe7f1;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
}

.qm-phone-card {
    position: absolute;
    right: 10px;
    bottom: 18px;
    width: 210px;
    padding: 18px;
}

.qm-phone-top {
    width: 64px;
    height: 6px;
    margin: 0 auto 18px;
    border-radius: 8px;
    background: #d8dee8;
}

.qm-phone-logo img {
    max-width: 120px;
}

.qm-menu-lines {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.qm-menu-lines span {
    height: 12px;
    border-radius: 8px;
    background: #edf1f7;
}

.qm-menu-lines span:nth-child(2) {
    width: 82%;
}

.qm-menu-lines span:nth-child(3) {
    width: 68%;
}

.qm-qr-tile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    background: var(--qm-soft);
    font-weight: 900;
}

.qm-qr-tile i {
    color: var(--qm-primary);
    font-size: 1.4rem;
}

.qm-qr-tile span,
.qm-floating-card span {
    display: block;
    border-radius: 8px;
    background: #dfe7f1;
}

.qm-qr-tile span {
    width: 92px;
    height: 10px;
}

.qm-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-weight: 900;
}

.qm-floating-card i {
    color: var(--qm-primary);
}

.qm-floating-card span {
    width: 86px;
    height: 10px;
}

.qm-floating-card-top {
    top: 72px;
    right: 0;
}

.qm-floating-card-bottom {
    left: 22px;
    bottom: 56px;
}

.qm-stats-strip,
.qm-language-strip {
    display: grid;
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    background: var(--qm-white);
    box-shadow: 0 10px 28px rgba(29, 36, 51, 0.08);
}

.qm-stats-strip {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 46px;
}

.qm-stats-strip div {
    padding: 18px;
    border-right: 1px solid var(--qm-line);
}

.qm-stats-strip div:last-child {
    border-right: 0;
}

.qm-stats-strip strong {
    display: block;
    color: var(--qm-ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.qm-stats-strip span {
    color: var(--qm-muted);
    font-size: 0.92rem;
}

.qm-language-strip {
    margin-top: 14px;
    padding: 12px 16px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
}

.qm-language-strip > span {
    color: var(--qm-muted);
    font-weight: 800;
}

.qm-language-strip div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qm-language-strip a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    color: var(--qm-ink);
    text-decoration: none;
    font-size: 0.8rem;
}

.qm-language-strip a.active {
    border-color: rgba(255, 107, 53, 0.36);
    color: var(--qm-primary);
    background: var(--qm-soft);
}

.qm-language-strip img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.qm-section {
    padding: 82px 0;
    background: var(--qm-white);
}

.qm-section-soft {
    background: #fbfcfd;
}

.qm-section-heading {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.qm-section-heading h2,
.qm-system-copy h2,
.qm-demo-copy h2,
.qm-final-cta h2 {
    margin: 10px 0 12px;
    color: var(--qm-ink);
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1.15;
    font-weight: 900;
}

.qm-section-heading p,
.qm-system-copy p,
.qm-demo-copy p,
.qm-final-cta p {
    color: var(--qm-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.qm-steps-grid,
.qm-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.qm-step-card,
.qm-bento-card,
.qm-review-card {
    padding: 22px;
}

.qm-step-index {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--qm-ink);
    color: var(--qm-white);
    font-weight: 900;
}

.qm-step-card i,
.qm-bento-icon i {
    display: block;
    margin: 20px 0 14px;
    color: var(--qm-primary);
    font-size: 2rem;
}

.qm-step-card h3,
.qm-bento-card h3,
.qm-tab-panel h3,
.qm-price-card h3,
.qm-blog-card h3 {
    color: var(--qm-ink);
    font-size: 1.18rem;
    font-weight: 900;
}

.qm-step-card p,
.qm-bento-card p,
.qm-tab-panel p,
.qm-price-card li,
.qm-review-card p,
.qm-blog-card p,
.qm-customer-card span {
    color: var(--qm-muted);
    line-height: 1.65;
}

.qm-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.qm-bento-card {
    min-height: 210px;
}

.qm-bento-wide {
    grid-column: span 2;
}

.qm-feature-icons {
    background: #fdf8f5;
}

.qm-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.qm-feature-item {
    position: relative;
    min-height: 236px;
    padding: 28px 22px 26px;
    text-align: center;
    border: 1px solid rgba(234, 223, 214, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.055);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.qm-feature-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

.qm-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.28);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 54px rgba(17, 24, 39, 0.095);
}

.qm-feature-item:hover::before {
    opacity: 1;
}

.qm-feature-icon {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: inset 0 7px 0 rgba(255, 107, 53, 0.92), 0 14px 30px rgba(255, 107, 53, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.qm-feature-item:hover .qm-feature-icon {
    transform: translateY(-2px);
    box-shadow: inset 0 -7px 0 rgba(255, 107, 53, 0.92), 0 18px 38px rgba(255, 107, 53, 0.18);
}

.qm-feature-icon i {
    color: var(--qm-primary);
    font-size: 1.65rem;
}

.qm-feature-item h3 {
    position: relative;
    z-index: 1;
    max-width: 240px;
    margin: 0 auto 14px;
    padding-bottom: 14px;
    color: var(--qm-ink);
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.28;
}

.qm-feature-item h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 8px;
    background: var(--qm-primary);
    transform: translateX(-50%);
    transition: width 0.24s ease;
}

.qm-feature-item:hover h3::after {
    width: 70px;
}

.qm-feature-item p {
    position: relative;
    z-index: 1;
    max-width: 270px;
    margin: 0 auto;
    color: var(--qm-muted);
    font-size: 0.96rem;
    line-height: 1.62;
}

.qm-system-panel {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
    padding: 28px;
    background: var(--qm-ink);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.qm-system-media {
    position: absolute;
    inset: 0 0 0 24%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    border: 0;
    outline: 0;
    box-shadow: none;
}

.qm-system-media img {
    position: absolute;
    inset: -24px -38px -24px -38px;
    width: calc(100% + 76px);
    height: calc(100% + 44px);
    display: block;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transform: scale(1.08);
    filter: blur(18px) saturate(1.02) contrast(1.04) brightness(1.08);
    transition: opacity 0.28s ease;
    border: 0;
    outline: 0;
    box-shadow: none;
    -webkit-mask-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 12%, rgba(0, 0, 0, 0.56) 28%, #000 46%, #000 84%, rgba(0, 0, 0, 0.34) 94%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, #000 10%, #000 90%, rgba(0, 0, 0, 0.06) 100%);
    mask-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 12%, rgba(0, 0, 0, 0.56) 28%, #000 46%, #000 84%, rgba(0, 0, 0, 0.34) 94%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, #000 10%, #000 90%, rgba(0, 0, 0, 0.06) 100%);
}

.qm-system-media img.active {
    opacity: 0.88;
}

.qm-system-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.02) 0%, rgba(17, 24, 39, 0) 30%, rgba(255, 255, 255, 0) 74%, rgba(255, 255, 255, 0.07) 92%, rgba(255, 255, 255, 0.18) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, rgba(255, 255, 255, 0.10) 100%);
}

.qm-system-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.99) 0%, rgba(17, 24, 39, 0.95) 27%, rgba(17, 24, 39, 0.78) 43%, rgba(17, 24, 39, 0.46) 58%, rgba(17, 24, 39, 0.12) 78%, rgba(17, 24, 39, 0.04) 100%),
        radial-gradient(circle at 74% 48%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 22%, rgba(255, 255, 255, 0) 58%);
}

.qm-system-panel > *,
.qm-tabs,
.qm-tab-panels,
.qm-tab-panel {
    min-width: 0;
}

.qm-system-copy,
.qm-tabs {
    position: relative;
    z-index: 2;
}

.qm-system-copy h2,
.qm-system-copy p {
    color: var(--qm-white);
}

.qm-system-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.qm-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.qm-tab-button {
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--qm-white);
    font-weight: 800;
}

.qm-tab-button.active {
    background: var(--qm-primary);
    border-color: var(--qm-primary);
}

.qm-tab-panel {
    position: relative;
    display: none;
    min-height: 340px;
    padding: 26px 0 18px;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}

.qm-tab-panel.active {
    display: block;
}

.qm-tab-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: min(62%, 590px);
    color: rgba(255, 255, 255, 0.95);
}

.qm-tab-copy h3 {
    color: var(--qm-white);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.14;
}

.qm-tab-copy p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.72;
}

.qm-tab-panel ul,
.qm-price-card ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.qm-tab-panel li,
.qm-price-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.qm-tab-copy ul {
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.qm-tab-copy li {
    position: relative;
    display: block;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    line-height: 1.5;
}

.qm-tab-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--qm-primary);
}

.qm-tab-panel li i,
.qm-price-card li i,
.qm-demo-benefits i {
    margin-top: 5px;
    color: var(--qm-teal);
    font-size: 0.82rem;
}

.qm-demo-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 34px;
    padding: 30px;
    background: var(--qm-soft);
}

.qm-demo-qr {
    text-align: center;
}

.qm-qr-frame {
    width: min(280px, 100%);
    margin: 18px auto 12px;
    padding: 18px;
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    background: var(--qm-white);
}

.qm-qr-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.qm-demo-qr small {
    color: var(--qm-muted);
}

.qm-demo-benefits {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    color: var(--qm-ink);
    font-weight: 800;
}

.qm-demo-actions,
.qm-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.qm-price-card {
    position: relative;
    padding: 24px;
}

.qm-price-card.featured {
    border-color: rgba(255, 107, 53, 0.5);
}

.qm-price-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--qm-soft);
    color: var(--qm-primary);
    font-size: 0.78rem;
    font-weight: 900;
}

.qm-price {
    margin: 16px 0 18px;
}

.qm-price strong {
    display: block;
    color: var(--qm-ink);
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 900;
}

.qm-price span {
    color: var(--qm-muted);
    font-weight: 800;
}

.qm-price-card .qm-btn {
    width: 100%;
    margin-top: 22px;
}

.qm-pricing-note {
    margin: 28px auto 0;
    color: var(--qm-muted);
    text-align: center;
    font-weight: 700;
}

.qm-pricing-note i {
    color: var(--qm-teal);
}

.qm-landing .qm-pricing-switcher {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.08), transparent 36%),
        #fdf8f5;
}

.qm-landing .qm-pricing-card {
    max-width: 620px;
    margin: 46px auto 0;
    padding: 18px;
    border: 1px solid rgba(234, 223, 214, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.09);
    backdrop-filter: blur(18px);
}

.qm-landing .qm-pricing-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(234, 223, 214, 0.9);
    border-radius: 8px;
    background: #fff8f1;
    overflow: hidden;
}

.qm-landing .qm-pricing-tab {
    position: relative;
    z-index: 2;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--qm-muted);
    font-size: 0.94rem;
    font-weight: 900;
    cursor: pointer;
    transition: color 0.25s ease;
}

.qm-landing .qm-pricing-tab.is-active {
    color: var(--qm-white);
}

.qm-landing .qm-pricing-tab-indicator {
    position: absolute;
    z-index: 1;
    top: 7px;
    left: 7px;
    width: calc((100% - 14px) / 4);
    height: 48px;
    border-radius: 8px;
    background: var(--qm-primary);
    box-shadow: 0 14px 34px rgba(255, 107, 53, 0.28);
    transition: transform 0.32s ease;
}

.qm-landing .qm-pricing-tabs[data-active-index="0"] .qm-pricing-tab-indicator {
    transform: translateX(0);
}

.qm-landing .qm-pricing-tabs[data-active-index="1"] .qm-pricing-tab-indicator {
    transform: translateX(100%);
}

.qm-landing .qm-pricing-tabs[data-active-index="2"] .qm-pricing-tab-indicator {
    transform: translateX(200%);
}

.qm-landing .qm-pricing-tabs[data-active-index="3"] .qm-pricing-tab-indicator {
    transform: translateX(300%);
}

.qm-landing .qm-pricing-panels {
    position: relative;
}

.qm-landing .qm-pricing-panel {
    display: none;
    padding: 38px 22px 14px;
}

.qm-landing .qm-pricing-panel.is-active {
    display: block;
    animation: qmPricingFade 0.28s ease both;
}

.qm-landing .qm-plan-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.qm-landing .qm-plan-top h3 {
    margin: 0;
    color: var(--qm-ink);
    font-size: 1.85rem;
    line-height: 1.15;
    font-weight: 900;
}

.qm-landing .qm-plan-top p {
    max-width: 270px;
    margin: 14px 0 0;
    color: var(--qm-muted);
    font-size: 1.04rem;
    line-height: 1.55;
}

.qm-landing .qm-plan-price {
    min-width: 150px;
    text-align: right;
}

.qm-landing .qm-plan-price strong {
    display: block;
    color: var(--qm-ink);
    font-size: 3.35rem;
    line-height: 1;
    font-weight: 900;
}

.qm-landing .qm-plan-price span {
    display: block;
    margin-top: 8px;
    color: var(--qm-muted);
    font-size: 0.94rem;
    font-weight: 900;
}

.qm-landing .qm-plan-features {
    display: grid;
    gap: 14px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.qm-landing .qm-plan-features li {
    position: relative;
    padding-left: 32px;
    color: #374151;
    font-size: 1.03rem;
    line-height: 1.45;
    font-weight: 700;
}

.qm-landing .qm-plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: 0.88rem;
    font-weight: 900;
}

.qm-landing .qm-plan-button {
    width: 100%;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    border-radius: 8px;
    background: var(--qm-primary);
    color: var(--qm-white);
    font-size: 1.05rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(255, 107, 53, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.qm-landing .qm-plan-button:hover {
    background: var(--qm-primary-dark);
    color: var(--qm-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(255, 107, 53, 0.34);
}

.qm-landing .qm-plan-note {
    margin: 16px 0 0;
    color: #8a8a8a;
    font-size: 0.88rem;
    text-align: center;
}

@keyframes qmPricingFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qm-landing .qm-reviews {
    padding: 92px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.08), transparent 38%),
        #ffffff;
}

.qm-landing .qm-reviews-shell {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.qm-landing .qm-reviews-track {
    position: relative;
    min-height: 360px;
}

.qm-landing .qm-review {
    display: none;
    min-height: 360px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px 36px;
    border: 1px solid rgba(234, 223, 214, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(18px);
}

.qm-landing .qm-review.is-active {
    display: flex;
    animation: qmReviewFade 0.35s ease both;
}

.qm-landing .qm-review-quote {
    height: 62px;
    color: rgba(255, 107, 53, 0.28);
    font-size: 96px;
    line-height: 0.75;
    font-weight: 800;
}

.qm-landing .qm-review-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 22px;
    color: #f5b301;
    font-size: 22px;
}

.qm-landing .qm-review-text {
    max-width: 720px;
    margin: 0 auto;
    color: var(--qm-ink);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.35;
    font-weight: 800;
}

.qm-landing .qm-review-author {
    margin-top: 32px;
    text-align: center;
}

.qm-landing .qm-review-author strong {
    display: block;
    color: var(--qm-ink);
    font-size: 17px;
    font-weight: 800;
}

.qm-landing .qm-review-author small {
    display: block;
    margin-top: 3px;
    color: var(--qm-muted);
    font-size: 14px;
}

.qm-landing .qm-review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.qm-landing .qm-review-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--qm-ink);
    opacity: 0.18;
    cursor: pointer;
    transition: width 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.qm-landing .qm-review-dot[aria-selected="true"] {
    width: 34px;
    opacity: 1;
    background: var(--qm-primary);
}

.qm-landing .qm-review-dot:focus-visible {
    outline: 3px solid rgba(255, 107, 53, 0.28);
    outline-offset: 4px;
}

.qm-landing .qm-review-arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    pointer-events: none;
}

.qm-landing .qm-review-arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--qm-ink);
    cursor: pointer;
    opacity: 0.44;
    pointer-events: auto;
    transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.qm-landing .qm-review-arrow i {
    font-size: 0.82rem;
}

.qm-landing .qm-review-arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 107, 53, 0.24);
    background: rgba(255, 255, 255, 0.86);
    color: var(--qm-primary);
    opacity: 0.88;
}

.qm-landing .qm-review-arrow:focus-visible {
    outline: 3px solid rgba(255, 107, 53, 0.28);
    outline-offset: 4px;
}

@keyframes qmReviewFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qm-review-grid {
    grid-template-columns: repeat(4, 1fr);
}

.qm-stars {
    color: #f7b731;
    font-size: 0.88rem;
}

.qm-review-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.qm-review-person > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--qm-ink);
    color: var(--qm-white);
    font-weight: 900;
}

.qm-review-person strong,
.qm-customer-card strong {
    display: block;
    color: var(--qm-ink);
}

.qm-review-person small {
    color: var(--qm-muted);
}

.qm-customers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.qm-customer-card {
    min-height: 170px;
    padding: 18px 14px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.qm-customer-card:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.qm-customer-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    border-radius: 8px;
    object-fit: cover;
}

.qm-customer-card span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.86rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.qm-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.qm-blog-card {
    padding: 18px;
    color: inherit;
    text-decoration: none;
}

.qm-blog-card:hover {
    text-decoration: none;
}

.qm-blog-card img {
    width: 100%;
    height: 160px;
    margin-bottom: 16px;
    border-radius: 8px;
    object-fit: cover;
}

.qm-blog-card > span {
    color: var(--qm-primary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.qm-blog-card strong {
    color: var(--qm-primary);
}

.qm-empty-state {
    padding: 20px;
    border: 1px dashed var(--qm-line);
    border-radius: 8px;
    color: var(--qm-muted);
    text-align: center;
    background: var(--qm-white);
}

.qm-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.qm-faq-item {
    box-shadow: none;
    overflow: hidden;
}

.qm-faq-item button {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 0;
    background: var(--qm-white);
    color: var(--qm-ink);
    font-weight: 900;
    text-align: left;
}

.qm-faq-item i {
    transition: transform 0.2s ease;
}

.qm-faq-content {
    display: none;
    padding: 0 18px 18px;
}

.qm-faq-item.active .qm-faq-content {
    display: block;
}

.qm-faq-item.active i {
    transform: rotate(180deg);
}

.qm-faq-content p {
    margin: 0;
    color: var(--qm-muted);
    line-height: 1.7;
}

.qm-final-cta {
    padding: 56px 0 48px;
    background: var(--qm-ink);
}

.qm-final-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
}

.qm-final-cta h2,
.qm-final-cta p {
    color: var(--qm-white);
}

.qm-final-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
}

.qm-footer {
    padding: 24px 0;
    background: #101624;
    color: var(--qm-white);
}

.qm-footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.qm-footer-links a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.qm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.qm-footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    white-space: nowrap;
}

@media (max-width: 991px) {
    .qm-nav-links,
    .qm-nav-actions {
        display: none;
    }

    .qm-mobile-toggle {
        display: inline-flex;
    }

    .qm-brand-word {
        display: none;
    }

    .qm-header-wrap {
        padding: 8px 0;
    }

    .qm-nav-inner {
        min-height: 58px;
        padding: 8px 9px 8px 10px;
    }

    .qm-hero {
        padding-top: 42px;
    }

    .qm-hero-grid,
    .qm-system-panel,
    .qm-demo-panel,
    .qm-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .qm-hero-image-panel {
        min-height: 430px;
    }

    .qm-bento-grid,
    .qm-feature-grid,
    .qm-review-grid,
    .qm-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qm-customers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .qm-container {
        width: min(100% - 24px, 1140px);
    }

    .qm-section {
        padding: 58px 0;
    }

    .qm-landing .qm-reviews {
        padding: 64px 0;
    }

    .qm-landing .qm-pricing-card {
        margin-top: 34px;
        padding: 14px;
    }

    .qm-landing .qm-pricing-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .qm-landing .qm-pricing-tab-indicator {
        display: none;
    }

    .qm-landing .qm-pricing-tab {
        background: var(--qm-white);
        color: var(--qm-muted);
    }

    .qm-landing .qm-pricing-tab.is-active {
        background: var(--qm-primary);
        color: var(--qm-white);
        box-shadow: 0 12px 28px rgba(255, 107, 53, 0.22);
    }

    .qm-landing .qm-pricing-panel {
        padding: 30px 12px 10px;
    }

    .qm-landing .qm-plan-top {
        flex-direction: column;
    }

    .qm-landing .qm-plan-price {
        min-width: 0;
        text-align: left;
    }

    .qm-landing .qm-plan-price strong {
        font-size: 3rem;
    }

    .qm-landing .qm-plan-top h3 {
        font-size: 1.62rem;
    }

    .qm-landing .qm-reviews-track {
        min-height: 330px;
    }

    .qm-landing .qm-review {
        min-height: 330px;
        padding: 34px 42px;
    }

    .qm-landing .qm-review-quote {
        height: 48px;
        font-size: 74px;
    }

    .qm-landing .qm-review-text {
        font-size: 24px;
    }

    .qm-landing .qm-review-author {
        margin-top: 26px;
    }

    .qm-landing .qm-review-arrows {
        padding: 0 8px;
    }

    .qm-landing .qm-review-arrow {
        width: 32px;
        height: 32px;
        opacity: 0.38;
    }

    .qm-hero h1 {
        font-size: 2.32rem;
    }

    .qm-hero-lead,
    .qm-section-heading p {
        font-size: 1rem;
    }

    .qm-hero-actions,
    .qm-demo-actions,
    .qm-final-actions,
    .qm-mobile-menu-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .qm-hero-actions .qm-btn,
    .qm-demo-actions .qm-btn,
    .qm-final-actions .qm-btn {
        width: 100%;
    }

    .qm-hero-image-panel {
        min-height: 340px;
    }

    .qm-dashboard-card,
    .qm-phone-card,
    .qm-floating-card {
        position: static;
        width: 100%;
    }

    .qm-floating-card {
        justify-content: center;
    }

    .qm-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .qm-stats-strip div:nth-child(2) {
        border-right: 0;
    }

    .qm-stats-strip div:nth-child(1),
    .qm-stats-strip div:nth-child(2) {
        border-bottom: 1px solid var(--qm-line);
    }

    .qm-language-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .qm-steps-grid,
    .qm-bento-grid,
    .qm-feature-grid,
    .qm-review-grid,
    .qm-blog-grid {
        grid-template-columns: 1fr;
    }

    .qm-bento-wide {
        grid-column: auto;
    }

    .qm-feature-grid {
        gap: 16px;
        margin-top: 28px;
    }

    .qm-feature-item {
        min-height: auto;
        padding: 24px 20px;
    }

    .qm-feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .qm-system-panel,
    .qm-demo-panel {
        padding: 20px;
    }

    .qm-system-panel {
        width: 100%;
        gap: 18px;
    }

    .qm-system-media {
        inset: 0;
    }

    .qm-system-media img {
        inset: -14px -42px -14px 8%;
        width: calc(92% + 84px);
        height: calc(100% + 28px);
        opacity: 0;
        filter: blur(15px) saturate(0.98) contrast(1.03) brightness(1.08);
    }

    .qm-system-media img.active {
        opacity: 0.52;
    }

    .qm-system-panel::after {
        background:
            linear-gradient(90deg, rgba(17, 24, 39, 0.98) 0%, rgba(17, 24, 39, 0.90) 34%, rgba(17, 24, 39, 0.68) 58%, rgba(17, 24, 39, 0.32) 100%),
            linear-gradient(180deg, rgba(17, 24, 39, 0.18) 0%, rgba(17, 24, 39, 0) 22%, rgba(17, 24, 39, 0.28) 100%);
    }

    .qm-system-copy h2 {
        font-size: 2rem;
    }

    .qm-system-copy p {
        font-size: 0.98rem;
        line-height: 1.62;
    }

    .qm-tab-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        padding-bottom: 0;
    }

    .qm-tab-button {
        width: 100%;
        min-width: 0;
        padding: 10px 8px;
        white-space: normal;
    }

    .qm-customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qm-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .qm-footer-links {
        gap: 10px 16px;
    }
}

@media (max-width: 360px) {
    .qm-stats-strip,
    .qm-customers-grid {
        grid-template-columns: 1fr;
    }

    .qm-mobile-lang-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qm-stats-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--qm-line);
    }

    .qm-stats-strip div:last-child {
        border-bottom: 0;
    }
}

/* Premium visual pass */
.qm-device {
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    background: var(--qm-white);
    box-shadow: var(--qm-shadow);
}

.qm-device-desktop {
    width: min(100%, 510px);
    padding: 18px;
    transform: rotate(-1deg);
}

.qm-dashboard-layout {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 16px;
}

.qm-dashboard-layout aside {
    min-height: 285px;
    padding: 14px;
    border-radius: 8px;
    background: #111827;
}

.qm-dashboard-layout aside i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.18);
    color: var(--qm-primary);
}

.qm-dashboard-layout aside span {
    display: block;
    height: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
}

.qm-dashboard-layout aside span.active {
    width: 84%;
    background: var(--qm-primary);
}

.qm-metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.qm-metric-row div {
    padding: 12px;
    border-radius: 8px;
    background: var(--qm-soft);
}

.qm-metric-row i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 8px;
    background: var(--qm-white);
    color: var(--qm-primary);
    box-shadow: 0 8px 18px rgba(29, 36, 51, 0.08);
}

.qm-metric-row strong,
.qm-metric-row span {
    display: block;
}

.qm-metric-row strong {
    width: 74px;
    height: 10px;
    color: var(--qm-ink);
    font-size: 0.82rem;
    line-height: 1.2;
    border-radius: 8px;
    background: #dfe7f1;
}

.qm-metric-row span {
    width: 100%;
    height: 8px;
    margin-top: 5px;
    color: var(--qm-muted);
    font-size: 0.72rem;
    line-height: 1.35;
    border-radius: 8px;
    background: #edf2f7;
}

.qm-device-phone {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 212px;
    padding: 18px;
}

.qm-device-pos {
    position: absolute;
    left: 16px;
    bottom: 4px;
    width: 178px;
    padding: 14px;
}

.qm-phone-symbol {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px auto 14px;
    border-radius: 8px;
    background: var(--qm-soft-2);
    color: var(--qm-primary);
    font-size: 1.25rem;
}

.qm-menu-preview {
    display: grid;
    gap: 9px;
    margin: 18px 0;
}

.qm-phone-feature-preview {
    display: grid;
    gap: 9px;
    margin: 18px 0;
}

.qm-menu-preview div,
.qm-phone-feature-preview div {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 9px;
}

.qm-menu-preview div > span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--qm-primary), #ffc29f);
}

.qm-phone-feature-preview i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--qm-primary), #ffc29f);
    color: var(--qm-white);
    font-size: 0.82rem;
}

.qm-menu-preview b,
.qm-phone-feature-preview b {
    color: var(--qm-ink);
    font-size: 0.82rem;
}

.qm-phone-feature-preview b {
    width: 66px;
    height: 10px;
    display: block;
    border-radius: 8px;
    background: #dfe7f1;
}

.qm-menu-preview small,
.qm-phone-feature-preview small {
    color: var(--qm-muted);
    font-size: 0.76rem;
}

.qm-phone-feature-preview small {
    width: 86px;
    height: 8px;
    display: block;
    border-radius: 8px;
    background: #edf2f7;
}

.qm-pos-screen {
    padding: 14px;
    border-radius: 8px;
    background: #111827;
    color: var(--qm-white);
}

.qm-pos-screen span,
.qm-pos-screen small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.qm-pos-screen strong {
    display: block;
    margin: 6px 0;
    font-size: 1.45rem;
}

.qm-pos-screen span,
.qm-pos-screen strong,
.qm-pos-screen small {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.22);
}

.qm-pos-screen span {
    width: 74px;
    height: 9px;
}

.qm-pos-screen strong {
    width: 94px;
    height: 24px;
}

.qm-pos-screen small {
    width: 100%;
    height: 8px;
}

.qm-pos-keys {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 10px;
}

.qm-pos-keys span {
    height: 16px;
    border-radius: 5px;
    background: #edf1f7;
}

.qm-float-slow {
    animation: qmFloatSlow 7s ease-in-out infinite;
}

.qm-float-medium {
    animation: qmFloatMedium 6s ease-in-out infinite;
}

.qm-float-fast {
    animation: qmFloatFast 5.4s ease-in-out infinite;
}

@keyframes qmFloatSlow {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes qmFloatMedium {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes qmFloatFast {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
}

.qm-bento-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.qm-bento-card > .qm-bento-icon,
.qm-bento-card > h3,
.qm-bento-card > p,
.qm-bento-card > .qm-bento-preview {
    position: relative;
    z-index: 2;
}

.qm-bento-has-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.58) 70%, rgba(255, 255, 255, 0.34) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(255, 255, 255, 0.26) 100%);
}

.qm-bento-wide.qm-bento-has-visual::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.62) 67%, rgba(255, 255, 255, 0.3) 100%);
}

.qm-bento-card:hover,
.qm-price-card:hover,
.qm-customer-card:hover,
.qm-blog-card:hover,
.qm-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(29, 36, 51, 0.16);
}

.qm-bento-wide {
    min-height: 260px;
    padding-right: 190px;
}

.qm-bento-preview-menu-peek {
    min-height: 300px;
    padding-right: 22px;
}

.qm-bento-preview-order-flow,
.qm-bento-preview-qr-design {
    min-height: 280px;
    padding-bottom: 22px;
}

.qm-bento-green {
    background: linear-gradient(180deg, #ffffff 0%, #f0fbf8 100%);
}

.qm-bento-orange {
    background: linear-gradient(180deg, #ffffff 0%, #fff4ec 100%);
}

.qm-bento-blue {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.qm-bento-preview {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 150px;
    padding: 12px;
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(29, 36, 51, 0.12);
}

.qm-bento-menu-preview > span {
    width: 54px;
    height: 54px;
    display: block;
    margin-bottom: 10px;
    border-radius: 8px;
    background: var(--qm-ink);
}

.qm-bento-menu-preview div,
.qm-bento-pos-preview div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid var(--qm-line);
}

.qm-bento-preview b,
.qm-bento-preview small,
.qm-bento-preview span {
    font-size: 0.78rem;
}

.qm-bento-preview b {
    color: var(--qm-ink);
}

.qm-bento-preview small,
.qm-bento-preview span {
    color: var(--qm-muted);
}

.qm-bento-image-peek {
    position: absolute;
    inset: -10px;
    z-index: 0;
    transform: scale(1.03);
    filter: blur(2px) saturate(1.05);
    opacity: 0.5;
    pointer-events: none;
}

.qm-bento-image-peek img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: right bottom;
    border-radius: 8px;
}

.qm-bento-preview-menu-peek .qm-bento-image-peek {
    inset: -8px -18px -18px 20%;
    opacity: 0.52;
}

.qm-bento-order-flow-image {
    position: absolute;
    inset: -10px;
    z-index: 0;
    transform: scale(1.04);
    filter: blur(2px) saturate(1.04);
    opacity: 0.46;
    pointer-events: none;
}

.qm-bento-order-flow-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 8px;
}

.qm-bento-corner-image {
    position: absolute;
    inset: -10px;
    z-index: 0;
    transform: scale(1.06);
    filter: blur(2px) saturate(1.03);
    opacity: 0.34;
    pointer-events: none;
}

.qm-bento-corner-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

.qm-tab-copy {
    align-self: center;
}

@media (max-width: 991px) {
    .qm-device-desktop,
    .qm-device-phone,
    .qm-device-pos {
        position: relative;
        inset: auto;
    }

    .qm-hero-image-panel {
        min-height: 420px;
        transform: none;
    }

    .qm-device-desktop {
        grid-column: 1 / -1;
    }

    .qm-device-pos {
        justify-self: start;
    }

    .qm-floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .qm-hero-image-panel {
        min-height: 320px;
        margin-top: 10px;
    }

    .qm-hero-image-panel::after {
        background:
            linear-gradient(180deg, var(--qm-soft) 0%, rgba(255, 247, 242, 0.48) 12%, rgba(255, 247, 242, 0) 34%),
            linear-gradient(180deg, rgba(255, 247, 242, 0) 70%, rgba(255, 247, 242, 0.72) 100%);
    }

    .qm-hero-image-panel img {
        width: min(108%, 420px);
        transform: none;
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 58%, rgba(0, 0, 0, 0.82) 68%, rgba(0, 0, 0, 0.24) 78%, transparent 90%);
        mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 58%, rgba(0, 0, 0, 0.82) 68%, rgba(0, 0, 0, 0.24) 78%, transparent 90%);
    }

    .qm-dashboard-layout {
        grid-template-columns: 1fr;
    }

    .qm-dashboard-layout aside {
        min-height: auto;
    }

    .qm-metric-row {
        grid-template-columns: 1fr;
    }

    .qm-flow-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .qm-device-phone,
    .qm-device-pos {
        width: 100%;
    }

    .qm-bento-wide {
        min-height: auto;
        padding-right: 22px;
    }

    .qm-bento-preview-menu-peek,
    .qm-bento-preview-order-flow,
    .qm-bento-preview-qr-design {
        min-height: 240px;
        padding-right: 22px;
        padding-bottom: 22px;
    }

    .qm-bento-preview {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .qm-bento-image-peek {
        position: absolute;
        inset: -10px;
        width: auto;
        max-width: none;
        margin-top: 0;
        transform: scale(1.04);
    }

    .qm-bento-order-flow-image {
        position: absolute;
        inset: -10px;
        width: auto;
        max-width: none;
        margin-top: 0;
    }

    .qm-bento-corner-image {
        position: absolute;
        inset: -10px;
        width: auto;
        max-width: none;
        margin: 0;
    }

    .qm-tab-panel {
        min-height: auto;
        padding: 20px 0 6px;
    }

    .qm-tab-copy {
        max-width: 100%;
    }

    .qm-tab-copy h3 {
        font-size: 1.32rem;
    }

    .qm-tab-copy p {
        font-size: 0.96rem;
        line-height: 1.62;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qm-btn,
    .qm-nav-links a,
    .qm-brand,
    .qm-faq-item i {
        transition: none;
    }

    .qm-float-slow,
    .qm-float-medium,
    .qm-float-fast,
    .qm-landing .qm-review.is-active,
    .qm-landing .qm-pricing-panel {
        animation: none;
    }

    .qm-landing .qm-review-dot,
    .qm-landing .qm-pricing-tab-indicator,
    .qm-landing .qm-plan-button {
        transition: none;
    }
}
