/* ============================================================
   MORELIA CITY — SETUP GUIDE (Tutorial)
   Eigenständiges Stylesheet, wird nur auf dem Tutorial-Template
   geladen (siehe mc_enqueue_tutorial() in functions.php).
   ============================================================ */

.tg {
  --tg-accent: var(--red);
  --tg-accent-soft: rgba(255,103,104,.14);
  --tg-gap: 20px;
}

/* ── Screenreader-Only ─────────────────────────────────────── */
.tg-sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ── Sichtbarer Fokus (überall) ────────────────────────────── */
.tg a:focus-visible,
.tg button:focus-visible,
.tg summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   HERO
   ============================================================ */
.tg-hero {
  position: relative;
  padding: clamp(72px, 11vw, 116px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--w07);
  overflow: hidden;
}
.tg-hero::before {
  content: '';
  position: absolute; inset: -40% 0 auto;
  height: 460px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,103,104,.16) 0%, transparent 62%);
  pointer-events: none;
}
.tg-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}
.tg-hero > .container { position: relative; z-index: 1; }

.tg-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(255,103,104,.32);
  background: rgba(255,103,104,.08);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #FFA9A9;
  margin-bottom: 20px;
}
.tg-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 10px var(--red-glow);
  flex-shrink: 0;
}

.tg-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 84px);
  line-height: .95; letter-spacing: .01em;
  margin: 0 0 18px;
  max-width: 16ch;
}
.tg-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--w70); line-height: 1.7;
  max-width: 60ch; margin: 0 0 32px;
}

/* Meta-Zeile: Schritte / Dauer / Fortschritt */
.tg-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 34px;
}
.tg-meta-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px;
  border: 1px solid var(--w10);
  background: var(--w03);
  border-radius: var(--radius-md);
  font-size: 13px; color: var(--w70);
}
.tg-meta-item svg { width: 15px; height: 15px; color: var(--w50); flex-shrink: 0; }
.tg-meta-item b { color: var(--white); font-weight: 600; }

/* Gesamt-Fortschritt */
.tg-progress {
  max-width: 520px;
}
.tg-progress-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 10px;
}
.tg-progress-label {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--w50);
}
.tg-progress-count {
  font-family: var(--font-display); font-size: 20px;
  color: var(--white); letter-spacing: .04em;
}
.tg-progress-count b { color: var(--green); }
.tg-progress-track {
  height: 8px; border-radius: var(--radius-full);
  background: var(--w07); overflow: hidden;
  border: 1px solid var(--w07);
}
.tg-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #FFB56B 50%, var(--green) 100%);
  border-radius: var(--radius-full);
  transition: width .45s cubic-bezier(.4,0,.2,1);
}
.tg-progress-hint {
  margin: 10px 0 0; font-size: 13px; color: var(--w50);
}
.tg-progress-reset {
  color: var(--w50); font-size: 13px;
  text-decoration: underline; text-underline-offset: 3px;
  background: none; border: none;
  /* Touch-Target: 44px hoch, ohne die Textzeile auseinanderzureißen */
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 8px; margin: -12px -8px;
  transition: color var(--ease);
}
.tg-progress-reset:hover { color: var(--red); }

/* ============================================================
   LAYOUT
   ============================================================ */
.tg-shell {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 0 64px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: clamp(72px, 10vw, 120px);
}

/* ── Sidebar-Rail (Desktop) ────────────────────────────────── */
.tg-rail {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
}
.tg-rail-heading {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--w50);
  margin: 0 0 14px;
}
.tg-rail-list { list-style: none; margin: 0; padding: 0; }
.tg-rail-item + .tg-rail-item { margin-top: 2px; }

.tg-rail-link {
  --tg-accent: var(--red);
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--w50); font-size: 14px; font-weight: 500;
  border: 1px solid transparent;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}
.tg-rail-link:hover { color: var(--white); background: var(--w05); }
.tg-rail-link[aria-current="true"] {
  color: var(--white); font-weight: 600;
  background: var(--w05);
  border-color: var(--w10);
}

/* Fortschritts-Ring pro Abschnitt */
.tg-ring { width: 24px; height: 24px; flex-shrink: 0; transform: rotate(-90deg); }
.tg-ring-track { stroke: var(--w10); }
.tg-ring-fill {
  stroke: var(--tg-accent);
  stroke-linecap: round;
  transition: stroke-dashoffset .45s cubic-bezier(.4,0,.2,1);
}
.tg-rail-num {
  font-family: monospace; font-size: 10px;
  color: var(--w50); margin-left: auto; letter-spacing: .06em;
  flex-shrink: 0;
}
.tg-rail-link[aria-current="true"] .tg-rail-num { color: var(--tg-accent); }
.tg-rail-done {
  display: grid; place-items: center;
  width: 16px; height: 16px; margin-left: auto; flex-shrink: 0;
  color: var(--green); opacity: 0; transform: scale(.6);
  transition: opacity var(--ease), transform var(--ease);
}
.tg-rail-done svg { width: 16px; height: 16px; }
.tg-rail-item.is-done .tg-rail-done { opacity: 1; transform: scale(1); }
.tg-rail-item.is-done .tg-rail-num { display: none; }

/* ── Mobile-Stepper (horizontal, sticky) ───────────────────── */
.tg-stepper {
  display: none;
  position: sticky;
  top: var(--nav-height);
  z-index: 40;
  /* .tg-stepper ist selbst ein .container – das horizontale Padding wird hier
     auf 0 gesetzt, dadurch reicht der Balken schon randlos über die volle
     Breite. Negative Margins würden das Element breiter als den Viewport
     machen und 16–24px horizontalen Überlauf erzeugen. */
  margin: 0;
  padding: 10px 0 11px;
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--w07);
}
.tg-stepper-track {
  display: flex; gap: 8px;
  padding: 0 24px 2px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  /* ohne scroll-padding schnappt der erste Chip bündig an den Viewport-Rand
     und steht dann 24px links vom übrigen Seiteninhalt */
  scroll-padding: 0 24px;
  scrollbar-width: none;
}
.tg-stepper-track::-webkit-scrollbar { display: none; }
.tg-stepper-chip {
  --tg-accent: var(--red);
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0; scroll-snap-align: start;
  min-height: 44px; padding: 0 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--w10);
  background: var(--w03);
  font-size: 13px; font-weight: 600; color: var(--w70);
  white-space: nowrap;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.tg-stepper-chip[aria-current="true"] {
  color: var(--white);
  border-color: var(--tg-accent);
  background: color-mix(in srgb, var(--tg-accent) 12%, transparent);
}
.tg-stepper-chip .tg-ring { width: 18px; height: 18px; }
.tg-stepper-bar {
  height: 2px; background: var(--w07);
  margin: 9px 24px 0; border-radius: var(--radius-full);
  overflow: hidden;
}
.tg-stepper-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--green));
  transition: width .45s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   STAGE (Abschnitt)
   ============================================================ */
.tg-stage {
  scroll-margin-top: calc(var(--nav-height) + 24px);
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--w07);
}
.tg-stage:last-of-type { border-bottom: none; margin-bottom: 0; }

.tg-stage-head {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 28px;
}
.tg-stage-badge {
  display: grid; place-items: center;
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--tg-accent) 34%, transparent);
  background: color-mix(in srgb, var(--tg-accent) 11%, transparent);
  color: var(--tg-accent);
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: .04em;
}
.tg-stage-headings { min-width: 0; flex: 1; }
.tg-stage-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.05; margin: 0 0 8px;
  overflow-wrap: anywhere;
}
.tg-stage-sub {
  font-size: 15px; color: var(--w70);
  line-height: 1.7; margin: 0; max-width: 62ch;
}
.tg-stage-status svg { width: 15px; height: 15px; flex-shrink: 0; }
.tg-stage-status {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px; padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--w10);
  background: var(--w03);
  font-size: 12px; font-weight: 600; color: var(--w70);
}
.tg-stage.is-complete .tg-stage-status {
  border-color: rgba(156,255,134,.35);
  background: rgba(156,255,134,.1);
  color: var(--green);
}
.tg-stage.is-complete .tg-stage-badge {
  border-color: rgba(156,255,134,.45);
  background: rgba(156,255,134,.12);
  color: var(--green);
}

/* ============================================================
   DOWNLOAD-KARTEN
   ============================================================ */
.tg-dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 268px), 1fr));
  gap: 14px;
}
.tg-dl {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  min-height: 88px; padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--w07);
  background: var(--w03);
  color: inherit;
  transition: border-color var(--ease), background var(--ease),
              transform var(--ease), box-shadow var(--ease);
}
a.tg-dl:hover {
  border-color: rgba(156,255,134,.42);
  background: rgba(156,255,134,.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(0,0,0,.35);
}
.tg-dl-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--w07);
  background: var(--w05);
  color: var(--w70);
  transition: color var(--ease);
}
.tg-dl-icon svg { width: 22px; height: 22px; }
a.tg-dl:hover .tg-dl-icon { color: var(--green); }
.tg-dl-body { flex: 1; min-width: 0; }
.tg-dl-name {
  display: block;
  font-size: 15px; font-weight: 700; color: var(--white);
  overflow-wrap: anywhere;
}
.tg-dl-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.tg-dl-version {
  display: inline-block;
  font-family: monospace; font-size: 11px; font-weight: 600;
  letter-spacing: .05em; color: var(--green);
  background: rgba(156,255,134,.12);
  border-radius: var(--radius-xs); padding: 2px 7px;
}
.tg-dl-note { display: block; font-size: 12.5px; color: var(--w50); margin-top: 5px; }
.tg-dl-arrow {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--w50);
  transition: color var(--ease), transform var(--ease);
}
a.tg-dl:hover .tg-dl-arrow { color: var(--green); transform: translate(2px,-2px); }
/* sitzt in .tg-dl-tags unter dem Namen – als Geschwister der Body-Spalte
   hat es den Text auf schmalen Karten auf ~90px zusammengedrückt */
.tg-dl-req {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--w50);
  border: 1px solid var(--w10); border-radius: var(--radius-full);
  padding: 2px 9px; white-space: nowrap;
}

/* ============================================================
   CHECKLISTE
   ============================================================ */
.tg-steps { list-style: none; margin: 0; padding: 0; }
.tg-step + .tg-step { margin-top: 8px; }

.tg-step-btn {
  display: flex; align-items: flex-start; gap: 14px;
  width: 100%; min-height: 56px;
  padding: 14px 18px;
  text-align: left;
  border-radius: var(--radius-md);
  border: 1px solid var(--w07);
  background: var(--w03);
  color: var(--w70);
  font-family: inherit; font-size: 15px; line-height: 1.6;
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
.tg-step-btn:hover {
  border-color: color-mix(in srgb, var(--tg-accent) 40%, transparent);
  background: var(--w05);
  color: var(--white);
}
.tg-step-box {
  display: grid; place-items: center;
  width: 26px; height: 26px; flex-shrink: 0;
  margin-top: 1px;
  border-radius: 8px;
  border: 2px solid color-mix(in srgb, var(--tg-accent) 55%, transparent);
  background: transparent;
  color: transparent;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.tg-step-box svg { width: 14px; height: 14px; }
.tg-step-index {
  font-family: monospace; font-size: 11px;
  color: var(--w50); flex-shrink: 0; margin-top: 4px;
  min-width: 2ch;
}
.tg-step-text { flex: 1; min-width: 0; overflow-wrap: anywhere; }

.tg-step-btn[aria-checked="true"] {
  border-color: rgba(156,255,134,.32);
  background: rgba(156,255,134,.06);
}
.tg-step-btn[aria-checked="true"] .tg-step-box {
  background: var(--green); border-color: var(--green); color: #0d0d0d;
}
.tg-step-btn[aria-checked="true"] .tg-step-text {
  color: var(--w50); text-decoration: line-through;
  text-decoration-color: rgba(156,255,134,.5);
  text-decoration-thickness: 1.5px;
}

/* ============================================================
   COPY-FELD (Server-Adressen)
   ============================================================ */
.tg-copy {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--w10);
  background: #0a0b0d;
  overflow: hidden;
  max-width: 620px;
}
.tg-copy-head {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  background: var(--w05);
  border-bottom: 1px solid var(--w07);
}
.tg-copy-head svg { width: 15px; height: 15px; color: var(--tg-accent); flex-shrink: 0; }
.tg-copy-title {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--w70);
}
.tg-copy-body {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; flex-wrap: wrap;
}
.tg-copy-value {
  font-family: monospace; font-size: 15px;
  color: var(--white); font-weight: 500;
  flex: 1; min-width: 180px;
  overflow-wrap: anywhere;
}
.tg-copy-prefix { color: var(--green); font-weight: 600; }
.tg-copy-btn {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--w15);
  background: var(--w05);
  color: var(--w70);
  font-family: inherit; font-size: 13px; font-weight: 600;
  flex-shrink: 0;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.tg-copy-btn svg { width: 15px; height: 15px; }
.tg-copy-btn:hover {
  background: rgba(156,255,134,.12);
  border-color: rgba(156,255,134,.4);
  color: var(--green);
}
.tg-copy-btn.is-done {
  background: rgba(156,255,134,.16);
  border-color: var(--green); color: var(--green);
}

/* ============================================================
   SPEC-LEISTE (Versionsangaben)
   ============================================================ */
.tg-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 12px;
  margin-bottom: 26px;
}
.tg-spec {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--w10);
  background: var(--w03);
}
.tg-spec-label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--w50);
  margin-bottom: 6px;
}
.tg-spec-value {
  font-family: monospace; font-size: 15px; font-weight: 600;
  color: var(--white); overflow-wrap: anywhere;
}
.tg-spec--accent .tg-spec-value { color: var(--tg-accent); }

/* ============================================================
   CALLOUT
   ============================================================ */
.tg-callout {
  display: flex; gap: 14px;
  padding: 16px 18px;
  margin-top: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--w10);
  background: var(--w03);
  border-left: 3px solid var(--tg-accent);
}
.tg-callout svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--tg-accent); }
.tg-callout-body { font-size: 14px; color: var(--w70); line-height: 1.7; }
.tg-callout-body strong { color: var(--white); font-weight: 600; }
.tg-callout--warn { --tg-accent: #FFC46B; }

/* ============================================================
   CTA
   ============================================================ */
.tg-cta {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; margin-top: 24px; padding: 0 22px;
  border-radius: var(--radius-md);
  font-size: 15px; font-weight: 700;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}
.tg-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.tg-cta--discord {
  background: #5865F2; color: #fff;
  box-shadow: 0 6px 26px rgba(88,101,242,.34);
}
.tg-cta--discord:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(88,101,242,.5);
  filter: brightness(1.08);
}
.tg-cta--ghost {
  border: 1px solid var(--w15); background: var(--w05); color: var(--white);
}
.tg-cta--ghost:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   FAQ / TROUBLESHOOTING
   ============================================================ */
.tg-faq { display: grid; gap: 10px; }
.tg-faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--w07);
  background: var(--w03);
  overflow: hidden;
}
.tg-faq-item[open] { border-color: var(--w15); background: var(--w05); }
.tg-faq-q {
  display: flex; align-items: center; gap: 12px;
  min-height: 56px; padding: 14px 18px;
  cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 600; color: var(--white);
}
.tg-faq-q::-webkit-details-marker { display: none; }
.tg-faq-chevron {
  width: 17px; height: 17px; margin-left: auto; flex-shrink: 0;
  color: var(--w50);
  transition: transform var(--ease), color var(--ease);
}
.tg-faq-item[open] .tg-faq-chevron { transform: rotate(180deg); color: var(--tg-accent); }
.tg-faq-a {
  padding: 0 18px 18px 47px;
  font-size: 14.5px; color: var(--w70); line-height: 1.75;
}
.tg-faq-a a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* ── Freitext ──────────────────────────────────────────────── */
.tg-prose { font-size: 15px; color: var(--w70); line-height: 1.8; }
.tg-prose > * + * { margin-top: 14px; }
.tg-prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.tg-prose strong { color: var(--white); }
.tg-prose ul, .tg-prose ol { padding-left: 22px; }

/* ── Abschluss-Banner ──────────────────────────────────────── */
.tg-finish {
  margin-top: 56px; padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(156,255,134,.28);
  background: linear-gradient(135deg, rgba(156,255,134,.09), transparent 70%);
  text-align: center;
}
.tg-finish-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 10px; color: var(--green);
}
.tg-finish-text {
  font-size: 15px; color: var(--w70); line-height: 1.7;
  max-width: 52ch; margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .tg-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-top: 0;
  }
  .tg-rail { display: none; }
  .tg-stepper { display: block; }
  .tg-stage { scroll-margin-top: calc(var(--nav-height) + 88px); }
  .tg-main { padding-top: 40px; }
}

@media (max-width: 640px) {
  /* .container fällt hier auf 16px Padding – Chips und Balken ziehen mit,
     damit sie bündig zum übrigen Seiteninhalt stehen. */
  .tg-stepper-track { padding: 0 16px 2px; scroll-padding: 0 16px; }
  .tg-stepper-bar { margin: 9px 16px 0; }

  .tg-stage-head { gap: 14px; }
  .tg-stage-badge { width: 44px; height: 44px; font-size: 19px; }
  .tg-dl { min-height: 0; padding: 16px; gap: 13px; }
  .tg-dl-icon { width: 40px; height: 40px; }
  .tg-dl-icon svg { width: 19px; height: 19px; }
  .tg-copy-body { padding: 14px; }
  .tg-copy-btn { width: 100%; justify-content: center; }
  .tg-faq-a { padding-left: 18px; }
  .tg-finish { padding: 24px 18px; }
}

@media (max-width: 400px) {
  .tg-step-btn { padding: 13px 14px; gap: 11px; }
  .tg-step-index { display: none; }
}

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .tg *,
  .tg *::before,
  .tg *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .tg-rail, .tg-stepper, .tg-progress-reset, .tg-copy-btn { display: none !important; }
  .tg-hero::before, .tg-hero::after { display: none; }
  .tg-faq-a { display: block !important; }
  .tg { color: #000; }
}
