﻿@charset "UTF-8";

/* =========================================================
   Needy Cat Media - QR Generator Modern Page
   File: /assets/css/ncm-qr-generator-modern.css
   Purpose: dedicated styles for /qrcodes/central-qrcode-generator.php
   Dependencies: /assets/css/ncm-site-header.css only
========================================================= */

:root {
  --qr-bg: #020912;
  --qr-bg-2: #07111f;
  --qr-panel: rgba(248, 250, 252, 0.96);
  --qr-white: #ffffff;
  --qr-text: #0f172a;
  --qr-muted: #475569;
  --qr-muted-2: #64748b;
  --qr-light: #e5e7eb;
  --qr-purple: #9333ea;
  --qr-purple-2: #7c3aed;
  --qr-purple-soft: rgba(168, 85, 247, 0.16);
  --qr-blue: #2563eb;
  --qr-cyan: #0ea5e9;
  --qr-gold: #f59e0b;
  --qr-green: #16a34a;
  --qr-border: rgba(148, 163, 184, 0.24);
  --qr-border-light: rgba(255, 255, 255, 0.12);
  --qr-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

/* =========================================================
   Page Base
========================================================= */

.ncm-qr-tool-page,
.ncm-qr-tool-page * {
  box-sizing: border-box;
}

.ncm-qr-tool-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 85, 247, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 20%, rgba(14, 165, 233, 0.12), transparent 30rem),
    linear-gradient(180deg, #020912 0%, #020617 48%, #020912 100%);
  color: var(--qr-light);
  overflow-x: hidden;
}

.ncm-tool-modern-page {
  padding: 18px 16px 48px;
}

.ncm-studio-top,
.ncm-studio-workflow,
.ncm-studio-info,
.ncm-dark-studio,
.qr-benefits,
.qr-info,
.qr-faq {
  width: min(1520px, calc(100vw - 72px));
  margin-left: auto;
  margin-right: auto;
}

.ncm-studio-top {
  padding-top: 22px;
}

.ncm-dark-studio {
  margin-top: 18px;
  background: transparent;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* =========================================================
   Bootstrap-Free Compatibility For This Page Only
========================================================= */

.ncm-qr-tool-page .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ncm-qr-tool-page .row {
  display: grid;
  gap: 1.5rem;
}

.ncm-qr-tool-page .g-3 { gap: 1rem; }
.ncm-qr-tool-page .g-4 { gap: 1.5rem; }

.ncm-qr-tool-page .align-items-start { align-items: start; }
.ncm-qr-tool-page .align-items-center { align-items: center; }
.ncm-qr-tool-page .justify-content-between { justify-content: space-between; }
.ncm-qr-tool-page .justify-content-center { justify-content: center; }
.ncm-qr-tool-page .d-flex { display: flex; }
.ncm-qr-tool-page .d-block { display: block; }
.ncm-qr-tool-page .d-grid { display: grid; }
.ncm-qr-tool-page .flex-wrap { flex-wrap: wrap; }
.ncm-qr-tool-page .flex-grow-1 { flex-grow: 1; }
.ncm-qr-tool-page .gap-2 { gap: .5rem; }
.ncm-qr-tool-page .text-center { text-align: center; }
.ncm-qr-tool-page .position-sticky { position: sticky; top: 96px; }
.ncm-qr-tool-page .w-100 { width: 100%; }
.ncm-qr-tool-page .w-50 { width: 50%; }
.ncm-qr-tool-page .mb-0 { margin-bottom: 0; }
.ncm-qr-tool-page .mb-1 { margin-bottom: .25rem; }
.ncm-qr-tool-page .mb-2 { margin-bottom: .5rem; }
.ncm-qr-tool-page .mb-3 { margin-bottom: 1rem; }
.ncm-qr-tool-page .mb-4 { margin-bottom: 1.5rem; }
.ncm-qr-tool-page .mt-1 { margin-top: .25rem; }
.ncm-qr-tool-page .mt-2 { margin-top: .5rem; }
.ncm-qr-tool-page .mt-3 { margin-top: 1rem; }
.ncm-qr-tool-page .mt-4 { margin-top: 1.5rem; }
.ncm-qr-tool-page .my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.ncm-qr-tool-page .p-3 { padding: 1rem; }
.ncm-qr-tool-page .p-4 { padding: 1.5rem; }
.ncm-qr-tool-page .py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.ncm-qr-tool-page .rounded { border-radius: 14px; }
.ncm-qr-tool-page .border { border: 1px solid rgba(148, 163, 184, 0.30); }
.ncm-qr-tool-page .border-0 { border: 0; }
.ncm-qr-tool-page .bg-white { background: #ffffff; }
.ncm-qr-tool-page .bg-light { background: #f8fafc; }
.ncm-qr-tool-page .text-muted { color: var(--qr-muted-2); }
.ncm-qr-tool-page .small { font-size: .875rem; }
.ncm-qr-tool-page .fw-bold { font-weight: 900; }
.ncm-qr-tool-page .fw-semibold { font-weight: 800; }
.ncm-qr-tool-page .h5 { font-size: 1.15rem; line-height: 1.2; }
.ncm-qr-tool-page .img-fluid { max-width: 100%; height: auto; }
.ncm-qr-tool-page .shadow-sm { box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08); }

@media (min-width: 768px) {
  .ncm-qr-tool-page .row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .ncm-qr-tool-page .col-md-4 { grid-column: span 4; }
  .ncm-qr-tool-page .col-md-6 { grid-column: span 6; }
  .ncm-qr-tool-page .col-12 { grid-column: 1 / -1; }
  .ncm-qr-tool-page .p-md-4 { padding: 1.5rem; }
}

@media (min-width: 992px) {
  .ncm-qr-tool-page .col-lg-5 { grid-column: span 5; }
  .ncm-qr-tool-page .col-lg-7 { grid-column: span 7; }
}

/* =========================================================
   Buttons / Forms / Cards
========================================================= */

.ncm-qr-tool-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 42px;
  padding: .72rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}

.ncm-qr-tool-page .btn:hover,
.ncm-qr-tool-page .btn:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
}

.ncm-qr-tool-page .btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.ncm-qr-tool-page .btn-primary,
.ncm-qr-tool-page .btn-success {
  background: linear-gradient(135deg, var(--qr-purple), var(--qr-blue));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.ncm-qr-tool-page .btn-warning {
  background: var(--qr-gold);
  color: #111827;
}

.ncm-qr-tool-page .btn-outline-secondary,
.ncm-qr-tool-page .btn-outline-primary,
.ncm-qr-tool-page .btn-outline-light {
  background: transparent;
  color: inherit;
  border-color: rgba(148, 163, 184, 0.45);
}

.ncm-qr-tool-page .card {
  background: #ffffff;
  color: var(--qr-text);
  border-radius: 18px;
}

.ncm-qr-tool-page .card-body {
  padding: 1rem;
}

.ncm-qr-tool-page .form-label {
  display: inline-block;
  margin-bottom: .45rem;
  color: #1f2937;
  font-weight: 800;
}

.ncm-qr-tool-page .form-control,
.ncm-qr-tool-page .form-select {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: .72rem .85rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  outline: none;
}

.ncm-qr-tool-page textarea.form-control {
  min-height: 96px;
  resize: vertical;
}

.ncm-qr-tool-page .form-control:focus,
.ncm-qr-tool-page .form-select:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.16);
}

.ncm-qr-tool-page .form-control-color {
  padding: .35rem;
  height: 44px;
}

.ncm-qr-tool-page .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: .45rem;
  accent-color: #a855f7;
}

.ncm-qr-tool-page .form-text {
  color: var(--qr-muted-2);
  font-size: .86rem;
  margin-top: .25rem;
}

.ncm-qr-tool-page .badge,
.ncm-qr-tool-page .text-bg-secondary {
  display: inline-flex;
  align-items: center;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: #64748b;
  color: #ffffff;
  font-size: .75rem;
  font-weight: 900;
}

/* =========================================================
   Hero / Top Studio Area
========================================================= */

.ncm-studio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}

.ncm-studio-hero-card {
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  background: #0f172a;
}

.ncm-qr-hero-card {
  background:
    linear-gradient(90deg, rgba(18, 10, 42, .95) 0%, rgba(18, 10, 42, .76) 42%, rgba(18, 10, 42, .42) 100%),
    url('/images/webp/qr-code-central-banner.webp') center / cover no-repeat;
}

.ncm-studio-hero-overlay {
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.ncm-tool-eyebrow,
.ncm-section-kicker,
.ncm-start-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.ncm-tool-eyebrow::before,
.ncm-section-kicker::before,
.ncm-start-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #a855f7;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.9);
}

.ncm-studio-hero-card h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.055em;
}

.ncm-studio-hero-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.ncm-tool-hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ncm-tool-hero-actions .btn,
.ncm-studio-start-card .btn {
  border-radius: 10px;
  font-weight: 900;
  padding: 11px 16px;
}

.ncm-studio-trust-row {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  color: rgba(255, 255, 255, .9);
  font-size: .87rem;
  font-weight: 800;
}

/* Start card beside hero */
.ncm-studio-start-card {
  border: 1px solid rgba(168, 85, 247, .38);
  border-radius: 18px;
  background: rgba(15, 23, 42, .74);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  padding: 18px;
}

.ncm-start-steps {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
  display: grid;
  gap: 10px;
}

.ncm-start-steps li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .10);
}

.ncm-start-steps li > span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  background: #a855f7;
  color: #ffffff;
  font-weight: 900;
  font-size: .78rem;
}

.ncm-start-steps strong {
  display: block;
  color: #ffffff;
  font-size: .88rem;
  line-height: 1.15;
}

.ncm-start-steps small {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  line-height: 1.35;
  margin-top: 3px;
}

/* =========================================================
   Workflow / Intro Copy Panels
========================================================= */

.ncm-studio-panel {
  border-radius: 18px;
  border: 1px solid var(--qr-border-light);
  background: var(--qr-panel);
  color: var(--qr-text);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
  padding: clamp(18px, 3vw, 28px);
}

.ncm-studio-workflow,
.ncm-studio-info {
  margin-top: 18px;
}

.ncm-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ncm-panel-head h2,
.ncm-studio-copy-panel h2 {
  color: #020617;
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.ncm-panel-link {
  color: #7e22ce;
  font-weight: 900;
  font-size: .85rem;
  text-decoration: none;
  white-space: nowrap;
}

.ncm-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ncm-workflow-grid article {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border-radius: 14px;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, #fbf7ff 0%, #f8fafc 72%);
  border: 1px solid rgba(168, 85, 247, .20);
  border-left: 6px solid #a855f7;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .72),
    0 14px 30px rgba(15, 23, 42, .05);
}

.ncm-workflow-grid article::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -48px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(168, 85, 247, .13);
  pointer-events: none;
}

.ncm-workflow-grid article:nth-child(2) {
  background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 72%);
  border-left-color: #7c3aed;
}

.ncm-workflow-grid article:nth-child(2)::after {
  background: rgba(124, 58, 237, .13);
}

.ncm-workflow-grid article:nth-child(3) {
  background: linear-gradient(135deg, #ecfdf5 0%, #f8fafc 72%);
  border-color: rgba(34, 197, 94, .20);
  border-left-color: var(--qr-green);
}

.ncm-workflow-grid article:nth-child(3)::after {
  background: rgba(34, 197, 94, .12);
}

.ncm-workflow-grid article:nth-child(4) {
  background: linear-gradient(135deg, #fdf2f8 0%, #fff7ed 72%);
  border-color: rgba(217, 70, 239, .22);
  border-left-color: #d946ef;
}

.ncm-workflow-grid article:nth-child(4)::after {
  background: rgba(217, 70, 239, .14);
}

.ncm-workflow-grid article > span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  color: #7e22ce;
  border: 1px solid rgba(168, 85, 247, .24);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
  font-weight: 900;
  font-size: .95rem;
  margin-bottom: 12px;
}

.ncm-workflow-grid h3 {
  position: relative;
  z-index: 1;
  color: #020617;
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -.025em;
}

.ncm-workflow-grid p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--qr-muted);
  font-size: .9rem;
  line-height: 1.55;
}

.ncm-workflow-grid small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(148, 163, 184, .18);
  color: #6d28d9;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
  font-weight: 900;
  font-size: .75rem;
}

.ncm-studio-copy-panel p {
  margin: 14px 0 0;
  max-width: 920px;
  color: var(--qr-muted);
  line-height: 1.7;
}

.ncm-copy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.ncm-copy-grid div {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, .20);
  background: #ffffff;
}

.ncm-copy-grid strong,
.ncm-copy-grid span {
  display: block;
}

.ncm-copy-grid strong {
  color: #020617;
  font-weight: 900;
  margin-bottom: 4px;
}

.ncm-copy-grid span {
  color: var(--qr-muted-2);
  font-size: .84rem;
  line-height: 1.45;
}

/* =========================================================
   QR Generator Tool
========================================================= */

#qr-builder {
  scroll-margin-top: 110px;
}

.qr-tool {
  width: 100%;
  padding-top: 0 !important;
}

.qr-tool > .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.qr-hero {
  margin-bottom: 16px;
}

.qr-hero h2,
.qr-benefits-head h2,
.qr-info-head h2,
.qr-faq-head h2 {
  color: #ffffff;
  letter-spacing: -.035em;
}

.qr-hero-sub,
.qr-info-sub.text-light {
  color: rgba(255, 255, 255, .74) !important;
}

.qr-tool .card,
.qr-benefits-card,
.qr-info-card,
.qr-faq-card {
  border-radius: 18px;
  border: 1px solid var(--qr-border-light);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
  overflow: hidden;
}

.qr-tool .card {
  background: rgba(255, 255, 255, .96);
  color: var(--qr-text);
}

.qr-tool .nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.qr-tool .nav-link,
.ncm-qr-tool-page .nav-link {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .32);
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  font-weight: 850;
}

.qr-tool .nav-link.active,
.ncm-qr-tool-page .nav-link.active {
  background: linear-gradient(135deg, var(--qr-purple), var(--qr-blue));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(147, 51, 234, .18);
}

.ncm-qr-tool-page .tab-pane[hidden] {
  display: none !important;
}

/* Pro labels */
.pro-label-row {
  gap: 12px;
}

.pro-live-inline,
.qr-tool .pro-live-inline,
.ncm-modern-tool-page .pro-live-inline {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #86efac;
  background: #dcfce7;
  color: #14532d;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mini-upgrade-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, .35);
  background: rgba(245, 158, 11, .10);
  color: #b45309;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.mini-upgrade-link:hover {
  text-decoration: none;
  filter: brightness(1.03);
}

/* =========================================================
   Luggage Tag CTA From vCard
========================================================= */

.luggage-tag-cta {
  text-align: left;
}

.ltc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, .35);
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.ltc-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #ffffff;
  font-size: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .08);
}

.ltc-copy {
  flex: 1;
  min-width: 0;
}

.ltc-copy strong {
  display: block;
  color: #111827;
  font-size: .98rem;
  line-height: 1.2;
}

.ltc-copy span {
  display: block;
  color: #4b5563;
  font-size: .82rem;
  line-height: 1.3;
  margin-top: 3px;
}

.ltc-btn {
  white-space: nowrap;
  font-weight: 800;
}

/* =========================================================
   Benefits / Info / FAQ Content Sections
========================================================= */

.qr-benefits,
.qr-info,
.qr-faq {
  margin-top: 18px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent;
}

.qr-benefits > .container,
.qr-info > .container,
.qr-faq > .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.qr-benefits-head,
.qr-info-head,
.qr-faq-head {
  max-width: 860px;
  margin: 0 auto 16px;
  text-align: center;
}

.qr-benefits-head h2,
.qr-info-head h2,
.qr-faq-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.08;
  font-weight: 950;
}

.qr-benefits-head p,
.qr-info-head p,
.qr-faq-head p {
  margin: 0 auto;
  max-width: 840px;
  color: rgba(226, 232, 240, .82);
  line-height: 1.55;
}

.qr-benefits-card,
.qr-info-card,
.qr-faq-card {
  background: rgba(255, 255, 255, .96);
  color: var(--qr-text);
  padding: clamp(22px, 3vw, 34px);
}

.qr-benefits-card .row {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr) !important;
  gap: clamp(22px, 4vw, 42px) !important;
  align-items: center !important;
}

.qr-benefits-card .col-lg-7,
.qr-benefits-card .col-lg-5 {
  grid-column: auto !important;
  width: auto !important;
  max-width: none !important;
}

.qr-benefits-list,
.qr-info-list,
.qr-faq-list {
  color: #334155;
}

.qr-benefits-list,
.qr-info-list {
  list-style: none !important;
  display: grid !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.qr-benefits-list li,
.qr-info-list li {
  position: relative;
  margin: 0;
  padding-left: 34px;
  color: #334155;
  line-height: 1.6;
  font-size: .98rem;
}

.qr-benefits-list li::before,
.qr-info-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--qr-blue);
  font-size: .78rem;
  font-weight: 950;
}

.qr-benefits-list li strong,
.qr-info-list li strong {
  color: #0f172a;
  font-weight: 950;
}

.qr-benefits-media {
  margin: 0 !important;
  text-align: center;
}

.qr-benefits-media img {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .18);
}

.qr-benefits-media .small,
.qr-benefits-media p,
.qr-benefits-media figcaption {
  margin-top: 12px !important;
  color: var(--qr-muted-2) !important;
  font-size: .88rem !important;
  line-height: 1.45 !important;
}

.qr-faq-item {
  border-bottom: 1px solid rgba(148, 163, 184, .22);
  padding: 14px 0;
}

.qr-faq-item:last-child {
  border-bottom: 0;
}

.qr-faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: #0f172a;
}

.qr-faq-answer {
  padding-top: 10px;
  color: var(--qr-muted);
  line-height: 1.6;
}



/* =========================================================
   QR Helper Bot / Floating Help Button
   iPad-safe scroll fix
========================================================= */

#qrFab.qr-helper-fab {
  position: fixed !important;
  right: 27px !important;
  bottom: 90px !important;
  z-index: 9999 !important;

  width: 64px !important;
  height: 64px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: linear-gradient(135deg, var(--qr-purple-2), var(--qr-purple)) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .35) !important;

  cursor: pointer !important;
  overflow: hidden !important;

  font-size: 18px !important;
  line-height: .95 !important;
  font-weight: 900 !important;
  text-align: center !important;
  white-space: normal !important;
  letter-spacing: .02em !important;
}

#qrFab.qr-helper-fab:hover,
#qrFab.qr-helper-fab:focus-visible {
  transform: translateY(-2px) !important;
  filter: brightness(1.06) !important;
}

.qr-helper-panel {
  position: fixed;
  right: 22px;
  bottom: 112px;
  z-index: 9998;

  width: min(390px, calc(100vw - 32px));

  max-height: calc(100vh - 190px);
  max-height: calc(100dvh - 190px);

  overflow: hidden;
  border-radius: 22px;

  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(148, 163, 184, .28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);

  transform: translateY(12px) scale(.98);
  opacity: 0;
  pointer-events: none;

  transition: opacity .18s ease, transform .18s ease;
}

.qr-helper-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.qr-helper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 16px;

  background: linear-gradient(135deg, var(--qr-purple-2), var(--qr-blue));
  color: #ffffff;
}

.qr-helper-header strong {
  font-size: 1rem;
  font-weight: 950;
}

.qr-helper-header .btn,
#qrClose {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 0;

  background: #ffffff;
  color: #111827;

  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.qr-helper-body {
  max-height: calc(100vh - 270px);
  max-height: calc(100dvh - 270px);

  overflow-y: auto;
  overflow-x: hidden;

  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;

  padding: 16px;
  padding-bottom: 36px;
}

.qr-msg {
  padding: 13px 14px;
  border-radius: 16px;

  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;

  font-size: .92rem;
  line-height: 1.45;
}

.qr-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qr-quick .btn {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, .28);

  background: #ffffff;
  color: #1d4ed8;

  font-size: .8rem;
  font-weight: 900;
  cursor: pointer;
}

.qr-quick .btn:hover,
.qr-quick .btn:focus-visible {
  background: #eff6ff;
}

.qr-luggage-helper-note {
  border-left: 4px solid var(--qr-gold);
  background: #fffbeb;
  color: #111827;
}

.qr-luggage-helper-note strong {
  color: #92400e;
}

#qrBotForm {
  margin-top: 14px;
}

.qr-field {
  margin-bottom: 12px;
}

.qr-field .form-label {
  display: block;
  margin-bottom: 5px;

  color: #334155;

  font-size: .85rem;
  font-weight: 900;
}

.qr-field .form-control,
.qr-field .form-select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;

  background: #ffffff;
  color: #111827;

  font: inherit;
}

#qrBotResult {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 4px;
  border-top: 1px solid #e5e7eb;
}

#qrBotPreview {
  display: grid;
  place-items: center;
}

#qrBotPreview img,
#qrBotPreview canvas {
  width: 210px !important;
  height: 210px !important;
  padding: 10px;
  border-radius: 18px;

  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
}

#qrBotDownload,
#qrBotLuggageTag {
  width: 100%;
  border-radius: 999px;
  font-weight: 900;
}

#qrBotLuggageTag {
  display: none;
}

/* =========================================================
   QR Helper Mobile / Tablet Fixes
========================================================= */

@media (max-width: 900px) {
  .qr-helper-panel {
    right: 16px;
    bottom: 112px;
    width: min(390px, calc(100vw - 32px));

    max-height: calc(100vh - 190px);
    max-height: calc(100dvh - 190px);
  }

  .qr-helper-body {
    max-height: calc(100vh - 270px);
    max-height: calc(100dvh - 270px);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 40px;
  }
}

@media (max-width: 560px) {
  #qrFab.qr-helper-fab {
    right: 16px !important;
    bottom: 92px !important;
    width: 64px !important;
    height: 64px !important;
    font-size: 18px !important;
  }

  .qr-helper-panel {
    right: 12px;
    bottom: 166px;
    width: calc(100vw - 24px);

    max-height: calc(100vh - 190px);
    max-height: calc(100dvh - 190px);
  }

  .qr-helper-body {
    max-height: calc(100vh - 270px);
    max-height: calc(100dvh - 270px);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 44px;
  }
}

/* Extra safety for iPad landscape / shorter tablet screens */
@media (max-height: 760px) {
  .qr-helper-panel {
    bottom: 120px;

    max-height: calc(100vh - 140px);
    max-height: calc(100dvh - 140px);
  }

  .qr-helper-body {
    max-height: calc(100vh - 220px);
    max-height: calc(100dvh - 220px);
    padding-bottom: 44px;
  }
}

/* =========================================================
   Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .ncm-qr-tool-page *,
  .qr-helper-panel {
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .ncm-qr-tool-page .btn:hover,
  #qrFab.qr-helper-fab:hover,
  #qrFab.qr-helper-fab:focus-visible {
    transform: none !important;
  }
}



/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1180px) {
  .ncm-studio-hero-grid,
  .ncm-workflow-grid,
  .ncm-copy-grid {
    grid-template-columns: 1fr;
  }

  .ncm-panel-head {
    display: block;
  }

  .ncm-panel-link {
    display: inline-flex;
    margin-top: 8px;
  }

  .ncm-studio-start-card {
    max-width: 100%;
  }

  .ncm-dark-studio,
  .qr-tool,
  .qr-benefits,
  .qr-info,
  .qr-faq {
    width: min(100%, calc(100vw - 32px));
  }

  .qr-tool .row {
    grid-template-columns: 1fr !important;
  }

  .qr-tool .col-lg-5,
  .qr-tool .col-lg-7,
  .qr-tool .col-md-4,
  .qr-tool .col-md-6,
  .qr-tool .col-12 {
    grid-column: 1 / -1 !important;
  }

  .position-sticky {
    position: static !important;
  }

  .qr-benefits-card .row {
    grid-template-columns: 1fr !important;
  }

  .qr-benefits-media {
    margin-top: 20px !important;
  }
}

@media (max-width: 900px) {
  .ncm-studio-top,
  .ncm-studio-workflow,
  .ncm-studio-info,
  .ncm-dark-studio,
  .qr-benefits,
  .qr-info,
  .qr-faq {
    width: min(100%, calc(100vw - 28px));
  }

  .ncm-studio-hero-card h1 {
    font-size: clamp(2.05rem, 8vw, 3.3rem);
  }

  .ncm-studio-trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ncm-tool-modern-page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ncm-studio-top,
  .ncm-studio-workflow,
  .ncm-studio-info,
  .ncm-dark-studio,
  .qr-benefits,
  .qr-info,
  .qr-faq {
    width: min(100%, calc(100vw - 20px));
  }

  .ncm-studio-hero-overlay,
  .ncm-studio-panel,
  .qr-benefits-card,
  .qr-info-card,
  .qr-faq-card {
    padding: 18px;
  }

  .ncm-tool-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ncm-tool-hero-actions .btn {
    width: 100%;
  }

  .ltc-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ltc-btn {
    width: 100%;
  }

  #qrFab.qr-helper-fab {
    right: 16px !important;
    bottom: 92px !important;
    width: 64px !important;
    height: 64px !important;
    font-size: 18px !important;
  }

  .qr-helper-panel {
    right: 12px;
    bottom: 166px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 190px);
  }

  .qr-helper-body {
    max-height: calc(100vh - 270px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ncm-qr-tool-page *,
  .qr-helper-panel {
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .ncm-qr-tool-page .btn:hover,
  #qrFab.qr-helper-fab:hover,
  #qrFab.qr-helper-fab:focus-visible {
    transform: none !important;
  }
}

/* =========================================================
   QR Generator — Related Tools
========================================================= */

.ncm-qr-tool-page .qr-related-tools {
  margin-top: 28px;
}

.ncm-qr-tool-page .qr-related-tools .ncm-workflow-grid article {
  display: flex;
  flex-direction: column;
}

.ncm-qr-tool-page .qr-related-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: #5b16c8;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.ncm-qr-tool-page .qr-related-link:hover,
.ncm-qr-tool-page .qr-related-link:focus-visible {
  color: #7c3aed;
  text-decoration: underline;
  text-underline-offset: 3px;
}