:root {
  --qx-cyan: #00b4b4;
  --qx-cyan-dark: #007d7d;
  --qx-cyan-soft: #e6f7f7;
  --qx-charcoal: #2a2f36;
  --qx-ink: #1c2026;
  --qx-slate: #5b6470;
  --qx-line: #e4e8ed;
  --qx-bg: #ffffff;
  --qx-bg-off: #f6f8fa;
  --qx-radius: 6px;
  --qx-radius-lg: 14px;
  --qx-font: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
  --qx-shadow-sm: 0 1px 2px rgba(28, 32, 38, .06);
  --qx-shadow-md: 0 8px 24px rgba(28, 32, 38, .08);
  --qx-shadow-lg: 0 20px 50px rgba(28, 32, 38, .12);
}
.qx-redesign,
.qx-redesign * {
  box-sizing: border-box;
}
.qx-redesign {
  margin: 0;
  color: var(--qx-ink);
  background: var(--qx-bg);
  font-family: var(--qx-font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
.qx-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.qx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 18px;
  border: 1.5px solid transparent;
  border-radius: var(--qx-radius);
  background: none;
  color: inherit;
  cursor: pointer;
  font-family: var(--qx-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.qx-btn svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.qx-btn-primary,
.qx-btn-ki {
  background: var(--qx-cyan);
  color: #fff;
}
.qx-btn-primary:hover,
.qx-btn-ki:hover {
  background: var(--qx-cyan-dark);
  box-shadow: 0 6px 16px rgba(0, 180, 180, .28);
  transform: translateY(-1px);
}
.qx-btn-secondary {
  border-color: var(--qx-cyan);
  background: #fff;
  color: var(--qx-cyan-dark);
}
.qx-btn-secondary:hover {
  background: var(--qx-cyan-soft);
  transform: translateY(-1px);
}
.qx-btn-dark {
  background: var(--qx-charcoal);
  color: #fff !important;
}
.qx-btn-dark:hover {
  background: #1c2026;
  transform: translateY(-1px);
}
.qx-btn-ghost {
  min-height: auto;
  padding: 6px 4px;
  border: none;
  color: var(--qx-cyan-dark);
}
.qx-btn-ghost:hover {
  gap: 11px;
}
.qx-btn-lg {
  min-height: 50px;
  padding: 14px 24px;
  font-size: 15px;
}
.qx-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--qx-line);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
}
.qx-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.qx-nav nav {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    flex: 1 auto;
}
.mobile-nav-toggle {
    display:none;
}
button.mobile-nav-toggle:hover{background:unset;}
.sr-only{display:none;}
@media (max-width:980px) {
    .qx-site-header nav{
        top: 60px;
        right: 0;
        left: 50%;
        position: fixed;
        height:100%;
        z-index:1000;
        
        display:none;
    }
    .qx-site-header nav[data-visible="true"]{
        display:flex;
    }
    .mobile-nav-toggle{
        display:block;
    }
     
    .qx-nav nav,
    .qx-nav-links
     {
        flex-direction:column;
    }
    .mobile-nav-toggle {
        display:block;
        
        aspect-ratio: 1;
        width: 32px;
        top: 24px;
        right: 24px;
        z-index: 9999;
        background: url(/images/handler/menu.png);
        background-repeat: no-repeat;
        border: 0;
        background-size:contain;
        margin-left:40px;
    }
}
.qx-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  background-image:url(/images/svg/qxhub-dark.svg);
  background-repeat:no-repeat;
  background-size:contain;
  width:200px;
  height:50px;
}
.qx-logo-light {
    background-image: url(/images/svg/qxhub-light.svg);
}
.qx-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qx-nav-links li{
    position:relative;
}
.qx-nav-links a {
  color: var(--qx-slate);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease;
}
    .qx-nav-links a::before {
        content: '';
        display: block;
        background-color: var(--qx-cyan-dark);
        position: absolute;
        top: 0;
        width: 0%;
        height: 5px;
        transition: all ease-in-out .15s;
        transform:translateY(-100%);
    }
    .qx-nav-links a:hover::before {
        width:100%;
    }
.qx-nav-links a:hover {
  color: var(--qx-cyan-dark);
}
.qx-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qx-hero,
.qx-hero.qx-section{
  position: relative;
  overflow: hidden;
  padding: 30px 0 72px;
  
}
.qx-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.qx-news-ai-page .qx-hero-copy,
.qx-news-ai-page .qx-hero-visual {
  min-width: 0;
}
.qx-news-ai-page .qx-hero-copy h1,
.qx-news-ai-page .qx-hero-copy .qx-lead {
  overflow-wrap: anywhere;
  hyphens: auto;
}
.qx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--qx-cyan-soft);
  color: var(--qx-cyan-dark);
  font-size: 13px;
  font-weight: 700;
}
.qx-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--qx-cyan);
}
.qx-redesign h1,
.qx-redesign h2,
.qx-redesign h3,
.qx-redesign p {
  margin-top: 0;
}
.qx-redesign h1 {
  margin-bottom: 20px;
  color: var(--qx-ink);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}
.qx-redesign h1 .qx-accent {
  color: var(--qx-cyan-dark);
}
.qx-lead {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--qx-slate);
  font-size: 18px;
}
.qx-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.qx-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--qx-slate);
  font-size: 13.5px;
}
.qx-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background-image: url(/images/handler/qxhub_16.png);
    background-repeat: no-repeat;
    background-position-x: left;
    padding-left: 24px;
    background-size: 16px;
}
.qx-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--qx-cyan);
}
.qx-hero-visual {
  position: relative;
  display:flex;
  justify-content:center;
}
.qx-hero-visual img {
    max-height:700px;
}
.qx-news-ai-page .qx-hero-visual img {
  max-width: 100%;
  height: auto;
}
.qx-panel {
  padding: 22px;
  border: 1px solid var(--qx-line);
  border-radius: var(--qx-radius-lg);
  background: #fff;
  box-shadow: var(--qx-shadow-lg);
}
.qx-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--qx-line);
}
.qx-panel-title {
  font-size: 15px;
  font-weight: 700;
}
.qx-pill {
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--qx-cyan-soft);
  color: var(--qx-cyan-dark);
  font-size: 11.5px;
  font-weight: 700;
}
.qx-data-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--qx-bg-off);
}
.qx-data-row:last-child {
  border-bottom: none;
}
.qx-data-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 8px;
  background: var(--qx-cyan-soft);
}
.qx-data-icon svg {
  width: 18px;
  height: 18px;
  color: var(--qx-cyan-dark);
}
.qx-data-meta {
  flex: 1;
  min-width: 0;
}
.qx-data-name {
  display: block;
  color: var(--qx-ink);
  font-size: 14px;
  font-weight: 700;
}
.qx-data-sub {
  display: block;
  color: var(--qx-slate);
  font-size: 12.5px;
}
.qx-data-status {
  color: var(--qx-cyan-dark);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}
.qx-pricing-calculator {
  margin-top: 28px;
}
.qx-pricing-calculator .qx-panel-head.qx-pricing-toggle {
  margin-bottom: 0;
  cursor: pointer;
}
.qx-pricing-calculator.is-open .qx-panel-head.qx-pricing-toggle {
  margin-bottom: 16px;
}
.qx-pricing-toggle {
  color: var(--qx-ink);
}
.qx-pricing-toggle .qx-panel-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.qx-pricing-toggle:hover .qx-panel-title {
  color: var(--qx-cyan-dark);
}
.qx-pricing-toggle:focus-visible {
  outline: 2px solid var(--qx-cyan);
  outline-offset: 4px;
}
.qx-pricing-toggle svg {
  width: 17px;
  height: 17px;
  flex: none;
  transition: transform .2s ease;
}
.qx-pricing-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.qx-pricing-calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 24px;
  align-items: stretch;
}
.qx-pricing-calculator-grid[hidden] {
  display: none;
}
.qx-pricing-controls,
.qx-pricing-result,
.qx-pricing-breakdown {
  display: grid;
  gap: 16px;
}
.qx-pricing-control {
  display: grid;
  gap: 8px;
}
.qx-pricing-label {
  color: var(--qx-ink);
  font-size: 13px;
  font-weight: 700;
}
.qx-pricing-plan-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.qx-pricing-plan {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 14px;
  border: 1.5px solid var(--qx-line);
  border-radius: var(--qx-radius);
  background: #fff;
  color: var(--qx-ink);
  cursor: pointer;
  font-family: var(--qx-font);
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease, background .2s ease;
}
.qx-pricing-plan:hover,
.qx-pricing-plan.is-active {
  border-color: var(--qx-cyan);
  box-shadow: var(--qx-shadow-sm);
}
.qx-pricing-plan.is-active {
  background: var(--qx-cyan-soft);
}
.qx-pricing-plan span {
  color: var(--qx-slate);
  font-size: 12px;
  font-weight: 700;
}
.qx-pricing-plan strong {
  color: var(--qx-ink);
  font-size: 15px;
  line-height: 1.25;
}
.qx-pricing-control select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--qx-line);
  border-radius: var(--qx-radius);
  background: #fff;
  color: var(--qx-ink);
  font-family: var(--qx-font);
  font-size: 14px;
}
.qx-pricing-control select:disabled {
  opacity: .56;
  cursor: not-allowed;
}
.qx-pricing-help {
  color: var(--qx-slate);
  font-size: 12.5px;
}
.qx-pricing-result {
  align-content: start;
  padding: 20px;
  border: 1px solid var(--qx-line);
  border-radius: var(--qx-radius);
  background: var(--qx-bg-off);
}
.qx-pricing-result h3 {
  margin: 0;
}
.qx-pricing-total {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--qx-ink);
}
.qx-pricing-total span {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.qx-pricing-total small {
  padding-bottom: 5px;
  color: var(--qx-slate);
  font-size: 13px;
  font-weight: 700;
}
.qx-pricing-breakdown {
  padding-top: 4px;
}
.qx-pricing-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--qx-line);
}
.qx-pricing-breakdown div:last-child {
  border-bottom: none;
}
.qx-pricing-breakdown span {
  color: var(--qx-slate);
  font-size: 13px;
}
.qx-pricing-breakdown strong {
  color: var(--qx-ink);
  font-size: 13px;
  text-align: right;
}
.qx-pricing-result p {
  margin: 0;
  color: var(--qx-slate);
  font-size: 12.5px;
}
.qx-comparison-panel {
  overflow-x: auto;
}
.qx-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}
.qx-comparison-table th,
.qx-comparison-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--qx-bg-off);
}
.qx-comparison-table thead th {
  border-bottom-color: var(--qx-line);
  color: var(--qx-ink);
  font-weight: 700;
  text-align: center;
}
.qx-comparison-table thead th:first-child,
.qx-comparison-table tbody th {
  text-align: left;
}
.qx-comparison-table tbody th {
  color: var(--qx-ink);
  font-weight: 700;
}
.qx-comparison-table tbody td {
  text-align: center;
}
.qx-comparison-table tbody tr:last-child th,
.qx-comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.qx-comparison-muted {
  color: var(--qx-slate);
}
.qx-float-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--qx-charcoal);
  color: #fff;
  box-shadow: var(--qx-shadow-md);
}
.qx-float-badge svg {
  width: 22px;
  height: 22px;
  color: var(--qx-cyan);
}
.qx-float-num {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.qx-float-label {
  color: #a9b2bc;
  font-size: 11.5px;
}
.qx-proof {
  padding: 40px 0;
  border-bottom: 1px solid var(--qx-line);
}
.qx-proof p {
  margin-bottom: 22px;
  color: var(--qx-slate);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.qx-logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 46px;
  opacity: .55;
}
.qx-logo-strip span {
  color: var(--qx-charcoal);
  font-size: 19px;
  font-weight: 700;
}
.qx-ki {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.qx-ki-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.qx-ki h2,
.qx-section-title,
.qx-cta-box h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}
.qx-ki h2 {
  margin-bottom: 18px;
}
.qx-ki p {
  max-width: 480px;
  margin-bottom: 26px;
  font-size: 16.5px;
}
.qx-ki-list {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.qx-ki-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
}
#pricingsummary .qx-ki-list li {
    color:var(--qx-ink);
}
.qx-ki-list svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 1px;
  color: var(--qx-cyan);
}
.qx-ki .qx-btn-secondary,
.qx-cta .qx-btn-secondary {
  border-color: rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
}
.qx-ki .qx-btn-secondary:hover,
.qx-cta .qx-btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}
.qx-chat.qx-complaint-ai img{
    max-height:530px;
}
.qx-chat {
  overflow: hidden;
  border-radius: var(--qx-radius-lg);
  background: #fff;
  box-shadow: var(--qx-shadow-lg);
}
.qx-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  background: var(--qx-cyan);
  color: #fff;
  font-weight: 700;
}
.qx-chat-head svg {
  width: 20px;
  height: 20px;
}
.qx-chat-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}
.qx-bubble {
  max-width: 84%;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.qx-bubble-user {
  justify-self: end;
  border-bottom-right-radius: 4px;
  background: var(--qx-bg-off);
  color: var(--qx-ink);
}
.qx-bubble-bot {
  justify-self: start;
  border-bottom-left-radius: 4px;
  background: var(--qx-cyan-soft);
  color: var(--qx-charcoal);
}
.qx-bubble-label {
  display: block;
  margin-bottom: 4px;
  color: var(--qx-cyan-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.qx-ai-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--qx-cyan-soft);
    border: 1px solid #d6eef2;
    border-radius: 999px;
    color: var(--qx-cyan-dark);
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    transform:rotate(25deg);
}
.qx-ai-svg {
    min-width: 40px;
    min-height: 40px;
    background-image: url(/images/svg/ai-robot.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.qx-section {
  padding: 88px 0;
}
.qx-section:nth-child(2n) {
    background: linear-gradient(135deg, var(--qx-charcoal), #1c2026);
    
}
.qx-section:nth-child(2n) .qx-section-title,
.qx-section:nth-child(2n) h3,
.qx-section:nth-child(2n) h2 {
    
    color: var(--qx-cyan);
}
.qx-section:nth-child(2n) p, 
.qx-section:nth-child(2n) li {
    color:var(--qx-cyan-soft);
}
.qx-section:nth-child(2n+1) {
    background: linear-gradient(180deg, #fff 0%, #f7fbfb 100%);
    
    
}
.qx-section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.qx-section-head .qx-eyebrow {
  margin-bottom: 16px;
}
.qx-section-title {
  margin-bottom: 16px;
  color: var(--qx-ink);
}
.qx-section-head p {
  color: var(--qx-slate);
  font-size: 17px;
}
.qx-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  
}
.qx-card {
    padding: 28px;
    border: 1px solid var(--qx-line);
    border-radius: var(--qx-radius-lg);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    grid-column-end: span 4;
}
    .qx-card:not(.nohover):hover {
        border-color: transparent;
        box-shadow: var(--qx-shadow-md);
        transform:  scale(1.05);
        background: var(--qx-cyan-soft);
    }
    .qx-card.start2 {
        grid-column-start: 2;
    }
    .qx-card.start3 {
        grid-column-start:3;
    }
    @media (max-width: 860px) {
        .qx-card.start2,
        .qx-card.start3{
            grid-column-start:auto;
        }
    }
.qx-card-highlight {
    border-color: transparent;
    background-color: var(--qx-cyan-soft);
}
.qx-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  background-color: var(--qx-cyan-soft);
  background-position:center;
  background-repeat:no-repeat;
  
}
.qx-card-highlight .qx-card-icon {
  background-color: #fff;
}
.qx-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--qx-cyan-dark);
}
.qx-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}
.qx-card p {
    margin-bottom: 16px;
    color: var(--qx-slate)!important;
    font-size: 14.5px;
}
.qx-why {
  padding: 88px 0;
  background: var(--qx-bg-off);
}
.qx-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.qx-why-col {
  text-align: left;
}
.qx-why-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--qx-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--qx-shadow-sm);
}
.qx-why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--qx-cyan-dark);
}
.qx-why-col h3 {
  margin-bottom: 11px;
  font-size: 19px;
  font-weight: 700;
}
.qx-why-col p {
  font-size: 15px;
}
.qx-cta {
  padding: 88px 0;
}
.qx-cta-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.qx-cta-box h2 {
  margin-bottom: 16px;
}
.qx-cta-box p {
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 17px;
}
.qx-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.qx-site-footer {
  padding: 54px 0 30px;
  background: var(--qx-charcoal);
  color: var(--qx-slate);
}
.qx-foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.qx-foot-brand {
  max-width: 280px;
}
.qx-foot-brand .qx-logo {
  margin-bottom: 14px;
  color: #fff;
}
.qx-foot-brand p,
.qx-foot-cols a {
  font-size: 14px;
}
.qx-foot-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}
.qx-foot-cols h4 {
  margin-bottom: 14px;
  color: var(--qx-cyan-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.qx-foot-cols ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.qx-foot-cols a {
    color: var(--qx-slate);
    text-decoration: none;
    transition: color .15s ease;
}
.qx-foot-cols a:hover {
  color: var(--qx-cyan);
}
.qx-foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
}
@media (max-width: 860px) {
  .qx-hero {
    padding: 56px 0 48px;
  }
  .qx-hero-grid,
  .qx-ki-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .qx-pricing-calculator-grid {
    grid-template-columns: 1fr;
  }
  .qx-cards,
  .qx-why-grid {
    grid-template-columns: 1fr;
  }
  .qx-float-badge {
    left: 0;
  }
}
@media (max-width: 640px) {
  .qx-wrap {
    padding: 0 18px;
  }
  .qx-nav {
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
  }
  .qx-nav-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .qx-nav-actions .qx-btn-dark {
    display: none;
  }
  .qx-btn {
    white-space: normal;
  }
  .qx-news-ai-page .qx-hero-copy h1 {
    font-size: 34px;
    line-height: 1.12;
  }
  .qx-news-ai-page .qx-ai-badge {
    right: 8px;
    max-width: calc(100% - 16px);
    font-size: 13px;
    transform: rotate(10deg);
  }
  .qx-news-ai-page .qx-ai-svg {
    min-width: 32px;
    min-height: 32px;
  }
  .qx-data-row {
    align-items: flex-start;
  }
  .qx-data-status {
    align-self: center;
  }
  .qx-pricing-plan-group {
    grid-template-columns: 1fr;
  }
  .qx-pricing-plan {
    min-height: 0;
  }
  .qx-pricing-total {
    align-items: flex-start;
    flex-direction: column;
  }
  .qx-pricing-total span {
    font-size: 34px;
  }
  .qx-pricing-breakdown div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .qx-pricing-breakdown strong {
    text-align: left;
  }
  .qx-comparison-table-stack {
    min-width: 0;
  }
  .qx-comparison-table-stack thead {
    display: none;
  }
  .qx-comparison-table-stack,
  .qx-comparison-table-stack tbody,
  .qx-comparison-table-stack tr,
  .qx-comparison-table-stack th,
  .qx-comparison-table-stack td {
    display: block;
    width: 100%;
  }
  .qx-comparison-table-stack tbody tr {
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid var(--qx-line);
    border-radius: var(--qx-radius);
    background: #fff;
  }
  .qx-comparison-table-stack tbody tr:last-child {
    margin-bottom: 0;
  }
  .qx-comparison-table-stack th,
  .qx-comparison-table-stack td,
  .qx-comparison-table-stack tbody tr:last-child th,
  .qx-comparison-table-stack tbody tr:last-child td {
    border-bottom: none;
  }
  .qx-comparison-table-stack tbody th {
    margin-bottom: 8px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--qx-bg-off);
  }
  .qx-comparison-table-stack tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    text-align: right;
  }
  .qx-comparison-table-stack tbody td::before {
    content: attr(data-label);
    color: var(--qx-slate);
    font-size: 12.5px;
    font-weight: 700;
    text-align: left;
  }
  .qx-float-badge {
    position: static;
    margin-top: 14px;
  }
  .qx-foot-cols {
    gap: 32px;
  }
}
