:root {
--primary: #FF7A18;
--primary-dark: #d97706;
--primary-light: #fbbf24;
--primary-glow: rgba(251,133,0,0.15);
--dark: #ffffff;
--dark2: #e5e7eb;
--body-text: #ffffffad;
--muted: #fff;
--border: #ffffff2e;
--border-light: #3f3f464f;
--white: #000000;
--card-bg: #0a0a0a;
--section-bg: #050505;
--surface: #111111;
--surface-hover: #1a1a1a;
--accent: #f97316;
--accent-glow: rgba(249,115,22,0.12);
--success: #10b981;
--warning: #f59e0b;
--error: #ef4444;
--radius: 16px;
--radius-sm: 10px;
--radius-lg: 20px;
--shadow: 0 4px 24px rgba(0,0,0,0.7);
--shadow-md: 0 8px 40px rgba(0,0,0,0.85);
--shadow-lg: 0 20px 60px rgba(0,0,0,0.95);
--shadow-glow: 0 0 40px rgba(249,115,22,0.25);
--gradient-primary: linear-gradient(135deg, #f97316, #ea580c);
--gradient-dark: linear-gradient(160deg, #000000 0%, #050505 40%, #0a0a0a 100%);
--gradient-surface: linear-gradient(135deg, #0a0a0a, #141414);
--font: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.text-hightlight { color: var(--primary); }

.outer-loader-main {
    background: #ffffffe3;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Outer ring */
.outer-loader-main .loader {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    position: relative;
    border: 3px solid;
    border-color: #333 #2e2e2e transparent;
    animation: rotation 1.5s linear infinite;
}

/* Inner ring */
.outer-loader-main .loader::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid;
    border-color: transparent #096ad8 #096ad8;
    animation: rotationBack 0.8s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    };
}
@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    };
}
.qm-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.qm-navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qm-logo, .footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem; color: var(--dark);
  text-decoration: none;
  max-width: 173px;
}
.qm-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle span:nth-child(1) { transform-origin: top left; }
.mobile-menu-toggle span:nth-child(3) { transform-origin: bottom left; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); }
.qm-nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
  margin: 0;
}
.qm-nav-links a {
  color: var(--dark2); font-weight: 500; font-size: 17px;
  text-decoration: none; padding: 6px 14px; border-radius: 7px;
  transition: background .15s, color .15s;
}
.qm-nav-links a:hover { background: var(--section-bg); color: var(--primary); }
.dropdown { position: relative; }
.dropdown-toggle::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-weight: 900;
  font-size: 12px;
  margin-left: 5px;
  border: none;
  vertical-align: middle;
}
.dropdown-menu {
  background: #0a181b;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 0;
  margin-top: 10px;
  box-shadow: var(--shadow);
  min-width: 220px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.dropdown-item {
  color: var(--dark2);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.2s ease;
}
.dropdown-item:hover { background: var(--primary); color: white; }
.dropdown-item:focus { background: var(--primary); color: white; }
.qm-nav-cta { display: flex; align-items: center; gap: 22px; }
.qm-phone { color: var(--dark2); font-weight: 600; font-size: 19px; text-decoration: none; }
.qm-phone:hover { color: var(--primary); }
.btn-primary-qm {
  background: url("../images/btn-bg.svg") no-repeat center center;
  background-size: cover;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 18px;
  font-weight: 400;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .15s;
  border: 1px solid #ffffff29;
  text-transform: uppercase;
}
.btn-primary-qm:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

.qm-hero {
  padding:69px 0 94px;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.qm-hero::before {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  padding: 0;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--primary); border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.qm-hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.qm-hero h1 em { font-style: normal; color: var(--primary); }
.qm-hero p.lead {
  font-size: 25px; color: var(--body-text);
  max-width: 560px; margin-bottom: 28px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 19px;
  font-weight: 300;
  color: var(--dark2);
}
.hero-pill i { color: #22c55e; font-size: .9rem; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-hero {
  background: url("../images/btn-bg.svg") no-repeat center center;
  background-size: cover;
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 14px 68px;
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .15s;
  border: 1px solid #ffffff29;
}
.btn-hero:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.35); }
.btn-hero.stroke-btn { background: transparent; }
.hero-note { font-size: .82rem; color: var(--muted); font-weight: 500; }

.stat-item { text-align: center; }
.stat-item .stat-num { font-size: 79px; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-item .stat-num span {
  color: var(--primary);
  font-size: 40px;
  margin-left: 6px;
}
.stat-item p { font-size: 18px; color: var(--muted); font-weight: 500; margin-top: 4px; }

.qm-brands {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0 29px 0;
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.brands-ticker-wrap { overflow: hidden; position: relative; }
.brands-ticker {
  display: flex; gap: 98px; align-items: center;
  animation: ticker 30s linear infinite;
  width: max-content;
  will-change: transform;
}
.brands-ticker:hover { animation-play-state: paused; }
@keyframes ticker { 
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
.brand-item {
  max-width: 122px;
  width: 100%;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--body-text);
  transition: all .2s;
  opacity: 0.7;
}
.brand-item:hover{
  opacity: 1;
}
.brand-item img { width: 100%; }
.brand-item i { color: var(--primary); font-size: 1rem; }

section { padding: 80px 0; }
.section-label {
  font-size: 20px; font-weight: 700; color: var(--primary);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.025em;
  line-height: 1.2;
}
.section-sub {
  font-size: 20px; color: var(--body-text); margin-top: 12px;
}

.models-section { background: var(--gradient-dark); padding: 90px 0 100px; }
.benefits-section { background: var(--gradient-dark); padding: 90px 0 100px; }
.compare-section { background: var(--gradient-dark); padding: 90px 0 100px; }
.page-section { background: var(--gradient-dark); padding: 90px 0 100px; }
.page-section + .page-section { border-top: 1px solid var(--border-light); }

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-heading span { color: var(--primary); }
.section-subtext {
  color: var(--body-text);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at top left, rgba(249,115,22,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow-md), 0 0 30px rgba(249,115,22,0.08);
}
.benefit-card:hover::before { opacity: 1; }

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover .icon-box {
  background: rgba(249,115,22,0.18);
  border-color: rgba(249,115,22,0.45);
}
.icon-box i { font-size: 1.3rem; color: var(--primary-light); }

.card-title-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.card-desc {
  font-size: 0.93rem;
  color: var(--body-text);
  line-height: 1.75;
  font-weight: 400;
}

.model-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 34px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.model-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-risk { border-color: rgba(239, 68, 68, 0.35); }
.card-risk::before { background: radial-gradient(ellipse at top left, rgba(239,68,68,0.06) 0%, transparent 65%); }
.card-risk:hover::before { opacity: 1; }
.card-risk:hover { border-color: rgba(239, 68, 68, 0.55); }
.card-slow { border-color: rgba(245, 158, 11, 0.30); }
.card-slow::before { background: radial-gradient(ellipse at top left, rgba(245,158,11,0.06) 0%, transparent 65%); }
.card-slow:hover::before { opacity: 1; }
.card-slow:hover { border-color: rgba(245, 158, 11, 0.5); }
.card-best {
  border-color: var(--primary-dark);
  background: linear-gradient(160deg, #141008 0%, #0a0a0a 100%);
  box-shadow: 0 0 0 1px var(--primary-dark), var(--shadow-glow);
}
.card-best::before {
  background: radial-gradient(ellipse at top right, rgba(251,133,0,0.10) 0%, transparent 65%);
  opacity: 1;
}
.card-best:hover {
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-glow), var(--shadow-md);
  border-color: var(--primary);
}

.model-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.badge-risk {
  background: rgba(239, 68, 68, 0.14);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.28);
}
.badge-slow {
  background: rgba(245, 158, 11, 0.13);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.28);
}
.badge-best {
  background: rgba(249, 115, 22, 0.14);
  color: var(--primary-light);
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.model-title {
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.card-best .model-title { color: var(--primary-light); }
.model-subtitle {
  font-size: 0.82rem;
  color: var(--body-text);
  font-weight: 500;
  margin-bottom: 16px;
  opacity: 0.7;
}
.model-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 16px 0;
}
.model-desc {
  font-size: 0.97rem;
  color: var(--body-text);
  line-height: 1.75;
  font-weight: 400;
}
.brand-item.partner {
    max-width: 74px;
}
.table-wrapper {
  border-radius: var(--radius-lg);
  overflow: auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  font-size: 0.88rem;
}
.compare-table thead tr {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dark2);
  letter-spacing: 0.01em;
  border-right: 1px solid var(--border-light);
  vertical-align: middle;
}
.compare-table thead th:last-child { border-right: none; }
.th-highlight {
  background: linear-gradient(160deg, #1a1100 0%, #120d00 100%);
  border-top: 2px solid var(--primary-dark) !important;
  color: var(--primary-light) !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.18s ease;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--surface-hover); }
.compare-table td {
  padding: 16px 20px;
  vertical-align: middle;
  border-right: 1px solid var(--border-light);
  color: var(--body-text);
  font-weight: 400;
  line-height: 1.5;
}
.compare-table td:last-child { border-right: none; }
.td-feature {
  font-weight: 700;
  color: var(--dark2);
  font-size: 0.84rem;
  width: 17%;
}
.td-highlight {
  background: linear-gradient(160deg, rgba(26,17,0,0.6) 0%, rgba(18,13,0,0.4) 100%);
  color: var(--dark) !important;
  font-weight: 600 !important;
  width: 22%;
}
.check-icon {
  color: var(--primary);
  margin-right: 6px;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.td-highlight-inner {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.text-warn { color: var(--primary); font-weight: 500; }
.text-muted-cell { color: var(--body-text); }
.compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.018); }
.compare-table tbody tr:nth-child(even):hover { background: var(--surface-hover); }
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px 32px;
  height: 100%;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at top center, rgba(249,115,22,0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,0.35);
  box-shadow: var(--shadow-md);
}
.why-card:hover::before { opacity: 1; }
.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.25s, border-color 0.25s;
}
.why-card:hover .why-icon-box {
  background: rgba(249,115,22,0.2);
  border-color: rgba(249,115,22,0.45);
}
.why-icon-box i { font-size: 1.35rem; color: var(--primary-light); }
.why-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card-desc {
  font-size: 0.84rem;
  color: var(--body-text);
  line-height: 1.7;
}

.position-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 32px 36px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.position-card:hover {
  border-color: rgba(249,115,22,0.35);
  box-shadow: var(--shadow-md);
}
.position-title {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--body-text);
  font-weight: 500;
}
.meta-item i { color: var(--primary-light); font-size: 0.85rem; }
.position-desc {
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.position-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.position-list li {
  font-size: 20px;
  color: var(--body-text);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.position-list li::before {
  content: '✓';
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-apply {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.btn-apply:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 20px rgba(249,115,22,0.35);
  transform: translateY(-1px);
  color: #fff;
}

.cta-card {
    background: radial-gradient(50% 65% at 50% 0, #ff7a185e 0%, #111111 100%);
    border-radius: var(--radius-lg);
    padding: 50px 32px;
    text-align: center;
    max-width: 718px;
    margin: 0 auto;
}
.cta-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cta-icon i { font-size: 1.5rem; color: var(--primary-light); }
.cta-title {
  font-size: 50px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.cta-desc {
  font-size: 20px;
  color: var(--body-text);
  line-height: 1.75;
  margin: 0 auto;
}
.cta-desc a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.cta-desc a:hover { text-decoration: underline; }

.value-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px 30px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.3);
}
.value-title {
  font-size: 23px;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 10px;
}
.value-desc {
  font-size: 20px;
  color: var(--body-text);
  line-height: 1.65;
}

.qm-card-dark {
  background: rgb(0 0 0 / 5%);
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}
.qm-card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.card-icon-dark {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 5px;
}
.qm-card-dark h5 {
  color: white;
  margin: 0 0 5px 0;
  font-size: 22px;
  font-weight: 600;
}
.qm-card-dark p {
  margin: 0;
  font-size: 19px;
}

.blog-filters {
  background: var(--card-bg);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.filter-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.btn-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dark2);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-filter:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-filter.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.blog-posts-section {
  padding: 60px 0;
  background: var(--white);
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.category-tag {
  display: flex;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  width: 100%;
  background: radial-gradient(50% 65% at 50% 0, #fffdfd 0%, #ff7a18 100%);
  height: 152px;
  align-items: center;
  justify-content: center;
}
.blog-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}
.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-meta i { color: var(--primary); }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: var(--surface);
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
}
td {
  color: var(--dark2);
  font-size: 15px;
}
tr:last-child td { border-bottom: none; }
tr:hover { background: var(--surface-hover); }
.table-responsive {
  overflow-x: auto;
  border-radius: 12px;
}

.faq-section {
  margin-bottom: 40px;
}
.faq-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.qm-faq .accordion-item {
  margin-bottom: 15px;
  border: none;
  background: transparent;
}
.qm-faq .accordion-header {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.qm-faq .accordion-button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dark2);
  padding: 20px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  width: 100%;
  transition: all 0.3s ease;
}
.qm-faq .accordion-button:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--dark);
}
.qm-faq .accordion-button:not(.collapsed) {
  border-color: var(--primary);
  color: white;
}
.qm-faq .accordion-body {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark2);
}

.qm-integration-features {
  padding: 80px 0;
  background: var(--white);
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 28px;
}
.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 0;
}

.qm-comparison {
  padding: 80px 0;
  background: var(--white);
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table th {
  background: var(--dark);
  color: white;
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: none;
}
.comparison-table th:first-child {
  text-align: left;
  background: var(--primary);
}
.feature-column { width: 25%; }
.renoleadz-column {
  width: 25%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
}
.competition-column { width: 25%; }
.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 15px;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) { background: var(--surface); }
.feature-name {
  font-weight: 700;
  color: var(--dark);
  background: var(--card-bg);
}
.renoleadz-cell {
  text-align: center;
  background: var(--card-bg);
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}
.competition-cell {
  text-align: center;
  background: var(--card-bg);
}
.comparison-table i {
  margin-right: 8px;
  font-size: 18px;
}
.comparison-table span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.4;
}
.text-success { color: #28a745 !important; }
.text-danger { color: #dc3545 !important; }

.qm-leads { background: var(--surface); }
.lead-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 6px;
  margin-top: 36px;
}
.lead-card {
  background: radial-gradient(#fe7d181c, transparent);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 66px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark2);
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.small-text { font-size: 43px; display: block; }
.qm-hero.partners-section.about-hero { padding: 75px 0; }
p.her-text { font-size: 22px; }
.lead-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(249,115,22,.2);
  transform: translateY(-3px);
  color: var(--primary);
  background: var(--surface-hover);
}
.lead-card .lc-icon {
  color: var(--primary);
  font-size: 3rem;
  flex-shrink: 0;
  background: radial-gradient(#373333, transparent);
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  border: 1px solid #d7d2d212;
}
.lead-card .lead-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
}
.lead-card .lead-desc {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
}
.lead-card .popular-badge {
  position: absolute;
  top: 13px;
  left: -27px;
  background: var(--primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 25px;
  border-radius: 0;
  letter-spacing: .05em;
  text-transform: uppercase;
  rotate: -36deg;
}

.why-grid { margin-top: 48px; }
.why-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 17px;
  height: 100%;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.why-card p {
  font-size: 18px;
  color: var(--body-text);
  margin-top: 18px;
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
  background: var(--surface-hover);
}
.why-card .wc-icon {
  width: 64px;
  height: 64px;
  border-radius: 11px;
  background: #fbbf242b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2.2rem;
  margin: 0 auto 12px;  
}
.why-card h4 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }

.qm-how {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.step-card {
  background: linear-gradient(135deg, var(--card-bg), var(--surface-hover));
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 40px 30px;
  position: relative;
  height: 100%;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.step-card:hover {
  box-shadow: 0 20px 60px rgba(249,115,22,0.3);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--surface-hover), var(--card-bg));
}
.step-card:hover::before { transform: scaleX(1); }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
  position: relative;
  overflow: hidden;
}
.step-num::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}
.step-card:hover .step-num::before { animation: shine 0.6s ease-in-out; }
@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}
.step-icon {
  width: 80px; height: 80px; border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-glow), rgba(249,115,22,0.05));
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 25px;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
}
.step-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(249,115,22,0.3);
}
.step-card:hover .step-icon::after { opacity: 1; }
.verifyimg img { width: 100%; }
.verifyimg { max-width: 152px; margin:0 auto 4px; }
.step-card h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}
.step-card p {
  font-size: 20px;
  color: var(--body-text);
  margin-bottom: 25px;
  line-height: 1.6;
}
.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.step-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--dark2);
  margin-bottom: 14px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.step-features li:last-child { margin-bottom: 0; }
.step-features li:hover {
  background: rgba(249,115,22,0.1);
  transform: translateX(5px);
}
.step-features li i {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(249,115,22,0.3));
  transition: all 0.3s ease;
}
.step-features li:hover i {
  transform: scale(1.2) rotate(10deg);
}
.step-connector {
  position: absolute;
  top: 88px;
  left: 43px;
  z-index: 10;
  width: 50px;
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.step-connector i {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-left: 2px;
}
.step-card:hover + .step-connector {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 8px 24px rgba(249,115,22,0.6);
}

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .5s ease forwards;
}
.step:last-child { border-bottom: 1px solid var(--gray-200); }
.step:nth-child(1) { animation-delay: .1s; }
.step:nth-child(2) { animation-delay: .22s; }
.step:nth-child(3) { animation-delay: .34s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 2px;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.step:hover .step-icon { transform: scale(1.07); }
.step-1 .step-icon { background: var(--purple-50); }
.step-2 .step-icon { background: var(--teal-50); }
.step-3 .step-icon { background: var(--amber-50); }
.step-icon svg { width: 24px; height: 24px; }
.step-1 .step-icon svg { color: var(--purple-600); }
.step-2 .step-icon svg { color: var(--teal-600); }
.step-3 .step-icon svg { color: var(--amber-600); }
.step-connector {
  width: 1px;
  flex: 1;
  min-height: 70px;
  background: var(--accent);
}
.step:last-child .step-connector { display: none; }
.step-right { padding-bottom: .5rem; }
.step-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .65rem;
}
.step-badge {
  font-size: 26px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
}
.step-1 .step-badge { background: var(--purple-50); color: var(--purple-800); }
.step-2 .step-badge { background: var(--teal-50); color: var(--teal-800); }
.step-3 .step-badge { background: var(--amber-50); color: var(--amber-800); }
.step-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .45rem;
  letter-spacing: -.01em;
}
.step-desc {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.1rem;
}
.step-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 4px 10px;
  transition: border-color .2s, color .2s;
}
.step:hover .feat { border-color: var(--gray-200); }
.feat i {
  font-size: 14px;
  flex-shrink: 0;
}
.step-1 .feat i { color: x }
.step-2 .feat i { color: var(--teal-600); }
.step-3 .feat i { color: var(--amber-600); }

@keyframes pulse-arrow {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 4px 16px rgba(249,115,22,0.4);
  }
  50% {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(249,115,22,0.6);
  }
}

.qm-comparison {
  background: var(--surface);
  padding: 80px 0;
}
.comparison-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.6);
}
.comparison-card.quote-magnet { border-color: #0fe34a3b; }
.comparison-card.traditional { border-color: #ef44444d; }
.comparison-card .card-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comparison-card .card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}
.comparison-card.quote-magnet .card-title { color: var(--success); }
.comparison-card.traditional .card-title { color: var(--error); }
.card-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-badge.positive {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}
.card-badge.negative {
  background: rgba(239, 68, 68, 0.2);
  color: var(--error);
}
.comparison-card .card-body { padding: 25px; }
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--dark2);
  margin-bottom: 16px;
  line-height: 1.5;
}
.comparison-list li:last-child { margin-bottom: 0; }
.comparison-list li i { font-size: 18px; flex-shrink: 0; }
.comparison-card.quote-magnet .comparison-list li i { color: var(--success); }
.comparison-card.traditional .comparison-list li i { color: var(--error); }

.qm-mission { padding: 60px 0; }
.mission-icon {
  max-width: 233px;
  margin: -102px auto 20px;
}
.mission-icon img { width: 100%; }
.mission-card {
  background: radial-gradient(#ff7a1840, transparent);
  border-radius: 50px;
  border: 1.5px solid #ff7a182e;
  padding: 35px 32px;
  margin-top: 40px;
  text-align: center;
  max-width: 926px;
  margin: 0 auto 0;
}
.mission-card h3 {
  font-size: 50px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.mission-card p {
  font-size: 35px;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.team-section {
  padding: 80px 0;
  background: var(--surface);
}
.team-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  border-color: var(--primary);
}
.team-member-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
}
.team-card:hover .team-member-img {
  border-color: var(--primary);
  transform: scale(1.05);
}
.team-member-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.team-member-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.team-member-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fbbf2429;
  color: var(--primary);
  font-size: 1.15rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-item h5 { font-size: 25px; font-weight: 700; margin-bottom: 4px; }
.benefit-item p { font-size: 20px; color: var(--body-text); }

.qm-testimonials { background: var(--section-bg); }
.qm-testimonials .section-title { color: var(--dark); }
.qm-testimonials .section-label { color: var(--primary); }
.qm-testimonials .qm-testimonials { background: var(--section-bg); }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  height: 100%; display: flex; flex-direction: column;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.testi-card:hover {
  border-color: #ff7a1847;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249,115,22,.15);
  background: var(--surface-hover);
}
.testi-stars { color: #fbbf24; font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 24px; color: var(--body-text); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: .85rem; flex-shrink: 0;
}
.testi-name { font-size: 20px; font-weight: 700; color: var(--dark); }
.testi-company { font-size: 18px; color: var(--muted); }
.watch-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .75rem; font-weight: 700; color: var(--primary);
  text-decoration: none; margin-top: 6px; transition: gap .15s;
}
.watch-btn:hover { gap: 8px; color: #fb923c; }

.qm-pricing { background: var(--surface); }
.pricing-note {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 20px; color: var(--muted);
  font-weight: 500; margin-bottom: 40px;
}
.pricing-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  height: 100%; display: flex; flex-direction: column;
  transition: all .2s; position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.pricing-card.popular {
  border-color: #ff7a1840;
  box-shadow: 0 8px 40px rgb(22 239 249 / 18%);
  transform: scale(1.02);
}
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 800; padding: 4px 16px;
  border-radius: 999px; white-space: nowrap;
  letter-spacing: .06em; text-transform: uppercase;
}
.pricing-card h3 { font-size: 37px; font-weight: 800; margin-bottom: 6px; }
.pricing-card h3 span {
    color: var(--primary);
    font-size: 20px;
}
span.pricing_monthly {
    color: var(--primary) !important;
}
.pricing-card .plan-desc { font-size: 20px; color: var(--muted); margin-bottom: 16px; }
.pricing-range {
  font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1;
}
.pricing-range span { font-size: 20px; color: var(--muted); font-weight: 500; }
.pricing-divider { border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 24px; flex: 1; }
.pricing-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 20px; color: var(--dark2); padding: 5px 0;
}
.qm-logo img, .footer-logo img { width: 100%; }
.price {
  font-size: 35px;
  font-weight: 800;
  color: var(--accent);
}
.price span {
  font-size: 19px;
  position: relative;
  top: 7px;
  color: white;
  font-weight: 300;
}
.qm-story p { font-size: 20px; }
.pricing-features li i { color: #22c55e; font-size: .9rem; flex-shrink: 0; }
.btn-pricing {
  width: 100%; padding: 12px; border-radius: 10px;
  font-weight: 700; font-size: .95rem;
  text-align: center; text-decoration: none; display: block;
  transition: all .15s;
}
.btn-pricing-outline {
  border: 1.5px solid var(--primary); color: var(--primary); background: transparent;
}
.btn-pricing-fill { background: var(--primary); color: #fff; border: none; }
.btn-pricing-fill:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249,115,22,.3); }
.pricing-guarantee {
  background: radial-gradient(#ff7a1840, transparent);
  border-radius: 61px;
  border: 1.5px solid #ff7a182e;
  padding: 70px 32px;
  margin-top: 40px;
  text-align: center;
  max-width: 1076px;
  margin: 50px auto 0;
}
.partners-section { background: radial-gradient(#18d4ff24, #111111); }
.pricing-guarantee h5 { font-size: 62px; font-weight: 800; margin-bottom: 8px; }
.pricing-guarantee p { font-size: 20px; color: var(--body-text); }
.guarantee-pills {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 16px;
}
.g-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark2);
}
.g-pill i { color: var(--primary); }

.qm-faq { background: var(--surface); }
.faq-accordion .accordion-item {
  border: 1.5px solid var(--border); border-radius: var(--radius) !important;
  margin-bottom: 10px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  background: transparent !important;
}
.faq-accordion .accordion-button {
  font-weight: 700; font-size: 24px; color: var(--dark);
  background: var(--card-bg); padding: 18px 22px;
  border-radius: var(--radius) !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: contrast(0.1);
  opacity: 1;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(54%) sepia(95%) saturate(469%) hue-rotate(345deg) brightness(102%) contrast(96%);
}
.faq-accordion .accordion-body {
  font-size: 20px; color: var(--body-text); padding: 0 22px 18px;
  background: var(--card-bg); line-height: 1.7;
  border: none;
}

.qm-cta-bottom {
  background: var(--gradient-surface);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.qm-cta-bottom::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
}
.qm-cta-bottom h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.qm-cta-bottom p { color: var(--body-text); font-size: 20px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

.qm-footer {
  background: var(--section-bg);
  padding: 60px 0 30px;
}
.footer-logo { font-weight: 800; font-size: 1.15rem; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: .95rem;
}
.footer-tagline { font-size: 20px; color: var(--muted); margin-top: 10px; max-width: 260px; line-height: 1.6; }
.footer-col h6 { font-size: 20px; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 18px; color: var(--muted); opacity: 0.8; text-decoration: none; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--primary); }
.footer-divider { border-top: 1px solid var(--border); margin: 32px 0 20px; }
.footer-cities {
  padding: 20px 0;
  background: var(--section-bg);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.city-column h6 {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.city-column h6 a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.city-column h6 a:hover { color: var(--primary); }
.city-column h6:not(:last-child) { margin-bottom: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 18px; color: var(--muted); margin: 0; }
.footer-bottom a { color: var(--muted); text-decoration: none; font-size: 18px; }
.footer-bottom a:hover { color: var(--primary); }
@media (max-width: 1379px) {
  .qm-nav-links a {
    font-size: 14px;
    padding: 6px 8px;
  }
  .qm-logo, .footer-logo {
    max-width: 125px;
}
.qm-phone {
    font-size: 15px;
}
.btn-primary-qm {
    font-size: 15px;
}
.qm-hero h1 {
    font-size: 54px;
}
}
@media (max-width: 1199px) {
  .qm-navbar .container { max-width: 1124px; }
  .step-connector { height: 254px; }
  .qm-nav-links a { padding: 6px 8px; }
  .qm-hero h1 { font-size: 52px; }
  .btn-hero { padding: 10px 26px; }
  .qm-hero { padding: 40px 0 65px; }
  .stat-item .stat-num { font-size: 42px; }
  .section-title { font-size: 41px; }
  .stat-item p { font-size: 15px; margin-top: 13px; }
  .pricing-guarantee h5 { font-size: 42px; }
}

@media (max-width: 991px) {
  .mobile-menu-toggle { display: flex; }
  .qm-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  .qm-nav-links.active { display: flex; }
  .qm-nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
  }
  .dropdown {
    position: relative;
  }
  .dropdown-toggle {
    width: 100%;
    text-align: left;
    justify-content: space-between;
    display: flex;
    align-items: center;
    position: relative;
  }
  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }
  .dropdown-toggle[aria-expanded="true"]::after,
  .dropdown-menu.show + .dropdown-toggle::after,
  .dropdown-toggle.active::after {
    transform: rotate(180deg);
  }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: 1px solid var(--border) !important;
    background: var(--surface) !important;
    margin: 8px 0 0 0 !important;
    border-radius: var(--radius-sm) !important;
    display: none !important;
    width: 100% !important;
    min-width: unset !important;
  }
  .dropdown-menu.show {
    display: block !important;
  }
  .dropdown-item {
    padding: 10px 16px !important;
    color: var(--dark2) !important;
    font-size: 0.9rem !important;
    border-bottom: 1px solid var(--border-light);
  }
  .dropdown-item:last-child {
    border-bottom: none;
  }
  .dropdown-item:hover {
    background: var(--primary) !important;
    color: white !important;
  }
  .step-connector { display: none; }
  .pricing-card.popular { transform: scale(1); }
}

@media (max-width: 767px) {
  section { padding: 56px 0; }
  .qm-hero { padding: 52px 0 44px; }
  .qm-hero h1 { font-size: 2rem; }
  .qm-cta-bottom { padding: 56px 0; }
  .hero-badge { border:0; padding: 0; }
  .footer-tagline { max-width: 100%; }
  .step-left { align-items: flex-start; }
  .step { grid-template-columns: 1fr; gap: 0; }
  .btn-hero { padding: 5px 24px; font-weight: 300; }
  .stat-item .stat-num { font-size: 35px; }
  .section-title { font-size: 28px; }
  .why-grid { margin-top: 0; }
  .row.align-items-start.mb-5 { margin: 0 !important; }
  .row.g-4.justify-content-center { gap: 0 !important; --bs-gutter-y: 8px; }
  .btn-pricing-outline, .btn-pricing {
    border: 1px solid var(--primary);
    font-size: 14px;
    font-weight: 400;
    padding: 9px;
  }
  .qm-section h2 {
    font-size: 34px !important;
}
p, li, a, button, .faq-accordion .accordion-body{
  font-size: 17px !important;
}
.small-text {
    font-size: 31px;
}
.stat-item .stat-num span {
    font-size: 24px;
}
  .pricing-guarantee h5 { font-size: 24px; }
  .qm-nav-cta { gap: 0; }
  .btn-primary-qm { padding: 5px 9px; font-size: 14px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .city-column h6 { font-size: 16px; }
  .step-card { padding: 30px 20px; }
  .step-card h4 { font-size: 22px; }
  .step-card p { font-size: 18px; }
  .step-features li { font-size: 16px; }
  .step-icon { width: 60px; height: 60px; font-size: 1.5rem; }
  .step-num { width: 40px; height: 40px; font-size: 1rem; }
  .mission-card { padding: 40px 30px; }
  .mission-card h3 { font-size: 28px; }
  .mission-card p { font-size: 20px; }
  .mission-icon { width: 70px; height: 70px; margin-bottom: 20px; }
  .team-section { padding: 60px 0; }
  .qm-logo, .footer-logo { max-width: 123px; }
  .hero-cta-row { margin-bottom: 22px; }
  .brands-label { font-size: 15px; }
  .testi-quote { font-size: 20px !important; }
  .testi-company, .testi-name { font-size: 16px !important; }
  .team-card { padding: 30px 20px; }
  .team-member-img { width: 100px; height: 100px; }
  .team-member-name { font-size: 20px; }
}



/* modal css ============== */
/* ── TRIGGER BUTTON ──────────────────────────── */
    .custom_modal__trigger {
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 14px 32px;
      border-radius: var(--radius-sm);
      background: var(--gradient-primary);
      color: #fff;
      border: none;
      box-shadow: var(--shadow-glow);
      cursor: pointer;
      transition: transform .15s, box-shadow .15s, filter .15s;
    }
    .custom_modal__trigger:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 56px rgba(249,115,22,.5);
      filter: brightness(1.08);
      color: #fff;
    }

    /* ── MODAL OVERLAY ───────────────────────────── */
    .custom_modal .modal-dialog {
      max-width: 560px;
    }
    .custom_modal .modal-content {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg) !important;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: relative;
    }
    /* orange top stripe */
    .custom_modal .modal-content::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gradient-primary);
      z-index: 1;
    }

    /* ── HEADER ──────────────────────────────────── */
    .custom_modal .modal-header {
      background: transparent;
      border-bottom: 1px solid var(--border);
      padding: 26px 28px 20px;
    }
    .custom_modal__icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: var(--primary-glow);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--primary);
      flex-shrink: 0;
    }
    .custom_modal__title {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -.02em;
      line-height: 1.2;
      margin-bottom: 3px;
    }
    .custom_modal__title em {
      font-style: normal;
      color: var(--primary);
    }
    .custom_modal__subtitle {
      font-size: 12.5px;
      color: var(--body-text);
      margin: 0;
      line-height: 1.5;
    }
    .custom_modal .btn-close {
      filter: invert(1);
      opacity: .35;
    }
    .custom_modal .btn-close:hover { opacity: .9; }

    /* ── BODY ────────────────────────────────────── */
    .custom_modal .modal-body {
      padding: 24px 28px;
      background: var(--card-bg);
    }

    /* trust badges */
    .custom_modal__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }
    .custom_modal__badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--body-text);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 4px 12px;
    }
    .custom_modal__badge i { color: var(--success); font-size: 12px; }

    /* inputs */
    .custom_modal__input {
      background: var(--surface) !important;
      border: 1px solid var(--border) !important;
      border-radius: var(--radius-sm) !important;
      padding: 11px 14px !important;
      font-family: var(--font) !important;
      font-size: 13.5px !important;
      color: var(--dark) !important;
      transition: border-color .2s, box-shadow .2s;
    }
    .custom_modal__input::placeholder { color: var(--body-text) !important; }
    .custom_modal__input:focus {
      border-color: var(--primary) !important;
      box-shadow: 0 0 0 3px var(--accent-glow) !important;
      outline: none !important;
    }
    .custom_modal__textarea { min-height: 90px; resize: none; }

    /* checkbox */
    .custom_modal__privacy {
      font-size: 12px;
      color: var(--body-text);
    }
    .custom_modal__privacy a { color: var(--primary); text-decoration: none; }
    .custom_modal__privacy a:hover { text-decoration: underline; }
    .form-check-input:checked {
      background-color: var(--primary) !important;
      border-color: var(--primary) !important;
    }
    .form-check-input {
      background-color: var(--surface) !important;
      border-color: var(--border) !important;
    }

    /* ── FOOTER ──────────────────────────────────── */
    .custom_modal .modal-footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 20px 28px;
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
    .custom_modal__submit {
      width: 100%;
      background: var(--gradient-primary);
      color: #fff;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 14px;
      border: none;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-glow);
      cursor: pointer;
      transition: transform .15s, box-shadow .15s, filter .15s;
    }
    .custom_modal__submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 56px rgba(249,115,22,.5);
      filter: brightness(1.08);
      color: #fff;
    }
    .custom_modal__footer-note {
      font-size: 11.5px;
      color: var(--body-text);
      text-align: center;
      margin: 0;
    }
    .custom_modal__footer-note i { color: var(--success); margin-right: 4px; }

    .hero-pills + .hero-cta-row a.btn-hero:first-child {
        background: var(--primary);
    }

    a.Whatsapp_btn {
        display: flex;
        gap: 15px;
    }

    p.pricing_fits_btn {
    margin: 50px 0 0 !important;
}
p.pricing_fits_btn a {
    color: #2563EB;
}

.need_help_form .iti--allow-dropdown {
    position: relative;
}

.need_help_form .iti--allow-dropdown input {
    padding-left: 90px !important;
}

.need_help_form .iti--allow-dropdown .iti__flag-container {
    height: 100% !important;
}

/* privacy policy page */
.ctm_privacypage-container {
    max-width: 960px;
    margin: auto;
    padding: 0 12px;
}
.ctm_privacypage-container h2.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-top: 20px;
}
.ctm_privacypage-container h3.subheading {
    font-size: 26px;
    font-weight: 700;
    padding-left: 60px;
}
.ctm_privacypage-container p {
    padding-left: 55px;
}
.ctm_privacypage-container ul {
    padding-left: 80px;
}
.ctm_privacypage-sub_box {
    margin-bottom: 80px;
    text-align: center;
}

.ctm_privacypage-sub_box p {
    padding: 0;
}
.ctm_privacypage-container h4 {
    padding-left: 53px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width:600px){
  .ctm_privacypage-container p,
  .ctm_privacypage-container h4 {
    padding-left: 15px;
}
.ctm_privacypage-container ul {
    padding-left: 40px;
}
.ctm_privacypage-sub_box {
    margin-bottom: 40px;
}
}