@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Spline Sans";
  src: url("../fonts/SplineSans.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Spline Sans Mono";
  src: url("../fonts/SplineSansMono.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f6f5f1;
  --surface: #ffffff;
  --surface-2: #eceee7;
  --dark: #14181f;
  --dark-2: #1c212b;
  --text: #161a21;
  --text-muted: #5b6270;
  --text-invert: #eef0f3;
  --text-invert-muted: #9aa3b2;
  --accent: #0d7a6f;
  --accent-soft: #e2efec;
  --accent-2: #d94f35;
  --border: #dcdad1;
  --tb-white: #e9e7df;
  --tb-yellow: #f2c230;
  --tb-cyan: #2fb3c8;
  --tb-green: #40ad5c;
  --tb-magenta: #cf4f9d;
  --tb-red: #dd4a3d;
  --tb-blue: #2f5fd0;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Spline Sans", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", monospace;
  --fs-display: clamp(2.3rem, 4.6vw, 3.9rem);
  --fs-h1: clamp(2rem, 3.6vw, 3.1rem);
  --fs-h2: clamp(1.7rem, 2.8vw, 2.4rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.35rem);
  --fs-body: 1rem;
  --fs-small: 0.9rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.6rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(20, 24, 31, 0.06);
  --shadow-md: 0 14px 34px rgba(20, 24, 31, 0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}
main { flex: 1 0 auto; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.01em; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: var(--space-xl) 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.hidden { display: none !important; }
.test-bar {
  display: block;
  height: 6px;
  background: linear-gradient(90deg,
    var(--tb-white) 0 14.28%, var(--tb-yellow) 0 28.57%, var(--tb-cyan) 0 42.85%,
    var(--tb-green) 0 57.14%, var(--tb-magenta) 0 71.42%, var(--tb-red) 0 85.71%,
    var(--tb-blue) 0 100%);
}
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.overline::before {
  content: "";
  width: 46px;
  height: 5px;
  background: linear-gradient(90deg,
    var(--tb-yellow) 0 25%, var(--tb-cyan) 0 50%, var(--tb-green) 0 75%, var(--tb-blue) 0 100%);
}
.ch-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-muted);
}
.section-head { max-width: 720px; margin-bottom: var(--space-lg); }
.section-head h2 { font-size: var(--fs-h2); margin: 10px 0 12px; }
.section-head p { color: var(--text-muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--text); color: #fff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { min-height: 42px; padding: 8px 16px; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn.added { background: var(--accent); color: #fff; }
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.badge-accent { background: var(--accent-soft); color: var(--accent); border-color: transparent; }
.badge-live { background: var(--accent-2); color: #fff; border-color: transparent; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 245, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
  overflow: visible;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 22px; min-height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.logo img { width: 50px; height: 50px; object-fit: contain; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; }
.main-nav { display: flex; gap: 24px; margin-left: 8px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text);
}
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1.25rem;
  background: var(--surface);
  transition: border-color 0.25s, color 0.25s;
}
.cart-link:hover { border-color: var(--accent); color: var(--accent); }
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-count.bump { animation: bump 0.4s ease; }
@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero { padding: var(--space-lg) 0 var(--space-xl); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-grid > * { min-width: 0; max-width: 100%; }
.hero h1 { font-size: var(--fs-display); margin: 14px 0 18px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { font-size: 1.1rem; color: var(--text-muted); max-width: 54ch; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.hero-chips .badge { background: var(--surface); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; }
.hero-media figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4;
}
.hero-media figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(20, 24, 31, 0) 55%, rgba(20, 24, 31, 0.35));
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 24, 31, 0.82);
  color: var(--text-invert);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--tb-red); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(221, 74, 61, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(221, 74, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(221, 74, 61, 0); }
}
.float-chip {
  position: absolute;
  bottom: 22px;
  left: -18px;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.float-chip strong { display: block; font-size: 1rem; color: var(--accent); }
.hero-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 8px; opacity: 0.9; }
.stats-band { background: var(--surface-2); border-block: 1px solid var(--border); padding: var(--space-lg) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 6px 26px; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat strong { display: block; font-family: var(--font-mono); font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--text); }
.stat span { font-size: 0.88rem; color: var(--text-muted); }
.catalog-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: var(--space-md); }
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.filter-label { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-right: 4px; }
.filter-chip {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.86rem;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--text); border-color: var(--text); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 22px; }
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 14px 14px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-media img { transform: scale(1.06); }
.media-chip {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  background: rgba(20, 24, 31, 0.78);
  color: var(--text-invert);
  padding: 4px 9px;
  border-radius: var(--radius-sm);
}
.product-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.product-body h3 { font-size: 1.12rem; }
.product-sub { font-size: 0.86rem; color: var(--text-muted); font-family: var(--font-mono); }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; }
.product-price strong { font-family: var(--font-display); font-size: 1.35rem; }
.product-price s { color: var(--text-muted); font-size: 0.85rem; }
.product-actions { display: flex; gap: 10px; }
.product-actions .btn { flex: 1; padding-inline: 8px; }
.catalog-note { margin-top: var(--space-md); font-size: 0.85rem; color: var(--text-muted); }
.catalog-help {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--dark);
  color: var(--text-invert);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.catalog-help::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--tb-white) 0 14.28%, var(--tb-yellow) 0 28.57%, var(--tb-cyan) 0 42.85%,
    var(--tb-green) 0 57.14%, var(--tb-magenta) 0 71.42%, var(--tb-red) 0 85.71%,
    var(--tb-blue) 0 100%);
}
.catalog-help h3 { font-size: 1.25rem; margin-bottom: 6px; }
.catalog-help p { color: var(--text-invert-muted); font-size: 0.95rem; max-width: 56ch; }
.product-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  border-radius: var(--radius-md);
  padding: 0;
  width: min(1080px, 94vw);
  max-height: min(88vh, 780px);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.product-modal[open] { animation: modal-pop 0.35s ease both; }
.product-modal::backdrop { background: rgba(16, 19, 25, 0.55); animation: backdrop-fade 0.3s ease both; }
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: none; }
}
@keyframes backdrop-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.modal-head h3 { font-size: 1.35rem; margin: 8px 0 4px; }
.modal-sub { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); }
.modal-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text);
}
.modal-close:hover { border-color: var(--accent-2); color: var(--accent-2); }
.modal-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 0.9fr;
  gap: 26px;
  padding: 26px;
  overflow-y: auto;
  max-height: calc(min(88vh, 780px) - 92px);
}
.modal-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-col h4::before {
  content: "";
  width: 18px;
  height: 4px;
  background: linear-gradient(90deg, var(--tb-cyan), var(--accent));
}
.modal-visual {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}
.modal-visual img { width: 100%; height: 100%; object-fit: cover; }
.modal-short { font-size: 0.94rem; color: var(--text-muted); margin: 0 0 6px; }
.modal-price { display: flex; align-items: baseline; gap: 12px; margin: 10px 0 6px; flex-wrap: wrap; }
.modal-price strong { font-family: var(--font-display); font-size: 1.7rem; }
.modal-price s { color: var(--text-muted); }
.vat-note { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 14px; }
.modal-actions { display: grid; gap: 10px; }
.check-list { list-style: none; display: grid; gap: 8px; }
.check-list li { display: flex; gap: 10px; font-size: 0.93rem; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table th { text-align: left; font-weight: 500; color: var(--text-muted); padding: 7px 8px 7px 0; width: 44%; }
.spec-table td { padding: 7px 0; }
.pflicht-info {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--surface-2);
  border-left: 4px solid var(--tb-green);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
}
.tech-section { background: var(--dark); color: var(--text-invert); position: relative; overflow: hidden; }
.tech-section .section-head p { color: var(--text-invert-muted); }
.tech-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 46px; align-items: start; }
.tech-item { padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); display: grid; grid-template-columns: 64px 1fr; gap: 18px; }
.tech-item:last-child { border-bottom: none; }
.tech-num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.14em; color: var(--tb-cyan); padding-top: 6px; }
.tech-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.tech-item p { color: var(--text-invert-muted); font-size: 0.95rem; }
.tech-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tech-chips span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--text-invert);
}
.tech-media { position: sticky; top: 100px; }
.tech-media figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; position: relative; }
.tech-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); will-change: transform; }
.tech-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(20, 24, 31, 0.82);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text-invert);
  z-index: 2;
}
.tech-media-wide { position: static; }
.tech-media-wide figure { aspect-ratio: 16 / 9; }
.process-section { background: var(--surface-2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.process-step::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -20px;
  width: 20px;
  border-top: 2px dashed var(--border);
}
.process-step:last-child::after { display: none; }
.step-num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.16em; color: var(--accent); }
.process-step h3 { font-size: 1.08rem; margin: 10px 0 8px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }
.process-cta { margin-top: var(--space-lg); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.process-cta span { font-size: 0.9rem; color: var(--text-muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-grid-wide { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.article-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-media img { transform: scale(1.05); }
.article-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cat-row { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-chip {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}
.cat-chip.werbung { background: var(--accent-2); color: #fff; }
.article-body h3 { font-size: 1.12rem; }
.article-body h3 a { color: var(--text); }
.article-body h3 a:hover { color: var(--accent); }
.article-body p { font-size: 0.92rem; color: var(--text-muted); }
.article-meta { margin-top: auto; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-muted); }
.blog-more { margin-top: var(--space-md); }
.blog-grid-wide .article-media { aspect-ratio: 16 / 8; }
.blog-grid-wide .article-body { padding: 24px 26px 28px; }
.blog-grid-wide .article-body h3 { font-size: 1.4rem; }
.blog-grid-wide .article-body p { font-size: 0.98rem; }
.blog-grid-wide .article-meta { font-size: 0.82rem; padding-top: 8px; }
.blog-grid-wide .read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  margin-top: 4px;
}
.blog-grid-wide .read-link:hover { gap: 12px; color: var(--accent-2); }
.contact-section {
  background-color: var(--surface-2);
  background-image: repeating-linear-gradient(90deg, rgba(20, 24, 31, 0.028) 0 1px, transparent 1px 64px);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-grid > * { min-width: 0; max-width: 100%; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--accent);
}
.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form-card > p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: grid; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 0.85rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  min-height: 46px;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); outline: none; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.84rem; color: var(--text-muted); margin: 4px 0 18px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex: 0 0 18px; }
.faq-side h3 { font-size: 1.3rem; margin-bottom: 6px; }
.faq-side > p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 18px; }
.faq-list { display: grid; gap: 12px; counter-reset: faq; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-list details[open] { border-left-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-list summary {
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
  counter-increment: faq;
  content: counter(faq, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  flex: 0 0 auto;
}
.faq-list summary span { flex: 1; }
.faq-list summary::after { content: "+"; font-family: var(--font-mono); font-size: 1.2rem; color: var(--accent); transition: transform 0.3s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 10px; font-size: 0.92rem; color: var(--text-muted); padding-left: 34px; }
.contact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.strip-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--dark);
  color: var(--text-invert);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.strip-card:hover { transform: translateY(-4px); color: var(--text-invert); }
.strip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--tb-white) 0 14.28%, var(--tb-yellow) 0 28.57%, var(--tb-cyan) 0 42.85%,
    var(--tb-green) 0 57.14%, var(--tb-magenta) 0 71.42%, var(--tb-red) 0 85.71%,
    var(--tb-blue) 0 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.strip-card:hover::before { opacity: 1; }
.strip-card i {
  font-size: 1.4rem;
  color: var(--tb-cyan);
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}
.strip-label { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-invert-muted); }
.strip-card strong { display: block; font-size: 1.05rem; margin: 2px 0; }
.strip-note { font-size: 0.84rem; color: var(--text-invert-muted); }
.site-footer { background: var(--dark); color: var(--text-invert-muted); margin-top: auto; }
.footer-bar { height: 7px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 30px; padding: var(--space-lg) 0; }
.logo-footer { margin-bottom: 14px; }
.logo-footer .logo-name { color: var(--text-invert); }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }
.footer-usp { display: grid; gap: 6px; margin-top: 14px; font-size: 0.85rem; }
.footer-usp i { color: var(--tb-cyan); margin-right: 6px; }
.footer-col h3 { color: var(--text-invert); font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-invert-muted); font-size: 0.92rem; padding: 4px 0; }
.footer-col a:hover { color: var(--tb-cyan); }
.footer-contact p { font-size: 0.92rem; margin-bottom: 8px; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 22px 0 30px; display: grid; gap: 10px; }
.footer-disclaimer { font-size: 0.82rem; color: var(--text-invert-muted); max-width: 96ch; }
.footer-notes { font-size: 0.85rem; }
.footer-notes a { color: var(--tb-cyan); }
.footer-copy { font-size: 0.85rem; font-family: var(--font-mono); }
.page-hero { padding: var(--space-lg) 0 var(--space-md); background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumbs { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.page-hero h1 { font-size: var(--fs-h1); max-width: 26ch; }
.page-hero .page-lead { margin-top: 12px; color: var(--text-muted); max-width: 68ch; }
.steps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.steps li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--bg);
}
.steps li b { color: var(--accent); font-weight: 600; }
.steps li.active { background: var(--text); color: #fff; border-color: var(--text); }
.steps li.active b { color: var(--tb-cyan); }
.steps li.done a { color: var(--accent); }
.article-layout { padding: var(--space-lg) 0 var(--space-xl); }
.article-wrap { max-width: 820px; margin: 0 auto; }
.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin: var(--space-md) 0; aspect-ratio: 16 / 8; box-shadow: var(--shadow-sm); }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-byline { display: flex; flex-wrap: wrap; gap: 16px; font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; }
.prose h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; color: #2c313b; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: #2c313b; }
.prose li { margin-bottom: 6px; }
.note-callout {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 22px 0;
  font-size: 0.95rem;
}
.note-callout strong { display: block; margin-bottom: 4px; }
.product-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 18px 0;
  box-shadow: var(--shadow-sm);
}
.product-box h4 { font-size: 1.05rem; margin-bottom: 4px; }
.product-box p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.product-box .box-price { font-family: var(--font-display); font-size: 1.3rem; white-space: nowrap; }
.author-box {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 34px;
}
.author-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--tb-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.author-box strong { display: block; }
.author-box span { font-size: 0.88rem; color: var(--text-muted); }
.sources { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--text-muted); }
.article-nav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: var(--space-md); }
.legal-content { max-width: 820px; margin: 0 auto; padding: var(--space-lg) 24px var(--space-xl); word-break: break-word; }
.legal-content h1 { font-size: 2rem; margin: 10px 0 6px; }
.legal-content h2 {
  font-size: 1.45rem;
  margin: 34px 0 12px;
  padding-top: 14px;
  border-top: 3px solid var(--surface-2);
  position: relative;
}
.legal-content h2::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 74px;
  height: 3px;
  background: linear-gradient(90deg, var(--tb-cyan), var(--accent));
}
.legal-content h3 { font-size: 1.1rem; margin: 20px 0 8px; }
.legal-content p, .legal-content li { font-size: 0.98rem; color: #2c313b; }
.legal-content p { margin-bottom: 12px; }
.legal-content ul, .legal-content ol { margin: 0 0 14px 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-meta { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.toc-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 26px;
}
.toc-box h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.toc-box ol { margin-left: 20px; columns: 2; font-size: 0.9rem; }
.toc-box a { color: var(--text-muted); }
.toc-box a:hover { color: var(--accent); }
.legal-callout {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 18px 0;
  font-size: 0.94rem;
}
.legal-callout.warn { background: #fdf0e7; border-left-color: var(--accent-2); }
.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: var(--space-md) 0; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.info-card i { font-size: 1.7rem; color: var(--accent); }
.info-card h3 { font-size: 1.05rem; margin: 10px 0 6px; }
.info-card p { font-size: 0.9rem; color: var(--text-muted); }
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 34px; align-items: start; }
.cart-lines { display: grid; gap: 14px; }
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.cart-line-info h3 { font-size: 1.08rem; }
.cart-line-info p { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.line-unit { display: block; font-size: 0.84rem; color: var(--text-muted); margin-top: 6px; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-box button {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg);
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.qty-box button:hover { background: var(--accent); color: #fff; }
.qty-box span { min-width: 40px; text-align: center; font-family: var(--font-mono); font-size: 0.95rem; }
.line-total { font-family: var(--font-display); font-size: 1.15rem; min-width: 110px; text-align: right; }
.line-remove {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.line-remove:hover { border-color: var(--accent-2); color: var(--accent-2); }
.cart-empty {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 44px 30px;
  text-align: center;
}
.cart-empty i { font-size: 2.6rem; color: var(--accent); }
.cart-empty h3 { margin: 12px 0 6px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 18px; }
.summary-card {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--accent);
}
.summary-card h3 { font-size: 1.25rem; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: 0.95rem; color: var(--text-muted); }
.sum-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
}
.sum-row .free { color: var(--accent); font-weight: 600; }
.summary-trust { display: grid; gap: 6px; margin: 16px 0; font-size: 0.84rem; color: var(--text-muted); }
.summary-trust i { color: var(--accent); margin-right: 6px; }
.summary-note {
  margin-top: 16px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.summary-note i { color: var(--accent); margin-right: 6px; }
.order-lines { display: grid; gap: 6px; margin-bottom: 12px; }
.order-line { display: flex; justify-content: space-between; gap: 12px; font-size: 0.9rem; color: var(--text); }
.order-line span { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.8rem; }
.radio-group { display: grid; gap: 10px; margin: 8px 0 18px; }
.radio-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.radio-card:hover { border-color: var(--accent); }
.radio-card:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.radio-card input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); flex: 0 0 18px; }
.radio-card strong { display: flex; justify-content: space-between; gap: 12px; width: 100%; font-size: 0.96rem; }
.radio-card span { display: block; font-size: 0.84rem; color: var(--text-muted); margin-top: 2px; }
.form-block-title { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; margin: 22px 0 12px; }
.form-block-title i { color: var(--accent); }
.thanks-wrap { padding: var(--space-xl) 24px; }
.thanks-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 6px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
}
.thanks-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 20px;
}
.thanks-card h1 { font-size: 1.9rem; margin-bottom: 10px; }
.thanks-card > p { font-size: 1.2rem; color: var(--text-muted); }
.thanks-card strong { color: var(--text); }
.thanks-steps { display: grid; gap: 14px; margin: 26px 0; }
.thanks-step { display: flex; gap: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 18px; }
.thanks-step b { font-family: var(--font-mono); color: var(--accent); font-size: 0.9rem; padding-top: 2px; }
.thanks-step span { font-size: 0.94rem; }
.thanks-contacts { display: flex; flex-wrap: wrap; gap: 18px; margin: 22px 0 26px; font-size: 0.92rem; }
.thanks-contacts a { display: inline-flex; align-items: center; gap: 8px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-media { position: static; }
  .tech-media figure { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: 1fr; max-height: none; }
  .product-modal { max-height: 92vh; }
  .modal-grid { max-height: calc(92vh - 92px); overflow-y: auto; }
  .info-card-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .contact-strip { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 12px;
    padding: 14px 0 10px;
    min-height: auto;
  }
  .logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .logo-name {
    word-break: break-all;
    min-width: 0;
  }
  .header-actions {
    margin-left: 0;
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    flex-direction: column;
    gap: 4px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 22px;
    box-shadow: var(--shadow-md);
    z-index: 70;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .wrap.footer-grid { padding-top: var(--space-md); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-wide { grid-template-columns: 1fr; }
  .article-nav-grid { grid-template-columns: 1fr; }
  .toc-box ol { columns: 1; }
  .cart-line { grid-template-columns: 1fr auto; }
  .line-total { text-align: left; }
  .footer-col { word-break: break-all; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  section { padding: var(--space-lg) 0; }
  .process-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-chip { left: 10px; }
  .thanks-card { padding: 30px 22px; }
  .catalog-help { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 12px; }
  .form-card { padding: 20px 16px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 0.95rem; }
  .btn { font-size: 0.92rem; padding: 12px 16px; }
  .hero-copy h1 { font-size: clamp(1.6rem, 7vw, 2rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .tech-media img { transform: none !important; }
}

.thanks-ticket {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--dark);
  color: var(--text-invert);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}
.thanks-ticket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--tb-white) 0 14.28%, var(--tb-yellow) 0 28.57%, var(--tb-cyan) 0 42.85%,
    var(--tb-green) 0 57.14%, var(--tb-magenta) 0 71.42%, var(--tb-red) 0 85.71%,
    var(--tb-blue) 0 100%);
}
.ticket-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
  margin-bottom: 4px;
}
.ticket-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--tb-cyan);
}
.ticket-note {
  font-size: 0.82rem;
  color: var(--text-invert-muted);
  max-width: 30ch;
}
.thanks-card .contact-strip { grid-template-columns: 1fr; margin-top: 8px; }
.thanks-card .strip-card { padding: 16px 18px; }
.thanks-card .strip-card strong { color: var(--text-invert); }
.thanks-card .strip-card .strip-label { color: var(--tb-cyan); }
.thanks-card .strip-card .strip-note { color: var(--text-invert-muted); }

.ticket-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
  margin-bottom: 4px;
}
.ticket-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--tb-cyan);
}
.ticket-note {
  font-size: 0.82rem;
  color: var(--text-invert-muted);
  max-width: 30ch;
}
.thanks-card .contact-strip { grid-template-columns: 1fr; margin-top: 8px; }
.thanks-card .strip-card { padding: 16px 18px; }