: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;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--qm-line);
    backdrop-filter: blur(14px);
}

.qm-nav-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.qm-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.qm-brand-logo {
    width: 42px;
    max-width: 100%;
    height: 34px;
    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: 10px;
}

.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: 10px 12px;
    font-size: 0.94rem;
}

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

.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: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    background: var(--qm-white);
    color: var(--qm-ink);
    font-weight: 800;
}

.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: var(--qm-white);
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    box-shadow: var(--qm-shadow);
}

.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: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    background: var(--qm-white);
}

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

.qm-mobile-menu {
    display: none;
    border-top: 1px solid var(--qm-line);
    background: var(--qm-white);
}

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

.qm-mobile-menu .qm-container {
    padding: 14px 0 18px;
    display: grid;
    gap: 4px;
}

.qm-mobile-menu a {
    padding: 12px 4px;
}

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

.qm-hero {
    padding: 72px 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: 720px;
    margin: 22px 0 18px;
    color: var(--qm-ink);
    font-size: clamp(44px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 900;
}

.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-visual {
    position: relative;
    min-height: 500px;
}

.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 {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
    padding: 28px;
    background: var(--qm-ink);
}

.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 {
    display: none;
    min-height: 260px;
    padding: 24px;
    border-radius: 8px;
    background: var(--qm-white);
}

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

.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-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-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff0e5;
    color: var(--qm-primary);
    font-size: 0.82rem;
    font-weight: 900;
}

.qm-landing .qm-plan-badge-muted {
    color: var(--qm-muted);
    background: #f7f7f7;
}

.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: 72px 0;
    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: 48px 0 24px;
    background: #101624;
    color: var(--qm-white);
}

.qm-footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) 1fr;
    gap: 34px;
    align-items: start;
}

.qm-footer-brand img {
    max-width: 150px;
    padding: 8px;
    border-radius: 8px;
    background: var(--qm-white);
}

.qm-footer-brand p {
    max-width: 360px;
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.qm-social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--qm-primary);
    color: var(--qm-white);
}

.qm-social-link:hover {
    color: var(--qm-white);
}

.qm-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 12px;
}

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

.qm-footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

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

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

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

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

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

    .qm-hero-visual {
        min-height: 420px;
    }

    .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.45rem;
    }

    .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-visual {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .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-tab-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .qm-tab-button {
        white-space: nowrap;
    }

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

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

@media (max-width: 360px) {
    .qm-stats-strip,
    .qm-customers-grid,
    .qm-footer-links {
        grid-template-columns: 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,
.qm-menu-mini-list div {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 9px;
}

.qm-menu-preview div > span,
.qm-menu-mini-list 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,
.qm-menu-mini-list 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,
.qm-menu-mini-list 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-panel.active {
    display: grid;
    grid-template-columns: minmax(210px, 0.92fr) 1fr;
    align-items: stretch;
    gap: 20px;
}

.qm-tab-visual {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--qm-soft), #eef8f5);
}

.qm-ui-screen {
    width: min(100%, 260px);
    padding: 16px;
    border: 1px solid var(--qm-line);
    border-radius: 8px;
    background: var(--qm-white);
    box-shadow: 0 18px 44px rgba(29, 36, 51, 0.13);
}

.qm-tab-visual-tablet .qm-ui-screen {
    width: min(100%, 330px);
}

.qm-tab-visual-pos .qm-ui-screen {
    width: min(100%, 300px);
}

.qm-ui-screen-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.qm-ui-screen-top span {
    color: var(--qm-muted);
    font-weight: 900;
}

.qm-ui-screen-top b {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--qm-primary);
    color: var(--qm-white);
}

.qm-waiter-mini-list,
.qm-menu-mini-list {
    display: grid;
    gap: 10px;
}

.qm-waiter-mini-list div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
}

.qm-waiter-mini-list button {
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background: var(--qm-ink);
    color: var(--qm-white);
    font-weight: 900;
}

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

.qm-kds-grid div {
    min-height: 118px;
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
}

.qm-kds-grid strong,
.qm-kds-grid span {
    display: block;
}

.qm-kds-grid span {
    margin-top: 8px;
    color: var(--qm-teal);
    font-size: 0.82rem;
    font-weight: 900;
}

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

.qm-pos-mini-total span {
    color: rgba(255, 255, 255, 0.72);
}

.qm-pos-mini-total strong {
    display: block;
    margin-top: 6px;
    font-size: 2rem;
}

.qm-pos-mini-bars {
    display: grid;
    gap: 9px;
    margin-top: 14px;
}

.qm-pos-mini-bars span {
    height: 12px;
    border-radius: 8px;
    background: #edf1f7;
}

.qm-pos-mini-bars span:nth-child(2) {
    width: 78%;
}

.qm-pos-mini-bars span:nth-child(3) {
    width: 58%;
}

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

.qm-plan-intro {
    min-height: 46px;
    margin: 8px 0 0;
    color: var(--qm-muted);
    line-height: 1.55;
}

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

    .qm-hero-visual {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 210px;
        gap: 14px;
        min-height: auto;
        align-items: end;
    }

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

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

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

@media (max-width: 767px) {
    .qm-hero-visual {
        grid-template-columns: 1fr;
    }

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

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

    .qm-metric-row,
    .qm-kds-grid {
        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.active {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qm-btn,
    .qm-nav-links a,
    .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;
    }
}
