:root {
  --red: #d20a11;
  --ink: #0a0b0d;
  --paper: #f4f4f2;
  --white: #fff;
  --text: #181a1e;
  --muted: #68707a;
  --line: #dedfdf;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: clamp(76px, 9vw, 120px) 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 15px;
  z-index: 300;
  padding: 10px 14px;
  background: #fff;
}
.skip-link:focus {
  top: 15px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #ff6268;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow:before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}
.eyebrow.dark {
  color: var(--red);
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: #fff;
  background: rgba(10, 11, 13, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.brand strong {
  padding-right: 12px;
  border-right: 3px solid var(--red);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}
.brand span {
  color: #c4c8ce;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  gap: 32px;
}
.desktop-nav a {
  color: #c9cdd2;
  font-size: 0.84rem;
  font-weight: 700;
}
.desktop-nav a:hover {
  color: #fff;
}
.header-cta {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--red);
  font-size: 0.82rem;
  font-weight: 800;
}
.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  margin-left: auto;
  padding: 10px;
  color: #fff;
  background: none;
  border: 1px solid #3b3d41;
  border-radius: 7px;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}
.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  padding: 25px;
  color: #fff;
  background: var(--ink);
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-top > strong {
  font-size: 2rem;
  letter-spacing: -0.08em;
}
.menu-close {
  color: #fff;
  background: none;
  border: 0;
  font-size: 2.5rem;
}
.mobile-menu nav {
  display: grid;
  margin-top: 12vh;
}
.mobile-menu nav a {
  padding: 15px 0;
  border-bottom: 1px solid #303236;
  font-size: 1.7rem;
  font-weight: 700;
}
.hero {
  min-height: 620px;
  color: #fff;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 6, 7, 0.97),
      rgba(5, 6, 7, 0.83) 42%,
      rgba(5, 6, 7, 0.18) 78%
    ),
    url("mcs-hero.webp");
  background-position: center;
  background-size: cover;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  min-height: 620px;
  align-items: center;
  gap: 50px;
  padding-top: 70px;
  padding-bottom: 55px;
}
.hero-copy {
  max-width: 700px;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: #c7cbd0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 820;
  cursor: pointer;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-red {
  color: #fff;
  background: var(--red);
}
.button-red:hover {
  background: #ed2028;
}
.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}
.button-light {
  color: var(--ink);
  background: #fff;
}
.button-full {
  width: 100%;
}
.hero-logo-card {
  width: 220px;
  align-self: end;
  justify-self: end;
  padding: 11px;
  background: rgba(5, 6, 7, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.trust-bar span {
  padding: 20px 0;
  color: #d1d4d7;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}
.trust-bar span + span {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.section-head {
  margin-bottom: 34px;
}
.section-head > div {
  max-width: 750px;
}
.section-head > p {
  margin: 0 0 8px;
  color: var(--muted);
}
.service {
  background: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  background: #f7f7f5;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 10px;
}
.service-no {
  display: block;
  margin-bottom: 24px;
  color: #a5a9ae;
  font-size: 0.68rem;
  font-weight: 800;
}
.service-card > p {
  min-height: 76px;
  color: var(--muted);
  font-size: 0.88rem;
}
.service-card details {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.service-card summary {
  color: #34383d;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}
.service-card ul {
  display: grid;
  gap: 7px;
  margin: 15px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.79rem;
}
.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 22px;
  padding: 22px 26px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
}
.service-cta p {
  margin: 0;
  color: #aeb4ba;
  font-size: 0.85rem;
}
.service-cta strong {
  color: #fff;
  font-size: 1rem;
}
.text-link {
  color: #ff565d;
  font-size: 0.83rem;
  font-weight: 820;
}
.vehicles {
  color: #fff;
  background: #1a1c20;
}
.vehicle-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.vehicle-box > div {
  max-width: 650px;
}
.vehicle-box h2 {
  margin: 18px 0 15px;
}
.vehicle-box p {
  margin: 0;
  color: #aeb4bb;
}
.mobile-badge {
  display: inline-flex;
  padding: 6px 10px;
  color: #15171a;
  background: #ffd400;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 900;
}
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}
.about-copy > p {
  color: #505761;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
}
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.values span {
  padding: 8px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 750;
}
.contact {
  color: #fff;
  background: var(--ink);
}
.contact-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  border: 1px solid #303237;
  border-radius: 14px;
}
.contact-info {
  padding: clamp(32px, 5vw, 55px);
}
.contact-info > p:not(.eyebrow) {
  color: #aeb4bb;
}
.contact-info address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 35px;
  font-style: normal;
}
.contact-info address span {
  margin-top: 12px;
  color: #858c95;
}
.contact-form {
  padding: clamp(28px, 5vw, 52px);
  color: var(--text);
  background: #fff;
}
.contact-form form {
  display: grid;
  gap: 15px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.field {
  display: grid;
  gap: 6px;
}
.field > span,
.topic-picker legend {
  font-size: 0.72rem;
  font-weight: 780;
}
.field input,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  background: #f7f7f6;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
}
.field input {
  min-height: 46px;
}
.field textarea {
  min-height: 105px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(210, 10, 17, 0.1);
}
.topic-picker {
  margin: 0;
  padding: 0;
  border: 0;
}
.topic-picker legend {
  margin-bottom: 7px;
}
.topic-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.topic-options label input {
  position: absolute;
  opacity: 0;
}
.topic-options label span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  background: #f7f7f6;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 750;
  cursor: pointer;
}
.topic-options input:checked + span {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}
.consent input {
  accent-color: var(--red);
}
.form-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  text-align: center;
}
.form-message {
  display: none;
  padding: 11px;
  color: #155c2a;
  background: #eaf7ed;
  border-radius: 7px;
  font-size: 0.78rem;
}
.form-message.show {
  display: block;
}
.form-message.is-error {
  color: #821019;
  background: #fff0f1;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.site-footer {
  color: #9299a2;
  background: #050607;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 0;
}
.footer-mark {
  color: #fff;
  font-size: 3rem;
  letter-spacing: -0.09em;
}
.footer-main p {
  margin: 4px 0 0;
  font-size: 0.75rem;
}
.footer-main nav {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 0.78rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid #282a2e;
  font-size: 0.68rem;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s,
    transform 0.55s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .header-inner {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(5, 6, 7, 0.96),
        rgba(5, 6, 7, 0.72) 58%,
        rgba(5, 6, 7, 0.2)
      ),
      url("mcs-hero.webp");
    background-position: 62% center;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-logo-card {
    width: 180px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card > p {
    min-height: 0;
  }
  .section-head,
  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .section-head {
    gap: 10px;
  }
  .vehicle-box {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}

/* Schlichte Seite mit farbigem, hellem Hero-Motiv */
:root {
  --paper: #f7f8fa;
  --blue: #234f80;
}
body {
  background: #fff;
}
.hero {
  color: var(--text);
  background-image: url("mcs-hero-v3.webp");
}
.hero-copy {
  padding: clamp(30px, 4vw, 48px) clamp(25px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(25, 43, 65, 0.15);
  backdrop-filter: blur(7px);
}
.hero-copy h1 {
  color: #17212d;
  text-shadow: none;
}
.hero .button-ghost {
  color: #17212d;
  border-color: rgba(23, 33, 45, 0.42);
  background: rgba(255, 255, 255, 0.36);
}
.service,
.about,
.contact {
  background: #fff;
}
.service-card {
  background: #f7f8fa;
  border-color: #e2e6ea;
  box-shadow: none;
}
.vehicles {
  color: var(--text);
  background: #f3f6f9;
  border-color: #e0e6ec;
}
.mobile-badge {
  color: #fff;
  background: var(--blue);
}
.vehicles .button-light {
  color: #fff;
  background: var(--blue);
}
.about {
  background: #fff;
}
.about-copy {
  background: #f7f8fa;
  border-color: #e1e5e9;
  box-shadow: none;
}
.about-mark {
  color: var(--blue);
}
.contact-shell {
  background: #fff;
  box-shadow: 0 20px 55px rgba(28, 43, 59, 0.1);
}
.contact-info {
  background: linear-gradient(145deg, #315d8d, #1c3857);
}
.site-footer {
  background: #172b40;
}

@media (max-width: 900px) {
  .hero {
    background-image: url("mcs-hero-v3.webp");
    background-position: 62% center;
  }
}
@media (max-width: 580px) {
  .hero-copy {
    padding: 28px 18px;
    background: rgba(255, 255, 255, 0.78);
  }
}
@media (max-width: 580px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .header-inner {
    min-height: 72px;
  }
  .hero {
    min-height: 600px;
  }
  .hero-inner {
    min-height: 600px;
    padding-top: 58px;
  }
  .hero-logo-card {
    width: 155px;
  }
  .trust-bar {
    grid-template-columns: 1fr;
  }
  .trust-bar span {
    padding: 9px 0;
  }
  .trust-bar span + span {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }
  .section {
    padding: 70px 0;
  }
  .hero-actions {
    display: grid;
  }
  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .field-row,
  .topic-options {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form {
    padding: 28px 20px;
  }
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-main nav {
    flex-wrap: wrap;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Hellere, freundlichere Farbwirkung */
:root {
  --paper: #faf9f6;
  --line: #e4e2dd;
}
body {
  background: var(--paper);
}
.hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 6, 7, 0.42),
      rgba(5, 6, 7, 0.24),
      rgba(5, 6, 7, 0.12)
    ),
    url("mcs-hero-v2.webp");
}
.hero-copy h1 {
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.78);
}
.service {
  background: #fff;
}
.service-card {
  background: #fbfaf7;
  border-color: #e4e1da;
  box-shadow: 0 14px 38px rgba(25, 28, 32, 0.055);
}
.vehicles {
  color: var(--text);
  background: #f0eee8;
  border-top: 1px solid #e0ddd5;
  border-bottom: 1px solid #e0ddd5;
}
.vehicles .button-light {
  color: #fff;
  background: var(--ink);
}
.about {
  background: #faf9f6;
}
.about-copy {
  background: rgba(255, 255, 255, 0.9);
}
.contact {
  color: var(--text);
  background: #f5f3ee;
}
.contact-shell {
  background: #fff;
  box-shadow: 0 22px 65px rgba(22, 25, 29, 0.12);
}
.contact-info {
  color: #fff;
  background: linear-gradient(145deg, #343840, #202329);
}
.contact-info address span {
  color: #b8bdc4;
}
.site-footer {
  background: #17191d;
}

@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(rgba(5, 6, 7, 0.38), rgba(5, 6, 7, 0.24)),
      url("mcs-hero-v2.webp");
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
html.samsung-internet {
  color-scheme: only light;
}
html.samsung-internet .site-header {
  background-color: rgba(8, 9, 11, 0.96) !important;
}
html.samsung-internet .contact-form {
  background-color: #fff !important;
}
html.samsung-internet input,
html.samsung-internet textarea {
  color: var(--text) !important;
  background-color: #fff !important;
}

/* Gewünschte gezielte Verfeinerungen */
.hero {
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 6, 7, 0.66),
      rgba(5, 6, 7, 0.5),
      rgba(5, 6, 7, 0.38)
    ),
    url("mcs-hero-v2.webp");
}
.hero-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}
.hero-copy {
  max-width: 850px;
}
.hero-copy h1 {
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.62);
}
.hero-actions {
  justify-content: center;
}
.service-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
}
.service-card > ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.81rem;
  list-style: none;
}
.service-card > ul li {
  position: relative;
  padding-left: 17px;
}
.service-card > ul li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}
.about {
  position: relative;
  overflow: hidden;
  background: #efefec;
}
.about::after {
  position: absolute;
  top: 50%;
  left: -5vw;
  color: rgba(10, 11, 13, 0.035);
  font-size: 26vw;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.12em;
  content: "MCS";
  transform: translateY(-50%);
  pointer-events: none;
}
.about-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}
.about-heading {
  padding-left: 28px;
  border-left: 4px solid var(--red);
}
.about-mark {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.about-copy {
  padding: clamp(28px, 4vw, 45px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 11, 13, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 55px rgba(10, 11, 13, 0.07);
  backdrop-filter: blur(5px);
}
.about-copy > p {
  margin-bottom: 18px;
  color: #444a52;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}
.about-copy > p:last-child {
  margin-bottom: 0;
}
.contact-shell {
  grid-template-columns: 0.7fr 1.3fr;
  border: 0;
  background: #14161a;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #181a1f, #0a0b0d);
}
.contact-form {
  padding: clamp(32px, 5vw, 58px);
}
.form-heading {
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.form-heading span {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.form-heading h3 {
  margin: 8px 0 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}
.field > span,
.topic-picker legend {
  color: #535a63;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  padding: 13px 14px;
  background: #f5f5f3;
  border-color: #d8dadd;
  border-radius: 6px;
}
.field input {
  min-height: 50px;
}
.field textarea {
  min-height: 125px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9aa0a7;
}
.topic-options label span {
  min-height: 46px;
  background: #f5f5f3;
}
.contact-form .button-full {
  min-height: 54px;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(rgba(5, 6, 7, 0.58), rgba(5, 6, 7, 0.5)),
      url("mcs-hero-v2.webp");
  }
  .contact-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 580px) {
  .hero {
    background-position: 63% center;
  }
  .hero-copy h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }
  .service-card {
    min-height: 0;
  }
  .about-heading {
    padding-left: 18px;
  }
}

/* Finale Farbvariante: neutraler Aufbau, helles blaues Fahrzeugmotiv */
:root {
  --paper: #f7f8fa;
  --blue: #234f80;
}
body {
  background: #fff;
}
.hero {
  color: var(--text);
  background-image: url("mcs-hero-v3.webp");
}
.hero-copy {
  padding: clamp(30px, 4vw, 48px) clamp(25px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(25, 43, 65, 0.15);
  backdrop-filter: blur(7px);
}
.hero-copy h1 {
  color: #17212d;
  text-shadow: none;
}
.hero .button-ghost {
  color: #17212d;
  border-color: rgba(23, 33, 45, 0.42);
  background: rgba(255, 255, 255, 0.36);
}
.service,
.about,
.contact {
  background: #fff;
}
.service-card {
  background: #f7f8fa;
  border-color: #e2e6ea;
  box-shadow: none;
}
.vehicles {
  color: var(--text);
  background: #f3f6f9;
  border-color: #e0e6ec;
}
.mobile-badge,
.vehicles .button-light {
  color: #fff;
  background: var(--blue);
}
.about-copy {
  background: #f7f8fa;
  border-color: #e1e5e9;
  box-shadow: none;
}
.about-mark {
  color: var(--blue);
}
.contact-shell {
  background: #fff;
  box-shadow: 0 20px 55px rgba(28, 43, 59, 0.1);
}
.contact-info {
  color: #fff;
  background: linear-gradient(145deg, #315d8d, #1c3857);
}
.contact-info address span {
  color: #c3d0dc;
}
.site-footer {
  background: #172b40;
}
@media (max-width: 900px) {
  .hero {
    background-image: url("mcs-hero-v3.webp");
    background-position: 62% center;
  }
}
@media (max-width: 580px) {
  .hero-copy {
    padding: 28px 18px;
    background: rgba(255, 255, 255, 0.8);
  }
}

/* Finale professionelle Hell-Dunkel-Balance */
:root {
  --paper: #eef0f2;
  --blue: #323a43;
  --line: #dde1e4;
}
body {
  background: #eef0f2;
}
.hero {
  color: #fff;
  background-image:
    linear-gradient(
      90deg,
      rgba(13, 16, 20, 0.36),
      rgba(13, 16, 20, 0.22),
      rgba(13, 16, 20, 0.14)
    ),
    url("mcs-hero-v4.webp");
}
.hero-copy {
  padding: clamp(30px, 4vw, 48px) clamp(25px, 5vw, 64px);
  color: #fff;
  background: rgba(20, 24, 29, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(9, 13, 17, 0.24);
  backdrop-filter: blur(7px);
}
.hero-copy h1 {
  color: #fff;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.35);
}
.hero .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
}
.service {
  background: #eceff1;
}
.service-card {
  background: #fff;
  border-color: #dfe3e6;
  box-shadow: 0 14px 38px rgba(24, 29, 34, 0.07);
}
.vehicles {
  color: #fff;
  background: #292e34;
  border-color: #292e34;
}
.mobile-badge {
  color: #17191d;
  background: #ffd400;
}
.vehicles .button-light {
  color: #fff;
  background: var(--red);
}
.about {
  background: #f5f6f7;
}
.about::after {
  color: rgba(25, 30, 36, 0.035);
}
.about-mark {
  color: var(--red);
}
.about-copy {
  background: #fff;
  border-color: #e0e3e6;
  box-shadow: 0 18px 48px rgba(26, 31, 37, 0.07);
}
.contact {
  background: #e8ebed;
}
.contact-shell {
  background: #fff;
  box-shadow: 0 24px 65px rgba(21, 26, 31, 0.13);
}
.contact-info {
  color: #fff;
  background: linear-gradient(145deg, #333b44, #20262d);
}
.contact-info address span {
  color: #bfc5cb;
}
.site-footer {
  background: #15191e;
}
@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(rgba(13, 16, 20, 0.3), rgba(13, 16, 20, 0.18)),
      url("mcs-hero-v4.webp");
    background-position: 62% center;
  }
}
@media (max-width: 580px) {
  .hero-copy {
    padding: 28px 18px;
    background: rgba(20, 24, 29, 0.72);
  }
}

/* Original-Logo weich in Header und Mobilmenü integriert */
.site-header {
  background: rgba(5, 6, 7, 0.96);
}
.header-inner {
  min-height: 82px;
}
.brand {
  position: relative;
  display: flex;
  width: 205px;
  height: 72px;
  overflow: hidden;
  align-items: center;
}
.brand::after,
.mobile-top::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #050607 0,
    transparent 13%,
    transparent 84%,
    #050607 100%
  );
  content: "";
  pointer-events: none;
}
.brand-logo {
  width: 205px;
  height: 72px;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.04);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 88%,
    transparent 100%
  );
}
.mobile-top {
  position: relative;
  overflow: hidden;
}
.mobile-logo {
  width: 190px;
  height: 68px;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 88%,
    transparent 100%
  );
}
.mobile-top::after {
  right: auto;
  width: 200px;
}
.menu-close {
  position: relative;
  z-index: 2;
}
@media (max-width: 580px) {
  .header-inner {
    min-height: 74px;
  }
  .brand {
    width: 174px;
    height: 64px;
  }
  .brand-logo {
    width: 174px;
    height: 64px;
  }
}

/* Aufgeräumter, zentrierter Abschluss */
.site-footer {
  background: #050607;
}
.footer-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 18px;
  text-align: center;
}
.footer-centered > p {
  margin: 0;
  color: #737981;
  font-size: 0.68rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 18px;
  color: #c6cbd0;
  font-size: 0.74rem;
  font-weight: 700;
}
.footer-legal a {
  transition: color 0.2s;
}
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}
.footer-logo {
  position: relative;
  display: block;
  width: 220px;
  height: 105px;
  margin-top: 22px;
  overflow: hidden;
}
.footer-logo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #050607 0,
    transparent 13%,
    transparent 86%,
    #050607 100%
  );
  content: "";
  pointer-events: none;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
@media (max-width: 580px) {
  .footer-legal {
    gap: 8px 14px;
  }
  .footer-logo {
    width: 190px;
    height: 92px;
  }
}

/* Reduziertes Premium-Anfrageformular */
.contact-shell {
  width: min(1080px, 100%);
  grid-template-columns: 0.58fr 1.42fr;
  border-radius: 16px;
}
.contact-info {
  padding: clamp(34px, 4.5vw, 54px);
}
.contact-info h2 {
  margin-bottom: 38px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
.contact-info address {
  gap: 12px;
}
.contact-form {
  padding: clamp(36px, 5vw, 64px);
}
.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 38px;
  padding-bottom: 24px;
}
.form-heading h3 {
  margin: 0;
}
.contact-form form {
  gap: 23px;
}
.field-row {
  gap: 30px;
}
.field > span,
.topic-picker legend {
  color: #626973;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}
.field > span small {
  margin-left: 5px;
  color: #a0a5ab;
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.field input,
.field textarea {
  padding: 10px 0 13px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cbd0d5;
  border-radius: 0;
  box-shadow: none;
}
.field input {
  min-height: 46px;
}
.field textarea {
  min-height: 110px;
  line-height: 1.6;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 2px 0 var(--red);
}
.field-phone {
  max-width: calc(50% - 15px);
}
.topic-picker legend {
  margin-bottom: 11px;
}
.topic-options {
  gap: 10px;
}
.topic-options label span {
  min-height: 44px;
  color: #535a63;
  background: #f1f3f4;
  border-color: transparent;
  border-radius: 5px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.topic-options label span:hover {
  border-color: #c9ced3;
}
.topic-options input:checked + span {
  color: #fff;
  background: #2d343c;
  border-color: #2d343c;
}
.form-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid #e1e4e6;
}
.form-actions .consent {
  margin: 0;
  max-width: 470px;
  line-height: 1.5;
}
.form-actions .button {
  min-width: 176px;
  min-height: 52px;
  gap: 18px;
  justify-content: space-between;
}
#turnstile-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-info {
    min-height: 280px;
  }
}
@media (max-width: 580px) {
  .contact-info {
    min-height: 0;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .form-heading {
    display: block;
    margin-bottom: 30px;
  }
  .form-heading h3 {
    margin-top: 8px;
  }
  .field-phone {
    max-width: none;
  }
  .form-actions {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-actions .button {
    width: 100%;
  }
}

/* Einheitlich weichere Radien */
.hero-copy {
  border-radius: 20px;
}
.service-card {
  border-radius: 18px;
}
.about-copy {
  border-radius: 18px;
}
.contact-shell {
  border-radius: 22px;
}
.topic-options label span {
  border-radius: 10px;
}
.button {
  border-radius: 10px;
}

/* Eingabefelder wieder als klar erkennbare, hochwertige Boxen */
.field input,
.field textarea {
  padding: 14px 15px;
  color: var(--ink);
  background: #f6f7f8;
  border: 1px solid #d7dce0;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.field input {
  min-height: 52px;
}
.field textarea {
  min-height: 135px;
  line-height: 1.6;
}
.field input:hover,
.field textarea:hover {
  border-color: #bcc3c9;
}
.field input:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(190, 30, 45, 0.12);
}
@media (max-width: 580px) {
  .hero-copy,
  .contact-shell {
    border-radius: 16px;
  }
  .service-card,
  .about-copy {
    border-radius: 15px;
  }
}
