/* ============================================================
   PARITÄTISCHES Seniorenwohnen Berlin — Pflegefachkraft LP
   Brand Tokens & Custom Styling
   ============================================================ */

:root {
  --brand-primary: #cb051c;       /* Paritäts-Rot */
  --brand-primary-dark: #a40418;
  --brand-primary-soft: #e2354b;
  --brand-accent-red: #cb051c;
  --brand-accent-gold: #d4915b;   /* warmer Honig/Sand Akzent */
  --brand-accent-gold-dark: #b5764a;
  --brand-paper: #FFFFFF;
  --brand-mist: #FAF7F3;          /* warmer Off-White Background */
  --brand-mist-2: #F2EDE6;
  --brand-ink: #1A1D20;           /* warmes dunkel-grau */
  --brand-muted: #5F5A55;
  --brand-line: #E8E2DA;

  --radius-card: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 32px -8px rgba(203, 5, 28, 0.15);
  --shadow-lift: 0 14px 48px -12px rgba(203, 5, 28, 0.22);

  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--brand-ink);
  background: var(--brand-paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.015em; color: var(--brand-primary); }
h1 { font-weight: 700; line-height: 1.05; }
h2 { font-weight: 700; line-height: 1.1; }
h3 { font-weight: 600; line-height: 1.2; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 12px 18px; background: var(--brand-primary); color: #fff;
  border-radius: 0 0 12px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Top-Bar (sticky)
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--brand-primary);
  color: #fff;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.topbar.scrolled { box-shadow: 0 8px 32px -12px rgba(0,0,0,0.4); }

.topbar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px 24px;
  transition: padding 0.25s ease;
}
.topbar.scrolled .topbar-inner { padding: 10px 24px; }

.topbar-left { display: flex; align-items: center; gap: 20px; font-size: 14px; }
.topbar-left a { color: #fff; text-decoration: none; opacity: 0.92; display: inline-flex; align-items: center; gap: 7px; transition: opacity 0.15s; }
.topbar-left a:hover { opacity: 1; }
.topbar-left .claim { opacity: 0.7; padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.18); }

.topbar-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }

.topbar-cta {
  background: var(--brand-accent-gold); color: var(--brand-primary);
  padding: 11px 22px; border-radius: var(--radius-pill); font-weight: 600;
  text-decoration: none; font-size: 15px; white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.topbar-cta:hover { background: var(--brand-accent-gold-dark); transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(234, 170, 59, 0.5); }

@media (max-width: 900px) {
  .topbar-left .claim, .topbar-left .topbar-mail { display: none; }
  .topbar-inner { gap: 12px; padding: 10px 16px; }
  .topbar-logo img { height: 32px; }
  .topbar-cta { padding: 9px 16px; font-size: 14px; }
}
@media (max-width: 600px) {
  .topbar-left .topbar-tel span { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; border-radius: var(--radius-pill); font-weight: 600;
  text-decoration: none; font-size: 16px; min-height: 52px; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s ease; line-height: 1;
}
.btn-primary { background: var(--brand-primary); color: #fff; }
.btn-primary:hover { background: var(--brand-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-gold { background: var(--brand-accent-gold); color: var(--brand-primary); }
.btn-gold:hover { background: var(--brand-accent-gold-dark); transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(234, 170, 59, 0.45); }
.btn-secondary { background: transparent; color: var(--brand-primary); border-color: var(--brand-primary); }
.btn-secondary:hover { background: var(--brand-primary); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-tight { padding: 48px 0; }
@media (min-width: 600px) { .section { padding: 80px 0; } }
@media (min-width: 1000px) { .section { padding: 112px 0; } }
@media (max-width: 500px) { .container { padding: 0 18px; } }

.section-mist { background: var(--brand-mist); }
.section-ink  { background: var(--brand-ink); color: #F4F6FB; }
.section-ink h2, .section-ink h3 { color: #fff; }

.pre-heading {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand-accent-gold-dark);
  margin-bottom: 18px;
}
.pre-heading::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--brand-accent-gold);
}
.section-ink .pre-heading { color: var(--brand-accent-gold); }

.h2-display {
  font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.12;
  margin: 0 0 22px;
  max-width: 880px;
}
.h2-display .accent { color: var(--brand-accent-gold-dark); }
.section-ink .h2-display .accent { color: var(--brand-accent-gold); }

.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--brand-muted); max-width: 720px;
}
.section-ink .lead { color: #c3ccdb; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(234,170,59,0.08), transparent 50%),
    linear-gradient(135deg, #F4F6FB 0%, #EAEEF7 100%);
  padding: 40px 0 56px;
}
@media (min-width: 768px) { .hero { padding: 64px 0 96px; } }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/pswohnen-header.jpg') center/cover no-repeat;
  opacity: 0.05; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(1,33,105,0.06); color: var(--brand-primary);
  font-size: 13px; font-weight: 600;
  margin-bottom: 22px;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,0.18); }

.hero h1 {
  font-size: clamp(30px, 5.4vw, 64px);
  line-height: 1.06;
  margin: 0 0 18px;
}
.hero h1 .accent { color: var(--brand-accent-gold-dark); display: block; }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px); color: var(--brand-muted);
  margin: 0 0 32px; max-width: 580px;
}

.quick-facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 36px;
  max-width: 560px;
}
@media (min-width: 600px) { .quick-facts { grid-template-columns: repeat(4, 1fr); } }
.qf {
  background: #fff; border: 1px solid var(--brand-line); border-radius: 12px;
  padding: 14px 14px; text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.qf:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.qf-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-muted); font-weight: 600; margin-bottom: 4px; }
.qf-value { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--brand-primary); line-height: 1.2; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-video {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(1,33,105,0.45);
  aspect-ratio: 16 / 9; background: #000;
}
.hero-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero-video .badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(1,33,105,0.85); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; padding: 6px 12px; border-radius: var(--radius-pill);
  font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
}
.hero-video .badge .play-dot { width: 6px; height: 6px; border-radius: 50%; background: #ef4444; }

.hero-trust {
  display: flex; align-items: center; gap: 18px; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid var(--brand-line);
  flex-wrap: wrap;
}
.hero-trust-text { font-size: 14px; color: var(--brand-muted); font-weight: 500; }
.hero-trust-text strong { color: var(--brand-primary); font-weight: 700; }
.hero-trust-stars { color: var(--brand-accent-gold); font-size: 18px; letter-spacing: 2px; }

/* ============================================================
   Persona Section
   ============================================================ */
.persona-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
@media (min-width: 700px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .persona-grid { grid-template-columns: repeat(4, 1fr); } }
.persona-card {
  background: #fff; border: 1px solid var(--brand-line); border-radius: var(--radius-card);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.persona-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--brand-accent-gold); }
.persona-card .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 56px; color: var(--brand-accent-gold);
  line-height: 1; margin-bottom: 14px; display: block;
}
.persona-card h3 { font-size: 19px; margin: 0 0 10px; }
.persona-card p { color: var(--brand-muted); font-size: 15px; margin: 0; line-height: 1.55; }

.persona-finisher {
  margin-top: 56px; text-align: center;
  font-size: clamp(20px, 2.4vw, 26px); font-family: var(--font-display); font-weight: 500;
  color: var(--brand-ink);
}
.persona-finisher strong { color: var(--brand-accent-gold-dark); font-weight: 700; }

/* ============================================================
   Über Arbeitgeber + Werte
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 1fr; gap: 56px; } }
.split.reverse > :first-child { order: 2; }
@media (max-width: 899px) { .split.reverse > :first-child { order: 0; } }

.split-image {
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5; position: relative;
}
@media (min-width: 900px) { .split-image { aspect-ratio: 5 / 6; } }
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.checklist li {
  position: relative; padding-left: 32px;
  font-size: 16px; color: var(--brand-ink); line-height: 1.55;
}
.checklist li svg { position: absolute; left: 0; top: 4px; }

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 64px;
}
@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: var(--brand-paper); border: 1px solid var(--brand-line);
  border-radius: var(--radius-card); padding: 26px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.value-card .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(1,33,105,0.08); color: var(--brand-primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 17px; margin: 0 0 6px; }
.value-card p { font-size: 14px; color: var(--brand-muted); margin: 0; line-height: 1.55; }

/* ============================================================
   Benefits Grid
   ============================================================ */
.benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 48px;
}
@media (min-width: 600px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  background: #fff; border: 1px solid var(--brand-line); border-radius: var(--radius-card);
  padding: 28px 26px; position: relative; transition: all 0.25s ease;
  display: flex; flex-direction: column;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand-accent-gold);
}
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-soft));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit-card h3 { font-size: 18px; margin: 0 0 8px; color: var(--brand-primary); }
.benefit-card p { font-size: 14.5px; color: var(--brand-muted); margin: 0; line-height: 1.55; flex: 1; }

.benefits-banner {
  margin-top: 72px; border-radius: 24px; overflow: hidden;
  position: relative; aspect-ratio: 21 / 9;
  box-shadow: var(--shadow-lift);
}
.benefits-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.benefits-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(1,33,105,0.85) 100%);
}
.benefits-banner-text {
  position: absolute; left: 32px; right: 32px; bottom: 32px;
  color: #fff; z-index: 2; max-width: 600px;
}
.benefits-banner-text h3 { color: #fff; font-size: clamp(22px, 2.8vw, 32px); margin: 0 0 10px; }
.benefits-banner-text p { font-size: 15px; opacity: 0.92; margin: 0; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-wrap { display: grid; gap: 56px; margin-top: 48px; }

.testimonial {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 900px) {
  .testimonial { grid-template-columns: 1fr 280px; gap: 56px; }
  .testimonial.reverse { grid-template-columns: 280px 1fr; }
  .testimonial.reverse .testimonial-quote { order: 2; }
}

.testimonial-quote { position: relative; padding-left: 12px; }
.testimonial-quote .mark {
  font-family: var(--font-display); font-weight: 700;
  font-size: 96px; line-height: 0.5; color: var(--brand-accent-red);
  position: absolute; left: -10px; top: 18px; opacity: 0.7;
}
.testimonial-quote blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.45; color: var(--brand-ink);
  margin: 0 0 24px; padding-left: 24px; border-left: 3px solid var(--brand-accent-gold);
}
.testimonial-quote blockquote em { font-style: italic; color: var(--brand-primary); font-weight: 600; }
.testimonial-person {
  display: flex; align-items: center; gap: 14px; padding-left: 24px;
}
.testimonial-person .name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: var(--brand-primary);
}
.testimonial-person .role { font-size: 14px; color: var(--brand-muted); }

.testimonial-video {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 9 / 16; background: #000;
  box-shadow: var(--shadow-lift);
}
.testimonial-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   Profil + Fakten
   ============================================================ */
.facts-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--brand-line); border: 1px solid var(--brand-line);
  border-radius: var(--radius-card); overflow: hidden;
  margin-top: 48px;
}
@media (min-width: 600px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .facts-grid { grid-template-columns: repeat(3, 1fr); } }
.fact-item {
  background: #fff; padding: 28px 24px;
  transition: background 0.2s;
}
.fact-item:hover { background: var(--brand-mist); }
.fact-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand-muted); font-weight: 600; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.fact-label svg { color: var(--brand-accent-gold-dark); }
.fact-value {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; color: var(--brand-primary); line-height: 1.3;
}

/* ============================================================
   Conversion Pitch (dark)
   ============================================================ */
.pitch-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; max-width: 860px; }
.pitch-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
}
.pitch-item-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--brand-accent-gold); color: var(--brand-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.pitch-item-text { font-size: 16px; color: #e2e8f3; line-height: 1.55; }
.pitch-item-text strong { color: #fff; font-weight: 600; }
.pitch-finisher {
  margin-top: 48px; font-size: clamp(20px, 2.4vw, 26px);
  font-family: var(--font-display); font-weight: 500; color: #fff;
}
.pitch-finisher strong { color: var(--brand-accent-gold); font-weight: 700; }

/* ============================================================
   Standorte (3 Adressen + Maps) — slim variant
   ============================================================ */
.standorte-list { display: grid; gap: 14px; }
.standort-item {
  background: #fff; border: 1px solid var(--brand-line);
  border-radius: var(--radius-card); padding: 22px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.standort-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: var(--brand-accent-gold); }
.standort-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--brand-primary); margin-bottom: 8px; }
.standort-addr { color: var(--brand-muted); font-size: 14.5px; margin: 0 0 12px; line-height: 1.55; }
.standort-link { font-weight: 600; font-size: 14px; color: var(--brand-primary); text-decoration: none; }
.standort-link:hover { color: var(--brand-accent-gold-dark); }

.contact-card-single { max-width: 560px; margin: 64px auto 0; }

/* ============================================================
   Standort + Maps (legacy, kept for map-wrap class)
   ============================================================ */
.standort-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-top: 48px; }
@media (min-width: 900px) { .standort-grid { grid-template-columns: 1.4fr 1fr; gap: 48px; } }
.map-wrap {
  border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft); border: 1px solid var(--brand-line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.standort-info {
  background: #fff; border: 1px solid var(--brand-line);
  border-radius: var(--radius-card); padding: 32px;
}
.standort-info h3 { font-size: 22px; margin: 0 0 8px; }
.standort-info .addr {
  color: var(--brand-muted); margin: 0 0 24px; font-size: 15px; line-height: 1.6;
}
.standort-info .addr strong { color: var(--brand-ink); }

.anfahrt-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 14px; }
.anfahrt-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; background: var(--brand-mist); border-radius: 12px;
}
.anfahrt-list li svg { flex-shrink: 0; color: var(--brand-primary); margin-top: 1px; }
.anfahrt-list .a-label { font-weight: 600; color: var(--brand-primary); font-size: 14px; margin-bottom: 2px; }
.anfahrt-list .a-text { font-size: 13px; color: var(--brand-muted); }

.stadt-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 64px;
}
@media (min-width: 700px) { .stadt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .stadt-grid { grid-template-columns: repeat(4, 1fr); } }
.stadt-card {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  aspect-ratio: 4 / 5; cursor: default;
  transition: transform 0.3s;
}
.stadt-card:hover { transform: translateY(-3px); }
.stadt-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.stadt-card:hover img { transform: scale(1.05); }
.stadt-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(1,33,105,0.92) 100%);
}
.stadt-card-text { position: absolute; inset: auto 0 0 0; padding: 22px 20px; z-index: 2; color: #fff; }
.stadt-card-text h3 { color: #fff; font-size: 18px; margin: 0 0 4px; }
.stadt-card-text p { font-size: 13px; opacity: 0.92; margin: 0; line-height: 1.4; }

/* ============================================================
   Bewerbungsprozess + Formular
   ============================================================ */
.bewerb-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-top: 48px; align-items: start; }
@media (min-width: 950px) { .bewerb-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; } }

.bewerb-form {
  background: #fff; border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow-lift); border: 1px solid var(--brand-line);
}
.bewerb-form h3 { font-size: 22px; margin: 0 0 6px; }
.bewerb-form p.form-sub { color: var(--brand-muted); margin: 0 0 24px; font-size: 14px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block; font-size: 13px; font-weight: 600; color: var(--brand-primary);
  margin-bottom: 6px; letter-spacing: 0.01em;
}
.form-row input, .form-row select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--brand-line); border-radius: 12px;
  font-family: var(--font-body); font-size: 15px; color: var(--brand-ink);
  background: var(--brand-paper); transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23012169' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
  padding-right: 40px;
}
.form-row input:focus, .form-row select:focus {
  outline: none; border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(1,33,105,0.1);
}
.form-mini { font-size: 12px; color: var(--brand-muted); text-align: center; margin: 12px 0 0; }

.form-success {
  display: none; text-align: center; padding: 48px 20px;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
.form-success .success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #d1fae5; color: #059669;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.form-success h3 { font-size: 24px; margin: 0 0 12px; }
.form-success p { color: var(--brand-muted); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.steps {
  display: grid; gap: 24px; padding-left: 0; list-style: none; margin: 0;
}
.steps.steps-row { margin-top: 56px; }
@media (min-width: 900px) {
  .steps.steps-row { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.step {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 24px 0; position: relative;
}
.steps.steps-row .step {
  flex-direction: column; gap: 18px; padding: 0;
  background: #fff; border: 1px solid var(--brand-line);
  border-radius: var(--radius-card); padding: 28px 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.steps.steps-row .step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--brand-accent-gold); }
.steps.steps-row .step::after { display: none; }
.step:not(:last-child)::after {
  content: ''; position: absolute; left: 28px; top: 78px; bottom: -10px;
  width: 2px; background: linear-gradient(180deg, var(--brand-accent-gold), transparent);
}

/* Big centered CTA block (replaces old form area) */
.bewerb-cta-block {
  margin-top: 64px; padding: 56px 32px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-soft));
  border-radius: 24px; text-align: center; color: #fff;
  box-shadow: var(--shadow-lift); position: relative; overflow: hidden;
}
.bewerb-cta-block::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,170,59,0.25), transparent 70%);
}
.bewerb-cta-block::after {
  content: ''; position: absolute; left: -60px; bottom: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.18), transparent 70%);
}
.bewerb-cta-block h3 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin: 0 0 12px; position: relative; }
.bewerb-cta-block > p { color: #c3ccdb; font-size: 17px; margin: 0 0 28px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.bewerb-cta-block .btn { position: relative; }
.btn-lg { padding: 20px 38px; font-size: 17px; min-height: 60px; }
.bewerb-mikro {
  position: relative; margin-top: 22px; font-size: 14px; color: #c3ccdb;
}
.bewerb-mikro a { color: var(--brand-accent-gold); text-decoration: none; font-weight: 600; }
.bewerb-mikro a:hover { color: #fff; }
.step-num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-soft));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  box-shadow: 0 8px 24px -6px rgba(1,33,105,0.4);
}
.step-content h3 { font-size: 19px; margin: 0 0 6px; }
.step-content p { color: var(--brand-muted); margin: 0; font-size: 15px; line-height: 1.55; }

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list { margin-top: 48px; display: grid; gap: 14px; max-width: 880px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: #fff; border: 1px solid var(--brand-line);
  border-radius: var(--radius-card); overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: var(--brand-accent-gold); box-shadow: var(--shadow-soft); }
.faq-trigger {
  width: 100%; background: none; border: 0; cursor: pointer;
  padding: 22px 24px; text-align: left;
  display: flex; gap: 16px; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--brand-primary);
}
.faq-trigger:hover { background: var(--brand-mist); }
.faq-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-mist); color: var(--brand-primary);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand-accent-gold); }
.faq-panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-panel-inner { padding: 0 24px 24px; color: var(--brand-muted); font-size: 15.5px; line-height: 1.65; }
.faq-panel-inner p { margin: 0 0 10px; }
.faq-panel-inner p:last-child { margin-bottom: 0; }

/* ============================================================
   Ansprechpartner CTA Section
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  background: #fff; border-radius: 20px; padding: 36px;
  border: 1px solid var(--brand-line); box-shadow: var(--shadow-soft);
}
.contact-card .label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand-accent-gold-dark); font-weight: 600; margin-bottom: 18px;
}
.recruiter { display: flex; gap: 20px; align-items: center; margin-bottom: 24px; }
.recruiter img {
  width: 92px; height: 92px; border-radius: 50%;
  object-fit: cover; border: 3px solid #fff;
  box-shadow: 0 8px 24px -8px rgba(1,33,105,0.35);
}
.recruiter h3 { font-size: 22px; margin: 0 0 4px; }
.recruiter .role { color: var(--brand-muted); font-size: 14px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-list li {
  position: relative; padding-left: 30px;
  font-size: 15px; line-height: 1.5; color: var(--brand-ink);
}
.contact-list li svg { position: absolute; left: 0; top: 3px; color: var(--brand-primary); }
.contact-list li a { color: var(--brand-ink); text-decoration: none; font-weight: 500; }
.contact-list li a:hover { color: var(--brand-primary); }

.contact-cta {
  margin-top: 56px; text-align: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-soft));
  border-radius: 24px; padding: 56px 32px; color: #fff;
  box-shadow: var(--shadow-lift); position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ''; position: absolute; right: -60px; bottom: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,170,59,0.25), transparent 70%);
}
.contact-cta h3 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin: 0 0 12px; position: relative; }
.contact-cta p { color: #c3ccdb; margin: 0 0 28px; font-size: 16px; position: relative; max-width: 540px; margin-left: auto; margin-right: auto; }
.contact-cta .btn-gold { position: relative; padding: 18px 36px; font-size: 17px; }
.contact-cta .mikro { font-size: 13px; opacity: 0.7; margin-top: 18px; position: relative; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--brand-ink); color: #c3ccdb; padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer img.logo { height: 42px; filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 16px; }
.footer p, .footer a { color: #c3ccdb; font-size: 14px; line-height: 1.7; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer h4 {
  color: #fff; font-family: var(--font-display); font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 16px; justify-content: space-between; align-items: center;
  flex-wrap: wrap; font-size: 13px; opacity: 0.7;
}

/* ============================================================
   Animations
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
/* Fallback: if JS-IntersectionObserver doesn't kick in within 800ms, show everything. */
@media (scripting: none) { .fade-in { opacity: 1; transform: none; } }
.no-fade .fade-in { opacity: 1 !important; transform: none !important; }

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
}

/* Print friendly */
@media print {
  .topbar, .hero-video, .testimonial-video, iframe, .bewerb-form, .map-wrap { display: none !important; }
}

/* ============================================================
   PS-Wohnen-spezifisch: Single-Testimonial (kein Vimeo) + Initialen-Avatars
   ============================================================ */
.testimonial-solo {
  max-width: 880px; margin: 56px auto 0;
}
.testimonial-quote-large {
  background: #fff;
  border-left: 5px solid var(--brand-primary);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 48px 56px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-quote-large .mark-xl {
  font-family: var(--font-display); font-weight: 700;
  font-size: 140px; line-height: 0; color: var(--brand-primary);
  position: absolute; left: 32px; top: 78px; opacity: 0.18;
}
.testimonial-quote-large blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4;
  color: var(--brand-ink); margin: 0 0 32px;
  position: relative;
}
.testimonial-quote-large blockquote em {
  font-style: italic; color: var(--brand-primary); font-weight: 600;
}
.testimonial-attribution {
  display: flex; gap: 18px; align-items: center;
  border-top: 1px solid var(--brand-line); padding-top: 24px;
}
.testimonial-attribution .name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--brand-primary);
}
.testimonial-attribution .role {
  font-size: 14px; color: var(--brand-muted);
}

/* Initialen-Avatar Replacement für Foto-loses Testimonial */
.avatar-initials, .avatar-initials-lg {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-soft));
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.05em;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px -6px rgba(203, 5, 28, 0.35);
}
.avatar-initials { width: 52px; height: 52px; border-radius: 50%; font-size: 18px; }
.avatar-initials-lg { width: 92px; height: 92px; border-radius: 50%; font-size: 30px; }

/* ============================================================
   Standorte-Cards Grid (5 cards)
   ============================================================ */
.standorte-cards {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px;
}
@media (min-width: 700px) { .standorte-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .standorte-cards { grid-template-columns: repeat(3, 1fr); } }

.standort-card {
  background: #fff; border: 1px solid var(--brand-line);
  border-radius: var(--radius-card); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.standort-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lift);
  border-color: var(--brand-accent-gold);
}
.standort-card h3 {
  font-size: 17px; margin: 0;
  color: var(--brand-primary); line-height: 1.3;
}
.standort-card .addr {
  font-size: 14px; color: var(--brand-muted);
  margin: 0; font-weight: 500;
}
.standort-card .standort-desc {
  font-size: 14.5px; color: var(--brand-ink);
  line-height: 1.55; margin: 6px 0 12px; flex: 1;
}
.standort-card .standort-link {
  align-self: flex-start;
  color: var(--brand-primary); text-decoration: none;
  font-weight: 600; font-size: 14px;
  transition: color 0.15s, transform 0.15s;
}
.standort-card .standort-link:hover {
  color: var(--brand-primary-dark); transform: translateX(3px);
}

/* Override topbar-cta + btn-gold for PS Wohnen: use warm sand instead of cold gold */
.topbar-cta { background: var(--brand-paper); color: var(--brand-primary); }
.topbar-cta:hover { background: var(--brand-mist); color: var(--brand-primary-dark); box-shadow: 0 8px 20px -6px rgba(255,255,255,0.4); }

/* hero ::before opacity tighter for warm bg */
.hero { background: linear-gradient(135deg, #FAF7F3 0%, #F2EDE6 100%); }

/* Single-column contact card max-width */
.contact-card-single {
  max-width: 560px; margin: 56px auto 0;
}


/* ============================================================
   BASE RESETS
   ============================================================ */
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ============================================================
   HERO: Video-Spalte größer
   ============================================================ */
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr 1.5fr; gap: 56px; }
  .hero h1 { font-size: clamp(26px, 4vw, 52px); }
  .hero-sub { font-size: 16.5px; }
}

/* Hero Single-Badge */
.hero-single-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; background: #fff;
  border-radius: 12px; border: 1px solid var(--brand-line);
  font-size: 15px; font-weight: 600; color: var(--brand-ink);
  margin-bottom: 28px;
  box-shadow: 0 2px 16px -6px rgba(0,0,0,0.1);
}
.hero-single-badge svg { color: var(--brand-primary); flex-shrink: 0; }


/* ============================================================
   BASE RESETS
   ============================================================ */
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ============================================================
   HERO: Video-Spalte größer
   ============================================================ */
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr 1.5fr; gap: 56px; }
  .hero h1 { font-size: clamp(26px, 4vw, 52px); }
  .hero-sub { font-size: 16.5px; }
}
.hero-single-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; background: #fff;
  border-radius: 12px; border: 1px solid var(--brand-line);
  font-size: 15px; font-weight: 600; color: var(--brand-ink);
  margin-bottom: 28px; box-shadow: 0 2px 16px -6px rgba(0,0,0,0.1);
}
.hero-single-badge svg { color: var(--brand-primary); flex-shrink: 0; }

/* ============================================================
   BENEFITS: Bild als Grid-Item (letzte Zeile, 3 Spalten)
   ============================================================ */


/* ============================================================
   DEIN PROFIL: Video — klein, 9:16, kein Strecken
   ============================================================ */
@media (min-width: 900px) {
  .split-narrow-media { grid-template-columns: 328px 1fr !important; align-items: start !important; }
}
.split-image-portrait {
  aspect-ratio: 9 / 16 !important;
  align-self: start !important;
  width: 328px !important;
  max-width: 328px !important;
  overflow: hidden;
}
.split-image-portrait video {
  display: block; width: 100%; height: 100%;
  object-fit: cover; position: absolute; inset: 0;
}
@media (max-width: 899px) {
  .split-narrow-media { grid-template-columns: 1fr !important; }
  .split-image-portrait { width: 300px !important; max-width: 300px !important; height: 533px !important; margin: 0 auto; border-radius: 12px !important; box-shadow: var(--shadow-lift); }
}

/* ============================================================
   INTERVIEW-VIDEOS: 9:16, etwas größer
   ============================================================ */
.interview-videos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin: 48px auto 0;
  max-width: 680px; width: 100%;
}
.interview-video-wrap {
  border-radius: 18px; overflow: hidden;
  aspect-ratio: 9 / 16; box-shadow: var(--shadow-lift);
  background: #000; min-width: 0;
}
.interview-video-wrap video {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 699px) {
  .interview-videos {
    grid-template-columns: 1fr; max-width: 300px;
    gap: 16px; margin-top: 32px;
  }
  .interview-video-wrap { border-radius: 12px; }
}

/* ============================================================
   STANDORTE: Karten kompakt + Maps niedriger
   ============================================================ */
.standorte-cards { gap: 12px; }
@media (min-width: 1100px) {
  .standorte-cards { grid-template-columns: repeat(5, 1fr); }
}
.standort-card { padding: 14px 16px; }
.standort-card h3 { font-size: 13.5px; margin-bottom: 3px; }
.standort-card .addr { font-size: 12px; margin-bottom: 6px; }
.standort-card .standort-desc { font-size: 12.5px; margin: 2px 0 6px; }
.standort-card .standort-link { font-size: 12px; }

/* Google Maps: weniger hoch */
.map-wrap { aspect-ratio: 16 / 5 !important; }
@media (max-width: 599px) { .map-wrap { aspect-ratio: 4 / 3 !important; } }

/* ============================================================
   BEWERBUNG: Split links/rechts
   ============================================================ */
.bewerb-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; margin-bottom: 64px;
}
.bewerb-split-image {
  border-radius: 18px; overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lift); position: relative;
}
.bewerb-split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 899px) {
  .bewerb-split { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .bewerb-split-image { aspect-ratio: 16 / 9; order: -1; }
}

/* Footer: nur 1 Spalte */
.footer-grid { grid-template-columns: 1fr !important; max-width: 480px; }

/* ============================================================
   MOBILE (≤ 899px)
   ============================================================ */
@media (max-width: 899px) {
  .section { padding: 56px 0; }
  .split-image { aspect-ratio: 3 / 2; }
  .bewerb-cta-block { padding: 48px 28px; }
}

/* ============================================================
   MOBILE (≤ 599px)
   ============================================================ */
@media (max-width: 599px) {
  body { font-size: 16px; }
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }
  .h2-display { font-size: 26px; margin-bottom: 14px; }
  .pre-heading { margin-bottom: 10px; font-size: 12px; }
  .lead { font-size: 16px; }
  .hero { padding: 28px 0 40px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .hero-grid { gap: 32px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-single-badge { font-size: 13px; padding: 11px 16px; margin-bottom: 20px; }
  .split { gap: 28px; }
  .split-image { aspect-ratio: 16 / 9; border-radius: 12px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 0; }
  .benefit-card { padding: 18px 16px; }
  .benefit-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .standorte-cards { gap: 10px; margin-top: 28px; }
  .standort-card { padding: 12px 14px; }
  .bewerb-cta-block { padding: 28px 16px; border-radius: 14px; margin-top: 20px; }
  .bewerb-cta-block h3 { font-size: 18px; }
  .btn-lg { padding: 15px 20px; font-size: 15px; width: 100%; justify-content: center; }
  .contact-card-single { margin-top: 24px; }
  .contact-card { padding: 18px 14px; border-radius: 12px; }
  .bewerb-split { gap: 20px; margin-bottom: 20px; }
  .bewerb-split-image { border-radius: 12px; }
  .topbar-left { display: none; }
  .topbar-inner { justify-content: space-between; padding: 9px 14px; gap: 0; }
  .topbar-logo img { height: 28px; }
  .topbar-cta { padding: 8px 14px; font-size: 13px; }
  .footer { padding: 32px 0 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 20px; }
  /* Interview-Videos mobil: etwas größer */
  .interview-videos { max-width: 340px; }
  .interview-video-wrap { border-radius: 14px; }
  /* Bewerbung Split mobil */
  .bewerb-split-content .bewerb-cta-block { margin-top: 24px; }
  /* Profil-Split video mobil: zentriert, gut proportioniert */
  .split-narrow-media { gap: 20px !important; }
  /* Map mobil */
  .map-wrap { aspect-ratio: 4 / 3 !important; }
}


/* ============================================================
   BENEFITS: Team-Foto — modern, abgerundet, guter Abstand
   ============================================================ */
.benefits-banner-img {
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  box-shadow: var(--shadow-lift);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.benefits-banner-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
@media (max-width: 899px) {
  .benefits-banner-img { margin-top: 40px; border-radius: 16px; aspect-ratio: 16 / 7; }
}
@media (max-width: 599px) {
  .benefits-banner-img { margin-top: 28px; border-radius: 14px; aspect-ratio: 16 / 9; max-width: 100%; }
}
