.nftq-app,
.nftq-app * {
  box-sizing: border-box;
}

.nftq-app {
  --nftq-bg: #ffffff;
  --nftq-card: #ffffff;
  --nftq-card-2: #f8fafc;
  --nftq-text: #0f172a;
  --nftq-soft-text: #64748b;
  --nftq-line: #e2e8f0;
  --nftq-brand: #2563eb;
  --nftq-brand-2: #7c3aed;
  --nftq-brand-3: #0f172a;
  --nftq-shadow: 0 18px 50px rgba(15, 23, 42, .12);
  --nftq-shadow-strong: 0 26px 70px rgba(15, 23, 42, .24);
  --nftq-radius: 26px;
  color: var(--nftq-text);
  font-family: inherit;
}

.nftq-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 clamp(14px, 2vw, 28px) 48px;
  display: grid;
  gap: 28px;
}

.nftq-shell img {
  max-width: 100%;
  display: block;
}

.nftq-label,
.nftq-question-kicker,
.nftq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.nftq-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr);
  gap: 22px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(7, 14, 33, .28), rgba(7, 14, 33, .68)),
    radial-gradient(circle at top right, rgba(96, 165, 250, .18), transparent 32%),
    radial-gradient(circle at left center, rgba(168, 85, 247, .18), transparent 30%),
    var(--nftq-hero-bg) center/cover no-repeat;
  box-shadow: var(--nftq-shadow-strong);
  isolation: isolate;
}

.nftq-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -16% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.nftq-hero-main,
.nftq-hero-side,
.nftq-hero-visual {
  position: relative;
  z-index: 1;
}

.nftq-hero-main {
  display: grid;
  gap: 18px;
  align-content: start;
}

.nftq-kicker-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nftq-kicker {
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.nftq-kicker--soft {
  background: rgba(15, 23, 42, .32);
}

.nftq-hero h2,
.nftq-hero-copy,
.nftq-hero-side,
.nftq-hero-side p,
.nftq-hero-side strong {
  color: #fff;
}

.nftq-hero h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: .98;
  letter-spacing: -.04em;
}

.nftq-hero-copy {
  margin: 0;
  max-width: 780px;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,.88);
}

.nftq-hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nftq-hero-pill {
  appearance: none;
  border: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.09));
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 16px 28px rgba(7, 14, 33, .28),
    0 6px 0 rgba(15, 23, 42, .24);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nftq-hero-pill:hover,
.nftq-hero-pill:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.26),
    0 22px 36px rgba(7, 14, 33, .32),
    0 8px 0 rgba(15, 23, 42, .22);
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.11));
}

.nftq-hero-pill span:first-child {
  font-size: 24px;
  line-height: 1;
}

.nftq-hero-side {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.nftq-stat-card,
.nftq-card,
.nftq-product-slide,
.nftq-step-card,
.nftq-guide-card,
.nftq-modal-dialog,
.nftq-map-card,
.nftq-upload-card,
.nftq-identify-card,
.nftq-result-card {
  border: 1px solid var(--nftq-line);
  border-radius: var(--nftq-radius);
  background: var(--nftq-card);
  box-shadow: var(--nftq-shadow);
}

.nftq-stat-card {
  padding: 18px;
  border-color: rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  backdrop-filter: blur(12px);
}

.nftq-stat-card--accent {
  background: linear-gradient(180deg, rgba(96,165,250,.18), rgba(255,255,255,.08));
}

.nftq-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(255,255,255,.16);
  font-size: 18px;
}

.nftq-stat-card p,
.nftq-question-box p,
.nftq-product-body p,
.nftq-guide-body p,
.nftq-step-card p,
.nftq-modal-head p,
.nftq-upload-placeholder,
.nftq-identify-intro,
.nftq-disclaimer,
.nftq-map-note,
.nftq-success-box {
  color: var(--nftq-soft-text);
}

.nftq-shopall,
.nftq-tool-btn,
.nftq-product-body a,
.nftq-result-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 16px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--nftq-brand), var(--nftq-brand-2));
  color: #fff;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(37, 99, 235, .28);
}

.nftq-tool-btn--ghost,
.nftq-back,
.nftq-restart,
.nftq-nav-btn,
.nftq-mini-nav,
.nftq-filter-btn,
.nftq-check-chip,
.nftq-zone-btn {
  appearance: none;
  font: inherit;
}

.nftq-tool-btn--ghost,
.nftq-back,
.nftq-restart,
.nftq-nav-btn,
.nftq-mini-nav,
.nftq-filter-btn,
.nftq-check-chip {
  cursor: pointer;
  border: 1px solid var(--nftq-line);
  background: #fff;
  color: var(--nftq-text);
  box-shadow: 0 8px 18px rgba(15,23,42,.08);
}

.nftq-tool-btn--ghost {
  box-shadow: none;
}

.nftq-hero-visual {
  grid-column: 1 / -1;
}

.nftq-hero-visual-frame {
  overflow: hidden;
  min-height: 260px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 44px rgba(7, 14, 33, .34);
}

.nftq-hero-visual-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.nftq-plan,
.nftq-carousel-block,
.nftq-steps,
.nftq-guide {
  display: grid;
  gap: 18px;
}

.nftq-plan-head,
.nftq-section-head,
.nftq-plan-meta,
.nftq-plan-actions,
.nftq-carousel-nav,
.nftq-product-topline,
.nftq-filter-row,
.nftq-modal-actions,
.nftq-form-grid,
.nftq-question-top,
.nftq-check-layout,
.nftq-kicker-wrap {
  display: flex;
  gap: 14px;
}

.nftq-plan-head,
.nftq-section-head {
  justify-content: space-between;
  align-items: end;
}

.nftq-plan-head h3,
.nftq-section-head h3 {
  margin: 10px 0 0;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.nftq-plan-meta {
  flex-direction: column;
  align-items: flex-end;
}

.nftq-plan-meta strong {
  font-size: 14px;
  color: var(--nftq-soft-text);
}

.nftq-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbeafe;
}

.nftq-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--nftq-brand), var(--nftq-brand-2));
  transition: width .24s ease;
}

.nftq-card--question-wide {
  width: 100%;
  padding: clamp(20px, 2vw, 28px);
}

.nftq-question-box {
  display: grid;
  gap: 18px;
}

.nftq-question-top {
  align-items: flex-start;
}

.nftq-emoji {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  font-size: 30px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.12));
}

.nftq-question-box h4,
.nftq-product-slide h4,
.nftq-result-card h4,
.nftq-guide-card h4,
.nftq-step-card h4,
.nftq-modal-head h3 {
  margin: 0;
  display: block;
}

.nftq-question-box h4 {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.08;
}

.nftq-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nftq-option {
  appearance: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--nftq-line);
  background: linear-gradient(180deg, #fff, #f8fbff);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 24px rgba(15,23,42,.08);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.nftq-option:hover,
.nftq-option:focus-visible,
.nftq-option.is-selected {
  transform: translateY(-2px);
  border-color: rgba(37,99,235,.42);
  box-shadow: 0 18px 32px rgba(37,99,235,.14);
}

.nftq-option-emoji {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 22px;
  background: #eff6ff;
}

.nftq-option span {
  min-width: 0;
}

.nftq-option-title,
.nftq-option-desc,
.nftq-chip-row span {
  display: block;
}

.nftq-option-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--nftq-text);
}

.nftq-option-desc {
  margin-top: 6px;
  color: var(--nftq-soft-text);
  line-height: 1.45;
}

.nftq-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nftq-chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 13px;
  font-weight: 700;
}

.nftq-carousel {
  --per-view: 4;
  --gap: 20px;
  overflow: hidden;
  padding-bottom: 4px;
}

.nftq-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
  gap: var(--gap);
  align-items: stretch;
  transition: transform .42s ease;
  will-change: transform;
}

.nftq-product-slide,
.nftq-result-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.nftq-product-thumb-wrap,
.nftq-result-thumb-wrap {
  background: #f8fafc;
}

.nftq-product-thumb-wrap {
  aspect-ratio: 1 / 1;
  padding: 18px;
}

.nftq-result-thumb-wrap {
  aspect-ratio: 1 / 1;
  padding: 16px;
}

.nftq-product-thumb,
.nftq-result-thumb-wrap img,
.nftq-guide-card img,
.nftq-identify-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nftq-product-body,
.nftq-result-body,
.nftq-guide-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.nftq-product-body {
  flex: 1 1 auto;
  padding: 18px;
  gap: 10px;
}

.nftq-product-topline {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nftq-mini-type,
.nftq-price,
.nftq-guide-science {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.nftq-mini-type {
  background: #eff6ff;
  color: #1d4ed8;
}

.nftq-price {
  background: #f3e8ff;
  color: #6d28d9;
}

.nftq-guide-science {
  background: #f8fafc;
  color: #475569;
}

.nftq-product-body h4,
.nftq-result-body h4 {
  font-size: 18px;
  line-height: 1.28;
  min-height: 3.3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nftq-product-body p,
.nftq-result-body p {
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nftq-product-body a,
.nftq-result-card a {
  margin-top: auto;
}

.nftq-carousel-nav,
.nftq-modal-actions {
  flex-wrap: wrap;
}

.nftq-nav-btn,
.nftq-mini-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  padding: 0;
}

.nftq-carousel-dots,
.nftq-inline-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nftq-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
}

.nftq-dot.is-active {
  width: 30px;
  background: linear-gradient(90deg, var(--nftq-brand), var(--nftq-brand-2));
}

.nftq-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nftq-step-card {
  padding: 20px;
}

.nftq-step-emoji {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: #eff6ff;
  font-size: 20px;
}

.nftq-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nftq-guide-card {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.nftq-guide-card img {
  height: 100%;
  background: #f8fafc;
  padding: 16px;
}

.nftq-guide-body {
  padding: 18px;
  gap: 10px;
}

.nftq-guide-body p,
.nftq-step-card p,
.nftq-modal-head p {
  margin: 0;
  line-height: 1.55;
}

.nftq-disclaimer {
  position: relative;
  padding: 18px 22px 18px 72px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  border: 1px solid #cfe0ff;
  box-shadow: 0 18px 40px rgba(37,99,235,.10);
  line-height: 1.65;
  color: #0f172a;
}

.nftq-disclaimer::before {
  content: "✦";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  box-shadow: 0 10px 22px rgba(37,99,235,.22);
}

.nftq-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.nftq-modal.is-open {
  display: flex;
}

.nftq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .62);
  backdrop-filter: blur(4px);
}

.nftq-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 24px));
  max-height: min(88vh, 960px);
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
}

.nftq-modal-dialog--results {
  width: min(1080px, calc(100vw - 24px));
}

.nftq-modal-dialog--medium {
  width: min(1020px, calc(100vw - 24px));
}

.nftq-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--nftq-line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.nftq-modal-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.nftq-modal-head h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
}

.nftq-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nftq-result-card {
  min-width: 0;
}

.nftq-result-body {
  padding: 18px;
  gap: 10px;
}

.nftq-check-layout,
.nftq-identify-layout,
.nftq-tracker-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nftq-tracker-layout--simple {
  grid-template-columns: 1fr;
}

.nftq-dog-map,
.nftq-map-card,
.nftq-upload-card,
.nftq-identify-side {
  min-width: 0;
}

.nftq-dog-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--nftq-line);
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.nftq-dog-shape {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: 230px;
  line-height: 1;
  filter: drop-shadow(0 26px 34px rgba(15, 23, 42, .12));
}

.nftq-zone-btn {
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 6px rgba(37,99,235,.18);
  cursor: pointer;
}

.nftq-zone-btn::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  padding: 8px 10px;
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: opacity .16s ease, transform .16s ease;
}

.nftq-zone-btn:hover::after,
.nftq-zone-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nftq-zone-btn.is-done {
  background: #16a34a;
  box-shadow: 0 0 0 7px rgba(22,163,74,.18);
}

.nftq-zone-ears { top: 27%; left: 32%; }
.nftq-zone-neck { top: 36%; left: 33%; }
.nftq-zone-armpits { top: 53%; left: 39%; }
.nftq-zone-belly { top: 58%; left: 50%; }
.nftq-zone-groin { top: 62%; left: 61%; }
.nftq-zone-paws { top: 79%; left: 47%; }
.nftq-zone-tail { top: 43%; left: 76%; }

.nftq-check-panel {
  display: grid;
  align-content: start;
  gap: 16px;
}

.nftq-check-counter strong {
  font-size: 16px;
}

.nftq-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nftq-check-chip,
.nftq-filter-btn,
.nftq-back,
.nftq-restart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 16px;
}

.nftq-check-chip.is-done,
.nftq-filter-btn.is-active {
  border-color: rgba(37,99,235,.34);
  background: #eef2ff;
  color: #3730a3;
}

.nftq-success-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid var(--nftq-line);
}

.nftq-success-box.is-complete {
  background: #ecfdf5;
  border-color: rgba(22,163,74,.24);
  color: #166534;
}

.nftq-upload-card {
  padding: 18px;
}

.nftq-upload-box {
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 144px;
  padding: 24px;
  border: 2px dashed #cbd5e1;
  border-radius: 22px;
  cursor: pointer;
  text-align: center;
  background: #f8fafc;
}

.nftq-upload-box input {
  display: none;
}

.nftq-upload-box span {
  font-weight: 800;
}

.nftq-upload-preview {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--nftq-line);
  background: #f8fafc;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.nftq-upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nftq-identify-side {
  display: grid;
  align-content: start;
  gap: 16px;
}

.nftq-identify-results[hidden] {
  display: none;
}

.nftq-identify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nftq-identify-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  min-width: 0;
}

.nftq-identify-card img {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #f8fafc;
  padding: 10px;
}

.nftq-identify-card strong {
  display: block;
  margin-bottom: 8px;
}

.nftq-map-card {
  padding: 18px;
}

.nftq-map-card--solo {
  min-height: 420px;
}

.nftq-map-fake {
  min-height: 320px;
  border-radius: 22px;
  border: 1px dashed #93c5fd;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.12), transparent 28%),
    linear-gradient(180deg, #eff6ff, #ffffff);
}

.nftq-map-fake span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(37,99,235,.14);
  font-weight: 800;
  color: #1d4ed8;
  box-shadow: 0 10px 20px rgba(15,23,42,.06);
}

.nftq-map-note {
  margin-top: 14px;
}

@media (max-width: 1180px) {
  .nftq-hero {
    grid-template-columns: 1fr;
  }

  .nftq-hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nftq-steps-grid,
  .nftq-guide-grid,
  .nftq-results-grid,
  .nftq-identify-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nftq-check-layout,
  .nftq-identify-layout {
    grid-template-columns: 1fr;
  }

  .nftq-carousel {
    --per-view: 2;
  }
}

@media (max-width: 760px) {
  .nftq-shell {
    gap: 22px;
    padding: 0 12px 36px;
  }

  .nftq-hero {
    padding: 20px;
    border-radius: 28px;
  }

  .nftq-hero h2 {
    font-size: 34px;
  }

  .nftq-hero-actions,
  .nftq-options,
  .nftq-steps-grid,
  .nftq-guide-grid,
  .nftq-results-grid,
  .nftq-identify-grid,
  .nftq-identify-card,
  .nftq-guide-card,
  .nftq-check-layout,
  .nftq-identify-layout,
  .nftq-plan-head,
  .nftq-section-head {
    grid-template-columns: 1fr;
  }

  .nftq-plan-head,
  .nftq-section-head,
  .nftq-question-top,
  .nftq-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nftq-plan-meta {
    align-items: stretch;
  }

  .nftq-hero-pill {
    min-height: 62px;
  }

  .nftq-carousel {
    --per-view: 1;
  }

  .nftq-guide-card {
    grid-template-columns: 1fr;
  }

  .nftq-guide-card img {
    height: 220px;
  }

  .nftq-dog-map {
    min-height: 350px;
  }

  .nftq-dog-shape {
    font-size: 185px;
  }

  .nftq-zone-ears { top: 26%; left: 31%; }
  .nftq-zone-neck { top: 36%; left: 33%; }
  .nftq-zone-armpits { top: 54%; left: 38%; }
  .nftq-zone-belly { top: 59%; left: 50%; }
  .nftq-zone-groin { top: 64%; left: 61%; }
  .nftq-zone-paws { top: 80%; left: 46%; }
  .nftq-zone-tail { top: 44%; left: 75%; }

  .nftq-modal-dialog,
  .nftq-modal-dialog--results,
  .nftq-modal-dialog--medium {
    width: calc(100vw - 16px);
    padding: 18px;
    border-radius: 22px;
  }

  .nftq-upload-preview {
    min-height: 220px;
  }
}


.nftq-hero-visual{display:none!important;}

.nftq-map-image{display:block;width:100%;height:auto;max-height:70vh;object-fit:contain;border-radius:22px;}

.nftq-shopall{justify-self:center;}
.nftq-stat-card{width:100%;max-width:420px;text-align:center;}
.nftq-stat-card p,.nftq-stat-card strong{margin-left:auto;margin-right:auto;}
.nftq-app-copy{padding:0 clamp(16px,2.2vw,28px);}
.nftq-app-copy p{margin:0 0 16px;line-height:1.7;}
.nftq-app-copy p:last-child{margin-bottom:0;}

.nftq-filter-row{flex-wrap:wrap;}
.nftq-identify-grid{align-items:start;}
.nftq-identify-card{display:grid;grid-template-columns:96px minmax(0,1fr);align-items:start;gap:12px;padding:14px;border:1px solid var(--nftq-line);border-radius:20px;background:#fff;box-shadow:0 10px 22px rgba(15,23,42,.06);overflow:hidden;}
.nftq-identify-card > div{min-width:0;max-width:100%;overflow:hidden;}
.nftq-identify-card strong,.nftq-identify-card p{display:block;min-width:0;max-width:100%;overflow-wrap:anywhere;word-break:break-word;}
.nftq-identify-card p{margin:0;line-height:1.45;}
.nftq-identify-card img{width:96px;height:96px;object-fit:contain;}
.nftq-modal-dialog--medium .nftq-identify-layout{align-items:start;}
.nftq-modal-dialog--medium .nftq-upload-card,.nftq-modal-dialog--medium .nftq-identify-side{min-width:0;}
.nftq-guide-grid,.nftq-results-grid,.nftq-carousel{min-width:0;}
.nftq-results-grid{overflow:hidden;}
.nftq-result-card,.nftq-product-slide{min-width:0;max-width:100%;}
.nftq-result-body,.nftq-product-body{overflow:hidden;}
.nftq-result-body h4,.nftq-result-body p,.nftq-product-body h4,.nftq-product-body p{overflow-wrap:anywhere;word-break:break-word;}

@media (max-width: 760px){
  .nftq-carousel{overflow:hidden;}
  .nftq-carousel-track{grid-auto-columns:100%!important;gap:12px!important;}
  .nftq-product-slide{width:100%;}
  .nftq-filter-row{justify-content:flex-start;}
  .nftq-identify-card{grid-template-columns:88px minmax(0,1fr);padding:12px;}
  .nftq-identify-card img{width:88px;height:88px;}
  .nftq-disclaimer{padding:18px 16px 18px 62px;}
  .nftq-disclaimer::before{left:16px;width:32px;height:32px;border-radius:10px;}
  .nftq-app-copy{padding:0 14px;}

}
