/* ============================================================================
   HIRSCH RACING — DESIGN DNA 2026
   Eine einzige kanonische Stylesheet-Quelle fuer das gesamte oeffentliche
   Frontend. Premium, klar, konsistent. Dark -> Light -> Dark.
   Positionierung: Porsche / ABT / Singer / Apple — mit Chiptuning-Fokus.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. FONT — Inter Tight (selbst gehostet, variabel 400..800)
   ---------------------------------------------------------------------------- */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/InterTight-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/InterTight-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/InterTight-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/InterTight-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* ----------------------------------------------------------------------------
   2. DESIGN TOKENS
   ---------------------------------------------------------------------------- */
:root {
  /* Dunkle Flaechen */
  --black:        #05070A;
  --anthracite:   #121417;
  --darkgray:     #1A1E24;

  /* Helle Flaechen */
  --white:        #FFFFFF;
  --gray-50:      #FAFAFA;
  --gray-100:     #F7F7F7;
  --gray-200:     #ECECEC;
  --gray-300:     #DFDFDF;

  /* Akzent — sparsam einsetzen (Buttons, Links, Hover, Leistungswerte, Linien) */
  --red:          #C30000;
  --red-dark:     #9E0000;
  --red-hover:    #E00000;

  /* Text */
  --ink:          #05070A;   /* Haupttext auf hell */
  --ink-soft:     #3A4048;   /* Sekundaer auf hell */
  --ink-muted:    #6B7178;   /* Tertiaer / Labels */
  --on-dark:      #FFFFFF;   /* Text auf dunkel */
  --on-dark-soft: #B9BFC7;   /* Sekundaer auf dunkel */
  --on-dark-muted:#7E858E;

  /* Linien / Raender */
  --line:         #E6E6E6;   /* feiner Rand auf hell */
  --line-strong:  #D6D6D6;
  --line-dark:    rgba(255,255,255,0.10);
  --line-dark-2:  rgba(255,255,255,0.16);

  /* Radius — konsequent klein */
  --r-sm: 2px;
  --r:    4px;
  --r-lg: 6px;

  /* Schatten — minimal */
  --shadow-sm: 0 1px 2px rgba(5,7,10,0.05);
  --shadow:    0 6px 24px rgba(5,7,10,0.08);
  --shadow-lg: 0 18px 50px rgba(5,7,10,0.14);

  /* Layout */
  --maxw: 1240px;
  --gutter: 24px;
  --header-h: 76px;

  --font: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', 'Roboto Mono', Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------------------
   3. RESET / BASE
   ---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ----------------------------------------------------------------------------
   4. LAYOUT-PRIMITIVE
   ---------------------------------------------------------------------------- */
.hr-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hr-section { padding: clamp(64px, 9vw, 120px) 0; background: var(--white); }
.hr-section--gray { background: var(--gray-100); }
.hr-section--dark { background: var(--black); color: var(--on-dark); }
.hr-section--dark h1, .hr-section--dark h2, .hr-section--dark h3 { color: var(--on-dark); }
.hr-section--tight { padding: clamp(40px, 6vw, 72px) 0; }

/* Section-Kopf (Eyebrow + H2 + Lead) */
.hr-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.hr-section--dark .hr-eyebrow { color: var(--red-hover); }

.hr-section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.hr-section-head.center { margin-inline: auto; text-align: center; }
.hr-section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 620px;
}
.hr-section--dark .hr-section-head p { color: var(--on-dark-soft); }
.hr-section-head.center p { margin-inline: auto; }

/* Header-Zeile mit "Alle ansehen"-Link rechts */
.hr-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(28px, 4vw, 44px); flex-wrap: wrap;
}
.hr-head-row .hr-section-head { margin-bottom: 0; }
.hr-link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: var(--red);
  white-space: nowrap; transition: gap 0.25s var(--ease);
}
.hr-link-more:hover { gap: 12px; color: var(--red-hover); }

/* ----------------------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 1.05em; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-hover); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); }
.hr-section--dark .btn-secondary,
.hr-on-dark .btn-secondary,
.hr-hero .btn-secondary,
.hr-detail-hero .btn-secondary,
.hr-pagehead .btn-secondary,
.hr-pricing .btn-secondary { color: #fff; border-color: var(--line-dark-2); }
.hr-section--dark .btn-secondary:hover,
.hr-on-dark .btn-secondary:hover,
.hr-hero .btn-secondary:hover,
.hr-detail-hero .btn-secondary:hover,
.hr-pagehead .btn-secondary:hover,
.hr-pricing .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

.btn-ghost { background: transparent; color: var(--red); padding-inline: 4px; }
.btn-ghost:hover { color: var(--red-hover); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* Pfeil-Animation in Buttons */
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------------------------------------------------------------------------
   6. HEADER / NAVIGATION
   ---------------------------------------------------------------------------- */
.hr-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}
.hr-header-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
}
.hr-logo { display: flex; align-items: center; flex-shrink: 0; }
.hr-logo img { height: 46px; width: auto; display: block; }

.hr-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.hr-nav > .hr-nav-item > a,
.hr-nav > .hr-nav-item > .hr-nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--on-dark-soft);
  background: none; border: 0;
  transition: color 0.18s var(--ease);
}
.hr-nav-item { position: relative; }
.hr-nav > .hr-nav-item > a:hover,
.hr-nav > .hr-nav-item > .hr-nav-trigger:hover,
.hr-nav > .hr-nav-item.is-active > a { color: #fff; }
.hr-nav-trigger .caret { font-size: 0.7rem; transition: transform 0.2s var(--ease); }

/* Dropdown */
.hr-dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--anthracite);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.hr-nav-item:hover .hr-dropdown,
.hr-nav-item:focus-within .hr-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.hr-nav-item:hover .hr-nav-trigger .caret { transform: rotate(180deg); }
.hr-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r);
  font-size: 0.9rem; color: var(--on-dark-soft);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.hr-dropdown a i { color: var(--red-hover); font-size: 1rem; width: 18px; text-align: center; }
.hr-dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }

.hr-header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* Sprachumschalter (dezent im Header) */
.hr-lang { display: inline-flex; gap: 6px; align-items: center; }
.hr-lang a {
  width: 22px; height: 15px; border-radius: 2px; overflow: hidden;
  opacity: 0.5; border: 1px solid var(--line-dark); transition: opacity 0.18s var(--ease);
}
.hr-lang a.is-active, .hr-lang a:hover { opacity: 1; }
.hr-lang svg { width: 100%; height: 100%; }

.hr-cart { position: relative; color: var(--on-dark-soft); padding: 8px; font-size: 1.2rem; }
.hr-cart:hover { color: #fff; }
.hr-cart-badge {
  position: absolute; top: 0; right: 0;
  background: var(--red); color: #fff; font-size: 0.62rem; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* Burger */
.hr-burger {
  display: none; background: none; border: 0; color: #fff; font-size: 1.6rem;
  padding: 6px; margin-left: auto;
}

/* Mobile-Menue */
.hr-mobile {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
  background: var(--black);
  transform: translateX(100%); transition: transform 0.3s var(--ease);
  overflow-y: auto; padding: 16px var(--gutter) 120px;
}
body.menu-open .hr-mobile { transform: translateX(0); }
body.menu-open { overflow: hidden; }
.hr-mobile a {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 4px; color: var(--on-dark-soft);
  border-bottom: 1px solid var(--line-dark); font-size: 1rem;
}
.hr-mobile a i { color: var(--red-hover); width: 22px; text-align: center; }
.hr-mobile a:hover { color: #fff; }
.hr-mobile .hr-mobile-group > summary {
  display: flex; align-items: center; gap: 12px; cursor: pointer; list-style: none;
  padding: 15px 4px; color: #fff; border-bottom: 1px solid var(--line-dark); font-size: 1rem; font-weight: 600;
}
.hr-mobile .hr-mobile-group > summary::-webkit-details-marker { display: none; }
.hr-mobile .hr-mobile-group > summary::after { content: '\F282'; font-family: 'bootstrap-icons'; margin-left: auto; font-size: 0.9rem; transition: transform 0.2s; }
.hr-mobile .hr-mobile-group[open] > summary::after { transform: rotate(180deg); }
.hr-mobile .hr-mobile-group .hr-mobile-sub a { padding-left: 36px; font-size: 0.95rem; }
.hr-mobile .hr-mm-cta { margin-top: 24px; }

@media (max-width: 1080px) {
  .hr-nav, .hr-header-cta .btn, .hr-lang { display: none; }
  .hr-burger { display: inline-flex; }
  .hr-header-cta { gap: 4px; }
}
@media (min-width: 1081px) { .hr-mobile { display: none; } }

/* ----------------------------------------------------------------------------
   7. HERO
   ---------------------------------------------------------------------------- */
.hr-hero {
  position: relative;
  background: var(--black);
  color: var(--on-dark);
  overflow: hidden;
}
.hr-hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
}
/* LCP-optimiert: Hero-Bild als echtes <img> (fetchpriority=high) statt CSS-Background */
.hr-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hr-hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(5,7,10,0.85) 38%, rgba(5,7,10,0.25) 70%, rgba(5,7,10,0.55) 100%),
    linear-gradient(0deg, rgba(5,7,10,0.85) 0%, transparent 45%);
}
.hr-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto; padding: clamp(72px, 11vw, 150px) var(--gutter);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.hr-hero-copy { max-width: 640px; }
.hr-hero h1 { color: #fff; margin-bottom: 22px; text-transform: uppercase; }
.hr-hero .lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--on-dark-soft); max-width: 520px; margin-bottom: 32px;
}
.hr-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Stat-Rail (rechte Box im Hero) */
.hr-stat-rail {
  background: rgba(18,20,23,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--r-lg);
  padding: 28px 30px;
}
.hr-stat-rail .stat {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line-dark);
}
.hr-stat-rail .stat:last-child { border-bottom: 0; }
.hr-stat-rail .stat i { font-size: 1.3rem; color: var(--red-hover); width: 26px; text-align: center; }
.hr-stat-rail .stat .v { font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1; }
.hr-stat-rail .stat .l {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-muted); margin-top: 4px;
}

@media (max-width: 900px) {
  .hr-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hr-hero-media { background-position: center; }
  .hr-stat-rail { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .hr-stat-rail .stat:nth-last-child(2) { border-bottom: 0; }
}
@media (max-width: 520px) {
  .hr-stat-rail { grid-template-columns: 1fr; }
  .hr-stat-rail .stat:nth-last-child(2) { border-bottom: 1px solid var(--line-dark); }
}

/* ----------------------------------------------------------------------------
   8. KONFIGURATOR-WIDGET
   ---------------------------------------------------------------------------- */
.hr-configurator {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 36px);
}
.hr-config-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 22px;
}
.hr-config-head h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.hr-config-head .hint { font-size: 0.85rem; color: var(--ink-muted); }
.hr-config-grid {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px; align-items: end;
}
.hr-field { display: flex; flex-direction: column; gap: 7px; }
.hr-field label {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}
.hr-field select, .hr-field input {
  appearance: none;
  width: 100%; padding: 13px 14px;
  font-family: inherit; font-size: 0.92rem; color: var(--ink);
  background: var(--gray-100);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7178' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.hr-field select:focus, .hr-field input:focus { outline: none; border-color: var(--red); background: #fff; }
.hr-field select:disabled { opacity: 0.55; cursor: not-allowed; }
.hr-config-grid .btn { height: 49px; }

@media (max-width: 860px) {
  .hr-config-grid { grid-template-columns: 1fr 1fr; }
  .hr-config-grid .btn { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .hr-config-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------------------
   9. KARTEN — Basis (Apple/Porsche-Look: weiss, feiner Rand, Hover-Linie)
   ---------------------------------------------------------------------------- */
.hr-grid { display: grid; gap: 24px; }
.hr-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.hr-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hr-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.hr-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1080px) {
  .hr-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
  .hr-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .hr-grid.cols-2, .hr-grid.cols-3, .hr-grid.cols-4 { grid-template-columns: 1fr; }
  .hr-grid.cols-6 { grid-template-columns: repeat(2, 1fr); }
}

.hr-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
}
.hr-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.hr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.hr-card:hover::before { transform: scaleX(1); }

/* Karten in dunklen Sections (z.B. JLR-Workflow) — sonst weisser Text auf weisser Karte */
.hr-section--dark .hr-card { background: var(--darkgray); border-color: var(--line-dark); }
.hr-section--dark .hr-card:hover { border-color: var(--line-dark-2); }
.hr-section--dark .hr-card p { color: var(--on-dark-soft); }
.hr-section--dark .hr-meta-list { border-top-color: var(--line-dark); }
.hr-section--dark .hr-meta-list li { color: var(--on-dark-soft); }

/* Service-Karte (Icon + Titel + Text + Link) */
.hr-service-card .ic {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--ink); border: 1px solid var(--line); border-radius: var(--r);
  margin-bottom: 20px;
}
.hr-service-card:hover .ic { color: var(--red); border-color: var(--red); }
.hr-service-card h3 { margin-bottom: 10px; }
.hr-service-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 18px; }
.hr-service-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red);
  transition: gap 0.25s var(--ease);
}
.hr-service-card:hover .more { gap: 12px; }

/* ----------------------------------------------------------------------------
   10. FAHRZEUG-KARTE (beliebte Fahrzeuge — Bild + Specs + PS/NM)
   ---------------------------------------------------------------------------- */
.hr-vehicle-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hr-vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.hr-vehicle-media {
  position: relative;
  aspect-ratio: 16 / 10; overflow: hidden;
  background: radial-gradient(120% 120% at 70% 20%, var(--darkgray), var(--black));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.hr-vehicle-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.hr-vehicle-badge {
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em; color: var(--on-dark-soft);
  text-transform: uppercase; padding: 0 16px; text-align: center;
}
.hr-vehicle-media::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 60%);
}
.hr-vehicle-card:hover .hr-vehicle-media img { transform: scale(1.05); }
.hr-vehicle-body { padding: 20px 22px 24px; }
.hr-vehicle-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.hr-vehicle-body .sub { font-size: 0.84rem; color: var(--ink-muted); margin-bottom: 14px; }
.hr-vehicle-stage {
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted); padding-top: 12px; border-top: 1px solid var(--line);
}
/* Marken-Logo (car-logos-dataset), per Filter monochrom grau auf dunklem Grund.
   grayscale+invert hellt dunkle Logos auf und erhaelt Details in gefuellten
   Logos (BMW-Rondell, Fiat-Badge) — brightness(0) wuerde sie zur Flaeche machen. */
.hr-vehicle-media img.hr-vehicle-logo {
  width: auto; height: 56px; max-width: 140px; object-fit: contain;
  filter: grayscale(1) invert(1) brightness(0.8);
  opacity: 0.9;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hr-vehicle-card:hover .hr-vehicle-media img.hr-vehicle-logo {
  transform: none;
  filter: grayscale(1) invert(1) brightness(0.9);
  opacity: 1;
}

/* Monogramm unter dem Logo (bzw. allein, wenn kein Logo vorhanden). */
.hr-vehicle-mono {
  font-family: var(--mono); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: #9c9c9c;
  padding: 0 16px; text-align: center;
  transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.hr-vehicle-card:hover .hr-vehicle-mono { color: #b5b5b5; letter-spacing: 0.3em; }
.hr-vehicle-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); transition: gap 0.25s var(--ease);
}
.hr-vehicle-card:hover .hr-vehicle-cta { gap: 13px; }

.hr-vehicle-power {
  margin-top: 6px; font-size: 1.15rem; font-weight: 700; color: var(--red);
  font-variant-numeric: tabular-nums;
}

/* ----------------------------------------------------------------------------
   11. PROJEKT-KARTE (dunkle Bild-Karten)
   ---------------------------------------------------------------------------- */
.hr-project-card {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden; background: var(--anthracite);
  border: 1px solid var(--line-dark);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hr-project-card:hover { transform: translateY(-4px); border-color: var(--line-dark-2); }
.hr-project-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.hr-project-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.hr-project-card:hover .hr-project-media img { transform: scale(1.06); }
.hr-project-body { position: relative; padding: 20px 22px 22px; }
.hr-project-body .tag {
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-hover);
}
.hr-project-body h3 { color: #fff; font-size: 1.25rem; margin: 8px 0 4px; }
.hr-project-body .meta { color: var(--on-dark-soft); font-size: 0.85rem; }
.hr-project-body .power { color: var(--red-hover); font-weight: 700; font-size: 0.95rem; margin-top: 6px; }
/* Hover: Bild abdunkeln + Pfeil mittig auf dem Bild als Link-/Klick-Signal */
.hr-project-media::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(5, 7, 10, 0.55);
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.hr-project-card:hover .hr-project-media::after { opacity: 1; }
.hr-project-arrow {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.6); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  opacity: 0; transform: translate(-50%, -50%) translateX(-10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.hr-project-card:hover .hr-project-arrow { opacity: 1; transform: translate(-50%, -50%); }

/* Projekt-Akkordeon (Projekte-Seite): Klick klappt Karte auf volle Breite auf,
   Bild links / Text rechts; die uebrigen Karten ordnen sich horizontal darunter an. */
.hr-project-acc { display: flex; flex-wrap: wrap; gap: 20px; }
.hr-project-acc .hr-project-card { flex: 1 1 calc(50% - 10px); cursor: pointer; }
.hr-project-acc.has-open .hr-project-card:not(.is-open) { flex: 1 1 calc(33.333% - 14px); }
.hr-project-acc .hr-project-card.is-open {
  flex: 1 1 100%; order: -1; cursor: default;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}
.hr-project-acc .hr-project-card.is-open:hover { transform: none; }
.hr-project-acc .hr-project-card.is-open .hr-project-media { aspect-ratio: auto; height: 100%; }
.hr-project-acc .hr-project-card.is-open:hover .hr-project-media img { transform: none; }
.hr-project-acc .hr-project-card.is-open .hr-project-body { padding: 28px 32px 32px; }
.hr-project-acc .hr-project-card.is-open .hr-project-arrow,
.hr-project-acc .hr-project-card.is-open .hr-project-media::after,
.hr-project-acc .hr-project-card.is-open .power { display: none; }
.hr-project-detail { display: none; }
.hr-project-acc .hr-project-card.is-open .hr-project-detail { display: block; margin-top: 18px; }
.hr-project-detail .hr-spec-table { max-width: 480px; margin-bottom: 18px; }
.hr-project-detail .hr-spec-table th { color: var(--on-dark-muted); }
.hr-project-detail .hr-spec-table th, .hr-project-detail .hr-spec-table td { border-bottom-color: var(--line-dark); }
.hr-project-detail .hr-spec-table td { color: var(--on-dark-soft); }
.hr-project-detail .hr-spec-table td.val-orig { color: #fff; }
.hr-project-detail .hr-spec-table td.val-tuned { color: var(--red-hover); }
.hr-project-detail p { color: var(--on-dark-soft); font-size: 0.94rem; max-width: 70ch; margin: 0 0 18px; }
.hr-project-detail h4 { color: #fff; font-size: 0.95rem; margin: 22px 0 10px; }
.hr-project-detail .hr-meta-list { border-top: 0; padding-top: 0; margin: 0 0 22px; }
.hr-project-detail .hr-meta-list li { color: var(--on-dark-soft); }
.hr-project-detail .keywords { display: flex; flex-wrap: wrap; gap: 4px 10px; font-size: 0.72rem; color: var(--on-dark-muted); margin: 20px 0 0; }
@media (max-width: 900px) {
  .hr-project-acc .hr-project-card.is-open { grid-template-columns: 1fr; }
  .hr-project-acc .hr-project-card.is-open .hr-project-media { aspect-ratio: 16 / 10; height: auto; }
  .hr-project-acc.has-open .hr-project-card:not(.is-open) { flex: 1 1 calc(50% - 10px); }
}
@media (max-width: 600px) {
  .hr-project-acc .hr-project-card,
  .hr-project-acc.has-open .hr-project-card:not(.is-open) { flex: 1 1 100%; }
}

/* ----------------------------------------------------------------------------
   12. JOURNAL-KARTE (Magazin/Editorial)
   ---------------------------------------------------------------------------- */
.hr-journal-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hr-journal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hr-journal-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--anthracite); }
.hr-journal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.hr-journal-card:hover .hr-journal-media img { transform: scale(1.05); }
.hr-journal-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.hr-journal-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px;
}
.hr-journal-cat {
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
}
.hr-journal-date { font-size: 0.78rem; color: var(--ink-muted); }
.hr-journal-body h3 { font-size: 1.08rem; line-height: 1.25; margin-bottom: 10px; }
.hr-journal-body p { color: var(--ink-soft); font-size: 0.92rem; flex: 1; }

/* ----------------------------------------------------------------------------
   13. STEPS ("So funktioniert es")
   ---------------------------------------------------------------------------- */
.hr-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.hr-step { text-align: left; }
.hr-step .n {
  font-family: var(--mono); font-size: 0.72rem; color: var(--ink-muted); letter-spacing: 0.1em;
}
.hr-step .ic { font-size: 1.6rem; color: var(--ink); margin: 10px 0; }
.hr-step h4 { font-size: 0.98rem; font-weight: 600; }
@media (max-width: 860px) { .hr-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ----------------------------------------------------------------------------
   14. TRUST-RAIL (Icon-Leiste auf dunkel oder hell)
   ---------------------------------------------------------------------------- */
.hr-trust-rail {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  padding: 28px 0;
}
.hr-trust-item { display: flex; align-items: center; gap: 12px; }
.hr-trust-item i { font-size: 1.4rem; color: var(--red); }
.hr-trust-item .v { font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.hr-trust-item .l { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.hr-section--dark .hr-trust-item .l { color: var(--on-dark-muted); }
.hr-section--dark .hr-trust-item i { color: var(--red-hover); }
@media (max-width: 1080px) { .hr-trust-rail { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
@media (max-width: 600px) { .hr-trust-rail { grid-template-columns: repeat(2, 1fr); } }

/* Beliebte Marken (Konfigurator): dunkle Logo-Karten im Vehicle-Card-Look */
.hr-brand-card { display: block; }
.hr-brand-card .hr-vehicle-media { aspect-ratio: 16 / 9; }

/* ----------------------------------------------------------------------------
   15. REVIEWS / SOCIAL PROOF
   ---------------------------------------------------------------------------- */
.hr-rating-summary {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.hr-rating-score { font-size: 3rem; font-weight: 700; line-height: 1; }
.hr-rating-score small { font-size: 1.1rem; color: var(--ink-muted); font-weight: 400; }
.hr-stars { color: var(--red); letter-spacing: 2px; font-size: 1.1rem; }
.hr-rating-meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.hr-review-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.hr-review-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 14px 20px;
}
.hr-review-badge .src { font-weight: 600; font-size: 0.9rem; }
.hr-review-badge .val { color: var(--red); font-weight: 700; }

/* ----------------------------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------------------------- */
.hr-footer { background: var(--black); color: var(--on-dark-soft); padding: clamp(56px, 7vw, 88px) 0 32px; }
.hr-footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line-dark);
}
.hr-footer-logo img { height: 56px; width: auto; margin-bottom: 18px; }
.hr-footer-brand p { font-size: 0.9rem; color: var(--on-dark-muted); max-width: 280px; }
.hr-footer h4 {
  color: #fff; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hr-footer ul li { margin-bottom: 11px; }
.hr-footer a { font-size: 0.9rem; color: var(--on-dark-soft); transition: color 0.15s var(--ease); }
.hr-footer a:hover { color: var(--red-hover); }
.hr-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.hr-footer-social a {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark-2); border-radius: var(--r); font-size: 1.05rem;
}
.hr-footer-social a:hover { border-color: var(--red); color: var(--red-hover); }
.hr-footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; font-size: 0.82rem; color: var(--on-dark-muted);
}
@media (max-width: 900px) {
  .hr-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hr-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .hr-footer-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------------------
   17. STICKY MOBILE CTA + WHATSAPP FLOAT
   ---------------------------------------------------------------------------- */
.hr-mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: none; gap: 1px; background: var(--line-dark);
  border-top: 1px solid var(--line-dark);
}
.hr-mobile-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; font-size: 0.88rem; font-weight: 600;
}
.hr-mobile-cta .mcta-primary { background: var(--red); color: #fff; }
.hr-mobile-cta .mcta-wa { background: var(--anthracite); color: #fff; }
@media (max-width: 1080px) { .hr-mobile-cta { display: flex; } body { padding-bottom: 52px; } }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 850;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; display: none; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: var(--shadow);
}
.wa-float.is-visible { display: inline-flex; }
@media (max-width: 1080px) { .wa-float { bottom: 70px; } }

/* Cookie-Consent-Banner (DSGVO / Google Consent Mode v2) */
.hr-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; background: var(--black); border-top: 1px solid var(--line-dark-2); color: var(--on-dark-soft); }
.hr-consent-inner { max-width: var(--maxw); margin-inline: auto; padding: 16px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.hr-consent-text { font-size: 0.86rem; line-height: 1.5; max-width: 760px; margin: 0; }
.hr-consent-text a { color: var(--red-hover); text-decoration: underline; }
.hr-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.hr-consent-btn { padding: 11px 22px; border-radius: var(--r); font-size: 0.85rem; font-weight: 600; cursor: pointer; border: 1px solid transparent; }
.hr-consent-accept { background: var(--red); color: #fff; }
.hr-consent-accept:hover { background: var(--red-hover); }
.hr-consent-decline { background: transparent; color: #fff; border-color: var(--line-dark-2); }
.hr-consent-decline:hover { border-color: #fff; }
@media (max-width: 640px) { .hr-consent-inner { flex-direction: column; align-items: stretch; } .hr-consent-actions { justify-content: stretch; } .hr-consent-btn { flex: 1; } }

/* ----------------------------------------------------------------------------
   18. UTILITIES & REVEAL-ANIMATION
   ---------------------------------------------------------------------------- */
.hr-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.hr-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hr-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
.text-red { color: var(--red); }
.mt-0 { margin-top: 0; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.hr-btn-row.start { justify-content: flex-start; }

/* Icon-Box (z. B. Werte-Karten) */
.hr-ic {
  display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--ink); border: 1px solid var(--line); border-radius: var(--r);
  margin-bottom: 18px;
}
.hr-card:hover .hr-ic { color: var(--red); border-color: var(--red); }

/* Hero-Variante: einspaltig (Subseiten ohne Stat-Rail) */
.hr-hero--single .hr-hero-inner { grid-template-columns: 1fr; }
.hr-hero--single .hr-hero-copy { max-width: 720px; }

/* Scroll-Indikator unten im Hero: gepunktete Linie + Kreis mit Pfeil */
.hr-scroll-down {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 3;
}
.hr-scroll-down .line { width: 0; height: 36px; border-left: 2px dotted rgba(255,255,255,0.4); }
.hr-scroll-down .ring {
  width: 42px; height: 42px; border: 1px solid var(--line-dark-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-hover); font-size: 1.05rem;
  background: rgba(5,7,10,0.35);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  animation: hr-scroll-bob 2.2s ease-in-out infinite;
}
.hr-scroll-down:hover .ring { border-color: var(--red-hover); background: rgba(5,7,10,0.6); }
@keyframes hr-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) { .hr-scroll-down .ring { animation: none; } }
@media (max-width: 760px) { .hr-scroll-down { display: none; } }

/* Hero-Trust-Elemente (Frontpage) */
.hr-hero-trust {
  list-style: none; margin: 28px 0 32px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px;
}
.hr-hero-trust li { display: flex; gap: 10px; align-items: flex-start; }
.hr-hero-trust i { color: var(--red-hover); font-size: 1rem; line-height: 1.4; flex-shrink: 0; }
.hr-hero-trust .t { color: #fff; font-weight: 600; font-size: 0.92rem; }
.hr-hero-trust .d { color: var(--on-dark-soft); font-size: 0.82rem; margin-top: 2px; }
@media (max-width: 600px) { .hr-hero-trust { grid-template-columns: 1fr; } }

/* Projekt-Karte breiter (16:10) */
.hr-project-card.wide .hr-project-media { aspect-ratio: 16 / 10; }

/* Zentrierter CTA-/Text-Block */
.hr-center { text-align: center; }
.hr-cta-block { text-align: center; }
.hr-cta-block p { max-width: 560px; margin: 16px auto 28px; color: var(--ink-soft); }
.hr-section--dark .hr-cta-block p { color: var(--on-dark-soft); }
.hr-btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hr-center-flex { justify-content: center; }

/* ----------------------------------------------------------------------------
   19. BREADCRUMB
   ---------------------------------------------------------------------------- */
.hr-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.82rem; }
.hr-breadcrumb a { color: var(--on-dark-muted); }
.hr-breadcrumb a:hover { color: #fff; }
.hr-breadcrumb .sep { color: var(--on-dark-muted); opacity: 0.6; }
.hr-breadcrumb .current { color: var(--on-dark-soft); }

/* ----------------------------------------------------------------------------
   20. FAQ (Akkordeon)
   ---------------------------------------------------------------------------- */
.hr-faq { max-width: 820px; }
.hr-faq-item { border-bottom: 1px solid var(--line); }
.hr-faq-item > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none; padding: 20px 4px;
  font-size: 1.02rem; font-weight: 600; color: var(--ink);
}
.hr-faq-item > summary::-webkit-details-marker { display: none; }
.hr-faq-item > summary::after { content: '\F64D'; font-family: 'bootstrap-icons'; color: var(--red); font-size: 1.1rem; transition: transform 0.2s var(--ease); }
.hr-faq-item[open] > summary::after { transform: rotate(45deg); }
.hr-faq-item > p { padding: 0 4px 22px; color: var(--ink-soft); font-size: 0.95rem; max-width: 70ch; }
.hr-section--dark .hr-faq-item { border-color: var(--line-dark); }
.hr-section--dark .hr-faq-item > summary { color: #fff; }
.hr-section--dark .hr-faq-item > p { color: var(--on-dark-soft); }

/* ----------------------------------------------------------------------------
   21. VEHICLE DETAIL — Hero-Specs, Tabs, Tabelle, Optionen, Pricing, Chart
   ---------------------------------------------------------------------------- */
.hr-detail-hero { position: relative; background: var(--black); color: var(--on-dark); overflow: hidden; padding: clamp(28px,4vw,48px) 0 clamp(40px,6vw,64px); }
.hr-detail-hero .media { position: absolute; inset: 0; background-size: cover; background-position: center right; opacity: 0.5; }
.hr-detail-hero .media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 28%, rgba(5,7,10,0.55) 75%, rgba(5,7,10,0.8)); }

/* Hero-Variante Fahrzeug-Detail: Verlauf schwarz -> edles Anthrazit (links nach
   rechts) mit gross eingeblendetem Markenlogo, weich in den Grund verblendet. */
.hr-detail-hero .media--brand {
  opacity: 1;
  background: linear-gradient(90deg, var(--black) 0%, #14171c 55%, #21252c 100%);
  display: flex; align-items: center; justify-content: flex-end;
}
.hr-detail-hero .media--brand::after { content: none; }
.hr-detail-hero .media--brand img {
  height: 115%; max-height: 700px; width: auto; margin-right: 2vw;
  filter: grayscale(1) invert(1) brightness(0.6);
  opacity: 0.14;
  -webkit-mask-image: radial-gradient(closest-side, #000 35%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 35%, transparent 100%);
}
@media (max-width: 920px) {
  .hr-detail-hero .media--brand img { height: 70%; margin-right: 0; opacity: 0.1; }
}
.hr-detail-hero > .hr-container { position: relative; z-index: 2; }
.hr-detail-hero h1 { color: #fff; margin: 14px 0 6px; text-transform: uppercase; }
.hr-detail-hero .engine-sub { color: var(--on-dark-soft); font-size: 1.05rem; }
.hr-detail-hero .stage-label { display: inline-block; margin-top: 18px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-hover); }
.hr-detail-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; margin-top: 20px; }
@media (max-width: 920px) { .hr-detail-hero-grid { grid-template-columns: 1fr; gap: 28px; } }

.hr-spec-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .hr-spec-cards { grid-template-columns: 1fr; } }
.hr-spec-card {
  background: var(--darkgray); border: 1px solid var(--line-dark-2); border-radius: var(--r-lg);
  padding: 20px 22px;
}
.hr-spec-card .cap { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); }
.hr-spec-card .row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 12px; }
.hr-spec-card .row .lab { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-muted); }
.hr-spec-card .orig { font-size: 1.5rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.hr-spec-card .tuned { font-size: 1.5rem; font-weight: 800; color: var(--red-hover); font-variant-numeric: tabular-nums; }
.hr-spec-card .delta { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-dark); color: var(--red-hover); font-weight: 700; font-size: 0.95rem; }
.hr-hero-checks { display: grid; gap: 10px; margin: 22px 0 26px; }
.hr-hero-checks div { display: flex; align-items: center; gap: 10px; color: var(--on-dark-soft); font-size: 0.95rem; }
.hr-hero-checks i { color: var(--red-hover); }

.hr-tabs { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.hr-tab {
  padding: 14px 18px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-muted); background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.hr-tab:hover { color: var(--ink); }
.hr-tab.active { color: var(--red); border-bottom-color: var(--red); }

.hr-spec-table { width: 100%; border-collapse: collapse; }
.hr-spec-table th, .hr-spec-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.hr-spec-table th { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); font-weight: 600; }
.hr-spec-table td.val-tuned { color: var(--red); font-weight: 700; }
.hr-spec-table td.val-orig { font-weight: 600; }

.hr-options-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 980px) { .hr-options-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .hr-options-grid { grid-template-columns: repeat(2, 1fr); } }
.fd-option-card {
  text-align: center; padding: 22px 14px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg); cursor: pointer;
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.fd-option-card i { font-size: 1.6rem; color: var(--ink); }
.fd-option-card span { display: block; margin-top: 10px; font-weight: 600; font-size: 0.92rem; }
.fd-option-card .fd-option-price { font-size: 0.72rem; font-weight: 600; color: var(--ink-muted); margin-top: 4px; }
.fd-option-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.fd-option-card.selected { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.fd-option-card.selected i { color: var(--red); }

.hr-pricing {
  background: var(--black); color: var(--on-dark); border-radius: var(--r-lg);
  padding: 26px; position: sticky; top: calc(var(--header-h) + 16px);
}
.hr-pricing .stage { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); }
.hr-pricing .price { font-size: 2.2rem; font-weight: 800; color: #fff; margin: 4px 0 2px; }
.hr-pricing .price small { font-size: 0.8rem; font-weight: 400; color: var(--on-dark-muted); }
.hr-pricing .sub { font-size: 0.84rem; color: var(--on-dark-soft); margin-bottom: 18px; }
.hr-pricing .btn { width: 100%; margin-bottom: 10px; }
.hr-pricing-trust { margin-top: 16px; display: grid; gap: 8px; }
.hr-pricing-trust div { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--on-dark-soft); }
.hr-pricing-trust i { color: var(--red-hover); }
.hr-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 920px) { .hr-detail-grid { grid-template-columns: 1fr; } .hr-pricing { position: static; } }

.hr-chart-wrap { position: relative; height: 420px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; }
@media (max-width: 600px) { .hr-chart-wrap { height: 320px; } }

.hr-stage-tabs { display: inline-flex; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-bottom: 22px; }
.hr-stage-tabs button { padding: 9px 22px; background: var(--white); border: 0; font-weight: 600; font-size: 0.85rem; color: var(--ink-muted); cursor: pointer; }
.hr-stage-tabs button.active-s1, .hr-stage-tabs button.active-s2 { background: var(--red); color: #fff; }

.fd-overlay { display: none; position: fixed; inset: 0; z-index: 1100; background: rgba(5,7,10,0.7); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px; }
.fd-overlay-content { background: var(--white); border-radius: var(--r-lg); padding: 32px; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; }
.fd-overlay-content h3 { margin-bottom: 18px; }
.fd-overlay-content input, .fd-overlay-content textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 12px; font-family: inherit; font-size: 0.95rem;
  background: var(--gray-100); border: 1px solid var(--line); border-radius: var(--r); color: var(--ink);
}
.fd-overlay-content input:focus, .fd-overlay-content textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.fd-overlay-btns { display: flex; gap: 10px; margin-top: 8px; }
.fd-submit-btn { flex: 1; padding: 13px; background: var(--red); color: #fff; border: 0; border-radius: var(--r); font-weight: 600; cursor: pointer; }
.fd-submit-btn:hover { background: var(--red-hover); }
.fd-cancel-btn { padding: 13px 20px; background: transparent; color: var(--ink); border: 1px solid var(--line-strong); border-radius: var(--r); font-weight: 600; cursor: pointer; }

/* Konfigurator-Seite: "Fahrzeug anzeigen" Button volle Breite der Bar */
.hr-config-grid .btn.btn-block-cfg { grid-column: 1 / -1; }

/* Feature-Reihe (Bild + Editorial-Text, z. B. OEM Activations) */
.hr-feature-row { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hr-feature-row { grid-template-columns: 1fr; gap: 28px; } }
.hr-feature-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.hr-feature-tags span { font-size: 0.78rem; color: var(--on-dark-soft); border: 1px solid var(--line-dark-2); border-radius: var(--r); padding: 7px 12px; }
.hr-feature-visual img { width: 100%; border-radius: var(--r-lg); }

/* ----------------------------------------------------------------------------
   22. PAGE-HEADER (kompakter dunkler Kopf fuer Unterseiten)
   ---------------------------------------------------------------------------- */
.hr-pagehead { position: relative; background: var(--black); color: var(--on-dark); overflow: hidden; padding: clamp(48px,7vw,96px) 0 clamp(40px,6vw,64px); }
.hr-pagehead .media { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; }
.hr-pagehead .media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,10,0.6), var(--black)); }
.hr-pagehead > .hr-container { position: relative; z-index: 2; }
.hr-pagehead h1 { color: #fff; margin: 14px 0 0; }
.hr-pagehead .lead { color: var(--on-dark-soft); margin-top: 14px; max-width: 640px; font-size: 1.05rem; }

/* Filter-Chips (rechteckig, DNA-konform) */
.hr-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hr-pill { padding: 8px 16px; border: 1px solid var(--line); border-radius: var(--r); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); background: var(--white); transition: border-color 0.18s var(--ease), color 0.18s var(--ease), background 0.18s var(--ease); }
.hr-pill:hover { border-color: var(--ink); color: var(--ink); }
.hr-pill.active { background: var(--red); border-color: var(--red); color: #fff; }

/* Featured-Journal-Karte (horizontal) */
.hr-journal-featured { display: grid; grid-template-columns: 1.1fr 0.9fr; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow 0.25s var(--ease); }
.hr-journal-featured:hover { box-shadow: var(--shadow); }
.hr-journal-featured .media { aspect-ratio: 16/10; overflow: hidden; background: var(--anthracite); }
.hr-journal-featured .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.hr-journal-featured:hover .media img { transform: scale(1.04); }
.hr-journal-featured .body { padding: clamp(24px,3vw,40px); display: flex; flex-direction: column; justify-content: center; }
.hr-journal-featured .body h2 { font-size: clamp(1.4rem,2.2vw,2rem); margin: 12px 0; }
.hr-journal-featured .body p { color: var(--ink-soft); margin-bottom: 18px; }
@media (max-width: 760px) { .hr-journal-featured { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------------------
   23. ARTIKEL / PROSE
   ---------------------------------------------------------------------------- */
.hr-article { max-width: 760px; margin-inline: auto; }
.hr-article-figure { margin: 0 0 32px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.hr-article-figure img { width: 100%; display: block; }
.hr-prose { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.8; }
.hr-prose > *:first-child { margin-top: 0; }
.hr-prose h2 { font-size: 1.6rem; margin: 36px 0 12px; color: var(--ink); }
.hr-prose h3 { font-size: 1.25rem; margin: 28px 0 10px; color: var(--ink); }
.hr-prose p { margin-bottom: 18px; }
.hr-prose a { color: var(--red); text-decoration: underline; }
.hr-prose a:hover { color: var(--red-hover); }
.hr-prose img { border-radius: var(--r-lg); margin: 24px 0; max-width: 100%; }
.hr-prose ul, .hr-prose ol { margin: 0 0 18px 22px; }
.hr-prose li { margin-bottom: 8px; }
.hr-prose blockquote { border-left: 3px solid var(--red); padding: 4px 0 4px 18px; margin: 24px 0; color: var(--ink); font-style: italic; }

/* ----------------------------------------------------------------------------
   24. MAPEV — Buy-Box (Kauf-Sidebar) + Installations-Optionen
   ---------------------------------------------------------------------------- */
.hr-buybox { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow); }
.hr-buybox .price-lbl { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }
.hr-buybox .price { font-size: 2.2rem; font-weight: 800; color: var(--ink); margin: 4px 0 2px; }
.hr-buybox .price .cur { font-size: 1.2rem; margin-left: 2px; }
.hr-buybox .price-note { font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 18px; }
.hr-install-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin: 6px 0 10px; display: flex; align-items: center; gap: 8px; }
.mvd-install-option { display: block; border: 1px solid var(--line); border-radius: var(--r); padding: 12px 14px; margin-bottom: 10px; cursor: pointer; transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.mvd-install-option input { position: absolute; opacity: 0; pointer-events: none; }
.mvd-install-option:hover { border-color: var(--line-strong); }
.mvd-install-option.selected { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.mvd-install-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mvd-install-name { font-weight: 600; font-size: 0.92rem; }
.mvd-install-price { font-weight: 700; font-size: 0.9rem; color: var(--red); }
.mvd-install-price.free { color: var(--ink-muted); }
.mvd-install-desc { font-size: 0.82rem; color: var(--ink-muted); margin-top: 4px; }
.hr-buybox .btn { width: 100%; margin-top: 6px; }
/* Buttons in hellen Karten bleiben dunkel, auch wenn die Karte im dunklen Hero liegt */
.hr-buybox .btn-secondary, .hr-summary .btn-secondary { color: var(--ink); border-color: var(--line-strong); }
.hr-buybox .btn-secondary:hover, .hr-summary .btn-secondary:hover { color: var(--ink); border-color: var(--ink); background: transparent; }
.hr-buybox-trust { margin-top: 16px; display: grid; gap: 8px; }
.hr-buybox-trust div { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink-soft); }
.hr-buybox-trust i { color: var(--red); }

/* Workflow / Prozess-Karten (Includes) */
.hr-wf-num { display: block; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.12em; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.hr-section-head.center.mt-64 { margin-top: 64px; }
.mt-64 { margin-top: 64px; }
.hr-wf-badge { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--r); background: var(--red); color: #fff; font-weight: 800; font-family: var(--mono); margin-bottom: 16px; }
.hr-meta-list { list-style: none; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.hr-meta-list li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--ink-soft); }
.hr-meta-list i { color: var(--red); flex-shrink: 0; }

/* MapEV Filterleiste: select submit-on-change */
.hr-filterbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 860px) { .hr-filterbar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .hr-filterbar { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------------------
   25. FORMULARE / CHECKOUT / WARENKORB / BESTELLUNG
   ---------------------------------------------------------------------------- */
.hr-form label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-muted); margin-bottom: 6px; }
.hr-form input[type=text], .hr-form input[type=email], .hr-form input[type=tel],
.hr-form input[type=number], .hr-form input[type=password], .hr-form select, .hr-form textarea {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--gray-100); border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.hr-form input:focus, .hr-form select:focus, .hr-form textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.hr-form textarea { min-height: 96px; resize: vertical; }
.hr-form .error { color: var(--red); font-size: 0.8rem; margin-top: 4px; display: block; }
.hr-form small { display: block; margin-top: 5px; font-size: 0.78rem; color: var(--ink-muted); }
.hr-form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.hr-form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.hr-form-row.cols-3 { grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 600px) { .hr-form-row.cols-2, .hr-form-row.cols-3 { grid-template-columns: 1fr; } }
.hr-fieldset { margin-bottom: 34px; }
.hr-fieldset > h2 { font-size: 1.2rem; margin-bottom: 16px; }

/* Zahlungsoptionen */
.hr-pay-option { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: var(--r); padding: 16px; cursor: pointer; margin-bottom: 10px; transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.hr-pay-option input { position: absolute; opacity: 0; pointer-events: none; }
.hr-pay-option i { font-size: 1.5rem; color: var(--ink); }
.hr-pay-option .info h3 { font-size: 0.98rem; margin: 0; }
.hr-pay-option .info p { font-size: 0.84rem; color: var(--ink-muted); margin: 2px 0 0; }
.hr-pay-option.selected { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.hr-pay-option.selected i { color: var(--red); }

/* AGB-Checkbox */
.hr-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); }
.hr-checkbox input { margin-top: 3px; flex-shrink: 0; }
.hr-checkbox a { color: var(--red); text-decoration: underline; }

/* Bestellübersicht (Summary-Box) */
.hr-summary { background: var(--gray-100); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; position: sticky; top: calc(var(--header-h) + 16px); }
.hr-summary h2 { font-size: 1.1rem; margin-bottom: 16px; }
.hr-summary-item { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hr-summary-item .name { font-weight: 600; font-size: 0.92rem; }
.hr-summary-item .det { font-size: 0.82rem; color: var(--ink-muted); margin-top: 2px; }
.hr-summary-item .price { font-weight: 700; white-space: nowrap; }
.hr-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; color: var(--ink-soft); }
.hr-summary-row.total { border-top: 1px solid var(--line-strong); margin-top: 8px; padding-top: 12px; font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.hr-summary-row.total .amount { color: var(--red); }
.hr-summary .btn { width: 100%; margin-top: 16px; }

/* Warenkorb-Positionen */
.hr-cart-item { display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--white); margin-bottom: 14px; }
.hr-cart-item .media { width: 130px; height: 84px; border-radius: var(--r); overflow: hidden; background: radial-gradient(120% 120% at 70% 20%, var(--darkgray), var(--black)); display: flex; align-items: center; justify-content: center; color: var(--on-dark-muted); font-size: 1.6rem; }
.hr-cart-item .media img { width: 100%; height: 100%; object-fit: cover; }
.hr-cart-item h3 { font-size: 1.02rem; margin-bottom: 2px; }
.hr-cart-item .sub { font-size: 0.85rem; color: var(--ink-muted); }
.hr-cart-item .power { font-size: 0.85rem; color: var(--red); font-weight: 600; margin-top: 4px; }
.hr-cart-item .install { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }
.hr-cart-item .right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.hr-cart-item .right .price { font-weight: 700; font-size: 1.05rem; }
.hr-cart-qty { display: inline-flex; gap: 6px; align-items: center; }
.hr-cart-qty input { width: 64px; padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--r); font-family: inherit; }
.hr-cart-qty button, .hr-cart-remove { background: none; border: 0; cursor: pointer; color: var(--ink-muted); font-size: 0.85rem; display: inline-flex; align-items: center; gap: 5px; }
.hr-cart-qty button:hover, .hr-cart-remove:hover { color: var(--red); }
@media (max-width: 620px) { .hr-cart-item { grid-template-columns: 90px 1fr; } .hr-cart-item .media { width: 90px; height: 64px; } .hr-cart-item .right { grid-column: 1 / -1; align-items: stretch; text-align: left; flex-direction: row; justify-content: space-between; } }

.hr-cart-empty { text-align: center; padding: 60px 20px; }
.hr-cart-empty i { font-size: 3rem; color: var(--ink-muted); }
.hr-cart-empty h2 { margin: 16px 0 8px; }
.hr-cart-empty p { color: var(--ink-muted); margin-bottom: 20px; }

/* Bestellbestätigung */
.hr-success-icon { width: 76px; height: 76px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; margin: 0 auto 22px; }
.hr-kv { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.hr-kv:last-child { border-bottom: 0; }
.hr-kv .k { color: var(--ink-muted); }
.hr-kv .v { font-weight: 600; text-align: right; }
.hr-bank { background: var(--gray-100); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; font-family: var(--mono); font-size: 0.86rem; line-height: 1.7; margin-top: 10px; }
.hr-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; margin-bottom: 18px; }
.hr-panel > h3 { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }

/* ----------------------------------------------------------------------------
   26. TAGS, GALERIE, PARTNER-KARTE
   ---------------------------------------------------------------------------- */
.hr-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hr-tag { font-size: 0.82rem; padding: 6px 12px; border: 1px solid var(--line); border-radius: var(--r); color: var(--ink-soft); background: var(--white); }

.hr-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 600px) { .hr-gallery { grid-template-columns: 1fr 1fr; } }
.hr-gallery figure { margin: 0; }
.hr-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); display: block; }
.hr-gallery figcaption { font-size: 0.78rem; color: var(--ink-muted); margin-top: 5px; }

.hr-map { position: relative; width: 100%; height: 70vh; min-height: 520px; background: var(--black); border: 1px solid var(--line-dark-2); border-radius: var(--r-lg); overflow: hidden; }
.hr-map canvas { width: 100%; height: 100%; display: block; cursor: grab; }
.hr-map canvas:active { cursor: grabbing; }
.hr-legend { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 20px; }
.hr-legend-item { display: inline-flex; align-items: center; gap: 8px; }
.hr-legend-dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.hr-legend-dot.hq { background: #ffd24a; box-shadow: 0 0 0 3px var(--red); }
.hr-legend-dot.partner { background: #4caf50; }
.hr-legend-dot.customer { background: var(--red); }

/* ----------------------------------------------------------------------------
   27. SHOP (Tuningfiles)
   ---------------------------------------------------------------------------- */
.hr-notice { background: var(--gray-100); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: var(--r); padding: 16px 18px; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.hr-notice strong { color: var(--ink); }
.hr-notice a { color: var(--red); text-decoration: underline; }
.hr-section--dark .hr-notice { background: var(--darkgray); border-color: var(--line-dark-2); border-left-color: var(--red); color: var(--on-dark-soft); }
.hr-section--dark .hr-notice strong { color: #fff; }

.hr-buy-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 10px; transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease); }
.hr-buy-row:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.hr-buy-row .name { font-weight: 700; }
.hr-buy-row .desc { font-size: 0.82rem; color: var(--ink-muted); margin-top: 3px; max-width: 46ch; }
.hr-buy-row .price { font-size: 1.2rem; font-weight: 800; color: var(--red); white-space: nowrap; }

.hr-mono { font-family: var(--mono); }
.hr-status { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r); }
.hr-status.paid { background: rgba(31,122,58,0.12); color: #1f7a3a; }
.hr-status.pending { background: rgba(195,0,0,0.1); color: var(--red); }
.hr-codebox { background: var(--black); color: #fff; border-radius: var(--r); padding: 16px 18px; font-family: var(--mono); font-size: 1.1rem; letter-spacing: 0.04em; text-align: center; }

/* ----------------------------------------------------------------------------
   28. LANDINGPAGES (Service-Hub Includes: nur Rich-Text in .hr-prose)
   ---------------------------------------------------------------------------- */
.hr-prose .sh-section { margin-bottom: 8px; }
.hr-prose .sh-section h2 { font-size: 1.5rem; }
/* Service-Cluster-Karte mit Nummern-Eyebrow */
.hr-svc-card .num { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--red); font-weight: 700; }
.hr-svc-card h3 { margin: 8px 0 8px; }
.hr-svc-card .more { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); transition: gap 0.25s var(--ease); }
.hr-svc-card:hover .more { gap: 12px; }

/* Spendenbetrag-Auswahl */
.hr-amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.hr-amount-btn { padding: 14px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); font-weight: 700; cursor: pointer; transition: border-color 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease); }
.hr-amount-btn:hover { border-color: var(--ink); }
.hr-amount-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.hr-pay-or { text-align: center; color: var(--ink-muted); font-size: 0.85rem; margin: 14px 0; position: relative; }
.btn-paypal { background: #ffc439; color: #003087; }
.btn-paypal:hover { background: #f0b72e; }

/* ----------------------------------------------------------------------------
   29. GOOGLE REVIEWS (Include, DNA-Styling)
   ---------------------------------------------------------------------------- */
.gr-section { padding: clamp(64px,9vw,120px) 0; background: var(--gray-100); }
.gr-section > * { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.gr-header { text-align: center; margin-bottom: 36px; }
.gr-header h2 { font-size: clamp(1.9rem,3.4vw,2.9rem); }
.gr-summary { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gr-stars { color: var(--red); letter-spacing: 2px; }
.gr-rating { font-weight: 700; }
.gr-count { color: var(--ink-muted); font-size: 0.9rem; }
.gr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .gr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gr-grid { grid-template-columns: 1fr; } }
.gr-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease); }
.gr-card[role=button] { cursor: pointer; }
.gr-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.gr-card-head { display: flex; align-items: center; gap: 12px; }
.gr-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.gr-name { font-weight: 600; font-size: 0.95rem; }
.gr-date { font-size: 0.8rem; color: var(--ink-muted); }
.gr-google-icon { margin-left: auto; }
.gr-card-stars { color: var(--red); letter-spacing: 1px; margin: 12px 0 8px; }
.gr-card-text { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }
.gr-read-more { color: var(--red); font-size: 0.84rem; font-weight: 600; }
.gr-footer { text-align: center; margin-top: 32px; }
.gr-link { color: var(--red); font-weight: 600; }
.gr-link:hover { color: var(--red-hover); }
.gr-overlay { display: none; position: fixed; inset: 0; z-index: 1100; background: rgba(5,7,10,0.7); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px; }
.gr-overlay.active { display: flex; }
.gr-modal { background: var(--white); border-radius: var(--r-lg); padding: 28px; max-width: 520px; width: 100%; position: relative; }
.gr-modal-close { position: absolute; top: 12px; right: 16px; background: none; border: 0; font-size: 1.6rem; color: var(--ink-muted); cursor: pointer; line-height: 1; }
.gr-modal-head { display: flex; align-items: center; gap: 12px; }
.gr-modal-text { color: var(--ink-soft); line-height: 1.7; margin-top: 12px; }

/* Hilfe-/Hinweis-Karte (Konfigurator) */
.hr-help-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hr-help-card-info { display: flex; align-items: center; gap: 18px; }
.hr-help-card-info > i { font-size: 2rem; color: var(--red); flex-shrink: 0; }
.hr-help-card-info h3 { margin-bottom: 4px; }
.hr-help-card-info p { color: var(--ink-soft); font-size: 0.95rem; }
