/* ============================================================
   KFZ Service Milas – konservatives, klares Design
   ============================================================ */

:root {
  --ink: #1c1f26;          /* Haupttext */
  --muted: #5c636f;        /* Sekundärtext */
  --navy: #1f3354;         /* Markenfarbe */
  --navy-dark: #182843;
  --red: #c5312c;          /* Akzent */
  --red-dark: #a4251f;
  --ok: #2f8f5b;           /* Erfolg */
  --surface: #ffffff;
  --bg: #f5f3ee;           /* Seiten-"Blatt" */
  --surround: #e7e3da;     /* Außenbereich (Ultrawide) */
  --border: #e4ded1;
  --border-strong: #d4cdbd;

  --radius: 12px;
  --shadow-sm: 0 2px 6px rgba(20, 30, 50, .07);
  --shadow: 0 10px 30px rgba(20, 30, 50, .10);
  --shadow-lg: 0 18px 50px rgba(20, 30, 50, .16);

  --head: "Oswald", "Arial Narrow", sans-serif;
  --body: "Nunito", system-ui, sans-serif;

  --page: 1100px;
  --gutter: clamp(1.25rem, 4%, 2.75rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--surround);
}

body {
  font-family: var(--body);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.65;
  max-width: var(--page);
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 50px rgba(0, 0, 0, .12);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.hl { color: var(--red); }

h1, h2, h3, h4 { font-family: var(--head); font-weight: 600; line-height: 1.1; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .7em 1.4em;
  border: 1.5px solid transparent;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s;
  display: inline-flex; align-items: center; gap: .5em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-sm { font-size: .85rem; padding: .55em 1.1em; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: var(--shadow-sm); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem var(--gutter);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: .5rem; }
.logo-wrench { width: 22px; height: 22px; color: var(--red); flex: none; transform: rotate(-12deg); }
.logo-text {
  font-family: var(--head); font-weight: 600;
  font-size: 1.35rem; letter-spacing: .03em; color: var(--navy);
  text-transform: uppercase;
}
.logo-text strong { color: var(--red); font-weight: 700; margin-left: .25em; }
.main-nav { display: flex; gap: 1.8rem; }
.main-nav a {
  color: var(--navy); font-weight: 700; font-size: .95rem;
  position: relative; padding: .2em 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--red); transition: width .2s;
}
.main-nav a:hover::after { width: 100%; }
.phone-btn {
  font-family: var(--head); font-weight: 600; letter-spacing: .03em;
  background: var(--navy); color: #fff;
  border-radius: 8px; padding: .5em 1em; font-size: .95rem;
  box-shadow: var(--shadow-sm); transition: background .15s, transform .15s;
  white-space: nowrap; flex: none;
}
.phone-btn:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem;
  align-items: center;
  padding: 4.5rem var(--gutter) 3.5rem;
}
.hero-kicker {
  display: inline-block;
  font-family: var(--head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; font-size: .8rem; color: var(--red);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  letter-spacing: .01em; color: var(--navy); text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 46ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-badges { display: flex; gap: .6rem; flex-wrap: wrap; list-style: none; }
.badge {
  background: var(--surface); color: var(--navy);
  font-weight: 700; font-size: .82rem;
  padding: .35em .9em; border-radius: 50px; border: 1px solid var(--border-strong);
}
.badge::before { content: "✓ "; color: var(--ok); font-weight: 800; }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow); padding: 1.8rem;
}
.hero-card-title {
  font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--navy); padding-bottom: .8rem; margin-bottom: 1rem;
  border-bottom: 2px solid var(--red);
}
.facts { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.4rem; }
.facts li { font-weight: 600; color: var(--ink); line-height: 1.45; }
.fact-label {
  display: block; font-family: var(--head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  font-size: .72rem; color: var(--muted); margin-bottom: .15rem;
}
.facts a { color: var(--navy); font-weight: 800; }
.facts a:hover { color: var(--red); }

/* ---------- Service-Strip ---------- */
.strip {
  background: var(--navy);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .4rem 1.6rem; padding: .9rem var(--gutter);
}
.strip span {
  font-family: var(--head); font-weight: 500; text-transform: uppercase;
  letter-spacing: .06em; font-size: .85rem; color: #dfe6f0;
  position: relative;
}
.strip span:not(:last-child)::after {
  content: "•"; color: var(--red); margin-left: 1.6rem;
}

/* ---------- Sections ---------- */
.section { max-width: var(--page); margin: 0 auto; padding: 4.5rem var(--gutter); }
.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-title {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  text-transform: uppercase; letter-spacing: .02em; color: var(--navy);
}
.section-lead { font-size: 1.08rem; color: var(--muted); max-width: 50ch; margin: .7rem auto 0; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto;
  height: 4px; background: linear-gradient(90deg, var(--red), var(--navy));
  opacity: .85;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.card-icon {
  width: 116px; height: 92px; margin-bottom: 1.15rem;
}
.service-icon-img {
  display: block;
  object-fit: contain;
  object-position: left center;
}
.service-icon {
  position: relative; display: grid; place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  border: 0;
  box-shadow: none;
}
.service-icon::before,
.service-icon::after,
.service-icon span {
  content: ""; position: absolute; display: block;
}
.service-icon-oil::before {
  width: 54px; height: 31px; left: 21px; top: 35px;
  border: 5px solid currentColor; border-radius: 3px;
  transform: skewX(-1deg);
}
.service-icon-oil::after {
  width: 38px; height: 25px; left: 64px; top: 32px;
  border-top: 6px solid currentColor;
  border-right: 6px solid currentColor;
  transform: skewX(-18deg) rotate(-12deg);
  border-radius: 2px;
}
.service-icon-oil span {
  width: 34px; height: 6px; left: 43px; top: 23px;
  background: currentColor; border: 0; border-radius: 999px;
}
.service-icon-oil span::before,
.service-icon-oil span::after {
  content: ""; position: absolute; display: block;
}
.service-icon-oil span::before {
  width: 20px; height: 6px; left: 2px; top: -10px;
  background: currentColor; border-radius: 999px;
  transform: none;
}
.service-icon-oil span::after {
  width: 11px; height: 16px; left: 55px; top: 23px;
  background: var(--red); border-radius: 50% 50% 55% 55%;
  transform: rotate(45deg);
}
.service-icon-tire::before {
  width: 58px; height: 58px; left: 16px; top: 15px;
  border: 9px solid currentColor; border-radius: 50%;
  background:
    radial-gradient(circle, currentColor 0 7px, transparent 8px),
    conic-gradient(from 20deg, transparent 0 10%, currentColor 11% 17%, transparent 18% 35%, currentColor 36% 42%, transparent 43% 60%, currentColor 61% 67%, transparent 68% 85%, currentColor 86% 92%, transparent 93%);
  box-shadow: inset 0 0 0 7px var(--surface);
}
.service-icon-tire::after {
  width: 32px; height: 32px; right: 17px; bottom: 9px;
  background: var(--red); border: 0; border-radius: 50%;
}
.service-icon-tire span {
  width: 20px; height: 10px; right: 23px; bottom: 22px;
  border-left: 5px solid #fff; border-bottom: 5px solid #fff;
  background: transparent; border-radius: 0;
  transform: rotate(-45deg);
  box-shadow: none;
}
.service-icon-inspection::before {
  width: 45px; height: 62px; left: 23px; top: 15px;
  background:
    linear-gradient(var(--red), var(--red)) 13px 18px / 20px 4px no-repeat,
    linear-gradient(var(--red), var(--red)) 13px 34px / 20px 4px no-repeat,
    linear-gradient(var(--red), var(--red)) 13px 50px / 20px 4px no-repeat;
  border: 5px solid currentColor; border-radius: 7px;
  transform: none;
}
.service-icon-inspection::after {
  width: 30px; height: 30px; right: 19px; bottom: 16px;
  border: 5px solid currentColor; border-radius: 50%;
  transform: none;
}
.service-icon-inspection span {
  width: 27px; height: 5px; right: 6px; bottom: 15px;
  background: currentColor; border: 0; border-radius: 999px;
  transform: rotate(45deg);
}
.service-icon-trip::before {
  width: 48px; height: 25px; left: 14px; bottom: 20px;
  background:
    radial-gradient(circle at 12px 26px, currentColor 0 7px, transparent 8px),
    radial-gradient(circle at 39px 26px, currentColor 0 7px, transparent 8px);
  border: 0;
  border-top: 10px solid currentColor;
  border-bottom: 14px solid currentColor;
  border-radius: 18px 18px 7px 7px;
}
.service-icon-trip::after {
  width: 42px; height: 38px; right: 12px; top: 17px;
  background:
    radial-gradient(circle, var(--red) 0 9px, transparent 10px) 0 0 / 22px 22px no-repeat,
    linear-gradient(135deg, transparent 0 38%, currentColor 39% 61%, transparent 62%) 12px 18px / 26px 18px no-repeat,
    linear-gradient(55deg, transparent 0 39%, currentColor 40% 62%, transparent 63%) 25px 14px / 22px 22px no-repeat;
  transform: none;
}
.service-icon-trip span {
  width: 46px; height: 8px; left: 50px; bottom: 24px;
  background: currentColor; border-radius: 0;
  clip-path: polygon(0 45%, 100% 0, 100% 45%, 20% 100%, 100% 100%, 100% 100%, 0 100%);
  box-shadow: none;
}
.service-icon-trip span::before,
.service-icon-trip span::after {
  content: ""; position: absolute; display: block;
}
.service-icon-trip span::before {
  width: 7px; height: 7px; left: -36px; bottom: 19px;
  background: var(--surface); border: 0; border-radius: 50%;
  box-shadow: 31px 0 0 var(--surface);
}
.service-icon-trip span::after {
  display: none;
}
.service-icon-tuev::before {
  width: 58px; height: 64px; border: 5px solid currentColor;
  border-radius: 50% 50% 44% 44% / 16% 16% 54% 54%;
}
.service-icon-tuev::after {
  display: none;
}
.service-icon-tuev span {
  width: 33px; height: 17px; top: 34px;
  border-left: 7px solid var(--red); border-bottom: 7px solid var(--red);
  transform: rotate(-45deg);
}
.service-icon-diagnose::before {
  width: 63px; height: 40px; left: 25px; top: 30px;
  border: 5px solid currentColor; border-radius: 9px;
  background: var(--surface);
  clip-path: none;
}
.service-icon-diagnose::after {
  width: 22px; height: 38px; background: var(--red); border: 0; border-radius: 0;
  clip-path: polygon(48% 0, 100% 0, 63% 42%, 100% 42%, 34% 100%, 47% 58%, 7% 58%);
}
.service-icon-diagnose span {
  width: 34px; height: 6px; left: 40px; top: 18px;
  background: currentColor; border-radius: 999px;
  box-shadow: -26px 26px 0 -1px currentColor, 56px 26px 0 -1px currentColor;
}
.card h3 { font-size: 1.4rem; text-transform: uppercase; letter-spacing: .02em; color: var(--navy); }
.card p { font-size: .98rem; color: var(--muted); margin: .4rem 0 1.1rem; font-weight: 600; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border);
}
.card-book { margin-top: 1rem; font-size: .92rem; }
.card-price {
  font-family: var(--head); font-weight: 600; letter-spacing: .01em;
  font-size: 1.25rem; color: var(--navy);
}
.card-time {
  display: inline-block; font-family: var(--head); font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em; font-size: .78rem; color: var(--muted);
  background: #f3f1ea; border: 1px solid var(--border); border-radius: 50px; padding: .25em .9em;
}

.price-note { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 1.8rem; max-width: 60ch; margin-inline: auto; font-weight: 600; }

/* ---------- Vorteil ---------- */
.section-benefit { max-width: none; padding: 0; background: #eef0f4; border-block: 1px solid var(--border); }
.benefit-inner { max-width: var(--page); margin: 0 auto; padding: 4.5rem var(--gutter); text-align: center; }
.benefit-kicker {
  display: inline-block; font-family: var(--head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem;
  color: var(--red); margin-bottom: .8rem;
}
.benefit-title { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; color: var(--navy); }
.benefit-lead { font-size: 1.1rem; color: var(--muted); max-width: 62ch; margin: 1rem auto 3rem; }
.benefit-steps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; text-align: left; margin-bottom: 2.6rem;
}
.bstep {
  position: relative; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.bstep:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bstep-num {
  position: absolute; top: -16px; left: 1.5rem;
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--navy); color: #fff; font-family: var(--head); font-weight: 600; font-size: 1.1rem;
  border-radius: 50%; box-shadow: var(--shadow-sm);
}
.bstep-icon {
  font-size: 1.6rem; width: 52px; height: 52px; display: grid; place-items: center;
  background: #eef2f8; border-radius: 50%; margin: 1rem 0 .8rem;
}
.bstep-icon-img {
  display: block; width: auto; height: 56px; max-width: 72px;
  object-fit: contain; object-position: left center;
  margin: 1rem 0 .8rem;
}
.bstep h3 { font-size: 1.35rem; text-transform: uppercase; letter-spacing: .02em; color: var(--navy); }
.bstep p { font-size: .98rem; color: var(--muted); margin-top: .35rem; font-weight: 600; }
.benefit-cta { font-size: 1.05rem; }

/* ---------- Buchung ---------- */
.section-booking { max-width: none; background: var(--navy); border-block: 1px solid var(--navy-dark); }
.section-booking .section-head { max-width: var(--page); margin-inline: auto; }
.section-booking .section-title { color: #fff; }
.section-booking .hl { color: #ff7a6b; }
.section-booking .section-lead { color: #c3cee0; }

.booking-card {
  max-width: 880px; margin: 0 auto;
  background: var(--surface); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 2.2rem;
}

/* gewählte Leistung */
.booking-service {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: #eef0f4; border: 1px solid var(--border); border-left: 4px solid var(--red);
  border-radius: 10px; padding: .7rem 1.1rem; margin-bottom: 1.5rem; font-weight: 700;
}
.booking-service[hidden] { display: none; }
.bs-text strong { color: var(--navy); }
.bs-price { color: var(--red); font-family: var(--head); margin-left: .35rem; }
.bs-change { color: var(--navy); font-weight: 800; white-space: nowrap; text-decoration: underline; }
.bs-change:hover { color: var(--red); }
.steps[hidden] { display: none; }

/* Pick-Hinweis (noch keine Leistung gewählt) */
.pick-text { color: var(--muted); margin-bottom: 1.4rem; max-width: 54ch; font-weight: 600; }

.steps { display: flex; gap: .5rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: #9aa1ac; flex: 1; min-width: 130px; font-size: .92rem; }
.step span {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: #eef0f4; border: 1px solid var(--border-strong);
  font-family: var(--head); font-weight: 600; font-size: .95rem; color: var(--muted);
}
.step.is-active { color: var(--navy); }
.step.is-active span { background: var(--red); color: #fff; border-color: var(--red); }
.step.is-done span { background: var(--navy); color: #fff; border-color: var(--navy); }

.panel { display: none; animation: fade .25s ease; }
.panel.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.panel-title { font-size: 1.4rem; text-transform: uppercase; letter-spacing: .02em; color: var(--navy); margin-bottom: 1.3rem; }

/* service selection */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-opt {
  position: relative; overflow: hidden;
  text-align: left; cursor: pointer; background: var(--surface);
  border: 1.5px solid var(--border-strong); border-radius: 10px;
  padding: 1rem; transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex; flex-direction: column; gap: .3rem;
}
.service-opt::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red); opacity: 0; transition: opacity .15s;
}
.service-opt:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.service-opt .so-icon {
  width: 70px; height: 56px; border-radius: 0; margin-bottom: .25rem;
  object-fit: contain; object-position: left center;
}
.service-opt .so-icon::before { transform-origin: center; }
.service-opt .so-icon.service-icon-oil::before { width: 33px; height: 20px; left: 8px; top: 24px; border-width: 3.5px; border-radius: 2px; }
.service-opt .so-icon.service-icon-oil::after { width: 24px; height: 16px; left: 35px; top: 22px; border-top-width: 4px; border-right-width: 4px; right: auto; bottom: auto; }
.service-opt .so-icon.service-icon-oil span {
  width: 22px; height: 4px; left: 22px; top: 16px; border: 0; background: currentColor; border-radius: 999px;
}
.service-opt .so-icon.service-icon-oil span::before { width: 13px; height: 4px; left: 1px; top: -7px; }
.service-opt .so-icon.service-icon-oil span::after { width: 7px; height: 10px; left: 35px; top: 16px; }
.service-opt .so-icon.service-icon-tire::before {
  width: 40px; height: 40px; left: 8px; top: 7px; border-width: 6px;
  background:
    radial-gradient(circle, currentColor 0 5px, transparent 6px),
    conic-gradient(from 20deg, transparent 0 10%, currentColor 11% 17%, transparent 18% 35%, currentColor 36% 42%, transparent 43% 60%, currentColor 61% 67%, transparent 68% 85%, currentColor 86% 92%, transparent 93%);
  box-shadow: inset 0 0 0 5px var(--surface);
}
.service-opt .so-icon.service-icon-tire::after { width: 23px; height: 23px; right: 6px; bottom: 5px; }
.service-opt .so-icon.service-icon-tire span { width: 14px; height: 7px; right: 10px; bottom: 14px; border-left-width: 4px; border-bottom-width: 4px; box-shadow: none; }
.service-opt .so-icon.service-icon-inspection::before { width: 30px; height: 41px; left: 9px; top: 7px; border-width: 3.5px; border-radius: 5px; background-size: 14px 3px, 14px 3px, 14px 3px; background-position: 8px 12px, 8px 23px, 8px 34px; }
.service-opt .so-icon.service-icon-inspection::after { width: 21px; height: 21px; right: 8px; bottom: 9px; border-width: 3.5px; }
.service-opt .so-icon.service-icon-inspection span { width: 19px; height: 4px; right: 0; bottom: 9px; }
.service-opt .so-icon.service-icon-trip::before { width: 33px; height: 17px; left: 5px; bottom: 12px; border-top-width: 7px; border-bottom-width: 10px; }
.service-opt .so-icon.service-icon-trip::after { width: 28px; height: 26px; right: 6px; top: 9px; background-size: 16px 16px, 18px 13px, 15px 15px; background-position: 0 0, 8px 12px, 17px 10px; }
.service-opt .so-icon.service-icon-trip span { width: 32px; height: 6px; left: 30px; bottom: 16px; }
.service-opt .so-icon.service-icon-trip span::before { width: 5px; height: 5px; left: -23px; bottom: 13px; box-shadow: 22px 0 0 var(--surface); }
.service-opt .so-icon.service-icon-tuev::before { width: 39px; height: 43px; border-width: 3.5px; }
.service-opt .so-icon.service-icon-tuev span { width: 23px; height: 12px; top: 26px; border-left-width: 5px; border-bottom-width: 5px; }
.service-opt .so-icon.service-icon-diagnose::before { width: 43px; height: 28px; left: 14px; top: 19px; border-width: 3.5px; border-radius: 6px; }
.service-opt .so-icon.service-icon-diagnose::after { width: 16px; height: 27px; }
.service-opt .so-icon.service-icon-diagnose span { width: 23px; height: 4px; left: 24px; top: 10px; box-shadow: -18px 18px 0 -1px currentColor, 39px 18px 0 -1px currentColor; }
.service-opt .so-name { font-family: var(--head); font-weight: 600; font-size: 1.15rem; text-transform: uppercase; color: var(--navy); }
.service-opt .so-meta { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; margin-top: .15rem; }
.service-opt .so-price { font-family: var(--head); font-weight: 600; font-size: 1.05rem; color: var(--red); }
.service-opt .so-time { font-size: .78rem; font-weight: 700; color: var(--muted); }
.service-opt.is-selected {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(197, 49, 44, .15);
  background: linear-gradient(180deg, #fff, #fff8f7);
}
.service-opt.is-selected::after { opacity: 1; }
.service-opt.is-selected .service-icon { color: var(--navy); }

.panel-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.8rem; gap: 1rem; }

/* calendar */
.datetime { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.calendar { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.cal-month { font-family: var(--head); font-weight: 600; font-size: 1.2rem; text-transform: uppercase; color: var(--navy); }
.cal-nav {
  width: 34px; height: 34px; border: 1px solid var(--border-strong); border-radius: 8px;
  background: var(--surface); font-size: 1.2rem; cursor: pointer; color: var(--navy);
  display: grid; place-items: center; transition: background .15s;
}
.cal-nav:hover { background: #eef0f4; }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-weekdays, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-weekdays span { text-align: center; font-size: .7rem; font-weight: 800; color: var(--muted); padding: .2rem 0; }
.cal-day {
  aspect-ratio: 1; border: 1px solid transparent; border-radius: 8px;
  background: #f3f1ea; font-weight: 700; font-size: .92rem; cursor: pointer; color: var(--ink);
  display: grid; place-items: center; transition: .12s;
}
.cal-day:hover:not(:disabled) { border-color: var(--navy); }
.cal-day:disabled { opacity: .3; cursor: not-allowed; background: transparent; }
.cal-day.is-selected { background: var(--red); color: #fff; border-color: var(--red); }
.cal-day.is-empty { background: transparent; cursor: default; }

/* timeslots */
.timeslots { display: flex; flex-direction: column; }
.ts-label { font-weight: 800; color: var(--navy); margin-bottom: .8rem; font-size: .95rem; }
.ts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; align-content: start; }
.ts {
  border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface);
  padding: .6em 0; font-weight: 700; cursor: pointer; font-size: .95rem; color: var(--ink);
  transition: .12s;
}
.ts:hover:not(:disabled) { border-color: var(--navy); }
.ts.is-selected { background: var(--red); color: #fff; border-color: var(--red); }
.ts:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

/* form */
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .85rem; color: var(--navy); }
.field input, .field textarea {
  font-family: inherit; font-weight: 600; font-size: 1rem;
  padding: .7em .85em; border: 1px solid var(--border-strong); border-radius: 8px;
  background: var(--surface); resize: vertical; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(31, 51, 84, .12); }
.field input.invalid { border-color: var(--red); background: #fdf3f2; }

/* summary */
.summary {
  grid-column: 1 / -1; background: #eef0f4; color: var(--ink);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 1rem 1.2rem; margin-top: .4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.6rem; font-weight: 700;
}
.summary span { display: flex; gap: .4em; }
.summary b { color: var(--navy); }
.summary:empty { display: none; }

/* success */
.panel-success { text-align: center; }
.success-check {
  width: 76px; height: 76px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--ok); color: #fff; font-size: 2.6rem; font-weight: 800;
  display: grid; place-items: center; line-height: 1;
  animation: popIn .35s cubic-bezier(.2, 1.3, .5, 1) both;
}
@keyframes popIn { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.summary-final { display: inline-grid; grid-template-columns: auto auto; gap: .55rem 1.6rem; margin: 0 auto 1.2rem; text-align: left; }
.success-note { color: var(--muted); margin-bottom: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #d7dce5; padding: 3rem var(--gutter) 1.5rem; }
.footer-grid { max-width: var(--page); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.logo-footer .logo-text { font-size: 1.3rem; color: #fff; }
.logo-footer .logo-text strong { color: #ff7a6b; }
.footer-slogan { color: #aeb8c8; font-style: italic; margin-top: .8rem; }
.footer-col h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: .7rem; }
.footer-col p { color: #b6becc; font-weight: 600; }
.footer-col a { color: #fff; }
.footer-col a:hover { color: #ff7a6b; }
.footer-col .btn { margin-top: .9rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .6rem 1.5rem;
  color: #8b94a5; font-size: .82rem; margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem;
}
.footer-legal a { color: #b6becc; text-decoration: underline; }
.footer-legal a:hover { color: #fff; }

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 3.5rem var(--gutter) 4rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); text-transform: uppercase; color: var(--navy); margin-bottom: .3rem; }
.legal .legal-sub { color: var(--muted); margin-bottom: 2.2rem; font-weight: 600; }
.legal h2 { font-size: 1.3rem; text-transform: uppercase; color: var(--navy); margin: 2.2rem 0 .6rem; }
.legal h3 { font-size: 1.05rem; color: var(--navy); margin: 1.4rem 0 .3rem; }
.legal p, .legal li { color: #333; font-weight: 600; margin-bottom: .7rem; line-height: 1.7; }
.legal ul { padding-left: 1.3rem; margin-bottom: .9rem; }
.legal address { font-style: normal; }
.legal a { color: var(--navy); text-decoration: underline; word-break: break-word; }
.legal a:hover { color: var(--red); }
.legal .back-link { display: inline-block; margin-top: 2.5rem; font-family: var(--head); text-transform: uppercase; letter-spacing: .03em; color: var(--navy); }
.legal-note { background: #eef0f4; border-left: 4px solid var(--red); border-radius: 8px; padding: 1rem 1.2rem; margin: 1.5rem 0; font-size: .9rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .benefit-steps { grid-template-columns: 1fr; gap: 1.8rem; }
  .datetime { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .cards, .service-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .summary { grid-template-columns: 1fr; }
  .summary-final { grid-template-columns: auto; }
  .booking-card { padding: 1.3rem; }
  .steps .step { min-width: 0; font-size: 0; gap: 0; }
  .steps .step span { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .ts-grid { grid-template-columns: repeat(2, 1fr); }
  .strip span:not(:last-child)::after { margin-left: 1rem; }
}
