/* =============================================================
 * Jünger Brandschutz GmbH · Karriere-Landingpage
 * Bauzeichner (m/w/d)
 *
 * Plakatives, kantiges Design im Stil der Social-Media-Anzeige:
 * sichtbares Beton-Foto, riesige Versal-Headline, diagonale
 * Rot-Akzente, rote Haken-Kreise, weißes Logo, roter CTA-Balken.
 * Marken-Tokens (Rot #E30613, IBM Plex) aus der Projektdatenbank.
 * ============================================================= */

/* 1 · Tokens */
:root {
  --jbs-red:        #E30613;
  --jbs-red-dark:   #b30510;
  --jbs-red-bright: #ff1a2b;

  /* Kühle, dunkle Anthrazit-/Navy-Töne wie im Anzeigenmotiv */
  --lp-bg:          #0d1118;
  --lp-bg-2:        #0a0d12;
  --lp-surface:     #151b24;
  --lp-surface-2:   #1c242f;
  --lp-line:        #283341;
  --lp-line-soft:   #1f2832;
  --lp-text:        #f5f6f8;
  --lp-text-soft:   #b9c0c9;
  --lp-text-mute:   #7f8896;

  --jbs-radius:     6px;
  --jbs-radius-lg:  10px;

  --jbs-shadow:     0 10px 30px -12px rgba(0,0,0,.7);
  --jbs-shadow-lg:  0 26px 60px -22px rgba(0,0,0,.85);

  --jbs-font-sans:  "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --jbs-font-cond:  "IBM Plex Sans", "Arial Narrow", system-ui, sans-serif;
  --jbs-font-mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --lp-navbar-h:    66px;
  --lp-maxw:        1200px;
}

/* 2 · Reset + Basis ------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--lp-navbar-h) + 16px); }
body {
  margin: 0;
  font-family: var(--jbs-font-sans);
  background: var(--lp-bg);
  color: var(--lp-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

/* Dezentes Hintergrund-Firmenlogo (weiß) unten rechts */
body::after {
  content: "";
  position: fixed; right: -30px; bottom: 5%; z-index: 0;
  width: min(40vw, 540px); height: min(22vw, 300px);
  background: url("../img/logo.png") no-repeat right bottom;
  background-size: contain;
  opacity: .035;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-weight: 700; letter-spacing: -.02em; line-height: 1.12;
  margin: 0 0 .4em; color: #fff;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.lp-wrap { max-width: var(--lp-maxw); margin: 0 auto; padding: 0 28px; position: relative; }

/* Wiederverwendbares rotes Badge mit angeschnittener Ecke */
.lp-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--jbs-red); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 20px 9px 16px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.lp-badge--ghost {
  background: transparent; color: var(--jbs-red);
  border: 1px solid var(--jbs-red); clip-path: none; padding: 7px 14px;
  border-radius: 3px; letter-spacing: .12em;
}

/* Eyebrow mit roter Leiste */
.lp-eyebrow {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--jbs-red);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.lp-eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--jbs-red); }

.lp-section { padding: 92px 0; position: relative; }
.lp-section__head { max-width: 760px; margin-bottom: 48px; }
.lp-section__head h2 {
  font-size: clamp(30px, 5vw, 52px);
  text-transform: uppercase; letter-spacing: -.02em; font-weight: 700;
}
.lp-section__head p { color: var(--lp-text-soft); font-size: 17.5px; margin: 0; }

/* Diagonale Trennlinie oben an Sektionen */
.lp-section--edge::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--jbs-red) 0 18%, transparent 18%);
}

/* 3 · Buttons ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  letter-spacing: .02em;
  padding: 14px 26px; border: 1px solid transparent; cursor: pointer;
  text-align: center; line-height: 1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
  transition: background .15s, color .15s, transform .12s, box-shadow .15s;
}
.btn--soft { clip-path: none; border-radius: var(--jbs-radius); }
.btn:active { transform: translateY(1px); }
.btn--red {
  background: var(--jbs-red); color: #fff;
  box-shadow: 0 10px 24px -10px rgba(227,6,19,.75);
}
.btn--red:hover { background: var(--jbs-red-bright); box-shadow: 0 12px 28px -10px rgba(227,6,19,.9); }
.btn--ghost { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.28); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--uppercase { text-transform: uppercase; letter-spacing: .08em; }

/* 4 · Navbar -------------------------------------------------- */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--lp-navbar-h);
  background: rgba(10,13,18,.72);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 3px solid var(--jbs-red);
  transition: background .2s, box-shadow .2s;
}
.lp-nav.is-scrolled { background: rgba(8,11,15,.97); box-shadow: 0 12px 34px -18px rgba(0,0,0,.9); }
.lp-nav__inner {
  max-width: var(--lp-maxw); margin: 0 auto; height: 100%;
  padding: 0 28px; display: flex; align-items: center; gap: 18px;
}
.lp-nav__logo { display: flex; align-items: center; height: 38px; }
.lp-nav__logo img { height: 30px; width: auto; display: block; filter: brightness(0) invert(1); }
.lp-nav__badge {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--jbs-red); padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.lp-nav__spacer { flex: 1; }
.lp-nav__links { display: flex; align-items: center; gap: 28px; }
.lp-nav__links a {
  font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.82); transition: color .15s; position: relative;
}
.lp-nav__links a:hover { color: #fff; }
.lp-nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px;
  height: 2px; background: var(--jbs-red); transition: right .2s;
}
.lp-nav__links a:hover::after { right: 0; }
@media (max-width: 920px) { .lp-nav__badge, .lp-nav__links { display: none; } }

/* 5 · Hero ---------------------------------------------------- */
.lp-hero {
  position: relative; isolation: isolate;
  padding: calc(var(--lp-navbar-h) + 64px) 0 88px;
  overflow: hidden;
}
/* Beton-Foto, deutlich sichtbar, mit gerichtetem Verlauf (links dunkel) */
.lp-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("../img/hintergrund.png") center/cover no-repeat;
}
.lp-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(102deg, var(--lp-bg) 24%, rgba(13,17,24,.78) 52%, rgba(13,17,24,.50) 100%),
    linear-gradient(0deg, var(--lp-bg) 2%, transparent 32%);
}
/* Diagonale Rot-Akzente in den Ecken (wie im Anzeigenmotiv) */
.lp-hero__cut {
  position: absolute; z-index: -1; pointer-events: none; background: var(--jbs-red);
}
.lp-hero__cut--tr {
  top: 0; right: 0; width: 230px; height: 110px;
  clip-path: polygon(100% 0, 100% 100%, 38% 0);
  opacity: .9;
}
.lp-hero__cut--bl {
  left: 0; bottom: 0; width: 180px; height: 90px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  opacity: .85;
}

.lp-hero__company {
  font-size: clamp(16px, 2.2vw, 22px); font-weight: 600; color: #fff;
  margin-bottom: 6px; letter-spacing: .01em;
}
.lp-hero__content { max-width: 1000px; }
.lp-hero h1 {
  font-family: var(--jbs-font-cond);
  font-size: clamp(50px, 12.5vw, 150px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -.035em; line-height: .9;
  transform: scaleX(.92); transform-origin: left;
  margin: 0 0 18px; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
  white-space: nowrap;
}
.lp-hero h1 .mwd {
  font-size: .42em; font-weight: 500; letter-spacing: -.01em;
  -webkit-text-fill-color: #fff; vertical-align: baseline; margin-left: .08em;
}
.lp-hero__sub {
  font-size: clamp(16px, 2.5vw, 23px); color: #fff;
  font-weight: 600; margin: 0 0 26px; letter-spacing: .005em;
}
.lp-hero__sub .dot { color: var(--jbs-red); margin: 0 12px; font-weight: 700; }
.lp-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* Hero-Haken-Liste (rote Kreis-Haken wie in der Anzeige) */
.lp-hero__perks { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; max-width: 640px; }
.lp-tick {
  display: flex; align-items: center; gap: 12px;
  font-size: 15.5px; font-weight: 500; color: var(--lp-text);
}
.lp-tick__mark {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--jbs-red);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-tick__mark svg { width: 14px; height: 14px; color: var(--jbs-red); }

@media (max-width: 720px) {
  .lp-hero h1 { white-space: normal; transform: none; }
  .lp-hero h1 .mwd { display: inline-block; }
}
@media (max-width: 480px) {
  .lp-hero__perks { grid-template-columns: 1fr; }
}

/* "Auf einen Blick" — horizontaler Fakten-Strip unter dem Hero */
.lp-facts {
  position: relative; background: var(--lp-bg-2);
  border-top: 3px solid var(--jbs-red);
  padding: 30px 0 34px;
}
.lp-facts__head {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--jbs-red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.lp-facts__head::before { content: ""; width: 26px; height: 3px; background: var(--jbs-red); }
.lp-facts__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--lp-line);
  border: 1px solid var(--lp-line);
}
.lp-fact {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 18px; background: var(--lp-surface);
}
.lp-fact__k { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--lp-text-mute); }
.lp-fact__v { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.3; }
.lp-fact__v.mono { font-family: var(--jbs-font-mono); font-size: 14px; }
@media (max-width: 900px) { .lp-facts__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .lp-facts__grid { grid-template-columns: repeat(2, 1fr); } }

/* 6 · Vorteils-Karten ----------------------------------------- */
.lp-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-benefit {
  position: relative; background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  padding: 24px 22px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: transform .18s, border-color .18s, box-shadow .18s, background .18s;
}
.lp-benefit::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: var(--jbs-red); transform: scaleX(0); transform-origin: left;
  transition: transform .22s;
}
.lp-benefit:hover {
  transform: translateY(-5px); border-color: var(--jbs-red);
  background: var(--lp-surface-2);
  box-shadow: 0 18px 34px -18px rgba(227,6,19,.5);
}
.lp-benefit:hover::before { transform: scaleX(1); }
.lp-benefit__icon {
  width: 48px; height: 48px;
  background: rgba(227,6,19,.13); color: var(--jbs-red);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22% 100%, 0 78%);
}
.lp-benefit__icon svg { width: 25px; height: 25px; }
.lp-benefit h3 { font-size: 17px; margin-bottom: 7px; }
.lp-benefit p { font-size: 14px; color: var(--lp-text-soft); margin: 0; line-height: 1.5; }
@media (max-width: 1000px) { .lp-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp-benefits-grid { grid-template-columns: 1fr; } }

/* 7 · Aufgaben & Profil --------------------------------------- */
.lp-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
/* Rot umrahmte Panels mit angeschnittener Ecke (wie "Dein Profil") */
.lp-panel {
  position: relative; background: var(--jbs-red); padding: 2px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}
.lp-panel__inner {
  background: var(--lp-surface);
  clip-path: polygon(0 0, calc(100% - 27px) 0, 100% 27px, 100% 100%, 0 100%);
  height: 100%;
}
.lp-panel__head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 26px 18px;
}
.lp-panel__head .ic {
  width: 40px; height: 40px; flex: 0 0 40px;
  background: var(--jbs-red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 80%);
}
.lp-panel__head .ic svg { width: 21px; height: 21px; }
.lp-panel__head h3 { margin: 0; font-size: 21px; text-transform: uppercase; letter-spacing: -.01em; }
.lp-panel__body { padding: 0 26px 24px; }
.lp-check { list-style: none; margin: 0; padding: 0; }
.lp-check li {
  position: relative; padding: 13px 0 13px 36px;
  border-top: 1px solid var(--lp-line-soft);
  color: var(--lp-text-soft); font-size: 15px;
}
.lp-check li strong { color: #fff; font-weight: 600; }
.lp-check li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--jbs-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E30613'%3E%3Cpath d='M13.485 1.929a1 1 0 0 1 .086 1.41l-6.5 7.5a1 1 0 0 1-1.45.063l-3.5-3.25a1 1 0 1 1 1.358-1.464l2.74 2.545 5.815-6.71a1 1 0 0 1 1.451-.086Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
@media (max-width: 840px) { .lp-twocol { grid-template-columns: 1fr; } }

/* 8 · Roter CTA-Balken ---------------------------------------- */
.lp-cta-band {
  position: relative; background: var(--jbs-red); overflow: hidden;
}
.lp-cta-band::before {
  content: ""; position: absolute; right: -60px; top: -40px;
  width: 340px; height: 200px; background: var(--jbs-red-bright);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%); opacity: .5;
}
.lp-cta-band__inner {
  position: relative; max-width: var(--lp-maxw); margin: 0 auto;
  padding: 40px 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.lp-cta-band h2 {
  font-family: var(--jbs-font-cond);
  font-size: clamp(30px, 6vw, 64px); text-transform: uppercase;
  letter-spacing: -.02em; line-height: .92; margin: 0; color: #fff;
  transform: scaleX(.95); transform-origin: left;
}
.lp-cta-band p { margin: 8px 0 0; color: rgba(255,255,255,.9); font-size: 16px; font-weight: 500; }

/* 9 · FAQ-Akkordeon ------------------------------------------- */
.lp-faq { max-width: 860px; margin: 0 auto; }
.lp-faq__item {
  background: var(--lp-surface); border: 1px solid var(--lp-line);
  margin-bottom: 12px; overflow: hidden; transition: border-color .18s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.lp-faq__item.is-open { border-color: var(--jbs-red); }
.lp-faq__q {
  width: 100%; text-align: left; background: transparent; border: none;
  color: #fff; font-family: inherit; font-size: 16.5px; font-weight: 600;
  padding: 21px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-faq__q .chev { flex: 0 0 24px; width: 24px; height: 24px; color: var(--jbs-red); transition: transform .2s; }
.lp-faq__item.is-open .chev { transform: rotate(45deg); }
.lp-faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.lp-faq__a-inner { padding: 0 24px 21px; color: var(--lp-text-soft); font-size: 15px; }
.lp-faq__a-inner p { margin: 0; }

/* 10 · Bewerbungsformular ------------------------------------- */
.lp-apply__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.lp-apply__aside h2 { font-size: clamp(28px, 4.5vw, 44px); text-transform: uppercase; letter-spacing: -.02em; }
.lp-apply__aside p { color: var(--lp-text-soft); font-size: 16px; }
.lp-contactline { display: flex; align-items: center; gap: 14px; padding: 13px 0; color: var(--lp-text-soft); font-size: 15.5px; }
.lp-contactline .ic {
  width: 38px; height: 38px; flex: 0 0 38px; color: #fff; background: var(--jbs-red);
  display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
}
.lp-contactline .ic svg { width: 18px; height: 18px; }
.lp-contactline a:hover { color: #fff; }

.lp-form {
  position: relative; background: var(--jbs-red); padding: 3px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  box-shadow: var(--jbs-shadow-lg);
}
.lp-form__inner {
  background: linear-gradient(180deg, var(--lp-surface-2), var(--lp-surface));
  padding: 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.lp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lp-field label {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--lp-text-mute);
}
.lp-field label .req { color: var(--jbs-red); }
.lp-field input, .lp-field textarea {
  font-family: inherit; font-size: 15px; color: #fff;
  background: var(--lp-bg-2); border: 1px solid var(--lp-line);
  border-radius: var(--jbs-radius); padding: 13px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.lp-field input::placeholder, .lp-field textarea::placeholder { color: #5a6470; }
.lp-field input:focus, .lp-field textarea:focus {
  outline: none; border-color: var(--jbs-red); box-shadow: 0 0 0 3px rgba(227,6,19,.2);
}
.lp-field textarea { resize: vertical; min-height: 120px; }
.lp-form__consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--lp-text-mute); margin: 4px 0 18px;
}
.lp-form__consent input { margin-top: 3px; accent-color: var(--jbs-red); }
.lp-form__consent a { color: var(--lp-text-soft); text-decoration: underline; }
.lp-form__consent a:hover { color: #fff; }
.lp-form__hint { font-size: 12.5px; color: var(--lp-text-mute); margin: 14px 0 0; text-align: center; }
/* Honeypot gegen Bots: fuer Menschen unsichtbar, aber nicht display:none
   (das ueberspringen manche Bots). Echte Nutzer fuellen es nie aus. */
.lp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 840px) { .lp-apply__grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 480px) { .lp-form__row { grid-template-columns: 1fr; } }

/* 11 · Footer ------------------------------------------------- */
.lp-footer { background: var(--lp-bg-2); border-top: 3px solid var(--jbs-red); padding: 60px 0 28px; }
.lp-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 38px; }
.lp-footer__logo { display: inline-flex; height: 40px; align-items: center; margin-bottom: 18px; }
.lp-footer__logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.lp-footer p { color: var(--lp-text-mute); font-size: 14px; }
.lp-footer h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--jbs-red); margin-bottom: 15px; font-weight: 700; }
.lp-footer__list { list-style: none; margin: 0; padding: 0; }
.lp-footer__list li { margin-bottom: 9px; }
.lp-footer__list a, .lp-footer__list span { color: var(--lp-text-soft); font-size: 14.5px; }
.lp-footer__list a:hover { color: #fff; }
.lp-footer__bar {
  border-top: 1px solid var(--lp-line); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; color: var(--lp-text-mute); font-size: 13px;
}
.lp-footer__bar a { color: var(--lp-text-mute); }
.lp-footer__bar a:hover { color: #fff; }
.lp-footer__bar nav { display: flex; gap: 18px; }
@media (max-width: 760px) { .lp-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lp-footer__grid { grid-template-columns: 1fr; } }

/* 12 · Scroll-Einblende-Animation ----------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* 13 · Rechtsseiten (Impressum / Datenschutz) ----------------- */
.lp-legal { padding: calc(var(--lp-navbar-h) + 56px) 0 80px; }
.lp-legal__card {
  max-width: 880px; margin: 0 auto; background: var(--lp-surface);
  border: 1px solid var(--lp-line); border-top: 4px solid var(--jbs-red);
  padding: 42px 46px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}
.lp-legal h1 { font-size: 34px; margin-bottom: 28px; text-transform: uppercase; letter-spacing: -.02em; }
.lp-legal h2 { font-size: 20px; margin: 32px 0 10px; }
.lp-legal h3 { font-size: 16px; margin: 22px 0 6px; color: var(--lp-text); }
.lp-legal p, .lp-legal li { color: var(--lp-text-soft); font-size: 15px; }
.lp-legal a { color: var(--jbs-red); }
.lp-legal a:hover { text-decoration: underline; }
.lp-legal__back { display: inline-flex; align-items: center; gap: 8px; color: var(--lp-text-soft); font-size: 14px; margin-bottom: 26px; }
.lp-legal__back:hover { color: #fff; }
@media (max-width: 560px) { .lp-legal__card { padding: 28px 22px; } }
