<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
/* ============================================================================
   QQ TINT — Dark Automotive Design System
   Carbon black · Cyan accent · Mono + Grotesk · 2026
   ============================================================================ */

/* -------- 0. TOKENS -------------------------------------------------------- */
:root {
  /* Surface */
  --bg:               #0A0B0D;
  --bg-elevated:      #101218;
  --bg-card:          #151921;
  --bg-card-hover:    #1B2029;
  --border:           #1F242E;
  --border-strong:    #2C323D;
  --hairline:         rgba(255, 255, 255, 0.06);

  /* Type */
  --text:             #E6E8EC;
  --text-muted:       #8A93A3;
  --text-faint:       #4A5260;
  --text-disabled:    #353B47;

  /* Brand */
  --accent:           #00D4FF;
  --accent-soft:      #4FE3FF;
  --accent-dim:       #007A99;
  --accent-glow:      rgba(0, 212, 255, 0.35);
  --accent-glow-soft: rgba(0, 212, 255, 0.12);

  /* Status (used sparingly) */
  --warn:             #FF6B3D;
  --ok:               #00FF94;

  /* Type families */
  --font-display:     'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:        'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono:        'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Spacing scale (4px base) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Shape (locked: sharp cards, pill CTAs) */
  --r-card: 4px;
  --r-input: 2px;
  --r-pill: 999px;

  /* Container */
  --container: 1400px;
  --gutter: clamp(1.25rem, 3vw, 2rem);
}

/* -------- 1. RESET --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* -------- 2. GRAIN (fixed, pointer-none, GPU-friendly) ------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

/* -------- 3. TYPOGRAPHY ---------------------------------------------------- */
.qq-display-xl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.qq-display-l {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.qq-display-m {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.qq-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.qq-eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--accent);
}
.qq-body-l { font-size: 1.125rem; line-height: 1.6; color: var(--text-muted); max-width: 65ch; }
.qq-body   { font-size: 1rem;     line-height: 1.65; color: var(--text-muted); }
.qq-mono   { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.02em; }
.qq-mono-xs {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* -------- 4. LAYOUT PRIMITIVES -------------------------------------------- */
.qq-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.qq-section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
}
.qq-section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.qq-section--accent { background: var(--bg-elevated); }

.qq-grid {
  display: grid;
  gap: var(--s-6);
}
.qq-grid--2 { grid-template-columns: 1fr; }
.qq-grid--3 { grid-template-columns: 1fr; }
.qq-grid--4 { grid-template-columns: 1fr; }
.qq-asym-7-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
}
.qq-asym-5-7 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
}
@media (min-width: 640px) {
  .qq-grid--2 { grid-template-columns: 1fr 1fr; }
  .qq-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .qq-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .qq-asym-7-5 { grid-template-columns: 7fr 5fr; }
  .qq-asym-5-7 { grid-template-columns: 5fr 7fr; }
}
@media (min-width: 900px) {
  .qq-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .qq-grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .qq-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* -------- 5. BUTTONS ------------------------------------------------------- */
.qq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}
.qq-btn svg { width: 14px; height: 14px; }

.qq-btn--primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px -8px var(--accent-glow);
}
.qq-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--accent-soft), 0 12px 32px -8px var(--accent-glow);
}
.qq-btn--primary:active { transform: translateY(0); }

.qq-btn--ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}
.qq-btn--ghost:hover {
  box-shadow: inset 0 0 0 1px var(--accent);
  color: var(--accent);
}

.qq-btn--link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0;
}
.qq-btn--link::after {
  content: "→";
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.qq-btn--link:hover::after { transform: translateX(4px); }

/* -------- 6. HEADER (qq-header-*) ---------------------------------------- */
.qq-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.qq-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--s-6);
}
.qq-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.qq-logo__q {
  display: inline-grid;
  place-items: center;
  height: 1.5rem;
  padding: 0 0.4rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 2px;
  letter-spacing: 0;
}
.qq-logo__tint { font-weight: 500; color: var(--text-muted); }

.qq-nav {
  display: none;
  align-items: center;
  gap: var(--s-2);
}
.qq-nav__link {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-pill);
  transition: all 0.2s ease;
  position: relative;
}
.qq-nav__link:hover { color: var(--text); }
.qq-nav__link--active { color: var(--accent); }
.qq-nav__link--active::after {
  content: "";
  position: absolute;
  left: 0.875rem; right: 0.875rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--accent);
}
@media (min-width: 1080px) {
  .qq-nav { display: inline-flex; }
}

.qq-header__actions { display: inline-flex; align-items: center; gap: var(--s-3); }

.qq-menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
}
.qq-menu-toggle span,
.qq-menu-toggle span::before,
.qq-menu-toggle span::after {
  content: "";
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  position: relative;
  transition: transform 0.3s ease;
}
.qq-menu-toggle span::before { position: absolute; top: -5px; }
.qq-menu-toggle span::after  { position: absolute; top:  5px; }

.qq-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 70;
  width: min(360px, 88vw);
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  padding: var(--s-8) var(--s-6);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.qq-drawer[data-open="true"] { transform: translateX(0); }
.qq-drawer__close {
  align-self: flex-end;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.qq-drawer__nav { display: flex; flex-direction: column; gap: var(--s-3); }
.qq-drawer__nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--hairline);
}

@media (min-width: 1080px) {
  .qq-menu-toggle { display: none; }
  .qq-drawer { display: none; }
}

/* -------- 7. HERO ---------------------------------------------------------- */
.qq-hero {
  position: relative;
  min-height: min(720px, 80vh);
  padding-top: clamp(2.5rem, 7vw, 6rem);
  padding-bottom: clamp(2.5rem, 7vw, 6rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.qq-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: center;
  width: 100%;
}
@media (min-width: 1000px) {
  .qq-hero__inner { grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); }
}

.qq-hero__copy { max-width: 720px; }
.qq-hero__title { margin: 0 0 var(--s-6); }
.qq-hero__title .accent { color: var(--accent); }
.qq-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 var(--s-8);
}
.qq-hero__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.qq-hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
@media (min-width: 1000px) {
  .qq-hero__visual { aspect-ratio: 4 / 5; }
}
.qq-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) brightness(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.qq-hero__visual:hover img { transform: scale(1.02); }
.qq-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(10, 11, 13, 0.6) 100%);
  pointer-events: none;
}
.qq-hero__meta {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  right: var(--s-4);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.qq-hero__meta .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
  margin-right: 0.5rem;
  animation: qq-pulse 2.4s ease-in-out infinite;
}
@keyframes qq-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.qq-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.qq-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--hairline) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hairline) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, black 30%, transparent 70%);
}
.qq-hero__bg::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 60%);
  filter: blur(40px);
}

/* -------- 8. SECTION HEADER (with restraint) ------------------------------ */
.qq-sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}
@media (min-width: 900px) {
  .qq-sec-head { grid-template-columns: 1.4fr 1fr; gap: var(--s-12); }
}
.qq-sec-head__title { margin: var(--s-3) 0 0; }
.qq-sec-head__lede {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 50ch;
}
.qq-sec-head__meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  padding-left: var(--s-4);
  margin-top: var(--s-3);
}
@media (min-width: 900px) {
  .qq-sec-head__meta { margin-top: 0; align-items: flex-start; }
}

/* -------- 9. CARDS / TILES ------------------------------------------------- */
.qq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.qq-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.qq-card__num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-faint);
  letter-spacing: 0.18em;
}
.qq-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.qq-card__body { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }
.qq-card__foot { margin-top: auto; padding-top: var(--s-3); }
.qq-card__visual {
  aspect-ratio: 16/10;
  margin: calc(-1 * var(--s-6)) calc(-1 * var(--s-6)) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.qq-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.92);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.qq-card:hover .qq-card__visual img { transform: scale(1.04); }

/* Service tile (bento) */
.qq-tile {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 40%), var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px -16px rgba(0,0,0,0.6);
  transition: border-color 0.3s ease;
}
.qq-tile:hover { border-color: var(--accent-dim); }
.qq-tile--big {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 40%), var(--bg-elevated);
  min-height: 320px;
  grid-column: span 1;
}
@media (min-width: 900px) {
  .qq-tile--big { grid-column: span 2; }
}
.qq-tile__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.qq-tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.6vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}
.qq-tile__body { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.qq-tile__arrow {
  position: absolute;
  top: var(--s-4); right: var(--s-4);
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.qq-tile:hover .qq-tile__arrow {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(-45deg);
}

/* -------- 10. STAT STRIP -------------------------------------------------- */
.qq-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-block: 1px solid var(--border);
}
.qq-stats__item {
  padding: var(--s-6) 0;
  border-right: 1px solid var(--border);
}
.qq-stats__item:nth-child(2n) { border-right: 0; }
@media (min-width: 480px) {
  .qq-stats { grid-template-columns: repeat(3, 1fr); }
  .qq-stats__item { border-right: 1px solid var(--border); padding: var(--s-6) var(--s-4); }
  .qq-stats__item:nth-child(2n) { border-right: 1px solid var(--border); }
  .qq-stats__item:nth-child(3n) { border-right: 0; }
  .qq-stats__item:last-child { border-right: 0; }
}
@media (min-width: 768px) {
  .qq-stats { grid-template-columns: repeat(4, 1fr); }
  .qq-stats__item { border-right: 1px solid var(--border); }
  .qq-stats__item:nth-child(3n) { border-right: 1px solid var(--border); }
  .qq-stats__item:last-child { border-right: 0; }
}
.qq-stats__num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.qq-stats__num .unit { color: var(--accent); font-size: 0.6em; margin-left: 0.2em; }
.qq-stats__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* -------- 11. SPEC TABLE (grouped, not border-heavy) ---------------------- */
.qq-specs { display: grid; grid-template-columns: 1fr; gap: var(--s-8); }
.qq-spec-group { display: flex; flex-direction: column; gap: var(--s-3); }
.qq-spec-group__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--border);
}
.qq-spec {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--hairline);
}
.qq-spec__k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.qq-spec__v {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

/* -------- 12. PROCESS / STEPS (numbered list, no caps) ------------------- */
.qq-steps { display: grid; gap: var(--s-4); }
.qq-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.qq-step__n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 0.25rem;
  min-width: 2.5rem;
}
.qq-step__t {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}
.qq-step__b { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }

/* -------- 13. FEATURE LIST (NOT 3-equal cards; using 2-col rows) --------- */
.qq-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .qq-features { grid-template-columns: 1fr 1fr; }
}
.qq-feature {
  padding: var(--s-6) var(--s-4) var(--s-6) 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: var(--s-4);
  align-items: start;
}
@media (min-width: 640px) {
  .qq-feature {
    padding: var(--s-6) var(--s-6) var(--s-6) 0;
    border-right: 1px solid var(--border);
  }
  .qq-feature:nth-child(2n) { border-right: 0; padding-right: 0; }
  .qq-feature:nth-child(2n-1) { padding-left: var(--s-6); }
}
.qq-feature__icon {
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--accent);
}
.qq-feature__icon svg { width: 14px; height: 14px; }
.qq-feature__t {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  letter-spacing: -0.005em;
}
.qq-feature__b { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; }

/* -------- 14. PRODUCT SHOWCASE (image + spec split) --------------------- */
.qq-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: stretch;
}
@media (min-width: 640px) {
  .qq-product { grid-template-columns: 1.1fr 1fr; }
}
.qq-product__media {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
}
.qq-product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) brightness(0.94);
}
.qq-product__media-tag {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
}
.qq-product__body { display: flex; flex-direction: column; gap: var(--s-4); }
.qq-product__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.qq-product__lede { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* -------- 15. CTA BAND ---------------------------------------------------- */
.qq-cta-band {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(1.75rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.qq-cta-band::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 0% 50%, var(--accent-glow-soft), transparent 50%);
  pointer-events: none;
}
@media (min-width: 640px) {
  .qq-cta-band { grid-template-columns: 1fr auto; text-align: left; }
}
.qq-cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  position: relative;
}

/* -------- 16. FOOTER (qq-footer-*) --------------------------------------- */
.qq-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.qq-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .qq-footer__top { grid-template-columns: 1fr 1fr; gap: var(--s-10); }
  /* Brand spans full width on top; service + contact sit side by side below */
  .qq-footer__top > .qq-footer__brand { grid-column: 1 / -1; }
  .qq-footer__top > .qq-footer__col:nth-of-type(2) { grid-column: 1; }
  .qq-footer__top > .qq-footer__col:nth-of-type(3) { grid-column: 2; }
}
@media (min-width: 800px) {
  .qq-footer__top { grid-template-columns: 1.5fr 1fr 1fr; gap: var(--s-12); }
  .qq-footer__top > .qq-footer__brand { grid-column: auto; }
  .qq-footer__top > .qq-footer__col:nth-of-type(2) { grid-column: auto; }
  .qq-footer__top > .qq-footer__col:nth-of-type(3) { grid-column: auto; }
}
.qq-footer__brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 32ch;
  margin: var(--s-3) 0 0;
}
.qq-footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-4);
  font-weight: 500;
}
.qq-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.qq-footer__col a, .qq-footer__col li {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.qq-footer__col a:hover { color: var(--accent); }
.qq-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-6);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
@media (min-width: 640px) {
  .qq-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
/* qq-footer__legal row removed (联系/隐私/条款) — credit line is the sole bottom row */

/* -------- 16b. FOOTER WECHAT + QR PLACEHOLDER ---------------------------- */
.qq-footer__wechat {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
}
.qq-footer__qr {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border: 1px dashed var(--border-strong);
  border-radius: 6px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 55%),
    var(--bg-card);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.qq-footer__qr::before,
.qq-footer__qr::after {
  content: "✦";
  position: absolute;
  color: var(--accent);
  font-size: 0.625rem;
  opacity: 0.55;
}
.qq-footer__qr::before { top: 0.4rem; right: 0.5rem; }
.qq-footer__qr::after  { bottom: 0.4rem; left: 0.5rem; }
.qq-footer__qr-mark {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.qq-footer__wechat-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}
.qq-footer__wechat-id {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.qq-footer__wechat-cap {
  font-size: 0.8125rem;
  color: var(--text-faint);
  line-height: 1.4;
}

/* -------- 16c. FOOTER CREDIT LINE (bottom copyright) --------------------- */
.qq-footer__credit { color: var(--text-faint); }
.qq-footer__credit a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.qq-footer__credit a:hover { color: var(--accent); }

/* -------- 17. CONTACT-SPECIFIC ------------------------------------------ */
.qq-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 640px) {
  .qq-contact-grid { grid-template-columns: 1fr 1fr; gap: var(--s-12); }
}
.qq-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.qq-contact-card__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.qq-contact-card__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.qq-contact-card__sub { color: var(--text-muted); font-size: 0.875rem; line-height: 1.5; }

.qq-map {
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
}
.qq-map iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.7); }

/* -------- 18. LOGO WALL (LLumar / Steel Mate / Compustar) --------------- */
.qq-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  align-items: center;
}
@media (min-width: 768px) {
  .qq-logos { grid-template-columns: repeat(4, 1fr); }
}
.qq-logos__item {
  display: grid;
  place-items: center;
  padding: var(--s-6) var(--s-4);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.qq-logos__item:hover { border-color: var(--border-strong); color: var(--text); }

/* -------- 19. MARQUEE (1 per page max) ----------------------------------- */
.qq-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: var(--s-4) 0;
  position: relative;
}
.qq-marquee__track {
  display: flex;
  gap: var(--s-12);
  width: max-content;
  animation: qq-scroll 32s linear infinite;
}
.qq-marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: var(--s-12);
}
.qq-marquee__item::after {
  content: "★";
  color: var(--accent);
  font-size: 0.6em;
}
@keyframes qq-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------- 20. SCROLL REVEAL (driven by JS class) ----------------------- */
.qq-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.qq-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .qq-reveal { opacity: 1; transform: none; }
  .qq-marquee__track { animation: none; }
}

/* -------- 22. UTILITIES -------------------------------------------------- */
.qq-text-accent { color: var(--accent); }
.qq-text-muted  { color: var(--text-muted); }
.qq-mono { font-family: var(--font-mono); }
.qq-divider { height: 1px; background: var(--border); margin: 0; border: 0; }
.qq-mt-2 { margin-top: var(--s-2); }
.qq-mt-4 { margin-top: var(--s-4); }
.qq-mt-6 { margin-top: var(--s-6); }
.qq-mt-8 { margin-top: var(--s-8); }
.qq-mt-12 { margin-top: var(--s-12); }

/* -------- 23. HOME PAGE OVERRIDES (better contrast + readability) -------
   Scoped to body.qq-home so other pages keep the original tokens.
   Goal: lift surface tones, lift muted text, make cards clearly stand out
   from the body, enlarge small mono labels, and add a faint top-edge
   highlight on cards for premium depth. */
body.qq-home {
  --bg:               #0F1218;
  --bg-elevated:      #181D27;
  --bg-card:          #1F2632;
  --bg-card-hover:    #272F3D;
  --border:           #2D3441;
  --border-strong:    #3A4253;
  --hairline:         rgba(255, 255, 255, 0.10);

  --text:             #F0F2F6;
  --text-muted:       #B4BCC9;
  --text-faint:       #7B8492;
  --text-disabled:    #4C5462;
}

body.qq-home { background: var(--bg); }

/* Card / tile: clearer top edge highlight for depth on the lifted surface */
body.qq-home .qq-card,
body.qq-home .qq-contact-card,
body.qq-home .qq-logos__item,
body.qq-home .qq-hero__visual,
body.qq-home .qq-cta-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 40%), var(--bg-card);
  border-color: var(--border-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px -16px rgba(0,0,0,0.6);
}

/* Type: bump small mono labels and tile/feature body to readable sizes */
body.qq-home .qq-eyebrow { font-size: 0.75rem; }
body.qq-home .qq-mono-xs { font-size: 0.75rem; color: var(--text-muted); }
body.qq-home .qq-sec-head__lede { font-size: 1.125rem; line-height: 1.65; color: var(--text-muted); }
body.qq-home .qq-hero__sub { font-size: 1.125rem; line-height: 1.6; color: var(--text-muted); }

body.qq-home .qq-feature__t { font-size: 1.125rem; }
body.qq-home .qq-feature__b { font-size: 1rem; line-height: 1.6; color: var(--text-muted); }
body.qq-home .qq-feature__icon { width: 2.25rem; height: 2.25rem; }
body.qq-home .qq-feature__icon svg { width: 16px; height: 16px; }

body.qq-home .qq-card__title { font-size: 1.375rem; }
body.qq-home .qq-card__body { font-size: 1rem; line-height: 1.6; }
body.qq-home .qq-card { padding: 1.75rem; gap: 0.75rem; }

body.qq-home .qq-step__t { font-size: 1.1875rem; }
body.qq-home .qq-step__b { font-size: 1rem; line-height: 1.6; }
body.qq-home .qq-cta-band__title { font-size: clamp(1.75rem, 3vw, 2.25rem); }

/* Stats strip: a slightly lifted surface to differentiate from page bg */
body.qq-home .qq-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  border-block: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
@media (min-width: 480px) {
  body.qq-home .qq-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  body.qq-home .qq-stats { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
}
body.qq-home .qq-stats__item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 40%), var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 124px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px -16px rgba(0,0,0,0.6);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
body.qq-home .qq-stats__item:hover { border-color: var(--accent-dim); transform: translateY(-1px); }
body.qq-home .qq-stats__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1;
  margin: 0;
}
body.qq-home .qq-stats__num .unit { color: var(--accent); font-size: 0.7em; margin-left: 0.15em; }
body.qq-home .qq-stats__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
  padding-top: var(--s-2);
  border-top: 1px solid var(--border);
}

/* Why us: convert divider-grid into a real 2-col card grid with gap */
body.qq-home .qq-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  border-top: 0;
}
@media (min-width: 640px) {
  body.qq-home .qq-features { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
}
body.qq-home .qq-feature {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 40%), var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: var(--s-6);
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: var(--s-4);
  align-items: start;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px -16px rgba(0,0,0,0.6);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
body.qq-home .qq-feature:hover { border-color: var(--accent-dim); transform: translateY(-1px); }
body.qq-home .qq-feature__t { margin: 0 0 0.5rem; }

/* Hero: lift sub + visible accent ring under eyebrow for stronger intro */
body.qq-home .qq-eyebrow { letter-spacing: 0.18em; }
body.qq-home .qq-hero__visual { border-color: var(--border-strong); }
body.qq-home .qq-hero__meta { font-size: 0.75rem; color: var(--text); }

/* Section padding a touch more generous so cards breathe */
body.qq-home .qq-section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }

/* -------- 24. RESPONSIVE TUNING (mobile + tablet polish) ---------------- */

/* Header: slimmer on small screens so the hero gets more room */
@media (max-width: 640px) {
  .qq-header__inner { height: 60px; gap: var(--s-3); }
  .qq-logo { font-size: 1.125rem; }
  .qq-menu-toggle { width: 36px; height: 36px; }
}

/* Hero: tighter on mobile, more copy space, less visual weight */
@media (max-width: 640px) {
  .qq-hero { min-height: auto; padding-top: 2.25rem; padding-bottom: 2.25rem; }
  .qq-hero__copy { max-width: 100%; }
  /* Spacing: eyebrow → title → sub */
  .qq-hero__copy > .qq-eyebrow { margin-bottom: var(--s-4); }
  .qq-hero__title { margin-bottom: var(--s-4); }
  .qq-hero__sub { font-size: 1rem; margin-bottom: var(--s-6); }
  .qq-hero__actions { flex-direction: column; align-items: stretch; }
  .qq-hero__actions .qq-btn { width: 100%; justify-content: center; }
}

/* Tablet portrait: hero a bit shorter than desktop but keeps its frame */
@media (min-width: 640px) and (max-width: 999px) {
  .qq-hero { min-height: auto; padding-top: 3rem; padding-bottom: 3rem; }
  .qq-hero__visual { aspect-ratio: 16 / 11; }
}

/* Section padding: less vertical on mobile so users see content faster */
@media (max-width: 640px) {
  .qq-section,
  body.qq-home .qq-section { padding-block: clamp(2.5rem, 8vw, 3.5rem); }
  .qq-section--tight { padding-block: clamp(2rem, 6vw, 2.5rem); }
  .qq-sec-head { margin-bottom: clamp(1.75rem, 5vw, 2.5rem); }
}

/* Tile: less padding on small screens; lift label/title weight */
@media (max-width: 640px) {
  .qq-tile { padding: 1.25rem; min-height: 0; }
  .qq-tile__title { font-size: 1.375rem; }
  .qq-tile__body { font-size: 0.9375rem; }
}

/* Card (Why X 2-col + Spec): less padding on mobile */
@media (max-width: 640px) {
  .qq-card { padding: 1.25rem; gap: 0.5rem; }
  .qq-card__title { font-size: 1.125rem; }
}

/* Spec table: tighten the key/value gap on mobile */
@media (max-width: 640px) {
  .qq-spec { grid-template-columns: 1fr; gap: 0.25rem; padding: var(--s-3) 0; }
  .qq-spec__v { font-size: 0.9375rem; }
}

/* Steps: stack number and content on mobile for breathing room */
@media (max-width: 640px) {
  .qq-step { grid-template-columns: 1fr; gap: 0.5rem; padding: var(--s-4) 0; }
  .qq-step__n { min-width: 0; }
}

/* Features (non-home divider grid): padding breathing on mobile */
@media (max-width: 640px) {
  .qq-feature { padding: var(--s-5) 0; }
  .qq-feature__t { font-size: 1rem; }
}

/* Logos: tighter padding on mobile */
@media (max-width: 640px) {
  .qq-logos__item { padding: var(--s-4) var(--s-3); font-size: 0.6875rem; letter-spacing: 0.12em; }
}

/* CTA band: button full-width on mobile */
@media (max-width: 640px) {
  .qq-cta-band { padding: 1.75rem 1.5rem; gap: var(--s-5); }
  .qq-cta-band .qq-btn { width: 100%; justify-content: center; }
}

/* Footer: tighter typography on mobile */
@media (max-width: 640px) {
  .qq-footer { padding-block: clamp(2.5rem, 6vw, 3.5rem); }
  .qq-footer__col a,
  .qq-footer__col li { font-size: 0.9375rem; line-height: 1.55; }
  .qq-footer__col h4 { font-size: 0.625rem; letter-spacing: 0.18em; }
  .qq-footer__wechat { gap: var(--s-3); padding-top: var(--s-5); margin-top: var(--s-5); }
  .qq-footer__qr { width: 72px; height: 72px; }
  .qq-footer__qr-mark { font-size: 0.625rem; }
  .qq-footer__wechat-id,
  .qq-footer__wechat-cap { font-size: 0.75rem; }
  .qq-footer__credit { font-size: 0.6875rem; line-height: 1.5; }
}

/* Contact form: inputs full-width and bigger on mobile */
@media (max-width: 640px) {
  .qq-contact-card { padding: 1.25rem; }
  .qq-contact-card__value { font-size: 1.125rem; }
  input, select, textarea { font-size: 16px !important; }
  button[type="submit"].qq-btn { width: 100%; justify-content: center; }
}

.qq-contact-cards-mini {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .qq-contact-cards-mini { grid-template-columns: 1fr 1fr; }
}

/* Hero meta: hide pulse dot on small screens (less distracting) */
@media (max-width: 640px) {
  .qq-hero__meta { font-size: 0.625rem; letter-spacing: 0.12em; }
  .qq-hero__meta .dot { display: none; }
}

/* Display sizes: smaller on mobile so long Chinese titles fit in max 2 lines,
   and looser line-height so the 2 lines of the hero title breathe. */
@media (max-width: 640px) {
  .qq-display-xl { font-size: 2.5rem; line-height: 1.05; }
  .qq-display-l  { font-size: 1.75rem; line-height: 1.15; }
  .qq-display-m  { font-size: 1.375rem; line-height: 1.2; }
}
@media (min-width: 380px) and (max-width: 640px) {
  /* Slight bump for the 380-640px range (most modern phones) */
  .qq-display-xl { font-size: 2.625rem; }
  .qq-display-l  { font-size: 1.875rem; }
}

/* Footer top spacing: the section above already has padding-block, so
   remove the footer's margin-top on mobile and let the section provide
   the visual break. Tighten the section's bottom padding on mobile too. */
@media (max-width: 640px) {
  .qq-footer { margin-top: 0; padding-top: 1.75rem; }
  .qq-section:last-of-type { padding-bottom: 1.5rem; }
}

/* Container: slightly tighter horizontal gutter on very small phones */
@media (max-width: 380px) {
  :root { --gutter: 1rem; }
  .qq-cta-band { padding: 1.5rem 1.25rem; }
}

/* Landscape phones / short viewports: keep hero usable */
@media (max-height: 500px) and (orientation: landscape) {
  .qq-hero { min-height: auto; padding-block: 2rem; }
  .qq-hero__visual { aspect-ratio: 16 / 10; }
}


</style>
<!-- end Simple Custom CSS and JS -->
