/* === Local fonts === */
@font-face {
  font-family: 'Ubuntu';
  src: url('fonts/Ubuntu1-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('fonts/Ubuntu1-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('fonts/Ubuntu1-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ubuntu';
  src: url('fonts/Ubuntu1-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === Variables === */
:root {
  --hero-dark: #2C313A;
  --dark: #484E57;
  --footer-dark: #383D45;
  --red: #C0181B;
  --light: #F8F8F8;
  --white: #FFFFFF;
  --grey-1: #D6D5D5;
  --grey-2: #D2D3D5;
  --text-muted: #6A7078;
  --radius: 26px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  background: var(--hero-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; display: flex; flex-direction: column; }
.section.compact { flex: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #383D45;
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1700px;
  height: 92px;
  margin: 0 auto;
  padding: 2px 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.logo {
  position: relative;
  z-index: 1;
}
.logo img { height: 120px; }
.main-nav { display: none; }
.burger {
  position: absolute;
  right: 40px;
  top: 18px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 10px;
}
.burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
.burger-menu {
  display: none;
  background: #1C1F24;
  border-top: 1px solid rgba(255,255,255,.06);
}
.burger-menu.open { display: flex; flex-direction: column; }
.burger-menu a {
  padding: 22px 40px;
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
  text-align: center;
}
.burger-menu a:hover,
.burger-menu a.active { color: var(--red); background: rgba(255,255,255,.03); }
.burger-menu a.active { font-weight: 700; }

/* === Hero (index.html) === */
.hero {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(44,49,58,.6), transparent);
  pointer-events: none;
  z-index: 1;
}
.hero {
  min-height: calc(100vh - 82px);
  background:
    linear-gradient(
      90deg,
      rgba(56,61,69,.97) 0%,
      rgba(56,61,69,.88) 35%,
      rgba(56,61,69,.45) 68%,
      rgba(56,61,69,.18) 100%
    ),
    url("img/hero.jpg") center right / cover no-repeat;
  overflow: hidden;
}
.hero-inner {
  max-width: 1700px;
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 90px 40px 110px;
  display: flex;
  align-items: center;
}
.hero-copy { max-width: 45%; }
.hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}
.hero h1 span { color: var(--red); }
.hero-text {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
}
.hero-text strong { color: var(--red); font-weight: 700; }
.hero-trust {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 20px;
  color: var(--grey-1);
}
.hero-trust::before {
  content: "";
  width: 58px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

/* === Page banner (inner pages) === */
.page-banner {
  background: var(--hero-dark);
  padding: 64px 40px;
  border-bottom: 3px solid var(--red);
}
.page-banner-inner {
  max-width: 1700px;
  margin: 0 auto;
}
.page-banner h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--white);
}
.page-banner h1 span { color: var(--red); }

/* === Sections === */
.section { background: var(--light); color: var(--dark); }
.section-dark { background: var(--dark); color: var(--white); }
.section-inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 105px 40px;
}
.section-title {
  margin: 0;
  max-width: 880px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.section-title span { color: var(--red); }
.section-text {
  max-width: 790px;
  margin: 30px 0 64px;
  font-size: 23px;
  line-height: 1.55;
  color: var(--dark);
}
.section-text strong {
  display: block;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
}
.solution-intro { display: block; margin-bottom: 64px; }
.solution-copy {
  max-width: 790px;
  margin: 30px 0 0;
  font-size: 23px;
  line-height: 1.55;
  color: var(--grey-1);
}

/* === Kachel grid === */
.kachel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.kachel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
  transition: transform .22s ease, box-shadow .22s ease;
}
.kachel:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(0,0,0,.13);
}
.kachel-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: var(--grey-2);
  overflow: hidden;
  flex-shrink: 0;
}
.kachel-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kachel-content {
  flex: 1;
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
}
.kachel h3 {
  margin: 0 0 20px;
  min-height: 80px;
  font-size: 25px;
  line-height: 1.2;
  color: var(--dark);
}
.kachel p {
  margin: 0;
  font-size: 18px;
  line-height: 1.48;
  color: var(--text-muted);
}
.section-dark .kachel {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.section-dark .kachel h3 { color: var(--white); }
.section-dark .kachel p { color: var(--grey-1); }

/* === CTA === */
.cta { background: var(--light); padding: 90px 40px; }
.cta-box {
  max-width: 1700px;
  margin: 0 auto;
  padding: 60px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.cta h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.cta p {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 21px;
  line-height: 1.45;
}
.cta-actions { display: grid; gap: 16px; min-width: 270px; }

/* === Buttons === */
.btn {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--dark); border: 1px solid var(--grey-2); }
.btn:hover { transform: translateY(-2px); opacity: .9; }

/* === Footer === */
.footer { background: var(--footer-dark); }
.footer-inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--white);
}
.footer-inner a { color: var(--white); }
.footer-brand { color: var(--white); font-weight: 500; }
.footer-red { color: var(--red); font-weight: 700; }
.footer-separator { color: rgba(255,255,255,.42); }
.ki-notice {
  text-align: right;
  font-size: 11px;
  color: var(--text-muted);
  margin: 24px 0 0;
  letter-spacing: .02em;
}

/* === Prose (Impressum, Datenschutz) === */
.prose { max-width: 860px; }
.prose h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0 0 20px;
  color: var(--dark);
}
.prose p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--dark);
  margin: 0 0 28px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--dark); }
.prose em { color: var(--text-muted); font-style: italic; }
.prose a { color: var(--red); text-decoration: underline; word-break: break-all; }

/* === Contact page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.contact-map-small {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
.contact-map-small iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-heading {
  margin: 0 0 40px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--dark);
}
.contact-heading span { color: var(--red); }
.contact-block { margin-bottom: 32px; }
.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--red);
  margin: 0 0 10px;
}
.contact-block p,
.contact-block address {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark);
  font-style: normal;
}
.contact-block a {
  display: block;
  font-size: 18px;
  color: var(--dark);
  transition: color .2s;
}
.contact-block a:not(.social-link):hover { color: var(--red); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--grey-2);
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--red); color: var(--white); }

/* === Compact inner pages === */
.section.compact .section-inner,
.section-dark.compact .section-inner { padding: 54px 40px; }

/* === Über uns visual === */
.about-visual {
  position: relative;
  background: url('img/uberuns.png') center / cover no-repeat;
  border-radius: var(--radius);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
  border-radius: var(--radius);
}
.about-visual .about-tagline {
  position: relative;
  z-index: 1;
  color: var(--red);
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
  margin: 0;
}

/* === Über uns === */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}
.about-body {
  font-size: 19px;
  line-height: 1.68;
  color: var(--dark);
  margin: 0;
}
.about-section-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--dark);
  margin: 0 0 16px;
}
.about-tagline {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.03em;
  color: var(--dark);
}
.about-tagline span { color: var(--red); }

.quote-section { background: var(--dark); color: var(--white); }
.quote-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: start;
}
.quote-text {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.025em;
  margin: 0 0 16px;
  color: var(--white);
}
.quote-attribution {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}
.quote-aside {
  font-size: 19px;
  line-height: 1.62;
  color: var(--grey-1);
}
.quote-aside strong {
  color: var(--white);
  display: block;
  margin-bottom: 14px;
  font-size: 21px;
}
.quote-aside a { color: var(--red); }
.quote-aside a:hover { text-decoration: underline; }

/* === Error pages === */
.error-wrap {
  background: var(--hero-dark);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
}
.error-code {
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--red);
  margin: 0;
}
.error-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin: 16px 0 40px;
  color: var(--white);
}

/* === 401 page === */
.auth-wrap {
  background: var(--hero-dark);
  min-height: calc(100vh - 100px - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.auth-box {
  background: var(--footer-dark);
  border-radius: var(--radius);
  padding: 56px 48px;
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.auth-box h2 {
  margin: 0 0 28px;
  font-size: 26px;
  font-weight: 700;
}
.auth-box input[type="password"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-family: 'Ubuntu', sans-serif;
  font-size: 17px;
  margin-bottom: 16px;
  outline: none;
  display: block;
}
.auth-box input[type="password"]::placeholder { color: rgba(255,255,255,.4); }
.auth-box input[type="password"]:focus { border-color: var(--red); }
.auth-error {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--red);
  display: none;
}
.auth-error.visible { display: block; }

/* === UI / Karriere + Partner page === */
.job-body {
  max-width: 860px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  margin: 0 0 48px;
}
.job-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.job-contact-card {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: 16px;
  padding: 24px 26px;
}
.job-contact-card a {
  color: var(--red);
  font-weight: 500;
  font-size: 17px;
}
.job-contact-card p {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.partner-intro {
  font-size: 22px;
  line-height: 1.55;
  color: var(--grey-1);
  max-width: 760px;
  margin: 0 0 56px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background .2s;
  text-decoration: none;
  color: var(--white);
}
.partner-card:hover { background: rgba(255,255,255,.1); }
.partner-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.partner-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}
.partner-role {
  font-size: 14px;
  color: var(--grey-1);
  margin: 0;
}

/* === PLS+ Landingpage (Porsche Zentrum Ulm) === */
.pls-hero { background: var(--hero-dark); color: var(--white); }
.pls-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 20px;
}
.pls-hero-inner {
  max-width: 1700px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.pls-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.14;
  letter-spacing: -.03em;
  font-weight: 700;
}
.pls-hero h1 span { color: var(--red); }
.pls-hero-lead {
  max-width: 600px;
  margin: 0;
  font-size: 21px;
  line-height: 1.6;
  color: var(--grey-1);
}
.pls-hero-lead strong { color: var(--white); font-weight: 700; }
.pls-hero-lead + .pls-hero-lead { margin-top: 20px; }

.pls-hero-visual { position: relative; }
.pls-hero-image {
  position: relative;
  border-radius: var(--radius);
  min-height: 340px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.pls-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-value { font-size: 38px; font-weight: 700; color: var(--red); letter-spacing: -.02em; }
.price-unit { font-size: 15px; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.price-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.price-list li { position: relative; padding-left: 20px; font-size: 15px; line-height: 1.4; color: var(--dark); }
.price-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* Compare boxes */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; }
.compare-box { border-radius: var(--radius); padding: 40px 36px; }
.compare-box.is-today { background: var(--white); border: 1px solid var(--grey-2); color: var(--dark); }
.compare-box.is-plus { background: var(--dark); color: var(--white); border: 2px solid var(--red); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.compare-box h3 { margin: 0 0 24px; font-size: 24px; font-weight: 700; letter-spacing: -.02em; text-align: center; }
.compare-box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.compare-box li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.4; }
.compare-box li strong { display: block; margin-bottom: 3px; }
.compare-box-desc { display: block; font-size: 14px; font-weight: 400; line-height: 1.45; opacity: .72; }
.compare-box.is-today li::before { content: "\2013"; position: absolute; left: 0; color: var(--text-muted); font-weight: 700; }
.compare-box.is-plus li::before { content: "\2713"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.compare-box li.is-summary { margin-top: 2px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); }
.compare-box.is-today li.is-summary { border-top-color: var(--grey-2); }

/* Visual comparison (placeholder photo triples + video) */
.visual-triple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 4px 0 14px; }
.visual-compare-caption { margin: 0 0 18px; font-size: 14px; line-height: 1.5; text-align: center; opacity: .75; }
.visual-compare-closing { text-align: center; }
.feature-photo-empty { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 0 10px; text-align: center; color: var(--grey-1); font-size: 13px; font-weight: 600; }
.section-dark .compare-box.is-plus { background: var(--hero-dark); }

/* Advantage cards */
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advantage-card { border-radius: var(--radius); padding: 34px 32px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); }
.advantage-card h3 { margin: 0 0 14px; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -.015em; }
.advantage-card p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--grey-1); }
.advantage-card ul { margin: 0; padding-left: 18px; color: var(--grey-1); font-size: 16px; line-height: 1.55; }
.advantage-card .advantage-note { display: block; margin-top: 10px; font-size: 13px; color: var(--text-muted); font-style: italic; }
.advantage-card { display: flex; flex-direction: column; gap: 16px; }
.advantage-media { display: block; width: 100%; height: 250px; margin-top: auto; border-radius: 12px; background: #000; object-fit: cover; }
img.advantage-media { background: var(--hero-dark); }
.advantage-media-group { margin-top: auto; border-radius: 12px; overflow: hidden; background: #000; }
.advantage-media-group video { display: block; width: 100%; height: 220px; object-fit: cover; }
.advantage-media-group img { display: block; width: 100%; height: auto; }

/* Fotografie Features (Aktuell vs. Soll-Zustand) */
.feature-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.feature-card-title { margin: 0 0 28px; font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: -.015em; text-align: center; }
.feature-row { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; max-width: 1000px; margin: 0 auto; }
.feature-row + .feature-row { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.feature-row h4 { margin: 0; font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: -.015em; }
.feature-compare { display: grid; grid-template-columns: repeat(2, minmax(0, 480px)); justify-content: center; gap: 16px; width: 100%; }
.feature-photo { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; background: linear-gradient(200deg, var(--footer-dark), var(--hero-dark)); }
.feature-photo img,
.feature-photo video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-tag { position: absolute; left: 10px; top: 10px; z-index: 2; background: rgba(0,0,0,.55); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 5px 10px; border-radius: 6px; }

.feature-photo-video { aspect-ratio: auto; overflow: visible; background: none; }
.feature-photo .feature-media-group { border-radius: 14px; overflow: hidden; background: #000; }
.feature-photo .feature-media-group video,
.feature-photo .feature-media-group img { position: static; display: block; width: 100%; height: auto; }
.feature-photo .feature-media-group video { aspect-ratio: 4 / 3; object-fit: cover; }

/* Business case: price cards */
.price-cards { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 28px; max-width: 1360px; margin: 0 auto; }
.price-plus { align-self: center; flex: 0 0 auto; min-width: 60px; text-align: center; font-size: 34px; font-weight: 700; color: var(--red); line-height: 1; }
.price-card-cluster { display: flex; flex: 0 1 auto; max-width: 720px; }
.price-card { position: relative; z-index: 2; width: 440px; flex: 0 0 440px; border-radius: var(--radius); padding: 34px 36px; background: var(--white); color: var(--dark); box-shadow: 0 18px 45px rgba(0,0,0,.08); }
.price-card.is-highlight { flex: 1 1 320px; max-width: 400px; border: 2px solid var(--red); box-shadow: 0 24px 60px rgba(0,0,0,.2); }
.price-card-badge { margin: 0 0 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); }
.price-card-value { margin: 0 0 6px; font-size: 38px; font-weight: 700; color: var(--red); letter-spacing: -.02em; }
.price-card > .price-list { margin-top: 20px; }

.price-breakdown { position: relative; z-index: 1; flex: 0 0 270px; margin-left: -28px; padding: 24px 24px 24px 44px; display: flex; flex-direction: column; justify-content: center; gap: 10px; background: var(--dark); border: 1px solid var(--dark); border-radius: 0 var(--radius) var(--radius) 0; }
.price-breakdown-title { margin: 0 0 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--grey-1); }
.price-breakdown-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin: 0; font-size: 13px; color: var(--grey-1); }
.price-breakdown-row span:last-child { font-weight: 700; color: var(--white); }
.price-breakdown-row.is-sum { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.18); }
.price-breakdown-row.is-diff span:last-child { color: var(--red); }
.price-breakdown-note { margin: 2px 0 0; font-size: 10px; color: var(--red); text-align: right; white-space: nowrap; }
.business-closing,
.business-signature { max-width: 900px; margin: 40px auto 0; font-size: 17px; line-height: 1.6; color: var(--dark); text-align: left; }
.business-signature { margin-top: 28px; }
.business-closing strong { color: var(--dark); }

body.pls-page .pls-red { color: var(--red); }

/* Light card variant (advantage-card reused on light sections) */
.advantage-card.is-light { background: var(--white); border: 1px solid var(--grey-2); box-shadow: 0 18px 45px rgba(0,0,0,.06); }
.advantage-card.is-light h3 { color: var(--dark); }
.advantage-card.is-light p { color: var(--text-muted); }
.advantage-card.is-light ul { color: var(--text-muted); }

/* Vorteil blocks (business-value led benefit list) */
.vorteil-list { display: flex; flex-direction: column; gap: 20px; }
.vorteil-support { font-weight: 700; color: var(--dark) !important; }
.vorteil-badge { display: block; margin: 0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); }
.vorteil-media img { margin-top: 0; }
.vorteil-block .feature-card { background: rgba(72,78,87,.06); border-color: rgba(72,78,87,.14); }
.vorteil-block .feature-row h4 { color: var(--dark); }
.vorteil-block .feature-tag { background: rgba(72,78,87,.75); }

/* Price card text additions */
.price-card h3 { margin: 0 0 10px; font-size: 22px; font-weight: 700; }
.price-card-intro { margin: 0 0 16px; font-size: 15px; line-height: 1.5; color: var(--text-muted); }
.price-card-label { color: var(--text-muted); margin-top: 20px; }
.price-card-optional { margin: 14px 0 0; font-size: 13px; color: var(--text-muted); }
.price-card-value-end { margin-top: 16px; }
.price-explainer { max-width: 720px; margin: 20px auto 0; font-size: 15px; line-height: 1.55; color: var(--text-muted); text-align: center; }
.cta-closing-heading { margin-top: 64px; }
.business-closing + .btn-primary { margin-top: 22px; }

/* Frankfurt/Bad Homburg variant: only 2 advantage cards */
body.pls-page-frankfurt .advantage-grid { grid-template-columns: repeat(2, 1fr); }
body.pls-page-frankfurt .advantage-media { height: auto; aspect-ratio: 16 / 9; }

/* Differenz + note in white with shadow instead of red */
body.pls-page .price-breakdown-row.is-diff span:last-child,
body.pls-page .price-breakdown-note { color: var(--white); text-shadow: 0 2px 6px rgba(0,0,0,.45); }

/* Tighter vertical rhythm so each section fits closer to one screen */
body.pls-page .section-title { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 20px; }
body.pls-page .section-text { margin: 14px 0 34px; font-size: 19px; }
body.pls-page .solution-intro { margin-bottom: 34px; }
body.pls-page .solution-copy { margin: 14px 0 0; font-size: 19px; }

/* === Ultra-wide === */
@media (min-width: 2200px) {
  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .cta-box { max-width: 2100px; }
  .hero {
    background-size: auto 100%;
    background-position: right center;
  }
}

/* === Responsive === */
@media (max-width: 1200px) {
  .main-nav { gap: 36px; }
  .main-nav a { font-size: 18px; }
  .kachel-grid { grid-template-columns: repeat(2, 1fr); }
  .kachel h3 { min-height: 70px; }
  .about-grid,
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-small { min-height: 300px; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .job-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card { width: 300px; flex: 0 0 300px; padding: 26px 24px; }
  .price-breakdown { flex: 0 0 210px; padding: 20px 18px 20px 38px; }
  .price-card.is-highlight { flex: 1 1 220px; max-width: 260px; padding: 26px 24px; }
  .price-cards { gap: 20px; }
}

@media (max-width: 900px) {
  .header-inner { height: 78px; padding: 2px 24px 0; }
  .logo img { height: 88px; }
  .burger { right: 24px; top: 18px; }
  .burger-menu a { padding: 20px 24px; font-size: 19px; }
  .hero { min-height: calc(100vh - 68px); }
  .hero-inner { min-height: calc(100vh - 68px); }
  .hero {
    min-height: calc(100vh - 84px);
    background:
      linear-gradient(180deg, rgba(56,61,69,.96) 0%, rgba(56,61,69,.82) 48%, rgba(56,61,69,.98) 100%),
      url("img/hero.jpg") center / cover no-repeat;
  }
  .hero-inner {
    min-height: calc(100vh - 84px);
    padding: 70px 24px 80px;
    align-items: flex-end;
  }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: 34px; }
  .hero-text { font-size: 21px; }
  .section-inner { padding: 80px 24px; }
  .page-banner { padding: 50px 24px; }
  .cta { padding: 70px 24px; }
  .cta-box { grid-template-columns: 1fr; padding: 42px 30px; }
  .job-contact-grid { grid-template-columns: 1fr; }
  .pls-hero-copy { max-width: 100%; }
  .pls-hero h1 { font-size: 34px; }
  .pls-hero-lead { font-size: 19px; }
  .pls-hero-image { min-height: 260px; }
  .price-card { width: 220px; flex: 0 0 220px; padding: 22px 20px; }
  .price-breakdown { flex: 0 0 160px; padding: 18px 14px 18px 32px; }
  .price-card.is-highlight { flex: 1 1 160px; max-width: 190px; padding: 22px 20px; }
  .price-cards { gap: 14px; }
  .feature-card { padding: 20px; }
  .business-closing { white-space: normal; }
}

@media (max-width: 700px) {
  .pls-hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 40px; }
  .price-cards { max-width: 640px; gap: 28px; }
  .price-card { flex-basis: auto; width: 100%; }
  .price-card-cluster { flex-direction: column; max-width: 100%; width: 100%; }
  .price-breakdown { margin-left: 0; margin-top: -24px; padding: 40px 20px 20px; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: 32px; }
  .hero-text,
  .section-text,
  .solution-copy { font-size: 19px; }
  .kachel-grid { grid-template-columns: 1fr; }
  .kachel { min-height: auto; }
  .kachel h3 { min-height: auto; }
  .footer-inner { flex-wrap: wrap; gap: 10px; padding: 18px 24px; }
  .partner-grid { grid-template-columns: 1fr; }
  .auth-box { padding: 40px 28px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .feature-compare { grid-template-columns: 1fr; }
}
