/* ==========================================================================
   KIENBACH Automobile — Components
   ========================================================================== */

/* ---------- Cards (generic) ---------- */
.card {
  position: relative;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  overflow: hidden;
  transition: transform var(--t-med) var(--e-out),
              border-color var(--t-med), box-shadow var(--t-med) var(--e-out);
}
.card:hover { transform: translateY(-6px); border-color: var(--c-line-strong); box-shadow: var(--sh-lg); }
.card-pad { padding: clamp(22px, 2.5vw, 34px); }

/* Spotlight hover */
.spot { position: relative; }
.spot::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx,50%) var(--my,50%), rgba(201,162,39,.14), transparent 62%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none; z-index: 1;
}
.spot:hover::before { opacity: 1; }
.spot > * { position: relative; z-index: 2; }

/* Feature card */
.feature {
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  transition: all var(--t-med) var(--e-out);
  height: 100%;
}
.feature:hover { border-color: rgba(201,162,39,.42); transform: translateY(-5px); box-shadow: var(--sh-md); }
.feature .ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--c-accent-soft);
  border: 1px solid rgba(201,162,39,.28);
  color: var(--c-gold-2);
  margin-bottom: 22px;
  transition: transform .5s var(--e-spring), background .4s;
}
.feature:hover .ic { transform: rotate(-7deg) scale(1.08); background: var(--c-gold); color: #07090B; }
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.16rem; margin-bottom: 11px; }
.feature p { font-size: .9rem; color: var(--c-text-soft); }
.feature .link-u { margin-top: 18px; }

/* Numbered feature */
.numbered { counter-increment: nb; }
.numbered .nb {
  font-family: var(--f-display);
  font-size: 2.6rem; font-weight: 800;
  letter-spacing: -.05em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--c-gold);
  margin-bottom: 16px;
  transition: color .4s;
}
.numbered:hover .nb { color: var(--c-gold-2); -webkit-text-stroke-color: transparent; }

/* ---------- Vehicle card ---------- */
.v-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  overflow: hidden;
  transition: transform var(--t-med) var(--e-out), border-color var(--t-med), box-shadow var(--t-med);
}
.v-card:hover { transform: translateY(-7px); border-color: rgba(201,162,39,.4); box-shadow: var(--sh-lg); }
.v-media { position: relative; aspect-ratio: 4/2.7; overflow: hidden; background: var(--c-surface-2); }
.v-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--e-out); }
.v-card:hover .v-media img { transform: scale(1.09); }
.v-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,9,11,.72), transparent 48%);
  opacity: .85;
}
.v-tags { position: absolute; top: 13px; left: 13px; z-index: 2; display: flex; gap: 7px; flex-wrap: wrap; max-width: 76%; }
.v-tag {
  padding: 5px 11px; border-radius: 99px;
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.v-tag.new { background: var(--c-gold); color: #07090B; }
.v-tag.top { background: rgba(53,192,138,.92); color: #04150E; }
.v-tag.sale { background: rgba(226,86,77,.92); color: #fff; }
.v-tag.res { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.v-fav {
  position: absolute; top: 11px; right: 11px; z-index: 3;
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(7,9,11,.5);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: all var(--t-fast) var(--e-out);
}
.v-fav:hover { background: var(--c-gold); color: #07090B; transform: scale(1.1); }
.v-fav svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.v-fav.on { background: var(--c-gold); color: #07090B; }
.v-fav.on svg { fill: currentColor; }
.v-imgcount {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 8px;
  background: rgba(7,9,11,.6); backdrop-filter: blur(6px);
  font-size: .72rem; color: #fff;
}
.v-imgcount svg { width: 13px; height: 13px; }

.v-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.v-brandline { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.v-brandline span { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold-2); }
.v-body h3 { font-size: 1.12rem; line-height: 1.24; margin-bottom: 4px; }
.v-sub { font-size: .8rem; color: var(--c-text-mute); margin-bottom: 16px; }
.v-specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  padding: 14px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 16px;
}
.v-specs li { display: flex; align-items: center; gap: 8px; font-size: .79rem; color: var(--c-text-soft); }
.v-specs svg { width: 14px; height: 14px; color: var(--c-gold-2); flex: none; }
.v-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; }
.v-price small { display: block; font-size: .68rem; color: var(--c-text-mute); }
.v-price b { font-family: var(--f-display); font-size: 1.42rem; font-weight: 700; letter-spacing: -.035em; }
.v-price .old { font-size: .78rem; color: var(--c-text-mute); text-decoration: line-through; margin-left: 7px; }
.v-price em { display: block; font-style: normal; font-size: .72rem; color: var(--c-gold-2); margin-top: 2px; }
.v-cta {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-surface-2);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  transition: all var(--t-fast) var(--e-out);
}
.v-card:hover .v-cta { background: var(--c-gold); color: #07090B; border-color: var(--c-gold); }
.v-cta svg { width: 17px; height: 17px; }
.v-compare {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-top: 1px solid var(--c-line);
  font-size: .78rem; color: var(--c-text-mute);
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast);
}
.v-compare:hover { color: var(--c-gold-2); background: var(--c-accent-soft); }
.v-compare input { accent-color: var(--c-gold); width: 15px; height: 15px; }

/* list view */
.v-grid.list { grid-template-columns: 1fr; }
.v-grid.list .v-card { flex-direction: row; }
.v-grid.list .v-media { width: 320px; flex: none; aspect-ratio: auto; }
.v-grid.list .v-specs { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 820px) {
  .v-grid.list .v-card { flex-direction: column; }
  .v-grid.list .v-media { width: 100%; aspect-ratio: 4/2.7; }
  .v-grid.list .v-specs { grid-template-columns: repeat(2, 1fr); }
}

.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1080px) { .v-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .v-grid { grid-template-columns: 1fr; } }

/* ---------- Filter bar ---------- */
.filter-shell {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  overflow: hidden;
}
.filter-tabs { display: flex; border-bottom: 1px solid var(--c-line); overflow-x: auto; }
.filter-tabs button {
  padding: 15px 24px;
  font-size: .87rem; font-weight: 600;
  color: var(--c-text-mute);
  white-space: nowrap;
  position: relative;
  transition: color var(--t-fast);
}
.filter-tabs button::after {
  content: ""; position: absolute; left: 20px; right: 20px; bottom: -1px; height: 2px;
  background: var(--c-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--e-out);
}
.filter-tabs button.on { color: var(--c-text); }
.filter-tabs button.on::after { transform: scaleX(1); }

.filter-body { padding: clamp(20px, 2.4vw, 28px); }
.filter-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .filter-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .filter-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--f-mono);
  font-size: .66rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--c-text-mute);
}
.field .ctrl {
  position: relative;
}
.field select, .field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="number"], .field input[type="date"], .field input[type="time"], .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-ink-2);
  font-size: .9rem;
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E7A85' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field select:focus, .field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}
.field .hint { font-size: .72rem; color: var(--c-text-mute); }
.field .err { font-size: .74rem; color: var(--c-red); display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--c-red); }

.checkline { display: flex; align-items: flex-start; gap: 11px; font-size: .82rem; color: var(--c-text-soft); cursor: pointer; }
.checkline input { accent-color: var(--c-gold); width: 17px; height: 17px; margin-top: 2px; flex: none; }
.checkline a { color: var(--c-gold-2); text-decoration: underline; }

/* Range slider */
.range-wrap { padding-top: 4px; }
.range-vals { display: flex; justify-content: space-between; font-size: .84rem; font-weight: 600; margin-bottom: 8px; }
input[type="range"] {
  width: 100%; height: 3px; appearance: none;
  background: var(--c-line-strong);
  border-radius: 99px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--c-gold);
  border: 3px solid var(--c-ink);
  box-shadow: 0 3px 10px rgba(0,0,0,.5);
  cursor: pointer;
  transition: transform .2s var(--e-spring);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.22); }
input[type="range"]::-moz-range-thumb {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--c-gold); border: 3px solid var(--c-ink); cursor: pointer;
}

/* Pills filter */
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-check { position: relative; }
.pill-check input { position: absolute; opacity: 0; pointer-events: none; }
.pill-check span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 17px;
  border: 1px solid var(--c-line);
  border-radius: 99px;
  font-size: .82rem; color: var(--c-text-soft);
  cursor: pointer;
  transition: all var(--t-fast) var(--e-out);
}
.pill-check span:hover { border-color: var(--c-line-strong); color: var(--c-text); }
.pill-check input:checked + span {
  background: var(--c-gold); color: #07090B; border-color: var(--c-gold); font-weight: 600;
}
.pill-check input:focus-visible + span { outline: 2px solid var(--c-gold-2); outline-offset: 2px; }

.filter-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--c-line);
}
.result-count { font-size: .87rem; color: var(--c-text-soft); }
.result-count b { color: var(--c-gold-2); font-size: 1.05rem; }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.view-toggle { display: flex; border: 1px solid var(--c-line); border-radius: var(--r-pill); overflow: hidden; }
.view-toggle button {
  width: 40px; height: 38px; display: grid; place-items: center;
  color: var(--c-text-mute); transition: all var(--t-fast);
}
.view-toggle button.on { background: var(--c-gold); color: #07090B; }
.view-toggle svg { width: 16px; height: 16px; }

.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.af {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 8px 6px 14px;
  border-radius: 99px;
  background: var(--c-accent-soft);
  border: 1px solid rgba(201,162,39,.35);
  font-size: .78rem; color: var(--c-gold-2);
}
.af button { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,162,39,.25); }
.af svg { width: 10px; height: 10px; }

.empty-state { text-align: center; padding: 80px 20px; border: 1px dashed var(--c-line-strong); border-radius: var(--r-lg); }
.empty-state svg { width: 46px; height: 46px; color: var(--c-text-mute); margin: 0 auto 18px; }

/* ---------- Compare bar ---------- */
.compare-bar {
  position: fixed; left: 50%; bottom: 20px; z-index: 44;
  transform: translateX(-50%) translateY(160%);
  width: min(920px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--c-surface) 95%, transparent);
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  transition: transform .6s var(--e-out);
}
.compare-bar.on { transform: translateX(-50%) translateY(0); }
.compare-slots { display: flex; gap: 10px; flex: 1; }
.cslot {
  width: 68px; height: 50px; border-radius: 10px;
  border: 1px dashed var(--c-line-strong);
  background: var(--c-ink-2);
  overflow: hidden; position: relative;
  display: grid; place-items: center;
}
.cslot img { width: 100%; height: 100%; object-fit: cover; }
.cslot .x {
  position: absolute; top: 2px; right: 2px;
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(7,9,11,.75); color: #fff;
  display: grid; place-items: center;
}
.cslot .x svg { width: 9px; height: 9px; }
.cslot span { font-size: .62rem; color: var(--c-text-mute); }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 130;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(3,5,7,.78);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--e-out), visibility .4s;
}
.modal.on { opacity: 1; visibility: visible; }
.modal-box {
  width: min(1060px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  box-shadow: var(--sh-lg);
  transform: translateY(24px) scale(.97);
  transition: transform .5s var(--e-out);
}
.modal.on .modal-box { transform: none; }
.modal-head {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--c-line);
  background: color-mix(in srgb, var(--c-surface) 96%, transparent);
  backdrop-filter: blur(10px);
}
.modal-head h3 { font-size: 1.2rem; }
.modal-body { padding: 26px; }
.modal-close {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--c-line);
  color: var(--c-text-soft);
  transition: all var(--t-fast);
}
.modal-close:hover { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.modal-close svg { width: 16px; height: 16px; }

/* Compare table */
.cmp-table { font-size: .87rem; }
.cmp-table th, .cmp-table td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--c-line); vertical-align: top; }
.cmp-table th { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--c-text-mute); width: 190px; }
.cmp-table td { color: var(--c-text); }
.cmp-table tr:hover td { background: rgba(255,255,255,.02); }
.cmp-head img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--r-md); margin-bottom: 10px; }
.cmp-best { color: var(--c-green); font-weight: 600; }

/* ---------- Gallery / Lightbox ---------- */
.gal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal a { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; display: block; }
.gal a:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--e-out); }
.gal a:hover img { transform: scale(1.07); }
.gal a::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(7,9,11,.35); opacity: 0; transition: opacity .3s;
}
.gal a:hover::after { opacity: 1; }
@media (max-width: 720px) { .gal { grid-template-columns: repeat(2, 1fr); } .gal a:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; } }

.lightbox {
  position: fixed; inset: 0; z-index: 140;
  display: grid; place-items: center;
  background: rgba(3,5,7,.94);
  opacity: 0; visibility: hidden;
  transition: opacity .4s;
}
.lightbox.on { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; backdrop-filter: blur(8px); }
.lb-nav:hover { background: var(--c-gold); color: #07090B; }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-nav svg { width: 22px; height: 22px; }
.lb-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; }
.lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-family: var(--f-mono); font-size: .8rem; color: rgba(255,255,255,.7); }

/* ---------- 360 viewer ---------- */
.viewer360 {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface-2);
  cursor: grab;
  aspect-ratio: 16/10;
  user-select: none;
  touch-action: pan-y;
}
.viewer360:active { cursor: grabbing; }
.viewer360 img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0; transition: opacity .12s; }
.viewer360 img.on { opacity: 1; }
.v360-hint {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: 99px;
  background: rgba(7,9,11,.62); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .76rem; color: #fff;
  animation: hintBob 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hintBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-5px)} }
.v360-hint svg { width: 16px; height: 16px; }
.v360-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 13px; border-radius: 99px;
  background: rgba(7,9,11,.6); backdrop-filter: blur(8px);
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em;
  color: var(--c-gold-2); border: 1px solid rgba(201,162,39,.3);
}

/* ---------- Before / After ---------- */
.ba {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 16/9;
  user-select: none;
  cursor: ew-resize;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--c-gold);
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 22px rgba(201,162,39,.8);
}
.ba-handle::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 8px 26px rgba(0,0,0,.5);
}
.ba-handle::before {
  content: "‹ ›";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2; font-size: 1.2rem; font-weight: 700; color: #07090B;
  letter-spacing: 2px;
}
.ba-lbl {
  position: absolute; bottom: 16px; z-index: 3;
  padding: 6px 14px; border-radius: 99px;
  background: rgba(7,9,11,.6); backdrop-filter: blur(8px);
  font-size: .74rem; font-weight: 600; color: #fff;
  letter-spacing: .04em;
}
.ba-lbl.l { left: 16px; } .ba-lbl.r { right: 16px; }

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--c-line); }
.acc-item { border-bottom: 1px solid var(--c-line); }
.acc-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 600; letter-spacing: -.018em;
  color: var(--c-text);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.acc-btn:hover { color: var(--c-gold-2); padding-left: 10px; }
.acc-ic {
  flex: none; width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line-strong);
  border-radius: 50%;
  position: relative;
  transition: all var(--t-med) var(--e-out);
}
.acc-ic::before, .acc-ic::after {
  content: ""; position: absolute;
  background: currentColor;
  transition: transform var(--t-med) var(--e-out), opacity var(--t-fast);
}
.acc-ic::before { width: 12px; height: 1.5px; }
.acc-ic::after { width: 1.5px; height: 12px; }
.acc-item.on .acc-ic { background: var(--c-gold); color: #07090B; border-color: var(--c-gold); transform: rotate(180deg); }
.acc-item.on .acc-ic::after { transform: scaleY(0); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--e-out); }
.acc-item.on .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding: 0 60px 26px 4px; color: var(--c-text-soft); font-size: .95rem; }
.acc-panel ul { padding: 0 60px 26px 4px; }
@media (max-width: 640px) { .acc-panel p, .acc-panel ul { padding-right: 4px; } }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.tabs button {
  padding: 11px 22px;
  border: 1px solid var(--c-line);
  border-radius: 99px;
  font-size: .87rem; font-weight: 600;
  color: var(--c-text-mute);
  transition: all var(--t-fast) var(--e-out);
}
.tabs button:hover { color: var(--c-text); border-color: var(--c-line-strong); }
.tabs button.on { background: var(--c-gold); color: #07090B; border-color: var(--c-gold); }
.tab-panel { display: none; animation: fadeUp .6s var(--e-out); }
.tab-panel.on { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } }

/* ---------- Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden; }
.stat { padding: clamp(26px, 3vw, 44px) clamp(18px, 2vw, 30px); background: var(--c-surface); text-align: center; transition: background var(--t-med); }
.stat:hover { background: var(--c-surface-2); }
.stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 800; letter-spacing: -.045em; line-height: 1;
  color: var(--c-gold-2);
}
.stat span { display: block; margin-top: 10px; font-size: .84rem; color: var(--c-text-soft); }
.stat small { display: block; margin-top: 5px; font-size: .72rem; color: var(--c-text-mute); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.testi {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  height: 100%;
  display: flex; flex-direction: column;
  transition: all var(--t-med) var(--e-out);
}
.testi:hover { border-color: rgba(201,162,39,.4); transform: translateY(-5px); }
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 16px; height: 16px; color: var(--c-gold); fill: currentColor; }
.testi blockquote { font-size: 1rem; line-height: 1.62; color: var(--c-text); margin-bottom: 22px; flex: 1; }
.testi blockquote::before { content: "«"; color: var(--c-gold); font-size: 1.5rem; margin-right: 3px; }
.testi blockquote::after { content: "»"; color: var(--c-gold); font-size: 1.5rem; margin-left: 3px; }
.testi-who { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--c-line); }
.testi-who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.testi-who b { display: block; font-size: .89rem; }
.testi-who small { display: block; font-size: .76rem; color: var(--c-text-mute); }

.rating-summary {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px);
  flex-wrap: wrap;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
}
.rating-big { text-align: center; padding-right: clamp(20px,3vw,44px); border-right: 1px solid var(--c-line); }
.rating-big b { font-family: var(--f-display); font-size: 3.4rem; font-weight: 800; letter-spacing: -.05em; line-height: 1; color: var(--c-gold-2); }
.rating-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 7px; }
.rb { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--c-text-mute); }
.rb .track { flex: 1; height: 6px; border-radius: 99px; background: var(--c-surface-2); overflow: hidden; }
.rb .track i { display: block; height: 100%; background: linear-gradient(90deg, var(--c-gold-3), var(--c-gold)); border-radius: 99px; width: 0; transition: width 1.3s var(--e-out); }
@media (max-width: 700px) { .rating-big { border-right: 0; border-bottom: 1px solid var(--c-line); padding: 0 0 20px; width: 100%; } }

/* ---------- Team ---------- */
.team-card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--c-surface-2); }
.team-card img { width: 100%; aspect-ratio: 3/3.7; object-fit: cover; filter: grayscale(.72) contrast(1.06); transition: filter .7s var(--e-out), transform 1s var(--e-out); }
.team-card:hover img { filter: grayscale(0); transform: scale(1.05); }
.team-card .ov {
  position: absolute; inset: auto 0 0 0;
  padding: 26px 22px 22px;
  background: linear-gradient(to top, rgba(7,9,11,.94), rgba(7,9,11,.7) 45%, transparent);
}
.team-card b { display: block; font-family: var(--f-display); font-size: 1.08rem; letter-spacing: -.02em; color: #fff; }
.team-card small { display: block; font-size: .78rem; color: var(--c-gold-2); margin-top: 3px; }
.team-card .meta {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s var(--e-out), opacity .4s, margin-top .5s;
}
.team-card:hover .meta { max-height: 130px; opacity: 1; margin-top: 12px; }
.team-card .meta a { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.8); margin-top: 5px; }
.team-card .meta svg { width: 13px; height: 13px; color: var(--c-gold-2); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 42px; }
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(to bottom, var(--c-gold), var(--c-line) 70%);
}
.tl-item { position: relative; padding-bottom: 44px; }
.tl-item::before {
  content: ""; position: absolute; left: -36px; top: 6px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--c-ink); border: 2px solid var(--c-gold);
  box-shadow: 0 0 0 5px var(--c-ink);
  transition: transform .4s var(--e-spring), background .3s;
}
.tl-item:hover::before { transform: scale(1.35); background: var(--c-gold); }
.tl-year { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .16em; color: var(--c-gold-2); margin-bottom: 8px; }
.tl-item h3 { font-size: 1.22rem; margin-bottom: 9px; }
.tl-item p { font-size: .92rem; color: var(--c-text-soft); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { position: relative; padding: 30px clamp(16px,2vw,26px); border-left: 1px solid var(--c-line); transition: background .4s; }
.step:last-child { border-right: 1px solid var(--c-line); }
.step:hover { background: var(--c-surface); }
.step::after {
  content: ""; position: absolute; top: 0; left: -1px; width: 1px; height: 0;
  background: var(--c-gold); transition: height .6s var(--e-out);
}
.step:hover::after { height: 100%; }
.step .n { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .2em; color: var(--c-gold-2); margin-bottom: 16px; }
.step h4 { font-size: 1.06rem; margin-bottom: 9px; }
.step p { font-size: .86rem; color: var(--c-text-soft); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr); } .step:nth-child(2) { border-right: 1px solid var(--c-line); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } .step { border-right: 1px solid var(--c-line); } }

/* ---------- Split media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split-media .float-badge {
  position: absolute; bottom: 20px; left: 20px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--c-surface) 90%, transparent);
  backdrop-filter: blur(16px);
  border: 1px solid var(--c-line-strong);
  box-shadow: var(--sh-md);
}
.split-media .float-badge b { display: block; font-family: var(--f-display); font-size: 1.5rem; color: var(--c-gold-2); letter-spacing: -.03em; }
.split-media .float-badge span { font-size: .76rem; color: var(--c-text-soft); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.rev .split-media { order: 0; } }

/* ---------- Checklist ---------- */
.checks li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: .93rem; color: var(--c-text-soft);
}
.checks li:last-child { border-bottom: 0; }
.checks .tick {
  flex: none; width: 21px; height: 21px; margin-top: 2px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-accent-soft);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--c-gold-2);
}
.checks .tick svg { width: 11px; height: 11px; stroke-width: 3; }

/* ---------- Calculator ---------- */
.calc {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
}
.calc-controls { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 26px; }
.calc-result {
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(160deg, var(--c-surface-2), var(--c-ink-2));
  border-left: 1px solid var(--c-line);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.calc-result::before {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.2), transparent 65%);
}
.calc-rate {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 800; letter-spacing: -.05em; line-height: 1;
  color: var(--c-gold-2);
  position: relative;
}
.calc-rate sup { font-size: .34em; vertical-align: super; letter-spacing: 0; }
.calc-lines { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--c-line); position: relative; }
.calc-lines div { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: .87rem; color: var(--c-text-soft); }
.calc-lines div b { color: var(--c-text); font-weight: 600; }
.calc-lines div.total { border-top: 1px solid var(--c-line); margin-top: 8px; padding-top: 14px; font-size: .95rem; }
@media (max-width: 880px) { .calc { grid-template-columns: 1fr; } .calc-result { border-left: 0; border-top: 1px solid var(--c-line); } }

/* ---------- Multi-step form ---------- */
.stepper { display: flex; gap: 0; margin-bottom: 34px; }
.stepper .sp { flex: 1; position: relative; padding-top: 26px; text-align: center; }
.stepper .sp::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--c-line);
}
.stepper .sp.done::before, .stepper .sp.on::before { background: var(--c-gold); }
.stepper .sp .dot {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--c-ink); border: 2px solid var(--c-line);
  transition: all .4s var(--e-spring);
}
.stepper .sp.on .dot, .stepper .sp.done .dot { border-color: var(--c-gold); background: var(--c-gold); }
.stepper .sp.on .dot { transform: translateX(-50%) scale(1.3); box-shadow: 0 0 0 5px var(--c-accent-soft); }
.stepper .sp span { font-size: .76rem; color: var(--c-text-mute); }
.stepper .sp.on span { color: var(--c-gold-2); font-weight: 600; }
.fstep { display: none; animation: fadeUp .5s var(--e-out); }
.fstep.on { display: block; }

/* Option cards */
.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt span {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 20px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: var(--c-ink-2);
  font-size: .86rem; font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-fast) var(--e-out);
}
.opt span svg { width: 24px; height: 24px; color: var(--c-text-mute); transition: color var(--t-fast); }
.opt span:hover { border-color: var(--c-line-strong); transform: translateY(-2px); }
.opt input:checked + span { border-color: var(--c-gold); background: var(--c-accent-soft); color: var(--c-gold-2); }
.opt input:checked + span svg { color: var(--c-gold-2); }

/* ---------- Calendar ---------- */
.cal { border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden; background: var(--c-surface); }
.cal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--c-line); }
.cal-head b { font-family: var(--f-display); font-size: 1rem; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--c-line); border-radius: 8px; color: var(--c-text-soft); transition: all var(--t-fast); }
.cal-nav button:hover { border-color: var(--c-gold); color: var(--c-gold-2); }
.cal-nav svg { width: 14px; height: 14px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; padding: 14px; }
.cal-grid .dow { text-align: center; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .1em; color: var(--c-text-mute); padding-bottom: 6px; }
.cal-day {
  aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 9px; font-size: .85rem;
  color: var(--c-text-soft);
  transition: all var(--t-fast);
}
.cal-day:hover:not(.off):not(.dis) { background: var(--c-surface-2); color: var(--c-text); }
.cal-day.off { opacity: .22; pointer-events: none; }
.cal-day.dis { opacity: .3; text-decoration: line-through; pointer-events: none; }
.cal-day.sel { background: var(--c-gold); color: #07090B; font-weight: 700; }
.cal-day.today { box-shadow: inset 0 0 0 1px var(--c-gold); }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; padding: 0 14px 16px; }
.slot { padding: 10px 6px; border: 1px solid var(--c-line); border-radius: 9px; font-size: .82rem; color: var(--c-text-soft); text-align: center; transition: all var(--t-fast); }
.slot:hover { border-color: var(--c-gold); color: var(--c-gold-2); }
.slot.on { background: var(--c-gold); color: #07090B; border-color: var(--c-gold); font-weight: 600; }
.slot.dis { opacity: .3; pointer-events: none; text-decoration: line-through; }

/* ---------- Opening hours ---------- */
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--c-line); font-size: .89rem; }
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--c-text-soft); }
.hours li.now { color: var(--c-gold-2); font-weight: 600; }
.hours li.now span:first-child { color: var(--c-gold-2); }
.open-status { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 99px; font-size: .82rem; font-weight: 600; }
.open-status.open { background: rgba(53,192,138,.12); color: var(--c-green); border: 1px solid rgba(53,192,138,.32); }
.open-status.closed { background: rgba(226,86,77,.1); color: var(--c-red); border: 1px solid rgba(226,86,77,.3); }
.open-status i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: pulseDot 2s infinite; }

/* ---------- Map ---------- */
.map-shell { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--c-line); min-height: 380px; background: var(--c-surface-2); }
.map-shell iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.8) invert(.92) contrast(.86) hue-rotate(180deg); }
[data-theme="light"] .map-shell iframe { filter: grayscale(.3); }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--c-line); background: var(--c-surface); transition: all var(--t-med) var(--e-out); height: 100%; }
.post-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,.4); box-shadow: var(--sh-lg); }
.post-media { aspect-ratio: 16/10; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--e-out); }
.post-card:hover .post-media img { transform: scale(1.07); }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 12px; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-text-mute); margin-bottom: 13px; }
.post-meta .cat { color: var(--c-gold-2); }
.post-body h3 { font-size: 1.16rem; line-height: 1.28; margin-bottom: 11px; }
.post-body p { font-size: .89rem; color: var(--c-text-soft); flex: 1; }
.post-body .link-u { margin-top: 18px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(40px, 6vw, 84px) clamp(26px, 5vw, 72px);
  border: 1px solid var(--c-line-strong);
}
.cta-band img.bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: brightness(.34) saturate(.8); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 120% at 88% 15%, rgba(201,162,39,.35), transparent 58%),
    linear-gradient(105deg, rgba(7,9,11,.94) 20%, rgba(7,9,11,.55));
}
.cta-band h2 { max-width: 18ch; margin-bottom: 20px; color: #fff; }
.cta-band p { max-width: 52ch; color: rgba(237,239,242,.78); }
.cta-band .btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.32); color: #fff; }

/* ---------- Pricing / packages ---------- */
.pkg {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  display: flex; flex-direction: column;
  transition: all var(--t-med) var(--e-out);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.pkg.featured { border-color: var(--c-gold); box-shadow: var(--sh-gold); }
.pkg.featured::before {
  content: "Beliebteste Wahl";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 16px; border-radius: 99px;
  background: var(--c-gold); color: #07090B;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  white-space: nowrap;
}
.pkg h3 { font-size: 1.24rem; margin-bottom: 8px; }
.pkg .price { font-family: var(--f-display); font-size: 2.6rem; font-weight: 800; letter-spacing: -.05em; color: var(--c-gold-2); margin: 18px 0 6px; }
.pkg .price small { font-size: .34em; font-weight: 500; color: var(--c-text-mute); letter-spacing: 0; }
.pkg ul { margin: 24px 0; flex: 1; }
.pkg ul li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: .88rem; color: var(--c-text-soft); }
.pkg ul svg { width: 16px; height: 16px; color: var(--c-gold-2); flex: none; margin-top: 3px; }
.pkg ul li.no { color: var(--c-text-mute); opacity: .6; }
.pkg ul li.no svg { color: var(--c-text-mute); }

/* ---------- Sticky sidebar layout ---------- */
.with-side { display: grid; grid-template-columns: 1fr 350px; gap: clamp(28px, 4vw, 60px); align-items: start; }
.side-sticky { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 980px) { .with-side { grid-template-columns: 1fr; } .side-sticky { position: static; } }

.side-box { padding: 26px; border: 1px solid var(--c-line); border-radius: var(--r-lg); background: var(--c-surface); }
.side-box + .side-box { margin-top: 20px; }
.side-box h4 { font-size: 1.02rem; margin-bottom: 16px; }

/* ---------- Vehicle detail specifics ---------- */
.v-hero-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 12px; }
.v-hero-grid .main { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.v-hero-grid .main img { width: 100%; height: 100%; aspect-ratio: 16/10; object-fit: cover; }
.v-hero-grid .side { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.v-hero-grid .side > a { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.v-hero-grid .side img { width: 100%; height: 100%; object-fit: cover; }
.v-hero-grid a::after { content: ""; position: absolute; inset: 0; background: rgba(7,9,11,.3); opacity: 0; transition: opacity .3s; }
.v-hero-grid a:hover::after { opacity: 1; }
@media (max-width: 800px) { .v-hero-grid { grid-template-columns: 1fr; } .v-hero-grid .side { grid-template-columns: 1fr 1fr; grid-template-rows: none; } }

.spec-table { border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden; }
.spec-table tr:nth-child(odd) { background: rgba(255,255,255,.018); }
.spec-table th, .spec-table td { padding: 13px 20px; text-align: left; font-size: .88rem; border-bottom: 1px solid var(--c-line); }
.spec-table th { color: var(--c-text-mute); font-weight: 500; width: 46%; }
.spec-table td { color: var(--c-text); font-weight: 500; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 26px; }
.equip-grid li { display: flex; gap: 10px; align-items: flex-start; font-size: .87rem; color: var(--c-text-soft); padding: 6px 0; }
.equip-grid svg { width: 14px; height: 14px; color: var(--c-gold-2); flex: none; margin-top: 4px; }
@media (max-width: 820px) { .equip-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .equip-grid { grid-template-columns: 1fr; } }

.price-box {
  padding: 26px;
  border: 1px solid var(--c-gold);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--c-surface-2), var(--c-surface));
  box-shadow: var(--sh-gold);
}
.price-box .p-main { font-family: var(--f-display); font-size: 2.5rem; font-weight: 800; letter-spacing: -.05em; color: var(--c-gold-2); line-height: 1; }
.price-box .p-sub { font-size: .78rem; color: var(--c-text-mute); margin-top: 7px; }
.price-box .p-rate { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--c-line); font-size: .89rem; color: var(--c-text-soft); }
.price-box .p-rate b { color: var(--c-text); }

.energy-label { display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px; border-radius: 8px; background: var(--c-surface-2); border: 1px solid var(--c-line); font-size: .82rem; }
.energy-badge { width: 30px; height: 24px; display: grid; place-items: center; border-radius: 4px; font-weight: 800; font-size: .82rem; color: #06120C; }
.eb-a { background: #00A651; } .eb-b { background: #52B848; } .eb-c { background: #BFD730; }
.eb-d { background: #FFF200; } .eb-e { background: #FDB913; } .eb-f { background: #F26522; } .eb-g { background: #ED1C24; color:#fff; }

/* ---------- Job / Karriere ---------- */
.job {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 26px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  transition: all var(--t-med) var(--e-out);
}
.job:hover { border-color: var(--c-gold); transform: translateX(6px); }
.job h3 { font-size: 1.1rem; margin-bottom: 8px; }
.job .tags { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 640px) { .job { flex-direction: column; align-items: flex-start; } }

/* ---------- Logo / trust strip ---------- */
.trust { display: flex; flex-wrap: wrap; gap: clamp(20px,3vw,48px); align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 11px; font-size: .84rem; color: var(--c-text-mute); }
.trust-item svg { width: 22px; height: 22px; color: var(--c-gold-2); }

/* ---------- Newsletter ---------- */
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-form input { flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 99px; border: 1px solid var(--c-line-strong); background: var(--c-ink-2); font-size: .9rem; }
.nl-form input:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px var(--c-accent-soft); }

/* ---------- FAQ search ---------- */
.faq-search { position: relative; max-width: 520px; }
.faq-search input { width: 100%; padding: 16px 20px 16px 50px; border-radius: 99px; border: 1px solid var(--c-line-strong); background: var(--c-surface); font-size: .93rem; }
.faq-search input:focus { outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px var(--c-accent-soft); }
.faq-search svg { position: absolute; left: 19px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--c-text-mute); }

/* ---------- Tilt ---------- */
.tilt { transform-style: preserve-3d; transition: transform .4s var(--e-out); will-change: transform; }
.tilt-inner { transform: translateZ(28px); }

/* ---------- Marquee ticker (aktionen) ---------- */
.ticker { background: var(--c-gold); color: #07090B; overflow: hidden; padding: 9px 0; }
.ticker .marquee-track { animation-duration: 26s; }
.ticker b { padding-inline: 30px; font-size: .84rem; font-weight: 700; letter-spacing: .03em; white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; }

/* ---------- Success message ---------- */
.form-success {
  display: none;
  padding: 34px;
  border: 1px solid rgba(53,192,138,.35);
  border-radius: var(--r-lg);
  background: rgba(53,192,138,.07);
  text-align: center;
}
.form-success.on { display: block; animation: fadeUp .6s var(--e-out); }
.form-success .ic { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(53,192,138,.16); color: var(--c-green); }
.form-success .ic svg { width: 28px; height: 28px; stroke-width: 2.4; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--c-text-soft); font-size: .93rem; }

/* ---------- Misc ---------- */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; }
.kicker-num {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .2em;
  color: var(--c-text-mute);
}
.img-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.img-frame::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--c-line-strong);
  border-radius: inherit; pointer-events: none;
}
.ratio-16-9 { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.ratio-4-3 { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.ratio-1-1 { aspect-ratio: 1; object-fit: cover; width: 100%; }

.img-fallback {
  background: linear-gradient(135deg, var(--c-surface-2), var(--c-ink-2));
  position: relative;
}
.img-fallback::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--c-text-mute);
  text-align: center; padding: 20px;
}

/* ---------- Zusammenfassung in mehrstufigen Formularen ---------- */
[data-summary] > div {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: .88rem;
}
[data-summary] > div:last-child { border-bottom: 0; }
[data-summary] > div > span { color: var(--c-text-mute); }
[data-summary] > div > b { color: var(--c-text); font-weight: 600; text-align: right; }
[data-summary]:empty::before {
  content: "Noch keine Angaben erfasst.";
  font-size: .86rem; color: var(--c-text-mute);
}

/* ---------- Gleichmäßige Galerie (ohne großes erstes Bild) ---------- */
.gal.gal-flat a:first-child { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
@media (max-width: 720px) { .gal.gal-flat { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 480px) { .gal.gal-flat { grid-template-columns: repeat(2, 1fr) !important; } }

/* Highlight box */
.note {
  display: flex; gap: 14px;
  padding: 20px 22px;
  border-left: 2px solid var(--c-gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--c-accent-soft);
}
.note svg { width: 20px; height: 20px; color: var(--c-gold-2); flex: none; margin-top: 2px; }
.note p { font-size: .89rem; color: var(--c-text-soft); margin: 0; }
.note b { color: var(--c-text); }
