@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --qh-bg: #000000;
  --qh-bg-warm: #111111;
  --qh-bg-panel: #2d2d2d;
  --qh-ink: #ffffff;
  --qh-ink-muted: rgba(255,255,255,0.78);
  --qh-ink-light: rgba(255,255,255,0.58);
  --qh-mint: #ff8a3d;
  --qh-mint-light: rgba(255,95,2,0.12);
  --qh-mint-dark: #ffb07a;
  --qh-coral: #ff5f02;
  --qh-coral-light: rgba(255,95,2,0.14);
  --qh-coral-dark: #d84f02;
  --qh-border: rgba(255,95,2,0.35);
  --qh-white: #ffffff;
  --qh-radius-sm: 8px;
  --qh-radius-md: 16px;
  --qh-radius-lg: 28px;
  --qh-radius-xl: 48px;
  --qh-font-main: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;
  --qh-shadow-card: 0 2px 12px rgba(0,0,0,0.24);
  --qh-shadow-lift: 0 10px 28px rgba(0,0,0,0.34);
  --qh-max: 1180px;
  --qh-gap: clamp(1rem, 3vw, 2rem);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--qh-bg);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--qh-font-main);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--qh-ink);
  background: var(--qh-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

main,
.qh-prose,
.qh-section,
.qh-page-hero,
.qh-success-card,
.qh-matrix-item,
.qh-tip-card,
.qh-note-item,
.qh-checklist-panel,
.qh-contact-form-wrap,
.qh-contact-sidebar,
.qh-compare-table,
.qh-timeline-item,
.qh-split-panel,
.qh-glance-card {
  color: var(--qh-ink);
}

a {
  color: var(--qh-mint-dark);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

a:focus-visible {
  outline: 2px solid var(--qh-coral);
  outline-offset: 3px;
  border-radius: 3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5 {
  font-family: var(--qh-font-main);
  line-height: 1.25;
  color: var(--qh-ink);
  text-wrap: balance;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.35em; }

.qh-skip-link {
  position: absolute;
  top: -999px;
  left: 8px;
  z-index: 9999;
  background: var(--qh-coral);
  color: var(--qh-white);
  padding: 0.5em 1em;
  border-radius: var(--qh-radius-sm);
  font-weight: 700;
}

.qh-skip-link:focus {
  top: 8px;
}

.qh-wrap {
  max-width: var(--qh-max);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.qh-section {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.qh-section-alt {
  background: var(--qh-bg-warm);
}

.qh-section-panel {
  background: var(--qh-bg-panel);
}

.qh-section-mint {
  background: var(--qh-mint-light);
}

.qh-section-coral {
  background: var(--qh-coral-light);
}

.qh-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--qh-coral-dark);
  background: var(--qh-coral-light);
  border-radius: var(--qh-radius-sm);
  padding: 0.25em 0.75em;
  margin-bottom: 0.75rem;
}

.qh-label-mint {
  color: var(--qh-mint-dark);
  background: var(--qh-mint-light);
}

.qh-section-heading {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.qh-section-heading p {
  color: var(--qh-ink-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  max-width: 55ch;
}

.qh-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.qh-shell main {
  flex: 1;
}

.qh-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid var(--qh-border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.18);
}

.qh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.qh-logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--qh-white);
  text-decoration: none;
  flex-shrink: 0;
}

.qh-logo-link:hover { text-decoration: none; }

.qh-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--qh-bg-panel);
}

.qh-logo-wordmark span {
  color: var(--qh-coral);
}

.qh-ribbon-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.qh-ribbon-nav li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--qh-white);
  padding: 0.4em 0.75em;
  border-radius: var(--qh-radius-sm);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.qh-ribbon-nav li a:hover,
.qh-ribbon-nav li a.qh-nav-active {
  background: rgba(255,95,2,0.12);
  color: var(--qh-white);
  text-decoration: none;
}

.qh-ribbon-nav li a:focus-visible {
  outline: 2px solid var(--qh-coral);
  outline-offset: 2px;
}

.qh-nav-contact-btn {
  background: var(--qh-coral) !important;
  color: var(--qh-white) !important;
  font-weight: 700 !important;
}

.qh-nav-contact-btn:hover {
  background: var(--qh-coral-dark) !important;
}

.qh-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--qh-radius-sm);
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.qh-burger-btn:focus-visible {
  outline: 2px solid var(--qh-coral);
  outline-offset: 2px;
}

.qh-burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--qh-white);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}

.qh-burger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.qh-burger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.qh-burger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.qh-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(43,43,43,0.45);
}

.qh-mobile-drawer[aria-hidden="false"] {
  display: block;
}

.qh-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 88vw);
  background: #0a0a0a;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: -4px 0 20px rgba(43,43,43,0.12);
}

.qh-drawer-panel a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--qh-white);
  padding: 0.6em 0.8em;
  border-radius: var(--qh-radius-sm);
  text-decoration: none;
  border-bottom: 1px solid var(--qh-border);
}

.qh-drawer-panel a:hover {
  background: var(--qh-mint-light);
  color: var(--qh-mint-dark);
  text-decoration: none;
}

.qh-drawer-panel a:focus-visible {
  outline: 2px solid var(--qh-coral);
  outline-offset: 2px;
}

.qh-drawer-panel a.qh-nav-active {
  color: var(--qh-mint-dark);
  font-weight: 700;
}

.qh-drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--qh-bg-panel);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--qh-white);
}

.qh-drawer-close:focus-visible {
  outline: 2px solid var(--qh-coral);
}

.qh-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--qh-coral);
  z-index: 200;
  width: 0%;
  transition: width 0.1s;
  pointer-events: none;
}

.qh-site-footer {
  background: #050505;
  color: rgba(255,255,255,0.82);
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.qh-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--qh-gap);
  margin-bottom: 2rem;
}

.qh-footer-col h4 {
  color: var(--qh-white);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.qh-footer-col p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

.qh-footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.qh-footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.qh-footer-col ul a:hover { color: var(--qh-mint); }

.qh-footer-bottom {
  border-top: 1px solid var(--qh-border);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.68);
}

.qh-footer-bottom a { color: rgba(255,255,255,0.84); }
.qh-footer-bottom a:hover { color: var(--qh-mint); }

.qh-mosaic-hero {
  background: var(--qh-bg-warm);
  padding-block: clamp(3rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}

.qh-mosaic-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: var(--qh-mint-light);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.qh-mosaic-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: var(--qh-coral-light);
  border-radius: 50%;
  opacity: 0.45;
  pointer-events: none;
}

.qh-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.qh-hero-text .qh-label { margin-bottom: 1rem; }

.qh-hero-text h1 {
  margin-bottom: 1.1rem;
}

.qh-hero-text h1 em {
  font-style: normal;
  color: var(--qh-coral);
}

.qh-hero-intro {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--qh-ink-muted);
  margin-bottom: 1.75rem;
  max-width: 46ch;
}

.qh-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.qh-btn {
  display: inline-block;
  font-family: var(--qh-font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.65em 1.5em;
  border-radius: var(--qh-radius-xl);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  border: none;
  text-decoration: none;
  line-height: 1.3;
}

.qh-btn:focus-visible {
  outline: 2px solid var(--qh-coral);
  outline-offset: 3px;
}

.qh-btn-primary {
  background: var(--qh-coral);
  color: var(--qh-white);
}

.qh-btn-primary:hover {
  background: var(--qh-coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,97,58,0.3);
  text-decoration: none;
  color: var(--qh-white);
}

.qh-btn-secondary {
  background: var(--qh-bg-panel);
  color: var(--qh-white);
  border: 2px solid var(--qh-coral);
}

.qh-btn-secondary:hover {
  background: var(--qh-mint-light);
  transform: translateY(-1px);
  text-decoration: none;
}

.qh-btn-outline {
  background: transparent;
  color: var(--qh-white);
  border: 2px solid var(--qh-border);
}

.qh-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

.yq-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 112rem);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  padding-top: 1.5rem;
}

.yq-badge {
  width: clamp(3rem, 4vw, 4.25rem);
  flex: 0 0 clamp(3rem, 4vw, 4.25rem);
}

.yq-badge img,
.m2v-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.tq-burger {
  position: relative;
  z-index: 5;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
}

.tq-burger span {
  width: 1.4rem;
  height: 0.125rem;
  background: var(--qh-white);
  transition: transform .28s ease, opacity .28s ease;
}

.tq-burger.is-open span:nth-child(1) { transform: translateY(0.5rem) rotate(45deg); }
.tq-burger.is-open span:nth-child(2) { opacity: 0; }
.tq-burger.is-open span:nth-child(3) { transform: translateY(-0.5rem) rotate(-45deg); }

.tq-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  left: 0;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 1.125rem;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

.tq-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tq-lane {
  display: grid;
  gap: 0.875rem;
}

.tq-link {
  color: var(--qh-white);
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.277;
}

.tq-link:hover { text-decoration: none; }

.m2v-foot {
  width: min(100%, 105rem);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4rem) 0 4rem;
  border-top: 1px solid var(--qh-coral);
}

.m2v-top {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.m2v-brand {
  width: clamp(8rem, 18vw, 14.3125rem);
}

.m2v-links {
  display: grid;
  gap: 1.5rem;
}

.m2v-col {
  display: grid;
  gap: 1rem;
}

.m2v-col a,
.m2v-copy p,
.m2v-note p,
.m2v-last {
  color: var(--qh-white);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.2;
  margin: 0;
}

.m2v-copy,
.m2v-note {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.m2v-last {
  margin-top: 2rem;
  text-align: center;
}

.qh-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--qh-bg-panel);
  border: 1.5px solid var(--qh-mint);
  border-radius: var(--qh-radius-md);
  padding: 0.5em 0.9em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--qh-mint-dark);
}

.qh-hero-note::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--qh-mint);
  border-radius: 50%;
  flex-shrink: 0;
}

.qh-hero-visual {
  position: relative;
}

.qh-hero-img {
  border-radius: var(--qh-radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--qh-shadow-lift);
  background: var(--qh-bg-panel);
}

.qh-hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--qh-coral);
  color: var(--qh-white);
  border-radius: var(--qh-radius-md);
  padding: 0.7em 1.1em;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--qh-shadow-card);
  line-height: 1.3;
}

.qh-trust-strip {
  background: var(--qh-ink);
  color: var(--qh-white);
  padding-block: 1.25rem;
}

.qh-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.qh-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #ddd;
}

.qh-trust-dot {
  width: 10px;
  height: 10px;
  background: var(--qh-mint);
  border-radius: 50%;
  flex-shrink: 0;
}

.qh-orbit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--qh-gap);
}

.qh-orbit-card {
  background: var(--qh-bg-panel);
  border-radius: var(--qh-radius-lg);
  overflow: hidden;
  box-shadow: var(--qh-shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.qh-orbit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--qh-shadow-lift);
}

.qh-orbit-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--qh-bg-panel);
}

.qh-orbit-card-body {
  padding: 1.1rem 1.25rem 1.4rem;
}

.qh-orbit-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.qh-orbit-card-body p {
  font-size: 0.88rem;
  color: var(--qh-ink-muted);
  margin-bottom: 0.75rem;
}

.qh-orbit-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--qh-mint-dark);
}

.qh-orbit-card-meta::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--qh-mint);
  border-radius: 50%;
}

.qh-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--qh-gap);
}

.qh-matrix-item {
  background: var(--qh-bg-panel);
  border-radius: var(--qh-radius-md);
  border-left: 4px solid var(--qh-mint);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--qh-shadow-card);
}

.qh-matrix-item:nth-child(even) {
  border-left-color: var(--qh-coral);
}

.qh-matrix-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.qh-matrix-item p {
  font-size: 0.87rem;
  color: var(--qh-ink-muted);
}

.qh-matrix-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--qh-mint-dark);
  background: var(--qh-mint-light);
  padding: 0.2em 0.6em;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.qh-matrix-item:nth-child(even) .qh-matrix-tag {
  color: var(--qh-coral-dark);
  background: var(--qh-coral-light);
}

.qh-split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.qh-split-panel-img {
  border-radius: var(--qh-radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--qh-bg-panel);
  box-shadow: var(--qh-shadow-lift);
}

.qh-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.qh-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--qh-ink);
  margin-bottom: 0;
}

.qh-checklist li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--qh-mint);
  border-radius: 50%;
  margin-top: 0.18em;
  position: relative;
}

.qh-checklist li::after {
  display: none;
}

.qh-checklist-wrap {
  position: relative;
}

.qh-checklist-wrap li {
  position: relative;
  padding-left: 2rem;
}

.qh-checklist-wrap li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
}

.qh-family-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--qh-gap);
}

.qh-family-card {
  background: var(--qh-bg-panel);
  border-radius: var(--qh-radius-lg);
  padding: 1.4rem;
  box-shadow: var(--qh-shadow-card);
  position: relative;
  overflow: hidden;
}

.qh-family-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  background: var(--qh-mint-light);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}

.qh-family-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.qh-family-card p {
  font-size: 0.85rem;
  color: var(--qh-ink-muted);
}

.qh-policy-band {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--qh-gap);
}

.qh-policy-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.qh-policy-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--qh-radius-md);
  background: var(--qh-coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--qh-coral-dark);
}

.qh-policy-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.qh-policy-item p {
  font-size: 0.85rem;
  color: var(--qh-ink-muted);
}

.qh-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--qh-gap);
}

.qh-article-teaser {
  background: var(--qh-bg-panel);
  border-radius: var(--qh-radius-lg);
  overflow: hidden;
  box-shadow: var(--qh-shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.qh-article-teaser:hover {
  transform: translateY(-4px);
  box-shadow: var(--qh-shadow-lift);
}

.qh-teaser-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--qh-bg-panel);
}

.qh-teaser-body {
  padding: 1.1rem 1.3rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.qh-teaser-body h3 {
  font-size: 1rem;
  color: var(--qh-ink);
}

.qh-teaser-body p {
  font-size: 0.87rem;
  color: var(--qh-ink-muted);
  flex: 1;
}

.qh-teaser-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--qh-coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.qh-teaser-link:hover { color: var(--qh-coral-dark); text-decoration: underline; }

.qh-contact-preview {
  background: var(--qh-ink);
  border-radius: var(--qh-radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  color: var(--qh-white);
}

.qh-contact-preview h2 {
  color: var(--qh-white);
  margin-bottom: 0.75rem;
}

.qh-contact-preview p {
  color: #aaa;
  margin-bottom: 1.25rem;
}

.qh-contact-preview-img {
  border-radius: var(--qh-radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: rgba(255,255,255,0.08);
}

.qh-cookie-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #111111;
  border-top: 2px solid var(--qh-mint);
  box-shadow: 0 -4px 24px rgba(43,43,43,0.12);
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
}

.qh-cookie-inner {
  max-width: var(--qh-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.qh-cookie-text {
  flex: 1;
  min-width: 220px;
  font-size: 0.88rem;
  color: var(--qh-ink-muted);
}

.qh-cookie-text,
.qh-cookie-text a,
.qh-orbit-card-body h3,
.qh-matrix-item h3,
.qh-family-card h3,
.qh-teaser-body h3,
.qh-note-item h4,
.qh-tip-card h4,
.qh-contact-info-block h3,
.qh-prose-toc h2,
.qh-numbered-check strong,
.qh-accordion-btn,
.qh-field label,
.qh-field-group label {
  color: var(--qh-ink);
}

.qh-hero-note,
.qh-orbit-card,
.qh-matrix-item,
.qh-family-card,
.qh-article-teaser,
.qh-note-item,
.qh-tip-card,
.qh-myth-card-body,
.qh-contact-form-wrap,
.qh-contact-info-block,
.qh-prose-toc,
.qh-checklist-panel,
.qh-success-card {
  border-color: var(--qh-border);
}

.qh-cookie-text a {
  color: var(--qh-mint-dark);
  font-weight: 600;
}

.qh-cookie-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.qh-cookie-dock.qh-hidden {
  display: none;
}

.qh-note-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qh-note-item {
  background: var(--qh-bg-panel);
  border-radius: var(--qh-radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--qh-shadow-card);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.qh-note-num {
  min-width: 32px;
  width: 32px;
  height: 32px;
  background: var(--qh-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--qh-white);
  flex-shrink: 0;
}

.qh-note-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.qh-note-item p { font-size: 0.85rem; color: var(--qh-ink-muted); }

.qh-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.qh-timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--qh-mint-light);
}

.qh-timeline-item {
  position: relative;
  margin-bottom: 1.75rem;
}

.qh-timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.3em;
  width: 14px;
  height: 14px;
  background: var(--qh-mint);
  border-radius: 50%;
  border: 2px solid var(--qh-white);
  box-shadow: 0 0 0 2px var(--qh-mint);
}

.qh-timeline-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.qh-timeline-item p { font-size: 0.88rem; color: var(--qh-ink-muted); }

.qh-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.qh-compare-table th {
  background: var(--qh-mint-light);
  color: var(--qh-mint-dark);
  padding: 0.75em 1em;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--qh-mint);
}

.qh-compare-table td {
  padding: 0.7em 1em;
  border-bottom: 1px solid var(--qh-border);
  color: var(--qh-ink);
}

.qh-compare-table tr:nth-child(even) td {
  background: var(--qh-bg-warm);
}

.qh-compare-table tr:last-child td {
  border-bottom: none;
}

.qh-myth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--qh-gap);
}

.qh-myth-card {
  border-radius: var(--qh-radius-md);
  overflow: hidden;
  box-shadow: var(--qh-shadow-card);
}

.qh-myth-card-head {
  background: var(--qh-coral-light);
  color: var(--qh-coral-dark);
  padding: 0.9em 1.1em;
  font-weight: 700;
  font-size: 0.88rem;
}

.qh-myth-card-head.qh-fact {
  background: var(--qh-mint-light);
  color: var(--qh-mint-dark);
}

.qh-myth-card-body {
  background: var(--qh-bg-panel);
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  color: var(--qh-ink-muted);
}

.qh-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--qh-gap);
}

.qh-tip-card {
  background: var(--qh-bg-panel);
  border-radius: var(--qh-radius-md);
  padding: 1.2rem;
  box-shadow: var(--qh-shadow-card);
  border-top: 3px solid var(--qh-mint);
}

.qh-tip-card:nth-child(odd) {
  border-top-color: var(--qh-coral);
}

.qh-tip-card h4 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.qh-tip-card p { font-size: 0.85rem; color: var(--qh-ink-muted); }

.qh-contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.qh-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qh-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.qh-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--qh-ink);
}

.qh-field input,
.qh-field select,
.qh-field textarea {
  font-family: var(--qh-font-main);
  font-size: 0.95rem;
  padding: 0.65em 0.9em;
  border: 1.5px solid var(--qh-border);
  border-radius: var(--qh-radius-sm);
  background: var(--qh-bg-panel);
  color: var(--qh-ink);
  transition: border-color 0.15s;
  width: 100%;
}

.qh-field input:focus,
.qh-field select:focus,
.qh-field textarea:focus {
  outline: none;
  border-color: var(--qh-mint);
  box-shadow: 0 0 0 3px rgba(62,207,178,0.15);
}

.qh-field textarea {
  min-height: 130px;
  resize: vertical;
}

.qh-contact-details h3 { margin-bottom: 1rem; }

.qh-contact-detail-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.qh-contact-detail-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--qh-mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--qh-mint-dark);
}

.qh-contact-detail-item p {
  font-size: 0.9rem;
  color: var(--qh-ink-muted);
  margin: 0;
}

.qh-contact-detail-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--qh-ink);
  margin-bottom: 0.1rem;
}

.qh-prose {
  max-width: 68ch;
}

.qh-prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.qh-prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.qh-prose ul, .qh-prose ol {
  margin-bottom: 1em;
}

.qh-success-wrap {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.qh-success-icon {
  width: 72px;
  height: 72px;
  background: var(--qh-mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.qh-success-icon::after {
  content: "";
  display: block;
  width: 28px;
  height: 16px;
  border-left: 4px solid var(--qh-mint-dark);
  border-bottom: 4px solid var(--qh-mint-dark);
  transform: rotate(-45deg) translateY(-4px);
  border-radius: 2px;
}

.qh-page-hero {
  background: var(--qh-bg-warm);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.qh-page-hero h1 {
  margin-bottom: 0.75rem;
}

.qh-page-hero p {
  color: var(--qh-ink-muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 50ch;
}

.qh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.qh-breadcrumb a { color: var(--qh-mint-dark); }
.qh-breadcrumb span { color: var(--qh-ink-light); }

.qh-inline-band {
  background: var(--qh-mint-light);
  border-radius: var(--qh-radius-lg);
  padding: 1.5rem 2rem;
  margin-block: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.qh-inline-band p { color: var(--qh-mint-dark); font-weight: 600; margin: 0; }

.qh-accordion-item {
  border: 1.5px solid var(--qh-border);
  border-radius: var(--qh-radius-md);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.qh-accordion-btn {
  width: 100%;
  text-align: left;
  background: var(--qh-bg-panel);
  border: none;
  padding: 1rem 1.2rem;
  font-family: var(--qh-font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--qh-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.qh-accordion-btn:focus-visible {
  outline: 2px solid var(--qh-coral);
  outline-offset: -2px;
}

.qh-accordion-btn::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--qh-mint-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.qh-accordion-btn[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.qh-accordion-content {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--qh-ink-muted);
}

.qh-accordion-content.qh-open {
  padding: 0.75rem 1.2rem 1rem;
  max-height: 500px;
}

.qh-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.qh-reveal.qh-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .yq-header {
    padding-top: 2rem;
    align-items: flex-start;
  }

  .yq-badge {
    position: absolute;
    top: 0;
    left: 50%;
    width: clamp(4.25rem, 6vw, 6.875rem);
    flex-basis: clamp(4.25rem, 6vw, 6.875rem);
    transform: translateX(-50%);
  }

  .tq-burger { display: none; }

  .tq-nav {
    position: static;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .tq-lane {
    display: flex;
    gap: clamp(1.5rem, 2.4vw, 2.5rem);
  }

  .m2v-top {
    grid-template-columns: auto 1fr;
  }

  .m2v-links {
    grid-template-columns: repeat(3, auto);
    justify-content: end;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .qh-hero-grid { grid-template-columns: 1fr; }
  .qh-hero-visual { display: none; }
  .qh-split-panel { grid-template-columns: 1fr; }
  .qh-contact-form-wrap { grid-template-columns: 1fr; }
  .qh-contact-preview { grid-template-columns: 1fr; }
  .qh-contact-preview-img { display: none; }
  .m2v-foot {
    text-align: center;
  }

  .m2v-top,
  .m2v-copy,
  .m2v-note {
    justify-items: center;
  }

  .m2v-links,
  .m2v-col {
    justify-items: center;
    text-align: center;
  }

  .m2v-brand {
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .qh-orbit-grid { grid-template-columns: 1fr 1fr; }
  .qh-tips-grid { grid-template-columns: 1fr 1fr; }
  .qh-family-cards { grid-template-columns: 1fr 1fr; }
  .qh-trust-inner { gap: 1rem; }
  .qh-compare-table { font-size: 0.8rem; }
  .qh-compare-table th, .qh-compare-table td { padding: 0.5em 0.6em; }
}

@media (max-width: 420px) {
  .qh-orbit-grid { grid-template-columns: 1fr; }
  .qh-tips-grid { grid-template-columns: 1fr; }
  .qh-family-cards { grid-template-columns: 1fr; }
  .qh-myth-grid { grid-template-columns: 1fr; }
  .qh-hero-cta-row { flex-direction: column; }
}

/* ===== CONTACT FORM ===== */
.qh-contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.qh-contact-form-wrap {
  background: var(--qh-bg-panel);
  border: 1.5px solid var(--qh-border);
  border-radius: var(--qh-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--qh-shadow-card);
}

.qh-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.qh-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.qh-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.qh-field-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--qh-ink);
}

.qh-field-req {
  color: var(--qh-coral);
}

.qh-field-group input,
.qh-field-group select,
.qh-field-group textarea {
  font-family: var(--qh-font-main);
  font-size: 0.95rem;
  color: var(--qh-ink);
  background: var(--qh-bg);
  border: 1.5px solid var(--qh-border);
  border-radius: var(--qh-radius-sm);
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s;
  width: 100%;
}

.qh-field-group input::placeholder,
.qh-field-group textarea::placeholder {
  color: var(--qh-ink-light);
}

.qh-field-group input:focus,
.qh-field-group select:focus,
.qh-field-group textarea:focus {
  outline: none;
  border-color: var(--qh-mint);
  box-shadow: 0 0 0 3px var(--qh-mint-light);
}

.qh-field-group textarea {
  resize: vertical;
  min-height: 140px;
}

.qh-field-error {
  font-size: 0.8rem;
  color: var(--qh-coral-dark);
  min-height: 1em;
}

.qh-field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.qh-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--qh-ink-muted);
  cursor: pointer;
  line-height: 1.5;
}

.qh-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  accent-color: var(--qh-mint-dark);
  margin-top: 2px;
}

.qh-form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.qh-form-note {
  font-size: 0.8rem;
  color: var(--qh-ink-light);
}

.qh-btn-wide {
  width: 100%;
  justify-content: center;
}

/* Contact Sidebar */
.qh-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.qh-contact-sidebar-img-wrap {
  border-radius: var(--qh-radius-md);
  overflow: hidden;
  box-shadow: var(--qh-shadow-card);
}

.qh-contact-sidebar-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.qh-contact-info-block {
  background: var(--qh-bg-panel);
  border: 1.5px solid var(--qh-border);
  border-radius: var(--qh-radius-md);
  padding: 1rem 1.25rem;
}

.qh-contact-info-block h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--qh-ink-muted);
  margin-bottom: 0.4rem;
}

.qh-contact-info-block address {
  font-style: normal;
  color: var(--qh-ink);
  line-height: 1.7;
  font-size: 0.9rem;
}

.qh-contact-info-block p {
  font-size: 0.9rem;
  color: var(--qh-ink);
}

.qh-contact-note {
  color: var(--qh-ink-muted) !important;
  font-size: 0.8rem !important;
  margin-top: 0.25rem;
}

/* ===== PROSE LAYOUT (privacy, terms) ===== */
.qh-prose-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.qh-prose-toc {
  position: sticky;
  top: 90px;
  background: var(--qh-bg-panel);
  border: 1.5px solid var(--qh-border);
  border-radius: var(--qh-radius-md);
  padding: 1.25rem;
}

.qh-prose-toc h2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--qh-ink-muted);
  margin-bottom: 0.75rem;
}

.qh-prose-toc ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: toc-item;
}

.qh-prose-toc li {
  counter-increment: toc-item;
}

.qh-prose-toc a {
  font-size: 0.85rem;
  color: var(--qh-ink-muted);
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.6rem;
  transition: color 0.2s, border-color 0.2s;
}

.qh-prose-toc a:hover {
  color: var(--qh-mint-dark);
  border-left-color: var(--qh-mint);
  text-decoration: none;
}

.qh-prose {
  max-width: 720px;
}

.qh-prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1.5px solid var(--qh-border);
}

.qh-prose h2:first-child {
  margin-top: 0;
  border-top: none;
}

.qh-prose p {
  color: var(--qh-ink-muted);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.qh-prose ul,
.qh-prose ol {
  padding-left: 1.4rem;
  color: var(--qh-ink-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.qh-prose li {
  margin-bottom: 0.4rem;
}

.qh-prose strong {
  color: var(--qh-ink);
}

.qh-prose address {
  font-style: normal;
  background: var(--qh-bg-warm);
  border-radius: var(--qh-radius-sm);
  padding: 1rem 1.25rem;
  line-height: 1.8;
  color: var(--qh-ink);
  margin-bottom: 1rem;
}

.qh-prose code {
  background: var(--qh-bg-panel);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  font-size: 0.85em;
  font-family: monospace;
  color: var(--qh-coral-dark);
}

/* ===== CHECKLIST PANEL (familienbereich) ===== */
.qh-checklist-panel {
  background: var(--qh-bg-panel);
  border: 1.5px solid var(--qh-border);
  border-radius: var(--qh-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--qh-shadow-card);
}

.qh-numbered-check {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qh-numbered-check li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--qh-border);
}

.qh-numbered-check li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qh-numbered-check li:first-child {
  padding-top: 0;
}

.qh-check-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--qh-mint-dark);
  min-width: 36px;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.qh-numbered-check strong {
  display: block;
  font-size: 1rem;
  color: var(--qh-ink);
  margin-bottom: 0.3rem;
}

.qh-numbered-check p {
  color: var(--qh-ink-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for new layouts */
@media (max-width: 900px) {
  .qh-contact-layout { grid-template-columns: 1fr; }
  .qh-contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .qh-contact-info-block { flex: 1 1 200px; }
  .qh-contact-sidebar-img-wrap { width: 100%; }
  .qh-prose-layout { grid-template-columns: 1fr; }
  .qh-prose-toc { position: static; }
  .qh-field-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .qh-contact-sidebar { flex-direction: column; }
  .qh-numbered-check li { flex-direction: column; gap: 0.4rem; }
}

.qh-blog-strip {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.qh-blog-shell {
  background: var(--qh-bg-panel);
  border: 1.5px solid var(--qh-border);
  border-radius: var(--qh-radius-lg);
  box-shadow: var(--qh-shadow-card);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.qh-blog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.qh-blog-head p {
  color: var(--qh-ink-muted);
  max-width: 60ch;
}

.qh-blog-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.qh-blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--qh-border);
  border-radius: var(--qh-radius-md);
  padding: 1.1rem;
}

.qh-blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

.qh-blog-card p {
  color: var(--qh-ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.qh-blog-tag {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  background: var(--qh-coral-light);
  color: var(--qh-coral-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qh-blog-link {
  font-weight: 700;
}

@media (max-width: 900px) {
  .qh-blog-feed { grid-template-columns: 1fr; }
}
