:root {
  --bg: #06090d;
  --surface: #0d141b;
  --surface-2: #121c24;
  --panel: #17232d;
  --ink: #f5f8fb;
  --muted: #9aa9b5;
  --line: rgba(230, 240, 247, .14);
  --red: #ff233c;
  --teal: #18d2c1;
  --blue: #2c7da0;
  --display: "Bahnschrift", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  --text: "Aptos", "Segoe UI", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(24,210,193,.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255,35,60,.12), transparent 24%),
    var(--bg);
  font-family: var(--text);
  line-height: 1.55;
}
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: 94px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 0 clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(6,9,13,.92), rgba(6,9,13,.22), rgba(6,9,13,0));
}
.logo img {
  display: block;
  width: 156px;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.42));
}
nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-family: var(--display);
  font-weight: 850;
}
nav a, .header-actions a, .top-action, .primary, .secondary, .text-link {
  color: inherit;
  text-decoration: none;
}
nav a, .header-actions > a:not(.top-action) {
  position: relative;
  transition: color .18s ease, transform .18s ease;
}
nav a::after, .header-actions > a:not(.top-action)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
nav a:hover, .header-actions > a:not(.top-action):hover {
  color: #fff;
  transform: translateY(-1px);
}
nav a:hover::after, .header-actions > a:not(.top-action):hover::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: .84rem;
  font-weight: 850;
}
.header-actions > a:not(.top-action) { color: rgba(245,248,251,.72); }
.top-action, .primary, .secondary, button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 6px;
  font-family: var(--display);
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.top-action {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
}
.primary, button {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #b8001f);
  border: 0;
}
.top-action:hover, .primary:hover, .secondary:hover, button:hover {
  transform: translateY(-2px);
}
.primary:hover, button:hover {
  box-shadow: 0 12px 30px rgba(255,35,60,.34);
  background: linear-gradient(135deg, #ff4055, #e0061f);
}
.top-action:hover, .secondary:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.14);
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}
.secondary {
  color: #fff;
  border: 1px solid rgba(24,210,193,.55);
  background: rgba(24,210,193,.12);
}
.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 44px;
  padding: 166px clamp(18px, 5vw, 72px) 78px;
  background:
    linear-gradient(90deg, rgba(6,9,13,.96), rgba(9,23,32,.82) 53%, rgba(6,9,13,.2)),
    url("http://sks-auto.de/wp-content/uploads/2024/08/werkstatt_cleared_2-scaled.jpg") center 48% / cover;
}
.hero-text { max-width: 940px; }
.badge, .panel-label {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: var(--display);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
  font-family: var(--display);
}
h1 {
  max-width: 940px;
  font-size: clamp(3rem, 6.6vw, 7rem);
  line-height: .9;
  font-weight: 750;
}
.lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #dbe6ec;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.quick-box {
  padding: 24px 26px;
  border: 1px solid rgba(24,210,193,.26);
  border-radius: 8px;
  background: rgba(13,20,27,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,.36);
}
dl {
  margin: 0;
  display: grid;
  gap: 18px;
}
dl div {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
dd {
  margin: 5px 0 0;
  color: #fff;
  font-weight: 950;
  font-size: 1.08rem;
}
.signal-row {
  position: relative;
  z-index: 5;
  width: min(1160px, calc(100% - 36px));
  margin: -42px auto 102px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(18,28,36,.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.signal-row div {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.signal-row div:last-child { border-right: 0; }
.signal-row span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.signal-row strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 850;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.service-band, .process, .faq, .contact {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 108px;
}
.section-head {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  margin-bottom: 34px;
}
h2 {
  font-size: clamp(2.05rem, 4.4vw, 4.65rem);
  line-height: .94;
  font-weight: 720;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.service-grid article {
  min-height: 292px;
  padding: 28px 24px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.service-grid span {
  display: block;
  color: var(--teal);
  font-weight: 950;
}
.service-grid h3 {
  margin-top: 48px;
  color: #fff;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.02;
  font-weight: 760;
}
.service-grid p, .split p, .faq p, .contact p, .process p, .partner p, .person p {
  color: var(--muted);
}
.split {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
}
.split img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.split ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.split li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}
.split li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: var(--teal);
  vertical-align: .1em;
}
.person {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 108px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  padding: 42px 42px 0;
  background:
    linear-gradient(135deg, rgba(18,28,36,.98), rgba(9,40,50,.9)),
    var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.person-copy { padding-bottom: 44px; }
.person .role {
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 900;
}
.person-copy > p:not(.badge):not(.role) {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}
.person blockquote {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--red);
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}
.person-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: bottom;
  display: block;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,.4));
}
.partner {
  width: 100%;
  margin: 0 0 108px;
  padding: clamp(54px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(255,35,60,.26), transparent 31%),
    linear-gradient(135deg, #1a1117, #080b10 62%, #0b1319),
    var(--bg);
  border-top: 1px solid rgba(255,35,60,.26);
  border-bottom: 1px solid rgba(255,35,60,.26);
}
.partner-inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.partner-copy > p:not(.badge) {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}
.partner .text-link {
  font-family: var(--display);
  font-weight: 900;
  color: #fff;
  border-bottom: 2px solid #ff6a7b;
  transition: color .18s ease, border-color .18s ease;
}
.partner .text-link:hover {
  color: #ff6a7b;
  border-color: #fff;
}
.partner-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.partner-models .model-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,35,60,.12), rgba(18,22,28,.92)),
    #11141a;
  border: 1px solid rgba(255,35,60,.24);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.partner-models .model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,123,.46);
  box-shadow: 0 22px 46px rgba(0,0,0,.34);
}
.partner-models img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto 24px;
  filter: drop-shadow(0 26px 28px rgba(0,0,0,.36));
}
.partner-models span {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 760;
  line-height: .9;
}
.video-feature {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 108px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.video-copy p:not(.badge) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24,210,193,.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6,9,13,.88), rgba(24,210,193,.26)),
    url("https://sks-auto.de/wp-content/uploads/2024/08/man-362150_1920-1024x683.jpg") center / cover;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.video-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(6,9,13,.84);
  border-left: 4px solid var(--teal);
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 800;
  pointer-events: none;
}
.process ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.process li {
  min-height: 214px;
  padding: 28px 26px;
  background: var(--surface);
}
.process li span {
  display: block;
  color: var(--teal);
  font-weight: 950;
  margin-bottom: 38px;
}
.process strong {
  display: block;
  color: #fff;
  font-size: 1.48rem;
  margin-bottom: 10px;
}
.process p { margin: 0; }
.reviews {
  margin-bottom: 108px;
  padding: 92px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 14% 20%, rgba(255,35,60,.18), transparent 30%),
    linear-gradient(135deg, #1a1117, #080b10 62%, #0b1319);
  color: #fff;
  border-top: 1px solid rgba(255,35,60,.24);
  border-bottom: 1px solid rgba(255,35,60,.24);
}
.reviews h2 {
  width: min(1160px, 100%);
  margin: 0 auto 28px;
}
.review-row {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
blockquote { margin: 0; }
.reviews blockquote {
  padding: 28px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,35,60,.2);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  color: #e8edef;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.reviews blockquote:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,123,.42);
  box-shadow: 0 22px 46px rgba(0,0,0,.3);
}
cite {
  display: block;
  margin-top: 20px;
  color: #ff6a7b;
  font-style: normal;
  font-weight: 950;
}
.faq {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 44px;
  align-items: start;
}
.faq-list { display: grid; }
details {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  color: #fff;
  font-weight: 950;
  font-size: 1.08rem;
}
.contact {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  padding: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
form { display: grid; gap: 12px; }
.field {
  display: grid;
  gap: 7px;
}
.field span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.field-full {
  grid-column: 1 / -1;
}
input, select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0a1016;
  color: #fff;
  font: inherit;
}
textarea {
  min-height: 138px;
  resize: vertical;
}
::placeholder { color: #7f909d; opacity: 1; }
.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.legal {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}
.legal a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.subpage .topbar {
  background: rgba(6,9,13,.94);
  border-bottom: 1px solid var(--line);
}
.legal-page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 168px 0 58px;
}
.legal-hero {
  margin-bottom: 44px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .88;
}
.legal-hero p:not(.badge) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}
.legal-content {
  display: grid;
  gap: 16px;
}
.legal-content article {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,35,60,.045), rgba(18,28,36,.92)),
    var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
}
.legal-content h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1;
  margin-bottom: 14px;
}
.legal-content p {
  margin: 0 0 12px;
  color: #d6e0e7;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.legal-content a {
  color: #ff6a7b;
  font-weight: 850;
  overflow-wrap: anywhere;
}
.cookie-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .topbar {
    position: absolute;
    grid-template-columns: 1fr auto;
    padding-top: 14px;
    padding-bottom: 12px;
  }
  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .header-actions > a:not(.top-action) { display: none; }
  .hero, .section-head, .split, .person, .partner-inner, .video-feature, .process ol, .review-row, .faq, .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 88vh;
    padding-top: 160px;
  }
  .signal-row, .service-grid, .partner-models {
    grid-template-columns: 1fr;
  }
  .signal-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .signal-row div:last-child { border-bottom: 0; }
  .split img { min-height: 340px; }
  .person { padding: 32px 28px 0; }
  .partner-models .model-card { min-height: auto; }
  .legal-page {
    padding-top: 154px;
  }
  .cookie-grid {
    grid-template-columns: 1fr;
  }
}
