:root {
  --orange: #f58200;
  --orange-dark: #de7400;
  --text: #f5f7f8;
  --text-soft: #c7cdd2;
  --line: rgba(255,255,255,0.12);
  --bg: #343a40;
  --bg-soft: #3b4248;
  --bg-deep: #2d3238;
  --white: #ffffff;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(255,255,255,0.08);
  --shadow: rgba(0,0,0,0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #343a40 0%, #2c3137 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}
.site-wrap {
  position: relative;
  overflow: clip;
  min-height: 100vh;
}
.site-main {
  position: relative;
  z-index: 1;
}
header.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(10px);
  background: rgba(30, 34, 38, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  position: relative;
  z-index: 2;
}
.mini-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 170px;
}
.mini-lines span {
  display: block;
  height: 4px;
  border-radius: 999px;
}
.mini-lines span:nth-child(1) { width: 100%; background: var(--orange); }
.mini-lines span:nth-child(2) { width: 92%; background: rgba(255,255,255,0.65); }
.mini-lines span:nth-child(3) { width: 60%; background: var(--orange); }
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
  border-bottom: 2px solid transparent;
}
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-link.is-current {
  color: var(--orange);
  border-color: var(--orange);
}
.nav-link.is-dropdown::after {
  content: "▾";
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  transform: translateY(-1px);
}
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  padding: 12px;
  background: rgba(27, 31, 35, 0.98);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  display: grid;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}
.dropdown a {
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-soft);
}
.dropdown a:hover {
  border-color: rgba(245,130,0,0.30);
  color: var(--white);
  background: rgba(245,130,0,0.08);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-cta,
.btn,
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}
.nav-cta,
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.nav-cta:hover,
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}
.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(24, 28, 31, 0.98);
}
.mobile-nav-inner {
  padding: 18px 0 22px;
  display: grid;
  gap: 10px;
}
.mobile-nav a,
.mobile-nav summary {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
}
.mobile-nav details {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .sub-links {
  display: grid;
  gap: 8px;
  padding-bottom: 10px;
}
.mobile-nav .sub-links a {
  color: var(--text-soft);
  padding: 8px 0 8px 14px;
}
.footer-panel {
  margin: 64px auto 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-topline {
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(255,255,255,0.8) 50%, var(--orange) 100%);
}
.footer-inner { padding: 34px 0 26px; }
.footer-brand-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand h3 {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 12px;
}
.footer-brand p {
  max-width: 720px;
  color: var(--text-soft);
  line-height: 1.7;
}
.footer-badge {
  flex-shrink: 0;
  padding: 14px 18px;
  border: 1px solid rgba(245,130,0,0.30);
  background: rgba(245,130,0,0.08);
  color: #ffd8a6;
  font-weight: 700;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 0;
}
.footer-col h4 {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-col p,
.footer-col li {
  color: var(--text-soft);
  line-height: 1.8;
  list-style: none;
}
.footer-col ul { padding: 0; margin: 0; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: auto 1fr auto auto;
  }
  .site-nav,
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav.is-open { display: block; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1200px); }
  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    min-height: 82px;
  }
  .mini-lines { width: 76px; gap: 5px; }
  .mini-lines span { height: 3px; }
  .brand img { height: 48px; }
  .footer-brand-row,
  .footer-bottom { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* index.html */
body.page-home.page-home {--orange: #f58200;
      --orange-dark: #de7400;
      --text: #f5f7f8;
      --text-soft: #c7cdd2;
      --line: rgba(255,255,255,0.12);
      --bg: #343a40;
      --bg-soft: #3b4248;
      --bg-deep: #2d3238;
      --white: #ffffff;
      --panel: rgba(255,255,255,0.05);
      --panel-strong: rgba(255,255,255,0.08);
      --shadow: rgba(0,0,0,0.22);
      --warning-bg: rgba(245,130,0,0.10);
      --warning-line: rgba(245,130,0,0.28);
      --warning-text: #ffd8a6;}

body.page-home * {box-sizing: border-box;
      margin: 0;
      padding: 0;}

body.page-home.page-home {scroll-behavior: smooth;}

body.page-home {font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #343a40 0%, #2c3137 100%);
      line-height: 1.45;}

body.page-home a {text-decoration: none;
      color: inherit;}

body.page-home img {max-width: 100%;
      display: block;}

body.page-home .container {width: min(1200px, calc(100% - 40px));
      margin: 0 auto;}

body.page-home .site-wrap {position: relative;
      overflow: hidden;}

body.page-home .watermark {position: absolute;
      right: -80px;
      top: 110px;
      font-size: 280px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      pointer-events: none;
      user-select: none;
      line-height: 0.8;
      z-index: 0;}

body.page-home .bg-mark-left, body.page-home .bg-mark-right {position: absolute;
      pointer-events: none;
      user-select: none;
      opacity: 0.05;
      font-size: 220px;
      font-weight: 900;
      color: #ffffff;
      line-height: 0.8;
      letter-spacing: -0.08em;}

body.page-home .bg-mark-left {left: -40px;
      top: 780px;
      transform: rotate(-8deg);}

body.page-home .bg-mark-right {right: -35px;
      top: 1280px;}

body.page-home header {position: sticky;
      top: 0;
      z-index: 80;
      backdrop-filter: blur(10px);
      background: rgba(30, 34, 38, 0.88);
      border-bottom: 1px solid rgba(255,255,255,0.08);}

body.page-home .topbar {display: grid;
      grid-template-columns: auto 1fr auto auto;
      align-items: center;
      gap: 24px;
      min-height: 96px;
      position: relative;
      z-index: 2;}

body.page-home .mini-lines {display: flex;
      flex-direction: column;
      gap: 6px;
      width: 170px;}

body.page-home .mini-lines span {display: block;
      height: 4px;
      border-radius: 999px;}

body.page-home .mini-lines span:nth-child(1) {width: 100%;
      background: var(--orange);}

body.page-home .mini-lines span:nth-child(2) {width: 92%;
      background: rgba(255,255,255,0.65);}

body.page-home .mini-lines span:nth-child(3) {width: 60%;
      background: var(--orange);}

body.page-home .brand {display: flex;
      align-items: center;
      justify-content: flex-end;}

body.page-home .site-nav {display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-left: 18px;}

body.page-home .nav-item {position: relative;}

body.page-home .nav-link {display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 14px;
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.01em;
      transition: 0.2s ease;
      border-radius: 10px;}

body.page-home .nav-link:hover, body.page-home .nav-item:hover > .nav-link {color: #fff;
      background: rgba(255,255,255,0.06);}

body.page-home .nav-link.is-dropdown::after {content: "";
      width: 8px;
      height: 8px;
      border-right: 2px solid rgba(255,255,255,0.75);
      border-bottom: 2px solid rgba(255,255,255,0.75);
      transform: rotate(45deg) translateY(-1px);
      transition: 0.2s ease;}

body.page-home .nav-item:hover .nav-link.is-dropdown::after {transform: rotate(225deg) translateY(-1px);}

body.page-home .dropdown {position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 260px;
      padding: 10px;
      background: rgba(34, 39, 44, 0.97);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 40px rgba(0,0,0,0.28);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: 0.18s ease;
      z-index: 90;}

body.page-home .nav-item:hover .dropdown {opacity: 1;
      visibility: visible;
      transform: translateY(0);}

body.page-home .dropdown a {display: block;
      padding: 12px 14px;
      border-radius: 8px;
      color: rgba(255,255,255,0.9);
      font-size: 14px;
      font-weight: 600;
      transition: 0.18s ease;}

body.page-home .dropdown a:hover {background: rgba(255,255,255,0.06);
      color: #fff;}

body.page-home .nav-cta {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border: 1px solid rgba(245,130,0,0.35);
      background: rgba(245,130,0,0.14);
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.03em;
      transition: 0.2s ease;
      white-space: nowrap;}

body.page-home .nav-cta:hover {background: var(--orange);
      border-color: var(--orange);}

body.page-home .nav-toggle {display: none;
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;}

body.page-home .nav-toggle span {width: 20px;
      height: 2px;
      background: #fff;
      display: block;
      transition: 0.2s ease;}

body.page-home .mobile-nav {display: none;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: rgba(25, 29, 33, 0.96);}

body.page-home .mobile-nav-inner {padding: 12px 0 18px;}

body.page-home .mobile-nav a, body.page-home .mobile-nav summary {display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 48px;
      padding: 0 4px;
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      list-style: none;}

body.page-home .mobile-nav details {border-bottom: 1px solid rgba(255,255,255,0.06);}

body.page-home .mobile-nav details:last-of-type {border-bottom: 0;}

body.page-home .mobile-nav summary::-webkit-details-marker {display: none;}

body.page-home .mobile-nav .sub-links {padding: 0 0 8px 10px;
      display: grid;
      gap: 4px;}

body.page-home .mobile-nav .sub-links a {min-height: 40px;
      color: rgba(255,255,255,0.8);
      font-size: 14px;
      font-weight: 600;}

body.page-home .mobile-nav .mobile-cta {margin-top: 12px;
      display: inline-flex;
      min-height: 46px;
      padding: 0 18px;
      align-items: center;
      justify-content: center;
      background: var(--orange);
      color: #fff;
      font-weight: 800;}

body.page-home .hero {position: relative;
      z-index: 1;
      padding: 56px 0 32px;}

body.page-home .hero-card {position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.06) 100%);
      border: 1px solid rgba(255,255,255,0.1);
      min-height: 620px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      box-shadow: 0 20px 60px var(--shadow);}

body.page-home .hero-content {padding: 76px 70px;
      position: relative;
      z-index: 2;}

body.page-home .eyebrow {display: inline-block;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
      color: rgba(255,255,255,0.95);}

body.page-home .eyebrow .thin {font-weight: 500;
      color: rgba(255,255,255,0.75);}

body.page-home h1 {font-size: clamp(44px, 7vw, 76px);
      line-height: 0.97;
      letter-spacing: -0.05em;
      max-width: 640px;
      color: var(--white);}

body.page-home h1 .highlight {color: var(--orange);}

body.page-home .hero-sub {font-size: clamp(24px, 3.5vw, 38px);
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-top: 10px;
      max-width: 620px;
      color: var(--text-soft);}

body.page-home .cta-row {margin-top: 40px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;}

body.page-home .btn {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 0 32px;
      font-size: 20px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: 0.2s ease;
      cursor: pointer;}

body.page-home .btn-primary {background: var(--orange);
      color: #fff;}

body.page-home .btn-primary:hover {background: var(--orange-dark);}

body.page-home .btn-secondary {background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.12);
      color: var(--white);}

body.page-home .btn-secondary:hover {background: rgba(255,255,255,0.14);}

body.page-home .hero-visual {height: 100%;
      position: relative;
      display: flex;
      align-items: end;
      justify-content: center;
      padding: 40px 34px 0;}

body.page-home .hero-visual::before {content: "RRS";
      position: absolute;
      inset: 30px 30px auto auto;
      font-size: 220px;
      font-weight: 900;
      color: rgba(255,255,255,0.08);
      letter-spacing: -0.08em;
      line-height: 0.8;
      z-index: 0;}

body.page-home .ecu-box {position: relative;
      z-index: 1;
      width: 100%;
      max-width: 470px;
      aspect-ratio: 1.1 / 0.92;
      border-radius: 28px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.28), transparent 30%),
        linear-gradient(145deg, #7f858b, #43484f 45%, #1b1e22 100%);
      box-shadow: 0 30px 50px rgba(0,0,0,0.28);
      transform: rotate(-14deg) translateY(20px);
      padding: 18px;}

body.page-home .ecu-inner {width: 100%;
      height: 100%;
      border-radius: 18px;
      border: 5px solid #c7c9cc;
      background:
        linear-gradient(0deg, rgba(0,0,0,0.12), rgba(0,0,0,0.02)),
        repeating-linear-gradient(90deg, #6f776d 0 8px, #88917e 8px 16px, #4e564c 16px 24px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 6px, rgba(0,0,0,0.04) 6px 12px);
      position: relative;
      overflow: hidden;}

body.page-home .ecu-inner::before, body.page-home .ecu-inner::after {content: "";
      position: absolute;
      background: #40454b;
      border-radius: 6px;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;}

body.page-home .ecu-inner::before {width: 74px;
      height: 50px;
      right: 52px;
      top: 58px;}

body.page-home .ecu-inner::after {width: 88px;
      height: 60px;
      left: 68px;
      bottom: 62px;}

body.page-home .pins {position: absolute;
      left: 12%;
      right: 12%;
      bottom: -26px;
      height: 50px;
      display: grid;
      grid-template-columns: repeat(16, 1fr);
      gap: 5px;}

body.page-home .pins span {background: linear-gradient(180deg, #2e3236, #16181b);
      border-radius: 0 0 6px 6px;}

body.page-home .intro {position: relative;
      z-index: 1;
      padding: 26px 0 0;}

body.page-home .intro-panel {background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 42px 46px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 14px 40px rgba(0,0,0,0.16);}

body.page-home .intro-panel::after {content: "RRS";
      position: absolute;
      right: 14px;
      bottom: -24px;
      font-size: 170px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;}

body.page-home .intro h2 {font-size: clamp(28px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 16px;
      color: var(--white);}

body.page-home .intro h2 strong {font-weight: 900;}

body.page-home .intro p {max-width: 840px;
      font-size: 25px;
      color: var(--text-soft);
      line-height: 1.35;}

body.page-home .services {position: relative;
      z-index: 1;
      padding: 34px 0 34px;}

body.page-home .grid {display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;}

body.page-home .card {background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      min-height: 320px;
      padding: 34px 32px 28px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      transition: 0.2s ease;}

body.page-home .card:hover {transform: translateY(-4px);
      box-shadow: 0 20px 30px rgba(0,0,0,0.18);
      background: rgba(255,255,255,0.08);}

body.page-home .icon {width: 70px;
      height: 70px;
      margin-bottom: 20px;
      color: var(--orange);}

body.page-home .card h3 {font-size: 25px;
      line-height: 1.03;
      letter-spacing: -0.04em;
      margin-bottom: 22px;
      max-width: 360px;
      color: var(--white);}

body.page-home .card p {font-size: 18px;
      color: var(--text-soft);
      line-height: 1.45;
      max-width: 420px;}

body.page-home .offers, body.page-home .gearboxes, body.page-home .dyno {position: relative;
      z-index: 1;
      padding: 0 0 34px;}

body.page-home .section-panel {background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.1);
      padding: 44px;
      box-shadow: 0 14px 40px rgba(0,0,0,0.16);}

body.page-home .section-head {margin-bottom: 28px;}

body.page-home .section-kicker {display: inline-block;
      margin-bottom: 10px;
      color: var(--orange);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;}

body.page-home .section-panel h2 {font-size: clamp(30px, 4vw, 54px);
      letter-spacing: -0.04em;
      color: var(--white);
      margin-bottom: 10px;}

body.page-home .section-head p, body.page-home .section-panel > p {color: var(--text-soft);
      font-size: 18px;
      line-height: 1.6;
      max-width: 900px;}

body.page-home .offer-columns {display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 34px;
      margin-top: 26px;}

body.page-home .offer-column h3 {font-size: 28px;
      color: var(--white);
      margin-bottom: 18px;
      letter-spacing: -0.03em;}

body.page-home .stage-block {padding: 18px 0;
      border-top: 1px solid rgba(255,255,255,0.1);}

body.page-home .stage-block:first-of-type {border-top: 0;
      padding-top: 0;}

body.page-home .stage-title {display: inline-block;
      color: var(--orange);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: 0.03em;}

body.page-home .stage-block p {color: var(--white);
      font-size: 18px;
      margin-bottom: 8px;}

body.page-home .stage-block small {display: block;
      color: var(--text-soft);
      font-size: 16px;
      line-height: 1.55;}

body.page-home .value-badge {display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 6px;
      padding: 8px 12px;
      background: rgba(245,130,0,0.14);
      border: 1px solid rgba(245,130,0,0.28);
      color: #ffd8a6;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.02em;
      border-radius: 999px;
      width: fit-content;}

body.page-home .motor-options {margin-top: 26px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.1);}

body.page-home .motor-options h4 {color: var(--white);
      font-size: 18px;
      margin-bottom: 14px;
      letter-spacing: -0.02em;}

body.page-home .option-tags {display: flex;
      flex-wrap: wrap;
      gap: 12px;}

body.page-home .option-tags span {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 14px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.05);
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;}

body.page-home .compliance-note {margin-top: 18px;
      padding: 16px 18px;
      border-left: 3px solid var(--orange);
      border: 1px solid var(--warning-line);
      background: var(--warning-bg);
      color: var(--warning-text);
      font-size: 14px;
      line-height: 1.65;}

body.page-home .compliance-note strong {color: #fff1dc;
      display: inline-block;
      margin-bottom: 6px;
      letter-spacing: 0.04em;}

body.page-home .optional-note {margin-top: 18px;
      color: #ffd8a6;
      font-size: 15px;
      font-weight: 700;
      padding: 10px 14px;
      border: 1px solid rgba(245,130,0,0.24);
      background: rgba(245,130,0,0.10);
      width: fit-content;}

body.page-home .gearbox-card {background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 26px 24px;}

body.page-home .gearbox-list li a {display: block;
      padding: 12px 14px;
      color: var(--white);
      transition: 0.2s ease;}

body.page-home .gearbox-list li:hover, body.page-home .gearbox-list li:focus-within {background: rgba(245,130,0,0.14);
      border-color: rgba(245,130,0,0.38);
      transform: translateY(-2px);
      box-shadow: 0 10px 18px rgba(0,0,0,0.16);}

body.page-home .gearbox-list li:hover a, body.page-home .gearbox-list li:focus-within a {color: #fff;}

body.page-home .gearbox-list li a:focus-visible {outline: 2px solid rgba(245,130,0,0.75);
      outline-offset: -2px;}

@media (hover: none) {
body.page-home .gearbox-list li:hover {transform: none;
        box-shadow: none;}

body.page-home .gearbox-list li a:active {background: rgba(245,130,0,0.14);
        color: #fff;}
}

body.page-home .gearbox-card h3 {color: var(--white);
      font-size: 24px;
      letter-spacing: -0.03em;
      margin-bottom: 16px;}

body.page-home .gearbox-list {list-style: none;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;}

body.page-home .gearbox-list li {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 0;
      font-weight: 700;
      text-align: center;
      transition: 0.2s ease;
      overflow: hidden;}

body.page-home .dyno-copy {margin-top: 8px;
      max-width: 900px;}

body.page-home .dyno-panel {overflow: hidden;}

body.page-home .dyno-layout {display: grid;
      grid-template-columns: 1fr 0.95fr;
      gap: 34px;
      align-items: center;}

body.page-home .dyno-copy-wrap {position: relative;
      z-index: 1;}

body.page-home .dyno-points {display: grid;
      gap: 12px;
      margin-top: 10px;
      max-width: 760px;}

body.page-home .dyno-point {background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 14px 16px;
      color: var(--white);
      font-size: 15px;
      line-height: 1.55;}

body.page-home .dyno-visual {position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 390px;}

body.page-home .dyno-visual::before {content: "DYNO";
      position: absolute;
      right: -6px;
      top: 6px;
      font-size: 118px;
      font-weight: 900;
      line-height: 0.9;
      letter-spacing: -0.08em;
      color: rgba(255,255,255,0.04);
      pointer-events: none;}

body.page-home .dyno-device {width: 100%;
      max-width: 490px;
      transform: rotate(5deg);}

body.page-home .dyno-svg {width: 100%;
      height: auto;
      display: block;}

body.page-home .contact-box a, body.page-home .footer-col a {color: var(--white);
      text-decoration: none;
      border-bottom: 1px solid rgba(245,130,0,0.35);
      transition: 0.2s ease;}

body.page-home .contact-box a:hover, body.page-home .footer-col a:hover {color: #ffd8a6;
      border-bottom-color: rgba(245,130,0,0.75);}

body.page-home .email-protected {display: inline-flex;
      align-items: center;
      gap: 6px;}

body.page-home .footer-label {color: var(--white);
      font-weight: 700;}

body.page-home .process {padding: 28px 0 40px;
      position: relative;
      z-index: 1;}

body.page-home .process-panel {background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.1);
      padding: 44px;
      box-shadow: 0 14px 40px rgba(0,0,0,0.16);}

body.page-home .process h2, body.page-home .contact h2 {font-size: clamp(30px, 4vw, 54px);
      letter-spacing: -0.04em;
      margin-bottom: 28px;
      color: var(--white);}

body.page-home .steps {display: grid;
      gap: 16px;}

body.page-home .step {display: grid;
      grid-template-columns: 72px 1fr;
      align-items: center;
      gap: 20px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 18px 20px;}

body.page-home .step-number {width: 52px;
      height: 52px;
      background: var(--orange);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 18px;}

body.page-home .step p {font-size: 20px;
      color: var(--white);}

body.page-home .contact {padding: 0 0 30px;
      position: relative;
      z-index: 1;}

body.page-home .contact-panel {background: #24272c;
      color: #fff;
      border-top: 8px solid var(--orange);
      border-left: 1px solid rgba(255,255,255,0.08);
      border-right: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 52px 46px;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
      align-items: end;
      box-shadow: 0 20px 60px rgba(0,0,0,0.22);}

body.page-home .contact p {font-size: 21px;
      color: rgba(255,255,255,0.78);
      max-width: 700px;
      margin-top: 12px;}

body.page-home .contact-box {background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 26px;}

body.page-home .contact-box h3 {color: var(--orange);
      font-size: 16px;
      letter-spacing: 0.22em;
      margin-bottom: 12px;}

body.page-home .contact-box ul {list-style: none;
      display: grid;
      gap: 12px;
      color: rgba(255,255,255,0.9);
      font-size: 18px;}

body.page-home footer {padding: 0 0 42px;
      color: rgba(255,255,255,0.78);
      font-size: 14px;
      position: relative;
      z-index: 1;}

body.page-home .footer-panel {background:
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
      overflow: hidden;}

body.page-home .footer-topline {height: 4px;
      background: linear-gradient(90deg, var(--orange), rgba(245,130,0,0.35));}

body.page-home .footer-inner {padding: 34px 34px 28px;}

body.page-home .footer-brand-row {display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 26px;}

body.page-home .footer-brand h3 {color: var(--white);
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 8px;}

body.page-home .footer-brand p {color: var(--text-soft);
      font-size: 16px;
      max-width: 760px;
      line-height: 1.65;}

body.page-home .footer-badge {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      background: rgba(245,130,0,0.12);
      border: 1px solid rgba(245,130,0,0.24);
      color: #ffd8a6;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;}

body.page-home .footer-grid {display: grid;
      grid-template-columns: 1.2fr 0.9fr 1fr;
      gap: 26px;}

body.page-home .footer-col {background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 22px 20px;}

body.page-home .footer-col h4 {color: var(--orange);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 14px;}

body.page-home .footer-col p, body.page-home .footer-col li {color: rgba(255,255,255,0.82);
      font-size: 15px;
      line-height: 1.75;}

body.page-home .footer-col ul {list-style: none;}

body.page-home .footer-col strong {color: var(--white);}

body.page-home .footer-bottom {margin-top: 22px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.58);
      font-size: 13px;}

@media (max-width: 1180px) {
body.page-home .site-nav {gap: 2px;}

body.page-home .nav-link {padding: 0 10px;
        font-size: 14px;}

body.page-home .nav-cta {padding: 0 16px;}
}

@media (max-width: 980px) {
body.page-home .topbar {grid-template-columns: auto 1fr auto;}

body.page-home .site-nav, body.page-home .nav-cta {display: none;}

body.page-home .nav-toggle {display: inline-flex;}

body.page-home .mobile-nav.is-open {display: block;}

body.page-home .hero-card, body.page-home .contact-panel, body.page-home .offer-columns, body.page-home .footer-grid, body.page-home .dyno-layout {grid-template-columns: 1fr;}

body.page-home .footer-brand-row {display: grid;
        grid-template-columns: 1fr;
        align-items: start;}

body.page-home .hero-content {padding: 54px 28px 24px;}

body.page-home .hero-visual {min-height: 360px;
        padding: 10px 18px 28px;}

body.page-home .grid {grid-template-columns: 1fr;}

body.page-home .gearbox-list {grid-template-columns: repeat(2, minmax(0, 1fr));}

body.page-home .dyno-visual {min-height: 280px;}

body.page-home .dyno-device {max-width: 360px;}

body.page-home .intro-panel, body.page-home .process-panel, body.page-home .contact-panel, body.page-home .section-panel {padding: 30px 24px;}

body.page-home .footer-inner {padding: 30px 24px 24px;}
}

@media (max-width: 640px) {
body.page-home .container {width: min(1200px, calc(100% - 24px));}

body.page-home .topbar {min-height: 84px;}

body.page-home .mini-lines {width: 95px;}

body.page-home .brand img {height: 46px !important;}

body.page-home h1 {font-size: 42px;}

body.page-home .hero-sub {font-size: 24px;}

body.page-home .btn {width: 100%;}

body.page-home .offer-column h3 {font-size: 24px;}

body.page-home .stage-block p, body.page-home .stage-block small, body.page-home .section-head p, body.page-home .section-panel > p, body.page-home .intro p, body.page-home .contact p, body.page-home .footer-brand p, body.page-home .footer-col p, body.page-home .footer-col li, body.page-home .dyno-point {font-size: 14px;}

body.page-home .footer-brand h3 {font-size: 23px;}

body.page-home .gearbox-list {grid-template-columns: 1fr 1fr;}

body.page-home .gearbox-list li, body.page-home .option-tags span {font-size: 14px;
        min-height: 38px;
        padding: 0 12px;}

body.page-home .option-tags {gap: 10px;}

body.page-home .step {grid-template-columns: 56px 1fr;
        gap: 14px;}

body.page-home .step-number {width: 42px;
        height: 42px;}

body.page-home .watermark, body.page-home .bg-mark-left, body.page-home .bg-mark-right, body.page-home .hero-visual::before, body.page-home .intro-panel::after, body.page-home .dyno-visual::before {display: none;}
}

@media (max-width: 640px) {
body.page-home {line-height: 1.5;}

body.page-home .container {width: min(1200px, calc(100% - 18px));}

body.page-home header {backdrop-filter: blur(8px);}

body.page-home .topbar {gap: 12px;
        min-height: 74px;}

body.page-home .mini-lines {width: 72px;
        gap: 5px;}

body.page-home .mini-lines span {height: 3px;}

body.page-home .brand img {height: 40px !important;}

body.page-home .mobile-nav-inner {padding: 10px 0 14px;}

body.page-home .hero {padding: 18px 0 16px;}

body.page-home .hero-card {min-height: auto;
        grid-template-columns: 1fr;}

body.page-home .hero-content {padding: 28px 18px 18px;}

body.page-home .eyebrow {font-size: 14px;
        margin-bottom: 10px;}

body.page-home h1 {font-size: clamp(34px, 11vw, 46px);
        line-height: 0.98;}

body.page-home .hero-sub {font-size: 20px;
        margin-top: 8px;
        max-width: none;}

body.page-home .cta-row {margin-top: 24px;
        gap: 10px;}

body.page-home .btn {width: 100%;
        min-height: 50px;
        padding: 0 18px;
        font-size: 16px;}

body.page-home .hero-visual {min-height: 230px;
        padding: 0 10px 18px;
        align-items: center;}

body.page-home .ecu-box {max-width: 260px;
        padding: 12px;
        transform: rotate(-10deg) translateY(0);
        border-radius: 20px;}

body.page-home .pins {bottom: -18px;
        height: 34px;
        gap: 3px;}

body.page-home .intro {padding-top: 10px;}

body.page-home .intro-panel, body.page-home .section-panel, body.page-home .process-panel, body.page-home .contact-panel, body.page-home .footer-inner {padding: 20px 16px !important;}

body.page-home .intro h2, body.page-home .section-panel h2, body.page-home .process h2, body.page-home .contact h2 {font-size: clamp(24px, 8vw, 32px);
        line-height: 1.04;
        margin-bottom: 12px;}

body.page-home .intro p, body.page-home .section-head p, body.page-home .section-panel > p, body.page-home .contact p {font-size: 15px !important;
        line-height: 1.55;}

body.page-home .services, body.page-home .offers, body.page-home .gearboxes, body.page-home .dyno, body.page-home .process, body.page-home .contact, body.page-home #blog {padding-bottom: 16px !important;}

body.page-home .grid {gap: 12px;}

body.page-home .card {min-height: auto;
        padding: 20px 16px 18px;}

body.page-home .icon {width: 54px;
        height: 54px;
        margin-bottom: 16px;}

body.page-home .card h3 {font-size: 21px;
        margin-bottom: 14px;
        max-width: none;}

body.page-home .card p {font-size: 15px;
        max-width: none;}

body.page-home .section-head {margin-bottom: 18px;}

body.page-home .section-kicker {font-size: 11px;
        margin-bottom: 8px;}

body.page-home .offer-columns {gap: 10px;
        margin-top: 8px;}

body.page-home .offer-column h3 {font-size: 22px;
        margin-bottom: 12px;}

body.page-home .stage-block {padding: 14px 0;}

body.page-home .stage-title {font-size: 14px;
        margin-bottom: 6px;}

body.page-home .stage-block p {font-size: 15px !important;
        margin-bottom: 6px;}

body.page-home .stage-block small {font-size: 14px !important;
        line-height: 1.5;}

body.page-home .value-badge {margin-top: 8px;
        min-height: 36px;
        padding: 7px 10px;
        font-size: 12px;
        line-height: 1.2;
        white-space: normal;
        border-radius: 14px;}

body.page-home .motor-options {margin-top: 18px;
        padding-top: 16px;}

body.page-home .motor-options h4 {font-size: 16px;
        margin-bottom: 10px;}

body.page-home .option-tags {display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;}

body.page-home .option-tags span {justify-content: center;
        min-height: 38px;
        padding: 8px 10px;
        text-align: center;
        font-size: 13px;
        line-height: 1.2;}

body.page-home .compliance-note {margin-top: 14px;
        padding: 12px 12px;
        font-size: 13px;
        line-height: 1.55;}

body.page-home .optional-note {margin-top: 14px;
        width: 100%;
        text-align: center;
        font-size: 13px;
        padding: 10px 12px;}

body.page-home .gearbox-card {padding: 18px 14px;}

body.page-home .gearbox-card h3 {font-size: 18px;
        margin-bottom: 10px;}

body.page-home .gearbox-list {grid-template-columns: 1fr 1fr !important;
        gap: 8px;
        margin-top: 10px;}

body.page-home .gearbox-list li a {padding: 10px 8px;
        font-size: 13px;
        line-height: 1.2;}

body.page-home .dyno-layout {gap: 14px;}

body.page-home .dyno-copy {margin-top: 4px;}

body.page-home .dyno-points {gap: 8px;
        margin-top: 6px;}

body.page-home .dyno-point {padding: 12px 12px;
        font-size: 14px !important;}

body.page-home .dyno-visual {min-height: 180px;}

body.page-home .dyno-device {max-width: 250px;
        transform: rotate(3deg);}

body.page-home .steps {gap: 10px;}

body.page-home .step {grid-template-columns: 46px 1fr;
        gap: 10px;
        padding: 12px 12px;}

body.page-home .step-number {width: 34px;
        height: 34px;
        font-size: 14px;}

body.page-home .step p {font-size: 14px;
        line-height: 1.45;}

body.page-home .contact-panel {gap: 16px;}

body.page-home .contact-box {padding: 18px 14px;}

body.page-home .contact-box h3 {font-size: 13px;
        margin-bottom: 10px;}

body.page-home .contact-box ul {gap: 10px;
        font-size: 15px;}

body.page-home .footer-brand-row {gap: 14px;
        padding-bottom: 16px;
        margin-bottom: 16px;}

body.page-home .footer-brand h3 {font-size: 21px !important;}

body.page-home .footer-brand p, body.page-home .footer-col p, body.page-home .footer-col li {font-size: 14px !important;
        line-height: 1.6;}

body.page-home .footer-badge {min-height: 34px;
        font-size: 11px;
        width: fit-content;}

body.page-home .footer-grid {gap: 12px;}

body.page-home .footer-col {padding: 16px 14px;}

body.page-home .footer-col h4 {font-size: 11px;
        margin-bottom: 8px;}

body.page-home .footer-bottom {margin-top: 14px;
        padding-top: 12px;
        font-size: 12px;
        gap: 8px;}
}

@media (max-width: 420px) {
body.page-home .container {width: min(1200px, calc(100% - 14px));}

body.page-home .hero-content, body.page-home .intro-panel, body.page-home .section-panel, body.page-home .process-panel, body.page-home .contact-panel, body.page-home .footer-inner {padding-left: 14px !important;
        padding-right: 14px !important;}

body.page-home h1 {font-size: 31px;}

body.page-home .hero-sub {font-size: 18px;}

body.page-home .option-tags, body.page-home .gearbox-list {grid-template-columns: 1fr !important;}

body.page-home .nav-toggle {width: 44px;
        height: 44px;}

body.page-home .contact-box ul {font-size: 14px;}

body.page-home .value-badge {width: 100%;
        justify-content: center;}
}

body.page-home .card, body.page-home .gearbox-list li, body.page-home .btn, body.page-home .nav-cta, body.page-home .contact-box, body.page-home .footer-col {will-change: transform;}

body.page-home .card:active, body.page-home .btn:active, body.page-home .nav-cta:active {transform: translateY(1px) scale(0.99);}

/* motorsoftware-konfigurator.html */
body.page-konfigurator.page-konfigurator {--orange: #f58200;
      --orange-dark: #de7400;
      --text: #f5f7f8;
      --text-soft: #c7cdd2;
      --bg: #343a40;
      --bg-soft: #3b4248;
      --bg-deep: #2d3238;
      --white: #ffffff;
      --panel: rgba(255,255,255,0.05);
      --line: rgba(255,255,255,0.10);
      --shadow: rgba(0,0,0,0.22);}

body.page-konfigurator * {box-sizing: border-box; margin: 0; padding: 0;}

body.page-konfigurator.page-konfigurator {scroll-behavior: smooth;}

body.page-konfigurator {font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #343a40 0%, #2c3137 100%);
      line-height: 1.45;}

body.page-konfigurator a {text-decoration: none; color: inherit;}

body.page-konfigurator button, body.page-konfigurator input, body.page-konfigurator select {font: inherit;}

body.page-konfigurator .container {width: min(1280px, calc(100% - 40px));
      margin: 0 auto;}

body.page-konfigurator header {position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(30, 34, 38, 0.88);
      border-bottom: 1px solid rgba(255,255,255,0.08);}

body.page-konfigurator .topbar {min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;}

body.page-konfigurator .brand {display: flex;
      align-items: center;
      gap: 18px;}

body.page-konfigurator .mini-lines {display: flex;
      flex-direction: column;
      gap: 6px;
      width: 120px;}

body.page-konfigurator .mini-lines span {display: block;
      height: 4px;
      border-radius: 999px;}

body.page-konfigurator .mini-lines span:nth-child(1) {width: 100%; background: var(--orange);}

body.page-konfigurator .mini-lines span:nth-child(2) {width: 92%; background: rgba(255,255,255,0.65);}

body.page-konfigurator .mini-lines span:nth-child(3) {width: 60%; background: var(--orange);}

body.page-konfigurator .brand img {height: 56px;
      width: auto;
      object-fit: contain;}

body.page-konfigurator .top-actions {display: flex;
      align-items: center;
      gap: 12px;}

body.page-konfigurator .btn {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid transparent;
      transition: 0.2s ease;
      cursor: pointer;
      font-weight: 700;}

body.page-konfigurator .btn-primary {background: var(--orange);
      color: #fff;}

body.page-konfigurator .btn-primary:hover {background: var(--orange-dark);}

body.page-konfigurator .btn-secondary {background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.10);
      color: var(--white);}

body.page-konfigurator .btn-secondary:hover {background: rgba(255,255,255,0.12);}

body.page-konfigurator .hero {padding: 44px 0 22px;
      position: relative;
      z-index: 1;}

body.page-konfigurator .hero-panel, body.page-konfigurator .search-panel, body.page-konfigurator .result-panel, body.page-konfigurator .cta-panel {background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 14px 40px rgba(0,0,0,0.16);}

body.page-konfigurator .hero-panel {padding: 52px 48px;
      position: relative;
      overflow: hidden;}

body.page-konfigurator .hero-panel::after {content: "RRS";
      position: absolute;
      right: 20px;
      bottom: -18px;
      font-size: 180px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;
      pointer-events: none;}

body.page-konfigurator .kicker {display: inline-block;
      margin-bottom: 10px;
      color: var(--orange);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;}

body.page-konfigurator h1 {font-size: clamp(40px, 6vw, 70px);
      line-height: 0.96;
      letter-spacing: -0.05em;
      max-width: 820px;}

body.page-konfigurator .hero p {max-width: 820px;
      margin-top: 16px;
      color: var(--text-soft);
      font-size: 20px;
      line-height: 1.6;}

body.page-konfigurator .search-wrap {padding: 0 0 20px;}

body.page-konfigurator .search-panel {padding: 22px;}

body.page-konfigurator .search-grid {display: grid;
      grid-template-columns: 1.1fr 0.8fr 0.8fr auto;
      gap: 12px;}

body.page-konfigurator .field {display: grid;
      gap: 8px;}

body.page-konfigurator .field label {font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      font-weight: 700;}

body.page-konfigurator .field input, body.page-konfigurator .field select {min-height: 52px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      color: var(--white);
      padding: 0 16px;
      outline: none;}

body.page-konfigurator .field input::placeholder {color: rgba(255,255,255,0.42);}

body.page-konfigurator .field input:focus, body.page-konfigurator .field select:focus {border-color: rgba(245,130,0,0.48);
      box-shadow: 0 0 0 3px rgba(245,130,0,0.10);}

body.page-konfigurator .filter-section {padding: 12px 0 24px;}

body.page-konfigurator .filter-head {display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;}

body.page-konfigurator .filter-head h2, body.page-konfigurator .result-head h2, body.page-konfigurator .cta-copy h2 {font-size: clamp(28px, 4vw, 46px);
      line-height: 1.02;
      letter-spacing: -0.04em;}

body.page-konfigurator .filter-head p, body.page-konfigurator .result-head p, body.page-konfigurator .cta-copy p {color: var(--text-soft);
      font-size: 17px;
      line-height: 1.55;
      max-width: 760px;}

body.page-konfigurator .brand-grid {display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;}

body.page-konfigurator .brand-chip {display: flex;
      align-items: center;
      justify-content: center;
      min-height: 70px;
      padding: 14px 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--white);
      font-size: 18px;
      font-weight: 800;
      text-align: center;
      letter-spacing: -0.02em;
      transition: 0.2s ease;
      cursor: pointer;
      user-select: none;}

body.page-konfigurator .brand-chip:hover, body.page-konfigurator .brand-chip.is-active {background: rgba(245,130,0,0.14);
      border-color: rgba(245,130,0,0.38);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 18px rgba(0,0,0,0.16);}

body.page-konfigurator .result-panel {padding: 26px 24px;}

body.page-konfigurator .result-head {display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;}

body.page-konfigurator .result-meta {color: rgba(255,255,255,0.72);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;}

body.page-konfigurator .result-grid {display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;}

body.page-konfigurator .result-card {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 18px 18px 16px;
      transition: 0.2s ease;}

body.page-konfigurator .result-card:hover {transform: translateY(-3px);
      border-color: rgba(245,130,0,0.24);
      box-shadow: 0 12px 22px rgba(0,0,0,0.16);}

body.page-konfigurator .result-card h3 {font-size: 22px;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 8px;}

body.page-konfigurator .result-card .subtitle {color: rgba(255,255,255,0.75);
      font-size: 14px;
      margin-bottom: 14px;}

body.page-konfigurator .spec-list {list-style: none;
      display: grid;
      gap: 8px;
      margin-bottom: 16px;}

body.page-konfigurator .spec-list li {display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--text-soft);
      font-size: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding-bottom: 8px;}

body.page-konfigurator .spec-list li strong {color: var(--white);
      white-space: nowrap;}

body.page-konfigurator .card-actions {display: flex;
      gap: 10px;
      flex-wrap: wrap;}

body.page-konfigurator .card-link {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 14px;
      font-size: 14px;
      font-weight: 700;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.05);
      transition: 0.2s ease;}

body.page-konfigurator .card-link:hover {background: rgba(245,130,0,0.14);
      border-color: rgba(245,130,0,0.36);}

body.page-konfigurator .cta-area {padding: 20px 0 44px;}

body.page-konfigurator .cta-panel {display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      padding: 28px;
      align-items: center;}

body.page-konfigurator .cta-copy p {margin-top: 10px;
      max-width: 680px;}

body.page-konfigurator .cta-box {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 22px;}

body.page-konfigurator .cta-box h3 {color: var(--orange);
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;}

body.page-konfigurator .cta-box ul {list-style: none;
      display: grid;
      gap: 8px;
      color: rgba(255,255,255,0.88);
      font-size: 16px;}

@media (max-width: 1100px) {
body.page-konfigurator .brand-grid {grid-template-columns: repeat(4, minmax(0, 1fr));}

body.page-konfigurator .result-grid {grid-template-columns: repeat(2, minmax(0, 1fr));}

body.page-konfigurator .search-grid {grid-template-columns: 1fr 1fr;}
}

@media (max-width: 780px) {
body.page-konfigurator .topbar {min-height: 74px;}

body.page-konfigurator .mini-lines {width: 74px;}

body.page-konfigurator .brand img {height: 42px;}

body.page-konfigurator .top-actions {display: none;}

body.page-konfigurator .hero-panel, body.page-konfigurator .search-panel, body.page-konfigurator .result-panel, body.page-konfigurator .cta-panel {padding: 18px 16px;}

body.page-konfigurator .hero-panel::after {display: none;}

body.page-konfigurator .hero {padding: 16px 0 14px;}

body.page-konfigurator h1 {font-size: clamp(34px, 10vw, 46px);}

body.page-konfigurator .hero p, body.page-konfigurator .filter-head p, body.page-konfigurator .result-head p, body.page-konfigurator .cta-copy p {font-size: 15px;}

body.page-konfigurator .search-grid, body.page-konfigurator .brand-grid, body.page-konfigurator .result-grid, body.page-konfigurator .cta-panel {grid-template-columns: 1fr;}

body.page-konfigurator .filter-head, body.page-konfigurator .result-head {display: grid;
        gap: 8px;}

body.page-konfigurator .brand-chip {min-height: 56px;
        font-size: 16px;}

body.page-konfigurator .result-card h3 {font-size: 19px;}

body.page-konfigurator .btn {width: 100%;}
}

/* getriebesoftware.html */
body.page-getriebe.page-getriebe {--orange: #f58200;
      --orange-dark: #de7400;
      --text: #f5f7f8;
      --text-soft: #c7cdd2;
      --bg: #343a40;
      --bg-soft: #3b4248;
      --bg-deep: #2d3238;
      --white: #ffffff;
      --panel: rgba(255,255,255,0.05);
      --line: rgba(255,255,255,0.1);
      --shadow: rgba(0,0,0,0.22);
      --green: #7ddc9a;}

body.page-getriebe * {box-sizing: border-box; margin: 0; padding: 0;}

body.page-getriebe.page-getriebe {scroll-behavior: smooth;}

body.page-getriebe {font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #343a40 0%, #2c3137 100%);
      line-height: 1.45;}

body.page-getriebe a {text-decoration: none; color: inherit;}

body.page-getriebe button, body.page-getriebe input {font: inherit;}

body.page-getriebe .container {width: min(1320px, calc(100% - 40px));
      margin: 0 auto;}

body.page-getriebe header {position: sticky;
      top: 0;
      z-index: 70;
      backdrop-filter: blur(10px);
      background: rgba(30, 34, 38, 0.88);
      border-bottom: 1px solid rgba(255,255,255,0.08);}

body.page-getriebe .topbar {min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;}

body.page-getriebe .brand-wrap {display: flex;
      align-items: center;
      gap: 18px;}

body.page-getriebe .mini-lines {display: flex;
      flex-direction: column;
      gap: 6px;
      width: 120px;}

body.page-getriebe .mini-lines span {display: block;
      height: 4px;
      border-radius: 999px;}

body.page-getriebe .mini-lines span:nth-child(1) {width: 100%; background: var(--orange);}

body.page-getriebe .mini-lines span:nth-child(2) {width: 92%; background: rgba(255,255,255,0.65);}

body.page-getriebe .mini-lines span:nth-child(3) {width: 60%; background: var(--orange);}

body.page-getriebe .brand-wrap img {height: 56px;
      width: auto;
      object-fit: contain;}

body.page-getriebe .top-actions {display: flex;
      gap: 12px;
      align-items: center;}

body.page-getriebe .btn {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: 0.2s ease;
      cursor: pointer;}

body.page-getriebe .btn-primary {background: var(--orange);
      color: #fff;}

body.page-getriebe .btn-primary:hover {background: var(--orange-dark);}

body.page-getriebe .btn-secondary {background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.1);
      color: var(--white);}

body.page-getriebe .btn-secondary:hover {background: rgba(255,255,255,0.12);}

body.page-getriebe .hero {padding: 42px 0 18px;}

body.page-getriebe .hero-panel, body.page-getriebe .selector-panel, body.page-getriebe .matrix-panel, body.page-getriebe .cta-panel {background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 14px 40px rgba(0,0,0,0.16);}

body.page-getriebe .hero-panel {padding: 50px 46px;
      position: relative;
      overflow: hidden;}

body.page-getriebe .hero-panel::after {content: "DSG";
      position: absolute;
      right: 24px;
      bottom: -14px;
      font-size: 180px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;
      pointer-events: none;}

body.page-getriebe .kicker {display: inline-block;
      margin-bottom: 10px;
      color: var(--orange);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;}

body.page-getriebe h1 {font-size: clamp(40px, 6vw, 68px);
      line-height: 0.96;
      letter-spacing: -0.05em;
      max-width: 820px;}

body.page-getriebe .hero-panel p {max-width: 860px;
      margin-top: 16px;
      color: var(--text-soft);
      font-size: 20px;
      line-height: 1.6;}

body.page-getriebe .selector-wrap {padding: 0 0 18px;}

body.page-getriebe .selector-panel {padding: 22px;}

body.page-getriebe .selector-top {display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;}

body.page-getriebe .selector-top h2, body.page-getriebe .matrix-head h2, body.page-getriebe .cta-copy h2 {font-size: clamp(28px, 4vw, 46px);
      line-height: 1.02;
      letter-spacing: -0.04em;}

body.page-getriebe .selector-top p, body.page-getriebe .matrix-head p, body.page-getriebe .cta-copy p {color: var(--text-soft);
      font-size: 17px;
      line-height: 1.55;
      max-width: 760px;}

body.page-getriebe .selector-tools {display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      margin-bottom: 14px;}

body.page-getriebe .search-input {min-height: 52px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--white);
      padding: 0 16px;
      outline: none;}

body.page-getriebe .search-input::placeholder {color: rgba(255,255,255,0.42);}

body.page-getriebe .search-input:focus {border-color: rgba(245,130,0,0.48);
      box-shadow: 0 0 0 3px rgba(245,130,0,0.10);}

body.page-getriebe .gearbox-grid {display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;}

body.page-getriebe .gearbox-chip {display: flex;
      align-items: center;
      justify-content: center;
      min-height: 68px;
      padding: 14px 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--white);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.02em;
      transition: 0.2s ease;
      cursor: pointer;
      user-select: none;
      text-align: center;}

body.page-getriebe .gearbox-chip:hover, body.page-getriebe .gearbox-chip.is-active {background: rgba(245,130,0,0.14);
      border-color: rgba(245,130,0,0.38);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 18px rgba(0,0,0,0.16);}

body.page-getriebe .matrix-panel {padding: 24px;}

body.page-getriebe .matrix-head {display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;}

body.page-getriebe .matrix-meta {color: rgba(255,255,255,0.72);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;}

body.page-getriebe .matrix-scroller {overflow-x: auto;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);}

body.page-getriebe table {width: 100%;
      min-width: 940px;
      border-collapse: collapse;}

body.page-getriebe thead th {position: sticky;
      top: 0;
      background: rgba(32, 36, 41, 0.98);
      color: var(--white);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 16px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      white-space: nowrap;}

body.page-getriebe thead th:first-child {text-align: left;
      min-width: 290px;}

body.page-getriebe tbody td {padding: 14px 14px;
      border-top: 1px solid rgba(255,255,255,0.06);
      text-align: center;
      color: rgba(255,255,255,0.88);
      font-size: 15px;
      vertical-align: middle;}

body.page-getriebe tbody td:first-child {text-align: left;
      color: var(--white);
      font-weight: 700;}

body.page-getriebe tbody tr:hover td {background: rgba(255,255,255,0.03);}

body.page-getriebe .mobile-stage-cards {display: none;
      gap: 14px;}

body.page-getriebe .mobile-feature-card {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 16px 14px;}

body.page-getriebe .mobile-feature-card h3 {font-size: 17px;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      color: var(--white);}

body.page-getriebe .mobile-stage-list {display: grid;
      gap: 8px;}

body.page-getriebe .mobile-stage-row {display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 10px 10px;}

body.page-getriebe .mobile-stage-row span:first-child {color: rgba(255,255,255,0.82);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;}

body.page-getriebe .stage-tag {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 10px;
      border: 1px solid rgba(245,130,0,0.24);
      background: rgba(245,130,0,0.10);
      color: #ffd8a6;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;}

body.page-getriebe .tick, body.page-getriebe .optional, body.page-getriebe .dash {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 28px;
      min-height: 28px;
      font-weight: 900;
      border-radius: 999px;
      margin: 0 auto;}

body.page-getriebe .tick {color: #10281a;
      background: rgba(125,220,154,0.9);}

body.page-getriebe .optional {color: #332100;
      background: rgba(245,130,0,0.78);}

body.page-getriebe .dash {color: rgba(255,255,255,0.44);
      background: rgba(255,255,255,0.06);}

body.page-getriebe .torque-note {display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;}

body.page-getriebe .torque-card {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 16px 14px;}

body.page-getriebe .torque-card h3 {font-size: 14px;
      color: rgba(255,255,255,0.74);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;}

body.page-getriebe .torque-card strong {display: block;
      font-size: 24px;
      letter-spacing: -0.03em;
      color: var(--white);}

body.page-getriebe .torque-card span {display: block;
      margin-top: 6px;
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.45;}

body.page-getriebe .cta-wrap {padding: 20px 0 44px;}

body.page-getriebe .cta-panel {display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      padding: 28px;
      align-items: center;}

body.page-getriebe .cta-copy p {margin-top: 10px;
      max-width: 680px;}

body.page-getriebe .cta-box {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 22px;}

body.page-getriebe .cta-box h3 {color: var(--orange);
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;}

body.page-getriebe .cta-box ul {list-style: none;
      display: grid;
      gap: 8px;
      color: rgba(255,255,255,0.88);
      font-size: 16px;}

@media (max-width: 1100px) {
body.page-getriebe .gearbox-grid {grid-template-columns: repeat(3, minmax(0, 1fr));}

body.page-getriebe .torque-note {grid-template-columns: repeat(2, minmax(0, 1fr));}
}

@media (max-width: 780px) {
body.page-getriebe .topbar {min-height: 74px;}

body.page-getriebe .mini-lines {width: 74px;}

body.page-getriebe .brand-wrap img {height: 42px;}

body.page-getriebe .top-actions {display: none;}

body.page-getriebe .hero-panel, body.page-getriebe .selector-panel, body.page-getriebe .matrix-panel, body.page-getriebe .cta-panel {padding: 18px 16px;}

body.page-getriebe .hero-panel::after {display: none;}

body.page-getriebe .hero {padding: 16px 0 14px;}

body.page-getriebe h1 {font-size: clamp(34px, 10vw, 46px);}

body.page-getriebe .hero-panel p, body.page-getriebe .selector-top p, body.page-getriebe .matrix-head p, body.page-getriebe .cta-copy p {font-size: 15px;}

body.page-getriebe .selector-top, body.page-getriebe .matrix-head, body.page-getriebe .selector-tools, body.page-getriebe .cta-panel {grid-template-columns: 1fr;
        display: grid;
        gap: 10px;}

body.page-getriebe .gearbox-grid, body.page-getriebe .torque-note {grid-template-columns: 1fr 1fr;}

body.page-getriebe .gearbox-chip {min-height: 56px;
        font-size: 16px;}
}

@media (max-width: 780px) {
body.page-getriebe .topbar {min-height: 74px;}

body.page-getriebe .mini-lines {width: 74px;}

body.page-getriebe .brand-wrap img {height: 42px;}

body.page-getriebe .top-actions {display: none;}

body.page-getriebe .hero-panel, body.page-getriebe .selector-panel, body.page-getriebe .matrix-panel, body.page-getriebe .cta-panel {padding: 18px 16px;}

body.page-getriebe .hero-panel::after {display: none;}

body.page-getriebe .hero {padding: 16px 0 14px;}

body.page-getriebe h1 {font-size: clamp(34px, 10vw, 46px);}

body.page-getriebe .hero-panel p, body.page-getriebe .selector-top p, body.page-getriebe .matrix-head p, body.page-getriebe .cta-copy p {font-size: 15px;}

body.page-getriebe .selector-top, body.page-getriebe .matrix-head, body.page-getriebe .selector-tools, body.page-getriebe .cta-panel {grid-template-columns: 1fr;
        display: grid;
        gap: 10px;}

body.page-getriebe .gearbox-grid, body.page-getriebe .torque-note {grid-template-columns: 1fr 1fr;}

body.page-getriebe .gearbox-chip {min-height: 56px;
        font-size: 16px;}

body.page-getriebe .matrix-scroller {display: none;}

body.page-getriebe .mobile-stage-cards {display: grid;}
}

@media (max-width: 460px) {
body.page-getriebe .container {width: min(1320px, calc(100% - 18px));}

body.page-getriebe .gearbox-grid, body.page-getriebe .torque-note {grid-template-columns: 1fr;}

body.page-getriebe .matrix-panel, body.page-getriebe .selector-panel, body.page-getriebe .hero-panel, body.page-getriebe .cta-panel {padding-left: 14px;
        padding-right: 14px;}

body.page-getriebe h1 {font-size: 31px;}

body.page-getriebe .mobile-feature-card h3 {font-size: 16px;}
}

/* leistungsmessung.html */
body.page-leistungsmessung.page-leistungsmessung {--orange: #f58200;
      --orange-dark: #de7400;
      --text: #f5f7f8;
      --text-soft: #c7cdd2;
      --bg: #343a40;
      --bg-soft: #3b4248;
      --bg-deep: #2d3238;
      --white: #ffffff;
      --panel: rgba(255,255,255,0.05);
      --line: rgba(255,255,255,0.10);
      --shadow: rgba(0,0,0,0.22);
      --green: #7ddc9a;}

body.page-leistungsmessung * {box-sizing: border-box; margin: 0; padding: 0;}

body.page-leistungsmessung.page-leistungsmessung {scroll-behavior: smooth;}

body.page-leistungsmessung {font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #343a40 0%, #2c3137 100%);
      line-height: 1.45;}

body.page-leistungsmessung a {text-decoration: none; color: inherit;}

body.page-leistungsmessung .container {width: min(1280px, calc(100% - 40px));
      margin: 0 auto;}

body.page-leistungsmessung header {position: sticky;
      top: 0;
      z-index: 70;
      backdrop-filter: blur(10px);
      background: rgba(30, 34, 38, 0.88);
      border-bottom: 1px solid rgba(255,255,255,0.08);}

body.page-leistungsmessung .topbar {min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;}

body.page-leistungsmessung .brand-wrap {display: flex;
      align-items: center;
      gap: 18px;}

body.page-leistungsmessung .mini-lines {display: flex;
      flex-direction: column;
      gap: 6px;
      width: 120px;}

body.page-leistungsmessung .mini-lines span {display: block;
      height: 4px;
      border-radius: 999px;}

body.page-leistungsmessung .mini-lines span:nth-child(1) {width: 100%; background: var(--orange);}

body.page-leistungsmessung .mini-lines span:nth-child(2) {width: 92%; background: rgba(255,255,255,0.65);}

body.page-leistungsmessung .mini-lines span:nth-child(3) {width: 60%; background: var(--orange);}

body.page-leistungsmessung .brand-wrap img {height: 56px;
      width: auto;
      object-fit: contain;}

body.page-leistungsmessung .top-actions {display: flex;
      gap: 12px;
      align-items: center;}

body.page-leistungsmessung .btn {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: 0.2s ease;
      cursor: pointer;}

body.page-leistungsmessung .btn-primary {background: var(--orange);
      color: #fff;}

body.page-leistungsmessung .btn-primary:hover {background: var(--orange-dark);}

body.page-leistungsmessung .btn-secondary {background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.10);
      color: var(--white);}

body.page-leistungsmessung .btn-secondary:hover {background: rgba(255,255,255,0.12);}

body.page-leistungsmessung .hero {padding: 42px 0 20px;}

body.page-leistungsmessung .hero-panel, body.page-leistungsmessung .section-panel, body.page-leistungsmessung .cta-panel {background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 14px 40px rgba(0,0,0,0.16);}

body.page-leistungsmessung .hero-panel {display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: center;
      padding: 44px 42px;
      overflow: hidden;
      position: relative;}

body.page-leistungsmessung .hero-panel::after {content: "DYNO";
      position: absolute;
      right: -8px;
      top: 18px;
      font-size: 150px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;
      pointer-events: none;}

body.page-leistungsmessung .kicker {display: inline-block;
      margin-bottom: 10px;
      color: var(--orange);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;}

body.page-leistungsmessung h1 {font-size: clamp(40px, 6vw, 70px);
      line-height: 0.95;
      letter-spacing: -0.05em;
      max-width: 760px;}

body.page-leistungsmessung .hero-copy p, body.page-leistungsmessung .section-head p, body.page-leistungsmessung .cta-copy p {color: var(--text-soft);
      font-size: 18px;
      line-height: 1.6;
      max-width: 760px;
      margin-top: 14px;}

body.page-leistungsmessung .hero-actions {display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;}

body.page-leistungsmessung .hero-visual {position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 360px;}

body.page-leistungsmessung .hero-visual::before {content: "PRO";
      position: absolute;
      left: 10px;
      bottom: 4px;
      font-size: 110px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;
      pointer-events: none;}

body.page-leistungsmessung .dyno-device {width: 100%;
      max-width: 470px;
      transform: rotate(5deg);}

body.page-leistungsmessung .dyno-svg {width: 100%;
      height: auto;
      display: block;}

body.page-leistungsmessung .section {padding: 0 0 18px;}

body.page-leistungsmessung .section-panel {padding: 26px 24px;}

body.page-leistungsmessung .section-head {margin-bottom: 18px;}

body.page-leistungsmessung .section-head h2, body.page-leistungsmessung .cta-copy h2 {font-size: clamp(28px, 4vw, 46px);
      line-height: 1.02;
      letter-spacing: -0.04em;}

body.page-leistungsmessung .benefit-grid, body.page-leistungsmessung .facts-grid, body.page-leistungsmessung .step-grid, body.page-leistungsmessung .output-grid {display: grid;
      gap: 14px;}

body.page-leistungsmessung .benefit-grid, body.page-leistungsmessung .facts-grid {grid-template-columns: repeat(3, minmax(0, 1fr));}

body.page-leistungsmessung .step-grid {grid-template-columns: repeat(5, minmax(0, 1fr));}

body.page-leistungsmessung .output-grid {grid-template-columns: repeat(4, minmax(0, 1fr));}

body.page-leistungsmessung .info-card, body.page-leistungsmessung .step-card, body.page-leistungsmessung .output-card, body.page-leistungsmessung .fact-card {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 18px 16px;
      transition: 0.2s ease;}

body.page-leistungsmessung .info-card:hover, body.page-leistungsmessung .step-card:hover, body.page-leistungsmessung .output-card:hover, body.page-leistungsmessung .fact-card:hover {transform: translateY(-2px);
      border-color: rgba(245,130,0,0.24);
      box-shadow: 0 10px 18px rgba(0,0,0,0.14);}

body.page-leistungsmessung .info-card h3, body.page-leistungsmessung .step-card h3, body.page-leistungsmessung .output-card h3, body.page-leistungsmessung .fact-card h3 {font-size: 21px;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
      color: var(--white);}

body.page-leistungsmessung .info-card p, body.page-leistungsmessung .step-card p, body.page-leistungsmessung .output-card p, body.page-leistungsmessung .fact-card p {color: var(--text-soft);
      font-size: 15px;
      line-height: 1.55;}

body.page-leistungsmessung .fact-card strong, body.page-leistungsmessung .output-card strong {display: block;
      font-size: 32px;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--white);
      margin-bottom: 8px;}

body.page-leistungsmessung .step-number {width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;}

body.page-leistungsmessung .feature-list {list-style: none;
      display: grid;
      gap: 10px;}

body.page-leistungsmessung .feature-list li {display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
      color: rgba(255,255,255,0.92);
      font-size: 15px;
      line-height: 1.55;
      padding: 10px 0;
      border-top: 1px solid rgba(255,255,255,0.06);}

body.page-leistungsmessung .feature-list li:first-child {border-top: 0; padding-top: 0;}

body.page-leistungsmessung .check {width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      background: rgba(125,220,154,0.92);
      color: #10281a;
      font-size: 14px;
      font-weight: 900;
      border-radius: 999px;
      margin-top: 2px;}

body.page-leistungsmessung .cta-wrap {padding: 18px 0 44px;}

body.page-leistungsmessung .cta-panel {display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
      padding: 28px;
      align-items: center;}

body.page-leistungsmessung .cta-box {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 22px;}

body.page-leistungsmessung .cta-box h3 {color: var(--orange);
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;}

body.page-leistungsmessung .cta-box ul {list-style: none;
      display: grid;
      gap: 8px;
      color: rgba(255,255,255,0.88);
      font-size: 16px;}

@media (max-width: 1100px) {
body.page-leistungsmessung .benefit-grid, body.page-leistungsmessung .facts-grid, body.page-leistungsmessung .output-grid {grid-template-columns: repeat(2, minmax(0, 1fr));}

body.page-leistungsmessung .step-grid {grid-template-columns: repeat(3, minmax(0, 1fr));}
}

@media (max-width: 820px) {
body.page-leistungsmessung .topbar {min-height: 74px;}

body.page-leistungsmessung .mini-lines {width: 74px;}

body.page-leistungsmessung .brand-wrap img {height: 42px;}

body.page-leistungsmessung .top-actions {display: none;}

body.page-leistungsmessung .hero {padding: 16px 0 14px;}

body.page-leistungsmessung .hero-panel, body.page-leistungsmessung .section-panel, body.page-leistungsmessung .cta-panel {padding: 18px 16px;}

body.page-leistungsmessung .hero-panel, body.page-leistungsmessung .cta-panel, body.page-leistungsmessung .benefit-grid, body.page-leistungsmessung .facts-grid, body.page-leistungsmessung .step-grid, body.page-leistungsmessung .output-grid {grid-template-columns: 1fr;}

body.page-leistungsmessung .hero-panel::after, body.page-leistungsmessung .hero-visual::before {display: none;}

body.page-leistungsmessung h1 {font-size: clamp(34px, 10vw, 46px);}

body.page-leistungsmessung .hero-copy p, body.page-leistungsmessung .section-head p, body.page-leistungsmessung .cta-copy p, body.page-leistungsmessung .info-card p, body.page-leistungsmessung .step-card p, body.page-leistungsmessung .output-card p, body.page-leistungsmessung .fact-card p {font-size: 15px;}

body.page-leistungsmessung .hero-visual {min-height: 220px;}

body.page-leistungsmessung .dyno-device {max-width: 280px;
        transform: rotate(3deg);}

body.page-leistungsmessung .btn {width: 100%;}
}

@media (max-width: 640px) {
body.page-leistungsmessung {line-height: 1.5;}

body.page-leistungsmessung .container {width: min(1280px, calc(100% - 18px));}

body.page-leistungsmessung .topbar {gap: 12px;
        min-height: 72px;}

body.page-leistungsmessung .mini-lines {width: 70px;
        gap: 5px;}

body.page-leistungsmessung .mini-lines span {height: 3px;}

body.page-leistungsmessung .brand-wrap {gap: 12px;}

body.page-leistungsmessung .brand-wrap img {height: 40px;}

body.page-leistungsmessung .hero-panel, body.page-leistungsmessung .section-panel, body.page-leistungsmessung .cta-panel {padding: 20px 14px;}

body.page-leistungsmessung .hero-panel {gap: 14px;}

body.page-leistungsmessung .kicker {font-size: 11px;
        margin-bottom: 8px;}

body.page-leistungsmessung h1 {font-size: clamp(31px, 11vw, 40px);
        line-height: 0.98;}

body.page-leistungsmessung .hero-copy p, body.page-leistungsmessung .section-head p, body.page-leistungsmessung .cta-copy p {margin-top: 10px;
        font-size: 15px;
        line-height: 1.55;}

body.page-leistungsmessung .hero-actions {gap: 10px;
        margin-top: 18px;}

body.page-leistungsmessung .btn {min-height: 46px;
        padding: 0 16px;
        font-size: 15px;}

body.page-leistungsmessung .hero-visual {min-height: 170px;}

body.page-leistungsmessung .dyno-device {max-width: 220px;
        transform: rotate(2deg);}

body.page-leistungsmessung .section {padding-bottom: 14px;}

body.page-leistungsmessung .section-head {margin-bottom: 14px;}

body.page-leistungsmessung .section-head h2, body.page-leistungsmessung .cta-copy h2 {font-size: clamp(24px, 8vw, 30px);
        line-height: 1.05;}

body.page-leistungsmessung .benefit-grid, body.page-leistungsmessung .facts-grid, body.page-leistungsmessung .step-grid, body.page-leistungsmessung .output-grid {gap: 10px;}

body.page-leistungsmessung .info-card, body.page-leistungsmessung .step-card, body.page-leistungsmessung .output-card, body.page-leistungsmessung .fact-card, body.page-leistungsmessung .cta-box {padding: 16px 14px;}

body.page-leistungsmessung .info-card h3, body.page-leistungsmessung .step-card h3, body.page-leistungsmessung .output-card h3, body.page-leistungsmessung .fact-card h3 {font-size: 18px;
        margin-bottom: 8px;}

body.page-leistungsmessung .info-card p, body.page-leistungsmessung .step-card p, body.page-leistungsmessung .output-card p, body.page-leistungsmessung .fact-card p {font-size: 14px;
        line-height: 1.5;}

body.page-leistungsmessung .fact-card strong, body.page-leistungsmessung .output-card strong {font-size: 26px;
        margin-bottom: 6px;}

body.page-leistungsmessung .step-number {width: 36px;
        height: 36px;
        margin-bottom: 10px;
        font-size: 14px;}

body.page-leistungsmessung .feature-list {gap: 0;}

body.page-leistungsmessung .feature-list li {grid-template-columns: 20px 1fr;
        gap: 8px;
        font-size: 14px;
        line-height: 1.5;
        padding: 9px 0;}

body.page-leistungsmessung .check {width: 20px;
        height: 20px;
        font-size: 12px;}

body.page-leistungsmessung .cta-wrap {padding: 14px 0 30px;}

body.page-leistungsmessung .cta-panel {gap: 14px;}

body.page-leistungsmessung .cta-box h3 {font-size: 12px;
        margin-bottom: 8px;}

body.page-leistungsmessung .cta-box ul {gap: 7px;
        font-size: 14px;}
}

@media (max-width: 420px) {
body.page-leistungsmessung .container {width: min(1280px, calc(100% - 14px));}

body.page-leistungsmessung .hero-panel, body.page-leistungsmessung .section-panel, body.page-leistungsmessung .cta-panel {padding-left: 12px;
        padding-right: 12px;}

body.page-leistungsmessung h1 {font-size: 28px;}

body.page-leistungsmessung .hero-copy p, body.page-leistungsmessung .section-head p, body.page-leistungsmessung .cta-copy p, body.page-leistungsmessung .info-card p, body.page-leistungsmessung .step-card p, body.page-leistungsmessung .output-card p, body.page-leistungsmessung .fact-card p, body.page-leistungsmessung .cta-box ul {font-size: 13px;}

body.page-leistungsmessung .section-head h2, body.page-leistungsmessung .cta-copy h2 {font-size: 22px;}

body.page-leistungsmessung .dyno-device {max-width: 190px;}

body.page-leistungsmessung .fact-card strong, body.page-leistungsmessung .output-card strong {font-size: 23px;}
}

/* blog.html */
body.page-blog-overview.page-blog-overview {--orange: #f58200;
      --orange-dark: #de7400;
      --text: #f5f7f8;
      --text-soft: #c7cdd2;
      --bg: #343a40;
      --bg-soft: #3b4248;
      --bg-deep: #2d3238;
      --white: #ffffff;
      --panel: rgba(255,255,255,0.05);
      --line: rgba(255,255,255,0.10);
      --shadow: rgba(0,0,0,0.22);}

body.page-blog-overview * {box-sizing: border-box; margin: 0; padding: 0;}

body.page-blog-overview.page-blog-overview {scroll-behavior: smooth;}

body.page-blog-overview {font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #343a40 0%, #2c3137 100%);
      line-height: 1.5;}

body.page-blog-overview a {color: inherit; text-decoration: none;}

body.page-blog-overview img {display: block; max-width: 100%;}

body.page-blog-overview button, body.page-blog-overview input, body.page-blog-overview select {font: inherit;}

body.page-blog-overview .container {width: min(1260px, calc(100% - 40px));
      margin: 0 auto;}

body.page-blog-overview header {position: sticky;
      top: 0;
      z-index: 70;
      backdrop-filter: blur(10px);
      background: rgba(30, 34, 38, 0.88);
      border-bottom: 1px solid rgba(255,255,255,0.08);}

body.page-blog-overview .topbar {min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;}

body.page-blog-overview .brand-wrap {display: flex;
      align-items: center;
      gap: 18px;}

body.page-blog-overview .mini-lines {display: flex;
      flex-direction: column;
      gap: 6px;
      width: 120px;}

body.page-blog-overview .mini-lines span {display: block;
      height: 4px;
      border-radius: 999px;}

body.page-blog-overview .mini-lines span:nth-child(1) {width: 100%; background: var(--orange);}

body.page-blog-overview .mini-lines span:nth-child(2) {width: 92%; background: rgba(255,255,255,0.65);}

body.page-blog-overview .mini-lines span:nth-child(3) {width: 60%; background: var(--orange);}

body.page-blog-overview .brand-wrap img {height: 56px;
      width: auto;
      object-fit: contain;}

body.page-blog-overview .top-actions {display: flex;
      align-items: center;
      gap: 12px;}

body.page-blog-overview .btn {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: 0.2s ease;}

body.page-blog-overview .btn-primary {background: var(--orange);
      color: #fff;}

body.page-blog-overview .btn-primary:hover {background: var(--orange-dark);}

body.page-blog-overview .btn-secondary {background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.10);
      color: var(--white);}

body.page-blog-overview .btn-secondary:hover {background: rgba(255,255,255,0.12);}

body.page-blog-overview .hero {padding: 36px 0 18px;}

body.page-blog-overview .hero-panel, body.page-blog-overview .filters-panel, body.page-blog-overview .post-card, body.page-blog-overview .sidebar-panel, body.page-blog-overview .featured-panel, body.page-blog-overview .cta-panel {background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 14px 40px rgba(0,0,0,0.16);}

body.page-blog-overview .hero-panel {padding: 42px 40px;
      overflow: hidden;
      position: relative;}

body.page-blog-overview .hero-panel::after {content: "BLOG";
      position: absolute;
      right: 18px;
      bottom: -10px;
      font-size: 170px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;
      pointer-events: none;}

body.page-blog-overview .kicker {display: inline-block;
      margin-bottom: 10px;
      color: var(--orange);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;}

body.page-blog-overview h1 {font-size: clamp(38px, 6vw, 66px);
      line-height: 0.96;
      letter-spacing: -0.05em;
      max-width: 920px;}

body.page-blog-overview .hero-panel p, body.page-blog-overview .section-copy, body.page-blog-overview .sidebar-panel p, body.page-blog-overview .post-excerpt, body.page-blog-overview .featured-copy p, body.page-blog-overview .cta-copy p {color: var(--text-soft);
      font-size: 18px;
      line-height: 1.65;}

body.page-blog-overview .hero-panel p {max-width: 900px;
      margin-top: 16px;}

body.page-blog-overview .layout {display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 20px;
      padding: 0 0 28px;
      align-items: start;}

body.page-blog-overview .main-col {display: grid;
      gap: 18px;}

body.page-blog-overview .featured-panel {display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 20px;
      padding: 22px;
      align-items: center;}

body.page-blog-overview .featured-visual {width: 100%;
      aspect-ratio: 16 / 9;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;}

body.page-blog-overview .featured-visual::before {content: "RRS";
      position: absolute;
      right: 16px;
      bottom: -8px;
      font-size: 120px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;}

body.page-blog-overview .feature-svg {width: min(320px, 84%);
      height: auto;
      display: block;
      transform: rotate(-5deg);}

body.page-blog-overview .featured-copy h2 {font-size: clamp(28px, 4vw, 42px);
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-top: 10px;}

body.page-blog-overview .post-meta {display: flex;
      flex-wrap: wrap;
      gap: 8px 12px;
      align-items: center;
      color: rgba(255,255,255,0.66);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;}

body.page-blog-overview .post-tag {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 0 10px;
      background: rgba(245,130,0,0.12);
      border: 1px solid rgba(245,130,0,0.24);
      color: #ffd8a6;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;}

body.page-blog-overview .featured-copy p {margin-top: 14px;
      max-width: 620px;}

body.page-blog-overview .featured-actions {display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;}

body.page-blog-overview .filters-panel {padding: 18px;}

body.page-blog-overview .filter-row {display: grid;
      grid-template-columns: 1.3fr 0.8fr 0.7fr auto;
      gap: 10px;}

body.page-blog-overview .filter-field {display: grid;
      gap: 7px;}

body.page-blog-overview .filter-field label {color: rgba(255,255,255,0.72);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;}

body.page-blog-overview .filter-field input, body.page-blog-overview .filter-field select {min-height: 48px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      color: var(--white);
      padding: 0 14px;
      outline: none;}

body.page-blog-overview .filter-field input::placeholder {color: rgba(255,255,255,0.42);}

body.page-blog-overview .filter-field input:focus, body.page-blog-overview .filter-field select:focus {border-color: rgba(245,130,0,0.48);
      box-shadow: 0 0 0 3px rgba(245,130,0,0.10);}

body.page-blog-overview .post-list {display: grid;
      gap: 14px;}

body.page-blog-overview .post-card {padding: 20px;
      transition: 0.2s ease;}

body.page-blog-overview .post-card:hover {transform: translateY(-2px);
      border-color: rgba(245,130,0,0.24);
      box-shadow: 0 12px 20px rgba(0,0,0,0.14);}

body.page-blog-overview .post-card h3 {font-size: clamp(24px, 3vw, 34px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin: 10px 0 12px;
      max-width: 860px;}

body.page-blog-overview .post-excerpt {max-width: 920px;
      font-size: 16px;}

body.page-blog-overview .post-footer {display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 16px;
      flex-wrap: wrap;}

body.page-blog-overview .read-more {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 14px;
      font-weight: 700;
      transition: 0.2s ease;}

body.page-blog-overview .read-more:hover {background: rgba(245,130,0,0.14);
      border-color: rgba(245,130,0,0.30);}

body.page-blog-overview .sidebar {display: grid;
      gap: 18px;
      position: sticky;
      top: 112px;}

body.page-blog-overview .sidebar-panel {padding: 20px 18px;}

body.page-blog-overview .sidebar-panel h3 {color: var(--orange);
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 12px;}

body.page-blog-overview .sidebar-panel ul {list-style: none;
      display: grid;
      gap: 10px;}

body.page-blog-overview .category-link, body.page-blog-overview .related-link {display: block;
      padding: 10px 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      transition: 0.2s ease;
      color: rgba(255,255,255,0.90);
      font-size: 14px;
      line-height: 1.45;}

body.page-blog-overview .category-link:hover, body.page-blog-overview .related-link:hover {background: rgba(245,130,0,0.14);
      border-color: rgba(245,130,0,0.30);
      transform: translateY(-2px);}

body.page-blog-overview .small-note {color: rgba(255,255,255,0.62);
      font-size: 13px;
      line-height: 1.6;}

body.page-blog-overview .cta-wrap {padding: 0 0 42px;}

body.page-blog-overview .cta-panel {display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
      padding: 28px;
      align-items: center;}

body.page-blog-overview .cta-copy h2 {font-size: clamp(28px, 4vw, 42px);
      line-height: 1.04;
      letter-spacing: -0.04em;
      margin-bottom: 12px;}

body.page-blog-overview .cta-box {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 22px;}

body.page-blog-overview .cta-box h3 {color: var(--orange);
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;}

body.page-blog-overview .cta-box ul {list-style: none;
      display: grid;
      gap: 8px;
      color: rgba(255,255,255,0.88);
      font-size: 16px;}

@media (max-width: 1080px) {
body.page-blog-overview .layout, body.page-blog-overview .featured-panel, body.page-blog-overview .cta-panel {grid-template-columns: 1fr;}

body.page-blog-overview .sidebar {position: static;}
}

@media (max-width: 860px) {
body.page-blog-overview .filter-row {grid-template-columns: 1fr 1fr;}
}

@media (max-width: 780px) {
body.page-blog-overview .topbar {min-height: 74px;}

body.page-blog-overview .mini-lines {width: 74px;}

body.page-blog-overview .brand-wrap img {height: 42px;}

body.page-blog-overview .top-actions {display: none;}

body.page-blog-overview .hero {padding: 16px 0 14px;}

body.page-blog-overview .hero-panel, body.page-blog-overview .filters-panel, body.page-blog-overview .post-card, body.page-blog-overview .sidebar-panel, body.page-blog-overview .featured-panel, body.page-blog-overview .cta-panel {padding: 18px 16px;}

body.page-blog-overview .hero-panel::after, body.page-blog-overview .featured-visual::before {display: none;}

body.page-blog-overview h1 {font-size: clamp(34px, 10vw, 46px);}

body.page-blog-overview .hero-panel p, body.page-blog-overview .section-copy, body.page-blog-overview .sidebar-panel p, body.page-blog-overview .post-excerpt, body.page-blog-overview .featured-copy p, body.page-blog-overview .cta-copy p, body.page-blog-overview .small-note, body.page-blog-overview .cta-box ul {font-size: 15px;}

body.page-blog-overview .post-card h3 {font-size: 24px;}
}

@media (max-width: 640px) {
body.page-blog-overview .container {width: min(1260px, calc(100% - 18px));}

body.page-blog-overview .topbar {gap: 12px;
        min-height: 72px;}

body.page-blog-overview .mini-lines {width: 70px;
        gap: 5px;}

body.page-blog-overview .mini-lines span {height: 3px;}

body.page-blog-overview .brand-wrap {gap: 12px;}

body.page-blog-overview .brand-wrap img {height: 40px;}

body.page-blog-overview .hero-panel, body.page-blog-overview .filters-panel, body.page-blog-overview .post-card, body.page-blog-overview .sidebar-panel, body.page-blog-overview .featured-panel, body.page-blog-overview .cta-panel {padding: 18px 14px;}

body.page-blog-overview .kicker, body.page-blog-overview .meta, body.page-blog-overview .post-tag, body.page-blog-overview .post-meta {font-size: 11px;}

body.page-blog-overview h1 {font-size: clamp(30px, 11vw, 40px);
        line-height: 0.98;}

body.page-blog-overview .hero-panel p, body.page-blog-overview .featured-copy p, body.page-blog-overview .post-excerpt, body.page-blog-overview .sidebar-panel p, body.page-blog-overview .sidebar-panel li, body.page-blog-overview .small-note, body.page-blog-overview .cta-copy p, body.page-blog-overview .cta-box ul {font-size: 14px;
        line-height: 1.58;}

body.page-blog-overview .featured-copy h2, body.page-blog-overview .cta-copy h2 {font-size: 25px;}

body.page-blog-overview .featured-actions, body.page-blog-overview .post-footer {gap: 10px;}

body.page-blog-overview .btn, body.page-blog-overview .read-more {width: 100%;}

body.page-blog-overview .filter-row {grid-template-columns: 1fr;}
}

@media (max-width: 420px) {
body.page-blog-overview .container {width: min(1260px, calc(100% - 14px));}

body.page-blog-overview .hero-panel, body.page-blog-overview .filters-panel, body.page-blog-overview .post-card, body.page-blog-overview .sidebar-panel, body.page-blog-overview .featured-panel, body.page-blog-overview .cta-panel {padding-left: 12px;
        padding-right: 12px;}

body.page-blog-overview h1 {font-size: 28px;}

body.page-blog-overview .featured-copy h2, body.page-blog-overview .cta-copy h2 {font-size: 22px;}

body.page-blog-overview .post-card h3 {font-size: 22px;}
}

/* blog-artikel.html */
body.page-blog-article.page-blog-article {--orange: #f58200;
      --orange-dark: #de7400;
      --text: #f5f7f8;
      --text-soft: #c7cdd2;
      --bg: #343a40;
      --bg-soft: #3b4248;
      --bg-deep: #2d3238;
      --white: #ffffff;
      --panel: rgba(255,255,255,0.05);
      --line: rgba(255,255,255,0.10);
      --shadow: rgba(0,0,0,0.22);}

body.page-blog-article * {box-sizing: border-box; margin: 0; padding: 0;}

body.page-blog-article.page-blog-article {scroll-behavior: smooth;}

body.page-blog-article {font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #343a40 0%, #2c3137 100%);
      line-height: 1.55;}

body.page-blog-article img {max-width: 100%; display: block;}

body.page-blog-article a {color: inherit; text-decoration: none;}

body.page-blog-article .container {width: min(1240px, calc(100% - 40px));
      margin: 0 auto;}

body.page-blog-article header {position: sticky;
      top: 0;
      z-index: 70;
      backdrop-filter: blur(10px);
      background: rgba(30, 34, 38, 0.88);
      border-bottom: 1px solid rgba(255,255,255,0.08);}

body.page-blog-article .topbar {min-height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;}

body.page-blog-article .brand-wrap {display: flex;
      align-items: center;
      gap: 18px;}

body.page-blog-article .mini-lines {display: flex;
      flex-direction: column;
      gap: 6px;
      width: 120px;}

body.page-blog-article .mini-lines span {display: block;
      height: 4px;
      border-radius: 999px;}

body.page-blog-article .mini-lines span:nth-child(1) {width: 100%; background: var(--orange);}

body.page-blog-article .mini-lines span:nth-child(2) {width: 92%; background: rgba(255,255,255,0.65);}

body.page-blog-article .mini-lines span:nth-child(3) {width: 60%; background: var(--orange);}

body.page-blog-article .brand-wrap img {height: 56px;
      width: auto;
      object-fit: contain;}

body.page-blog-article .top-actions {display: flex;
      align-items: center;
      gap: 12px;}

body.page-blog-article .btn {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: 0.2s ease;}

body.page-blog-article .btn-primary {background: var(--orange);
      color: #fff;}

body.page-blog-article .btn-primary:hover {background: var(--orange-dark);}

body.page-blog-article .btn-secondary {background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.10);
      color: var(--white);}

body.page-blog-article .btn-secondary:hover {background: rgba(255,255,255,0.12);}

body.page-blog-article .hero {padding: 36px 0 18px;}

body.page-blog-article .hero-panel, body.page-blog-article .article-panel, body.page-blog-article .sidebar-panel, body.page-blog-article .cta-panel {background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 14px 40px rgba(0,0,0,0.16);}

body.page-blog-article .hero-panel {padding: 42px 40px;
      position: relative;
      overflow: hidden;}

body.page-blog-article .hero-panel::after {content: "BLOG";
      position: absolute;
      right: 18px;
      bottom: -10px;
      font-size: 170px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;
      pointer-events: none;}

body.page-blog-article .eyebrow {display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 14px;}

body.page-blog-article .tag {display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0 12px;
      background: rgba(245,130,0,0.12);
      border: 1px solid rgba(245,130,0,0.24);
      color: #ffd8a6;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;}

body.page-blog-article .meta {color: rgba(255,255,255,0.70);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;}

body.page-blog-article h1 {font-size: clamp(38px, 6vw, 66px);
      line-height: 0.96;
      letter-spacing: -0.05em;
      max-width: 940px;}

body.page-blog-article .hero-sub {max-width: 900px;
      margin-top: 16px;
      color: var(--text-soft);
      font-size: 20px;
      line-height: 1.6;}

body.page-blog-article .layout {display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 20px;
      padding: 0 0 34px;
      align-items: start;}

body.page-blog-article .article-panel {padding: 28px 28px 30px;}

body.page-blog-article .sidebar {display: grid;
      gap: 18px;
      position: sticky;
      top: 112px;}

body.page-blog-article .sidebar-panel {padding: 20px 18px;}

body.page-blog-article .sidebar-panel h3 {color: var(--orange);
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 12px;}

body.page-blog-article .sidebar-panel ul {list-style: none;
      display: grid;
      gap: 10px;}

body.page-blog-article .sidebar-panel li, body.page-blog-article .sidebar-panel p {color: rgba(255,255,255,0.86);
      font-size: 14px;
      line-height: 1.55;}

body.page-blog-article .toc a, body.page-blog-article .related-link {display: block;
      padding: 10px 12px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      transition: 0.2s ease;}

body.page-blog-article .toc a:hover, body.page-blog-article .related-link:hover {background: rgba(245,130,0,0.14);
      border-color: rgba(245,130,0,0.30);
      transform: translateY(-2px);}

body.page-blog-article .article-cover {width: 100%;
      aspect-ratio: 16 / 8;
      background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;}

body.page-blog-article .article-cover::before {content: "RRS";
      position: absolute;
      right: 18px;
      bottom: -8px;
      font-size: 130px;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      letter-spacing: -0.08em;
      line-height: 0.8;}

body.page-blog-article .cover-svg {width: min(360px, 82%);
      height: auto;
      display: block;
      transform: rotate(-6deg);}

body.page-blog-article .article-content {color: rgba(255,255,255,0.94);}

body.page-blog-article .article-content > * + * {margin-top: 18px;}

body.page-blog-article .article-content h2 {font-size: clamp(28px, 4vw, 40px);
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-top: 34px;}

body.page-blog-article .article-content h3 {font-size: clamp(22px, 3vw, 28px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-top: 26px;}

body.page-blog-article .article-content p {color: var(--text-soft);
      font-size: 17px;
      line-height: 1.72;}

body.page-blog-article .lead {font-size: 20px !important;
      color: rgba(255,255,255,0.96) !important;
      line-height: 1.7 !important;}

body.page-blog-article .highlight-box, body.page-blog-article .info-grid .info-card, body.page-blog-article .quote-box {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);}

body.page-blog-article .highlight-box {padding: 20px 18px;
      border-left: 4px solid var(--orange);}

body.page-blog-article .highlight-box strong {color: var(--white);
      display: block;
      margin-bottom: 8px;
      font-size: 16px;}

body.page-blog-article .article-content ul, body.page-blog-article .article-content ol {padding-left: 20px;
      color: var(--text-soft);
      display: grid;
      gap: 10px;
      font-size: 17px;
      line-height: 1.65;}

body.page-blog-article .info-grid {display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
      margin-bottom: 6px;}

body.page-blog-article .info-card {padding: 18px 16px;}

body.page-blog-article .info-card h3 {margin-top: 0;
      font-size: 20px;
      margin-bottom: 8px;}

body.page-blog-article .info-card p {font-size: 15px;
      line-height: 1.55;}

body.page-blog-article .quote-box {padding: 20px 18px;
      border-left: 4px solid rgba(245,130,0,0.6);}

body.page-blog-article .quote-box p {color: rgba(255,255,255,0.96);
      font-size: 18px;
      line-height: 1.65;
      font-style: italic;}

body.page-blog-article .quote-box span {display: block;
      margin-top: 10px;
      color: rgba(255,255,255,0.66);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;}

body.page-blog-article .cta-wrap {padding: 0 0 42px;}

body.page-blog-article .cta-panel {display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
      padding: 28px;
      align-items: center;}

body.page-blog-article .cta-copy h2 {margin-bottom: 12px;}

body.page-blog-article .cta-box {background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 22px;}

body.page-blog-article .cta-box h3 {color: var(--orange);
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;}

body.page-blog-article .cta-box ul {list-style: none;
      display: grid;
      gap: 8px;
      color: rgba(255,255,255,0.88);
      font-size: 16px;}

@media (max-width: 1020px) {
body.page-blog-article .layout, body.page-blog-article .cta-panel, body.page-blog-article .info-grid {grid-template-columns: 1fr;}

body.page-blog-article .sidebar {position: static;}
}

@media (max-width: 780px) {
body.page-blog-article .topbar {min-height: 74px;}

body.page-blog-article .mini-lines {width: 74px;}

body.page-blog-article .brand-wrap img {height: 42px;}

body.page-blog-article .top-actions {display: none;}

body.page-blog-article .hero {padding: 16px 0 14px;}

body.page-blog-article .hero-panel, body.page-blog-article .article-panel, body.page-blog-article .sidebar-panel, body.page-blog-article .cta-panel {padding: 18px 16px;}

body.page-blog-article .hero-panel::after, body.page-blog-article .article-cover::before {display: none;}

body.page-blog-article h1 {font-size: clamp(34px, 10vw, 46px);}

body.page-blog-article .hero-sub, body.page-blog-article .article-content p, body.page-blog-article .article-content ul, body.page-blog-article .article-content ol, body.page-blog-article .sidebar-panel li, body.page-blog-article .sidebar-panel p, body.page-blog-article .cta-box ul {font-size: 15px;}

body.page-blog-article .lead {font-size: 17px !important;}
}

@media (max-width: 640px) {
body.page-blog-article {line-height: 1.5;}

body.page-blog-article .container {width: min(1240px, calc(100% - 18px));}

body.page-blog-article .topbar {gap: 12px;
        min-height: 72px;}

body.page-blog-article .mini-lines {width: 70px;
        gap: 5px;}

body.page-blog-article .mini-lines span {height: 3px;}

body.page-blog-article .brand-wrap {gap: 12px;}

body.page-blog-article .brand-wrap img {height: 40px;}

body.page-blog-article .hero-panel, body.page-blog-article .article-panel, body.page-blog-article .sidebar-panel, body.page-blog-article .cta-panel {padding: 18px 14px;}

body.page-blog-article .eyebrow {gap: 8px;
        margin-bottom: 10px;}

body.page-blog-article .tag, body.page-blog-article .meta {font-size: 11px;}

body.page-blog-article h1 {font-size: clamp(30px, 11vw, 40px);
        line-height: 0.98;}

body.page-blog-article .hero-sub {font-size: 15px;
        line-height: 1.55;
        margin-top: 10px;}

body.page-blog-article .article-cover {margin-bottom: 18px;}

body.page-blog-article .cover-svg {width: min(250px, 84%);}

body.page-blog-article .article-content > * + * {margin-top: 14px;}

body.page-blog-article .article-content h2 {font-size: 25px;
        margin-top: 24px;}

body.page-blog-article .article-content h3 {font-size: 20px;
        margin-top: 20px;}

body.page-blog-article .article-content p, body.page-blog-article .article-content ul, body.page-blog-article .article-content ol, body.page-blog-article .sidebar-panel li, body.page-blog-article .sidebar-panel p, body.page-blog-article .cta-copy p, body.page-blog-article .cta-box ul {font-size: 14px;
        line-height: 1.6;}

body.page-blog-article .lead {font-size: 16px !important;}

body.page-blog-article .info-card, body.page-blog-article .highlight-box, body.page-blog-article .quote-box, body.page-blog-article .cta-box {padding: 16px 14px;}

body.page-blog-article .info-card h3 {font-size: 18px;}

body.page-blog-article .quote-box p {font-size: 16px;}

body.page-blog-article .cta-box h3, body.page-blog-article .sidebar-panel h3 {font-size: 12px;}
}

@media (max-width: 420px) {
body.page-blog-article .container {width: min(1240px, calc(100% - 14px));}

body.page-blog-article .hero-panel, body.page-blog-article .article-panel, body.page-blog-article .sidebar-panel, body.page-blog-article .cta-panel {padding-left: 12px;
        padding-right: 12px;}

body.page-blog-article h1 {font-size: 28px;}

body.page-blog-article .article-content h2 {font-size: 22px;}

body.page-blog-article .article-content h3 {font-size: 18px;}
}


/* unified content rhythm */
.site-main section { scroll-margin-top: 120px; }
.footer-panel { scroll-margin-top: 120px; }

/* ===============================
   FINAL NORMALIZATION LAYER
   Shared header/footer for all pages
   =============================== */
.site-header,
header.site-header,
body.page-home header.site-header,
body.page-konfigurator header.site-header,
body.page-getriebe header.site-header,
body.page-leistungsmessung header.site-header,
body.page-blog-overview header.site-header,
body.page-blog-article header.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  backdrop-filter: blur(10px) !important;
  background: rgba(30, 34, 38, 0.88) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.site-header .container,
footer .container {
  width: min(1200px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
}

.site-header .topbar,
body.page-home .topbar,
body.page-konfigurator .topbar,
body.page-getriebe .topbar,
body.page-leistungsmessung .topbar,
body.page-blog-overview .topbar,
body.page-blog-article .topbar {
  display: grid !important;
  grid-template-columns: auto auto 1fr auto auto !important;
  align-items: center !important;
  gap: 24px !important;
  min-height: 96px !important;
  position: relative !important;
  z-index: 2 !important;
}

.site-header .mini-lines,
body.page-home .mini-lines,
body.page-konfigurator .mini-lines,
body.page-getriebe .mini-lines,
body.page-leistungsmessung .mini-lines,
body.page-blog-overview .mini-lines,
body.page-blog-article .mini-lines {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  width: 170px !important;
}

.site-header .brand,
body.page-home .brand,
body.page-konfigurator .brand,
body.page-getriebe .brand,
body.page-leistungsmessung .brand,
body.page-blog-article .brand {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
}

.site-header .brand img {
  height: 64px !important;
  width: auto !important;
  object-fit: contain !important;
}

.site-header .site-nav,
body.page-home .site-nav,
body.page-konfigurator .site-nav,
body.page-getriebe .site-nav,
body.page-leistungsmessung .site-nav,
body.page-blog-overview .site-nav,
body.page-blog-article .site-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: 18px !important;
}

.site-header .nav-item { position: relative !important; }

.site-header .nav-link,
body.page-home .nav-link,
body.page-konfigurator .nav-link,
body.page-getriebe .nav-link,
body.page-leistungsmessung .nav-link,
body.page-blog-overview .nav-link,
body.page-blog-article .nav-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  padding: 0 14px !important;
  color: var(--white) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
  transition: 0.2s ease !important;
}

.site-header .nav-link:hover,
.site-header .nav-item:hover > .nav-link,
.site-header .nav-link.is-current {
  color: var(--orange) !important;
  border-color: var(--orange) !important;
  background: transparent !important;
}

.site-header .nav-link.is-dropdown::after,
body.page-home .nav-link.is-dropdown::after,
body.page-konfigurator .nav-link.is-dropdown::after,
body.page-getriebe .nav-link.is-dropdown::after,
body.page-leistungsmessung .nav-link.is-dropdown::after,
body.page-blog-overview .nav-link.is-dropdown::after,
body.page-blog-article .nav-link.is-dropdown::after {
  content: "▾" !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.75) !important;
  transform: translateY(-1px) !important;
}

.site-header .dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  min-width: 260px !important;
  padding: 12px !important;
  background: rgba(27, 31, 35, 0.98) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28) !important;
  display: grid !important;
  gap: 8px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) !important;
  transition: 0.2s ease !important;
}

.site-header .dropdown a {
  padding: 10px 12px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid transparent !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--text-soft) !important;
}

.site-header .dropdown a:hover {
  border-color: rgba(245,130,0,0.30) !important;
  color: var(--white) !important;
  background: rgba(245,130,0,0.08) !important;
}

.site-header .nav-item:hover .dropdown,
.site-header .nav-item:focus-within .dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.site-header .nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 20px !important;
  background: var(--orange) !important;
  color: #fff !important;
  border: 1px solid transparent !important;
  font-weight: 700 !important;
}

.site-header .nav-toggle {
  display: none !important;
}

.site-header .mobile-nav {
  display: none !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(24, 28, 31, 0.98) !important;
}

.site-header .mobile-nav-inner {
  padding: 18px 0 22px !important;
  display: grid !important;
  gap: 10px !important;
}

.site-header .mobile-nav a,
.site-header .mobile-nav summary {
  display: block !important;
  padding: 14px 0 !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  cursor: pointer !important;
}

.site-header .mobile-nav details { border-top: 1px solid rgba(255,255,255,0.08) !important; }
.site-header .mobile-nav .sub-links {
  display: grid !important;
  gap: 8px !important;
  padding-bottom: 10px !important;
}
.site-header .mobile-nav .sub-links a {
  color: var(--text-soft) !important;
  padding: 8px 0 8px 14px !important;
}
.site-header .mobile-nav.is-open { display: block !important; }

footer,
body.page-home footer,
body.page-konfigurator footer,
body.page-getriebe footer,
body.page-leistungsmessung footer,
body.page-blog-overview footer,
body.page-blog-article footer {
  padding: 0 0 42px !important;
  color: rgba(255,255,255,0.78) !important;
  font-size: 14px !important;
  position: relative !important;
  z-index: 1 !important;
}

.footer-panel,
body.page-home .footer-panel,
body.page-konfigurator .footer-panel,
body.page-getriebe .footer-panel,
body.page-leistungsmessung .footer-panel,
body.page-blog-overview .footer-panel,
body.page-blog-article .footer-panel {
  margin: 64px auto 0 !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18) !important;
  overflow: hidden !important;
}

.footer-topline,
body.page-home .footer-topline,
body.page-konfigurator .footer-topline,
body.page-getriebe .footer-topline,
body.page-leistungsmessung .footer-topline,
body.page-blog-overview .footer-topline,
body.page-blog-article .footer-topline {
  height: 4px !important;
  background: linear-gradient(90deg, var(--orange), rgba(245,130,0,0.35)) !important;
}

.footer-inner,
body.page-home .footer-inner,
body.page-konfigurator .footer-inner,
body.page-getriebe .footer-inner,
body.page-leistungsmessung .footer-inner,
body.page-blog-overview .footer-inner,
body.page-blog-article .footer-inner {
  padding: 34px 34px 28px !important;
}

.footer-brand-row,
body.page-home .footer-brand-row,
body.page-konfigurator .footer-brand-row,
body.page-getriebe .footer-brand-row,
body.page-leistungsmessung .footer-brand-row,
body.page-blog-overview .footer-brand-row,
body.page-blog-article .footer-brand-row {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 20px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  margin-bottom: 26px !important;
}

.footer-brand h3 {
  color: var(--white) !important;
  font-size: 28px !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 8px !important;
}

.footer-brand p {
  color: var(--text-soft) !important;
  font-size: 16px !important;
  max-width: 760px !important;
  line-height: 1.65 !important;
}

.footer-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  background: rgba(245,130,0,0.12) !important;
  border: 1px solid rgba(245,130,0,0.24) !important;
  color: #ffd8a6 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 0.9fr 1fr !important;
  gap: 26px !important;
}

.footer-col {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  padding: 22px 20px !important;
}

.footer-col h4 {
  color: var(--orange) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}

.footer-col p,
.footer-col li {
  color: rgba(255,255,255,0.82) !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col strong { color: var(--white) !important; }
.footer-col a,
.footer-label { color: var(--white) !important; }
.footer-col a:hover { color: #ffd8a6 !important; }

.footer-bottom {
  margin-top: 22px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  color: rgba(255,255,255,0.58) !important;
  font-size: 13px !important;
}

@media (max-width: 980px) {
  .site-header .topbar,
  body.page-home .topbar,
  body.page-konfigurator .topbar,
  body.page-getriebe .topbar,
  body.page-leistungsmessung .topbar,
  body.page-blog-overview .topbar,
  body.page-blog-article .topbar {
    grid-template-columns: auto 1fr auto !important;
    gap: 16px !important;
    min-height: 84px !important;
  }

  .site-header .mini-lines { width: 110px !important; }
  .site-header .site-nav,
  .site-header .nav-cta { display: none !important; }
  .site-header .nav-toggle { display: inline-flex !important; }

  .footer-brand-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .footer-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  .site-header .container,
  footer .container { width: min(1200px, calc(100% - 28px)) !important; }
  .site-header .mini-lines { display: none !important; }
  .site-header .topbar { gap: 12px !important; }
  .site-header .brand img { height: 52px !important; }
  .footer-inner { padding: 24px 16px 22px !important; }
  .footer-col { padding: 16px 14px !important; }
  .footer-brand h3 { font-size: 21px !important; }
  .footer-brand p,
  .footer-col p,
  .footer-col li { font-size: 14px !important; }
  .footer-bottom {
    margin-top: 14px !important;
    padding-top: 14px !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
}

/* ===============================
   MOBILE NAV HOTFIX
   prevents duplicate desktop/mobile nav rendering
   =============================== */
@media (max-width: 980px) {
  header.site-header nav.site-nav,
  .site-header .site-nav,
  .site-header .nav-cta {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header .mobile-nav {
    display: none !important;
    visibility: visible !important;
    width: 100% !important;
  }

  .site-header .mobile-nav.is-open {
    display: block !important;
  }

  .site-header .dropdown {
    display: none !important;
  }
}

@media (min-width: 981px) {
  .site-header .mobile-nav,
  .site-header .nav-toggle {
    display: none !important;
  }

  header.site-header nav.site-nav,
  .site-header .site-nav {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    overflow: visible !important;
  }

  .site-header .nav-cta {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    width: auto !important;
    overflow: visible !important;
  }
}

/* ===============================
   FINAL CONSISTENCY OVERRIDES
   unified content width + cleaner mobile nav
   =============================== */
:root {
  --site-max-width: 1200px;
  --site-gutter-desktop: 40px;
  --site-gutter-mobile: 22px;
}

/* one consistent width system for all pages */
.container,
body.page-home .container,
body.page-konfigurator .container,
body.page-getriebe .container,
body.page-leistungsmessung .container,
body.page-blog-overview .container,
body.page-blog-article .container,
.site-header .container,
footer .container {
  width: min(var(--site-max-width), calc(100% - var(--site-gutter-desktop))) !important;
  max-width: var(--site-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* align all major hero/content panels to the same visual frame */
.hero > .container,
.layout.container,
body.page-home .hero-card,
body.page-home .intro-panel,
body.page-home .section-panel,
body.page-home .process-panel,
body.page-home .contact-panel,
body.page-konfigurator .hero-panel,
body.page-konfigurator .search-panel,
body.page-konfigurator .result-panel,
body.page-konfigurator .cta-panel,
body.page-getriebe .hero-panel,
body.page-getriebe .selector-panel,
body.page-getriebe .matrix-panel,
body.page-getriebe .cta-panel,
body.page-leistungsmessung .hero-panel,
body.page-leistungsmessung .section-panel,
body.page-leistungsmessung .cta-panel,
body.page-blog-overview .hero-panel,
body.page-blog-overview .filters-panel,
body.page-blog-overview .featured-panel,
body.page-blog-overview .sidebar-panel,
body.page-blog-overview .post-card,
body.page-blog-overview .cta-panel,
body.page-blog-article .hero-panel,
body.page-blog-article .article-panel,
body.page-blog-article .sidebar-panel,
body.page-blog-article .cta-panel {
  width: 100% !important;
}

/* cleaner shared mobile header/nav */
@media (max-width: 980px) {
  .site-header,
  header.site-header {
    background: rgba(24, 28, 31, 0.96) !important;
  }

  .site-header .topbar,
  body.page-home .topbar,
  body.page-konfigurator .topbar,
  body.page-getriebe .topbar,
  body.page-leistungsmessung .topbar,
  body.page-blog-overview .topbar,
  body.page-blog-article .topbar {
    grid-template-columns: 1fr auto !important;
    gap: 14px !important;
    min-height: 78px !important;
  }

  .site-header .mini-lines,
  body.page-home .mini-lines,
  body.page-konfigurator .mini-lines,
  body.page-getriebe .mini-lines,
  body.page-leistungsmessung .mini-lines,
  body.page-blog-overview .mini-lines,
  body.page-blog-article .mini-lines {
    display: none !important;
  }

  .site-header .brand {
    min-width: 0 !important;
  }

  .site-header .brand img {
    height: 50px !important;
    max-width: 100% !important;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: rgba(255,255,255,0.06) !important;
    box-shadow: none !important;
  }

  .site-header .nav-toggle:hover {
    background: rgba(255,255,255,0.10) !important;
  }

  .site-header .mobile-nav {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    background: linear-gradient(180deg, rgba(28,32,36,0.98), rgba(24,28,31,0.99)) !important;
  }

  .site-header .mobile-nav-inner {
    padding: 14px 0 18px !important;
    gap: 10px !important;
  }

  .site-header .mobile-nav > .container,
  .site-header .mobile-nav-inner {
    width: min(var(--site-max-width), calc(100% - var(--site-gutter-desktop))) !important;
    max-width: var(--site-max-width) !important;
  }

  .site-header .mobile-nav a,
  .site-header .mobile-nav summary {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 52px !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.04) !important;
    line-height: 1.3 !important;
  }

  .site-header .mobile-nav details {
    border-top: 0 !important;
  }

  .site-header .mobile-nav details[open] summary {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    background: rgba(245,130,0,0.10) !important;
    border-color: rgba(245,130,0,0.24) !important;
  }

  .site-header .mobile-nav .sub-links {
    gap: 8px !important;
    padding: 8px 0 0 !important;
  }

  .site-header .mobile-nav .sub-links a {
    padding: 12px 14px 12px 18px !important;
    color: var(--text-soft) !important;
    min-height: 46px !important;
    background: rgba(255,255,255,0.025) !important;
  }
}

@media (max-width: 640px) {
  .container,
  body.page-home .container,
  body.page-konfigurator .container,
  body.page-getriebe .container,
  body.page-leistungsmessung .container,
  body.page-blog-overview .container,
  body.page-blog-article .container,
  .site-header .container,
  footer .container {
    width: min(var(--site-max-width), calc(100% - var(--site-gutter-mobile))) !important;
  }

  .site-header .topbar {
    min-height: 72px !important;
  }

  .site-header .brand img {
    height: 46px !important;
  }

  .site-header .nav-toggle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }

  .site-header .mobile-nav a,
  .site-header .mobile-nav summary {
    min-height: 48px !important;
    padding: 12px 14px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 420px) {
  .container,
  body.page-home .container,
  body.page-konfigurator .container,
  body.page-getriebe .container,
  body.page-leistungsmessung .container,
  body.page-blog-overview .container,
  body.page-blog-article .container,
  .site-header .container,
  footer .container {
    width: min(var(--site-max-width), calc(100% - 16px)) !important;
  }
}
