/* =============================================================
   Scan It Up — QR Tag Page Templates  (qr-templates.css)
   Companion to missalert.css — uses the same CSS variables.
   All classes are prefixed qt- to avoid collisions.
   ============================================================= */

/* ─── Page wrapper: push content below fixed header ─── */
.qt-page { padding-top: 76px; }

/* ─────────────────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────────────────── */
.qt-breadcrumb {
  padding: 94px 0 18px;
  border-bottom: 1px solid var(--slate-100);
  background: var(--off-white);
}
.qt-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--slate-400);
}
.qt-breadcrumb-inner a {
  color: var(--slate-400);
  transition: color var(--t) var(--ease);
}
.qt-breadcrumb-inner a:hover { color: var(--cyan); }
.qt-breadcrumb-inner .sep { font-size: .65rem; }
.qt-breadcrumb-inner span { color: var(--text-dark); }

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.qt-hero {
  background: linear-gradient(145deg, var(--obsidian) 0%, var(--obsidian-3) 60%, #0f2240 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.qt-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(6,229,200,.12) 0%, transparent 70%);
  pointer-events: none;
}
.qt-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(247,183,49,.08) 0%, transparent 70%);
  pointer-events: none;
}
.qt-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.qt-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,229,200,.1);
  border: 1px solid rgba(6,229,200,.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.qt-hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.qt-hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.qt-hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.qt-hero-checks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}
.qt-hero-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}
.qt-hero-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.qt-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero image panel */
.qt-hero-image {
  position: relative;
}
.qt-hero-image-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(6,229,200,.12);
}
.qt-hero-image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.qt-hero-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 100px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.qt-hero-badge .badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .35; }
}

/* ─────────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────────── */
.qt-stats {
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  padding: 48px 0;
}
.qt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.qt-stat {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--slate-100);
}
.qt-stat:last-child { border-right: none; }
.qt-stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.qt-stat-number span { color: var(--cyan); }
.qt-stat-label {
  font-size: .88rem;
  color: var(--slate-400);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────── */
.qt-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.qt-steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: .3;
  pointer-events: none;
}
.qt-step {
  text-align: center;
  position: relative;
}
.qt-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--obsidian-3), var(--obsidian-4));
  border: 2px solid rgba(6,229,200,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}
.qt-step-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--obsidian);
  font-size: .65rem;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qt-step h4 {
  margin-bottom: 10px;
  color: var(--text-dark);
}
.qt-step p {
  font-size: .9rem;
  color: var(--slate-400);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────
   BENEFITS GRID
───────────────────────────────────────────────────── */
.qt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.qt-benefit-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.qt-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.qt-benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(6,229,200,.2);
}
.qt-benefit-card:hover::before { opacity: 1; }
.qt-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--obsidian-3), var(--obsidian-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  border: 1px solid rgba(6,229,200,.15);
}
.qt-benefit-card h4 { margin-bottom: 8px; }
.qt-benefit-card p { font-size: .9rem; color: var(--slate-400); }

/* ─────────────────────────────────────────────────────
   USE CASES CARDS
───────────────────────────────────────────────────── */
.qt-usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.qt-usecase-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t) var(--ease);
}
.qt-usecase-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(6,229,200,.22);
}
.qt-usecase-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qt-usecase-body h4 { margin-bottom: 7px; }
.qt-usecase-body p { font-size: .88rem; color: var(--slate-400); line-height: 1.65; }

/* ─────────────────────────────────────────────────────
   AFTER SCAN SECTION
───────────────────────────────────────────────────── */
.qt-after-scan {
  background: var(--obsidian);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.qt-after-scan::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(6,229,200,.06) 0%, transparent 65%);
  pointer-events: none;
}
.qt-after-scan .section-label {
  color: var(--cyan);
  background: rgba(6,229,200,.1);
  border-color: rgba(6,229,200,.22);
}
.qt-after-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.qt-after-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.qt-after-step:hover {
  background: rgba(6,229,200,.06);
  border-color: rgba(6,229,200,.2);
  transform: translateY(-4px);
}
.qt-after-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(6,229,200,.12);
  border: 1.5px solid rgba(6,229,200,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.qt-after-step h4 { color: var(--white); margin-bottom: 10px; }
.qt-after-step p  { color: rgba(255,255,255,.55); font-size: .9rem; }

/* ─────────────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────────────── */
.qt-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.qt-feature-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-bottom: 1px solid var(--slate-100);
  border-right: 1px solid var(--slate-100);
  transition: background var(--t) var(--ease);
}
.qt-feature-item:hover { background: var(--off-white); }
.qt-feature-item:nth-child(even) { border-right: none; }
.qt-feature-item:nth-last-child(-n+2) { border-bottom: none; }
.qt-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-xs);
  background: rgba(6,229,200,.08);
  border: 1px solid rgba(6,229,200,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.qt-feature-body h4 { font-size: .95rem; margin-bottom: 5px; }
.qt-feature-body p  { font-size: .85rem; color: var(--slate-400); line-height: 1.6; }

/* ─────────────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────────────── */
.qt-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qt-faq-item {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t) var(--ease);
}
.qt-faq-item.open {
  border-color: rgba(6,229,200,.25);
  box-shadow: 0 4px 24px rgba(6,229,200,.08);
}
.qt-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .97rem;
  color: var(--text-dark);
  transition: color var(--t) var(--ease);
}
.qt-faq-trigger:hover { color: var(--cyan); }
.qt-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: .8rem;
  flex-shrink: 0;
  transition: all var(--t) var(--ease);
}
.qt-faq-item.open .qt-faq-icon {
  background: var(--cyan);
  color: var(--obsidian);
  transform: rotate(45deg);
}
.qt-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.4,0,.2,1);
}
.qt-faq-body-inner {
  padding: 0 24px 22px;
  font-size: .92rem;
  color: var(--slate-400);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────── */
.qt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.qt-testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all var(--t) var(--ease);
  position: relative;
}
.qt-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--slate-100);
  line-height: 1;
}
.qt-testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.qt-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.qt-stars i { color: var(--gold); font-size: .9rem; }
.qt-testimonial-text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 22px;
}
.qt-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qt-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--obsidian-3), var(--obsidian-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.qt-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-dark);
}
.qt-author-loc {
  font-size: .8rem;
  color: var(--slate-400);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────
   RELATED USE CASES
───────────────────────────────────────────────────── */
.qt-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.qt-related-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all var(--t) var(--ease);
}
.qt-related-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
  color: var(--text-dark);
}
.qt-related-emoji {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.qt-related-card h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.qt-related-card p {
  font-size: .78rem;
  color: var(--slate-400);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────
   FINAL CTA BANNER
───────────────────────────────────────────────────── */
.qt-cta-banner {
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--obsidian-4) 50%, #0e2040 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.qt-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(6,229,200,.12) 0%, transparent 65%);
  pointer-events: none;
}
.qt-cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.qt-cta-banner p  {
  color: rgba(255,255,255,.65);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.qt-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.qt-trust-badges {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.qt-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.qt-trust-badge i { color: var(--cyan); }

/* ─────────────────────────────────────────────────────
   STICKY MOBILE CTA
───────────────────────────────────────────────────── */
.qt-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  padding: 12px 20px;
  box-shadow: 0 -4px 30px rgba(8,13,26,.14);
  border-top: 1px solid var(--slate-100);
}
.qt-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.qt-sticky-cta-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.qt-sticky-cta-sub {
  font-size: .75rem;
  color: var(--slate-400);
  font-weight: 400;
  font-family: var(--font-body);
}
.qt-sticky-cta .btn { white-space: nowrap; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────
   SECTION HELPER CLASSES
───────────────────────────────────────────────────── */
.qt-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.qt-section-header h2 { margin-bottom: 16px; }
.qt-section-header p  { color: var(--slate-400); font-size: 1.05rem; }
.qt-section-header.left { text-align: left; max-width: none; margin-bottom: 48px; }

.qt-gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────
   FADE-IN ANIMATION
───────────────────────────────────────────────────── */
.qt-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.qt-fade-in.visible {
  opacity: 1;
  transform: none;
}


/* ─────────────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 900px)
───────────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Hero */
  .qt-hero { padding: 80px 0 60px; }
  .qt-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .qt-hero-image { order: -1; }
  .qt-hero-image-card img { max-height: 340px; object-fit: cover; }
  .qt-hero-badge { position: static; transform: none; display: inline-flex; margin-top: 12px; }
  .qt-hero-content h1 { font-size: 2rem; }
  .qt-hero-desc { font-size: 1rem; }

  /* Stats — 2 col */
  .qt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .qt-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .qt-stat:last-child { border-bottom: none; }

  /* Steps — 2 col */
  .qt-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .qt-steps-grid::before { display: none; }

  /* Benefits — 2 col */
  .qt-benefits-grid { grid-template-columns: repeat(2, 1fr); }

  /* Use cases — 1 col */
  .qt-usecases-grid { grid-template-columns: 1fr; }

  /* After scan — 1 col */
  .qt-after-steps { grid-template-columns: 1fr; gap: 28px; }

  /* Features — 1 col */
  .qt-features-grid { grid-template-columns: 1fr; }
  .qt-feature-item { border-right: none; }

  /* Testimonials — 1 col */
  .qt-testimonials-grid { grid-template-columns: 1fr; }

  /* Related — 2 col */
  .qt-related-grid { grid-template-columns: repeat(2, 1fr); }

  /* Section header */
  .qt-section-header h2 { font-size: 1.6rem; }

  /* Breadcrumb */
  .qt-breadcrumb-inner { font-size: .8rem; }
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 600px)
───────────────────────────────────────────────────── */
@media (max-width: 600px) {

  /* Hero */
  .qt-hero { padding: 60px 0 50px; }
  .qt-hero-content h1 { font-size: 1.65rem; line-height: 1.25; }
  .qt-hero-desc { font-size: .95rem; }
  .qt-hero-label { font-size: .8rem; }
  .qt-hero-checks { gap: 10px; }
  .qt-hero-check { font-size: .88rem; }
  .qt-hero-cta { flex-direction: column; gap: 12px; }
  .qt-hero-cta .btn { width: 100%; justify-content: center; }
  .qt-hero-image-card img { max-height: 260px; }
  .qt-hero-badge { font-size: .75rem; padding: 6px 12px; }

  /* Stats — 2 col compact */
  .qt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .qt-stat { padding: 18px 12px; }
  .qt-stat-number { font-size: 1.8rem; }
  .qt-stat-label { font-size: .75rem; }

  /* Steps — 1 col */
  .qt-steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .qt-step { padding: 20px; }

  /* Benefits — 1 col */
  .qt-benefits-grid { grid-template-columns: 1fr; }
  .qt-benefit-card { padding: 20px; }

  /* Use cases */
  .qt-usecase-card { padding: 18px; }
  .qt-usecase-icon { font-size: 1.8rem; }

  /* After scan */
  .qt-after-steps { gap: 20px; }
  .qt-after-step { padding: 24px 20px; }
  .qt-after-step-icon { font-size: 2rem; }
  .qt-after-scan { padding: 56px 0; }

  /* Features */
  .qt-feature-item { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .qt-feature-item:last-child { border-bottom: none; }

  /* FAQ */
  .qt-faq-trigger { font-size: .88rem; padding: 16px 18px; }

  /* Testimonials */
  .qt-testimonial-card { padding: 20px; }

  /* Related — 2 col */
  .qt-related-grid { grid-template-columns: repeat(2, 1fr); }
  .qt-related-card { padding: 16px 12px; }
  .qt-related-emoji { font-size: 1.6rem; }
  .qt-related-card h5 { font-size: .85rem; }
  .qt-related-card p { font-size: .76rem; }

  /* CTA Banner */
  .qt-cta-banner { padding: 56px 0; }
  .qt-cta-banner h2 { font-size: 1.5rem; }
  .qt-cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .qt-cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .qt-trust-badges { gap: 8px; }
  .qt-trust-badge { font-size: .75rem; padding: 6px 10px; }

  /* Section headings */
  .qt-section-header h2 { font-size: 1.4rem; }
  .qt-section-header p { font-size: .9rem; }

  /* Breadcrumb */
  .qt-breadcrumb { padding: 86px 0 10px; }
  .qt-breadcrumb-inner { font-size: .75rem; flex-wrap: wrap; gap: 4px; }
  .qt-hero { padding: 60px 0 50px; }

  /* Sticky CTA */
  .qt-sticky-cta { display: flex; }
  .qt-sticky-cta-text { font-size: .85rem; }
  .qt-sticky-cta-sub { font-size: .72rem; }

  /* General section padding */
  .section { padding: 56px 0; }
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (≤ 380px)
───────────────────────────────────────────────────── */
@media (max-width: 380px) {
  .qt-hero-content h1 { font-size: 1.45rem; }
  .qt-stats-grid { grid-template-columns: 1fr 1fr; }
  .qt-stat-number { font-size: 1.6rem; }
  .qt-related-grid { grid-template-columns: 1fr; }
  .qt-cta-banner h2 { font-size: 1.25rem; }
}
