html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Account for sticky header + safety margin */
  overflow-x: hidden;
}

:root {
  --primary: #1c7c8d;
  --primary-dark: #0f5f6c;
  --accent: #1c7c8d;
  --secondary: #84d4cb;
  --sand: #f4fbfb;
  --white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 20px 45px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.14);
  --primary-soft: rgba(132, 212, 203, 0.16);
  --cta: linear-gradient(135deg, #1c7c8d, #84d4cb);
  --radius: 18px;
  --max-width: 1100px;
  --safe-inset-top: env(safe-area-inset-top, 0px);
  --safe-inset-right: env(safe-area-inset-right, 0px);
  --safe-inset-bottom: env(safe-area-inset-bottom, 0px);
  --safe-inset-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--sand);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--safe-inset-bottom);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: calc(20px + var(--safe-inset-left));
  padding-right: calc(20px + var(--safe-inset-right));
}

section {
  padding: 70px 0;
}

.is-hidden {
  display: none !important;
}

[v-cloak] {
  opacity: 0;
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(28, 124, 141, 0.12);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header {
  --header-height: 70px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  padding-left: var(--safe-inset-left);
  padding-right: var(--safe-inset-right);
  padding-top: var(--safe-inset-top);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  min-height: 70px;
}

.header-inner.header-minimal {
  gap: 24px;
}

.header-minimal .brand {
  padding-left: clamp(4px, 2vw, 18px);
}

.header-minimal .nav-links {
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
}

.header-minimal .nav-toggle {
  margin-left: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 20px;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
}

.nav-links a {
  color: inherit;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.nav-item {
  position: relative;
}

.nav-item>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item.has-mega>a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.nav-item.has-mega:hover>a::after,
.nav-item.has-mega:focus-within>a::after,
.nav-item.has-mega.mega-open>a::after {
  transform: rotate(180deg);
}

.mega-menu {
  position: fixed;
  top: calc(var(--header-height, 70px));
  left: 50%;
  width: 100vw;
  transform: translate(-50%, -8px);
  padding: 32px 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transition-delay: 0.1s;
  z-index: 19;
}

/* Invisible bridge to prevent accidental closing when moving mouse from link to menu */
.mega-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  display: block;
}

.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu,
.nav-item.has-mega.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.mega-content {
  max-width: calc(var(--max-width) + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.mega-heading {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.mega-link {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(28, 124, 141, 0.06);
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 10px;
}

.mega-link strong {
  display: block;
  font-size: 16px;
}

.mega-link:hover {
  background: rgba(28, 124, 141, 0.12);
  color: var(--text-main);
}

.mega-icon {
  font-size: 20px;
  line-height: 1;
}

.mega-subtext {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.mega-column-accent {
  background: rgba(28, 124, 141, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-copy {
  margin: 0;
  font-size: 14px;
  color: var(--text-main);
}

.mega-btn {
  width: 100%;
  text-align: center;
}

.mega-note {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* FORCE VISIBLE BACKGROUND */
  background-color: #f4f6f8 !important;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 246, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: block;
  padding: 84px 18px 136px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.mobile-nav-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.mobile-nav-open {
  overflow: hidden;
}

/* Removed flex transform animation to prevent paint/clipping issues */


.mobile-menu-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  padding: var(--safe-inset-top, 0px) 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.mobile-menu-head p {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-main);
  transition: background 0.2s;
}

.mobile-close:hover {
  background: rgba(15, 23, 42, 0.1);
}

.mobile-columns {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.mobile-column {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 22px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.mobile-column-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 247, 246, 0.98) 100%);
}

.mobile-label {
  margin: 0 0 14px;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.58;
}

.mobile-column a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-weight: 700;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
  transition: transform 0.2s, color 0.2s;
}

.mobile-column a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-column a:first-child {
  padding-top: 0;
}

.mobile-column a svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.8;
}

.mobile-column a:active {
  transform: translateX(5px);
  color: var(--primary);
}

.mobile-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-links > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 14px;
  background: white;
  font-weight: 700;
  color: var(--text-main);
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.mobile-utility-links {
  background: rgba(255, 255, 255, 0.92);
}

.mobile-utility-links a {
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

.mobile-utility-links a:last-child {
  padding-bottom: 16px;
}

.mobile-utility-links a::after {
  content: "\2192";
  font-size: 16px;
  line-height: 1;
  color: rgba(13, 148, 136, 0.72);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-utility-links a:active::after {
  transform: translateX(3px);
  opacity: 1;
}

.mobile-cta {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.08);
  position: sticky;
  bottom: 0;
  margin-top: auto;
  z-index: 3;
}

.mobile-cta .btn {
  width: 100%;
  padding: 18px;
  font-size: 16px;
}

/* Entrance Animations */
.mobile-nav-open .mobile-column {
  animation: slideInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mobile-nav-open .mobile-columns .mobile-column:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-nav-open .mobile-columns .mobile-column:nth-child(2) {
  animation-delay: 0.2s;
}

.mobile-nav-open .mobile-links .mobile-column:nth-child(1) {
  animation-delay: 0.3s;
}

.mobile-nav-open .mobile-links .mobile-column:nth-child(2) {
  animation-delay: 0.4s;
}

.mobile-nav-open .mobile-utility-links a {
  animation: slideInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mobile-nav-open .mobile-utility-links a:nth-of-type(1) {
  animation-delay: 0.46s;
}

.mobile-nav-open .mobile-utility-links a:nth-of-type(2) {
  animation-delay: 0.5s;
}

.mobile-nav-open .mobile-utility-links a:nth-of-type(3) {
  animation-delay: 0.54s;
}

.mobile-nav-open .mobile-utility-links a:nth-of-type(4) {
  animation-delay: 0.58s;
}

.mobile-nav-open .mobile-utility-links a:nth-of-type(5) {
  animation-delay: 0.62s;
}

.mobile-nav-open .mobile-utility-links a:nth-of-type(6) {
  animation-delay: 0.66s;
}

.mobile-nav-open .mobile-utility-links a:nth-of-type(7) {
  animation-delay: 0.7s;
}

.mobile-nav-open .mobile-utility-links a:nth-of-type(8) {
  animation-delay: 0.74s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px calc(12px + var(--safe-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.1);
  display: block;
  z-index: 100;
}

@media (min-width: 901px) {
  .mobile-cta-bar {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }

  .mobile-menu * {
    display: none !important;
  }

  body.mobile-nav-open {
    overflow: auto !important;
  }
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
  transition: transform 0.2s;
}

.mobile-cta-btn:active {
  transform: scale(0.97);
}

.mobile-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-cta-text {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin: 12px 0 0;
}

.breadcrumb .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 18px 35px rgba(15, 95, 108, 0.3);
}

.btn-text {
  padding: 0;
  border: none;
  color: var(--primary);
  font-size: 15px;
}

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero.hero-home {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.45)),
    url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  z-index: 0;
}

.hero.hero-home .hero-grid {
  position: relative;
  z-index: 1;
  align-items: flex-start;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-kicker {
  margin: 10px 0 22px;
  color: var(--text-muted);
  font-weight: 650;
  max-width: 55ch;
}

.hero-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-weight: 650;
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-card h3 {
  margin-top: 0;
}

.hero-card-subtitle {
  margin: -10px 0 22px;
  color: var(--text-muted);
  font-weight: 700;
}

.beruhigungs-wizard {
  max-width: 820px;
  margin: 0 auto;
}

.beruhigungs-wizard .wizard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.beruhigungs-wizard .wizard-progress {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(28, 124, 141, 0.12);
  overflow: hidden;
}

.beruhigungs-wizard .wizard-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
  transition: width 0.25s ease;
}

.beruhigungs-wizard .wizard-stepline {
  margin: 0;
  font-weight: 800;
  color: var(--text-muted);
}

.beruhigungs-wizard .wizard-question {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.beruhigungs-wizard .wizard-subcopy {
  margin: -10px 0 16px;
  color: var(--text-muted);
  font-weight: 650;
}

.beruhigungs-wizard .wizard-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.beruhigungs-wizard .wizard-option {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.beruhigungs-wizard .wizard-option:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(28, 124, 141, 0.35);
}

.beruhigungs-wizard .wizard-option.is-selected {
  border-color: rgba(37, 99, 235, 0.75);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.16);
  background: rgba(37, 99, 235, 0.06);
}

.beruhigungs-wizard .wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.beruhigungs-wizard .wizard-hint {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-weight: 700;
}

.beruhigungs-wizard .wizard-summary {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.beruhigungs-wizard .wizard-summary-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: start;
}

.beruhigungs-wizard .wizard-summary-label {
  color: var(--text-muted);
  font-weight: 800;
  font-size: 13px;
}

.beruhigungs-wizard .wizard-summary-value {
  font-weight: 700;
  color: var(--text-main);
}

.beruhigungs-wizard .wizard-form {
  margin-top: 18px;
}

.beruhigungs-wizard .wizard-field {
  margin-top: 14px;
}

.beruhigungs-wizard .wizard-field label {
  display: block;
  font-weight: 800;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.beruhigungs-wizard .wizard-field input,
.beruhigungs-wizard .wizard-field textarea,
.beruhigungs-wizard .wizard-field select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.beruhigungs-wizard .wizard-field textarea {
  resize: vertical;
}

.beruhigungs-wizard .wizard-field input:focus,
.beruhigungs-wizard .wizard-field textarea:focus,
.beruhigungs-wizard .wizard-field select:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

@media (max-width: 520px) {
  .beruhigungs-wizard .wizard-summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.zone {
  position: relative;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.zone-media img {
  border-radius: 36px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.zone-content .lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-benefits li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

.hero-benefits li::before {
  content: '✓';
  color: var(--accent);
  font-size: 16px;
}

.planning-hint {
  background: var(--bg-soft);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--text);
}

.badge-soft {
  background: rgba(15, 23, 42, 0.06);
  color: var(--primary-dark);
}

.wizard-card {
  position: relative;
  margin-top: -60px;
  padding: 40px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.05);
  z-index: 1;
}

.wizard-intro h2 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 36px);
}

.wizard-intro p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.wizard-meta-box {
  margin-top: 10px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(28, 124, 141, 0.08);
  border: 1px solid rgba(28, 124, 141, 0.22);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
}

.wizard-meta-box::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 124, 141, 0.14);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 13px;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.wizard-step {
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wizard-step.active {
  border-color: var(--primary);
  background: rgba(28, 124, 141, 0.08);
  color: var(--primary-dark);
  box-shadow: 0 15px 30px rgba(28, 124, 141, 0.18);
}

.wizard-step.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.wizard-panels {
  margin: 0;
}

#wizard.submitted .wizard-steps,
#wizard.submitted .wizard-panels {
  display: none;
}

#wizard.submitted #availability-result {
  display: block;
  margin-top: 18px;
}

.wizard-panel {
  display: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.wizard-panel.active {
  display: block;
}

.wizard-panel input,
.wizard-panel textarea,
.wizard-panel select {
  border: 1px solid rgba(15, 23, 42, 0.14);
}

.wizard-panel input:focus,
.wizard-panel textarea:focus,
.wizard-panel select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(28, 124, 141, 0.14);
}

.weekday-prefs,
.start-month {
  margin-top: 14px;
}

.wizard-panel.skip {
  display: none !important;
}

.wizard-panel.active {
  display: block;
}

.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.option-chips-compact {
  gap: 8px;
  margin-top: 10px;
}

.option-chips-compact label {
  padding: 10px 14px;
  font-size: 14px;
}

.option-chips input {
  display: none;
}

.option-chips label {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
  background: var(--white);
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.location-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f8fafc;
  /* Very light slate */
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}

.location-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(28, 124, 141, 0.2);
}

.option-chips input:checked+label {
  border-color: var(--primary);
  background: rgba(28, 124, 141, 0.08);
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(28, 124, 141, 0.15);
}

.icon-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.icon-options input {
  display: none;
}

.icon-options label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--white);
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.icon-options label span {
  font-size: 30px;
}

.icon-options.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.icon-options input:checked+label {
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(28, 124, 141, 0.15);
  color: var(--primary-dark);
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.size-options input {
  display: none;
}

.size-options label {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
}

.size-options input:checked+label {
  border-color: var(--primary);
  background: rgba(28, 124, 141, 0.08);
  color: var(--primary-dark);
}

.chip-toggle {
  margin: 12px 0 4px;
}

.chip-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-dark);
}

.chip-toggle input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  margin: 0;
  display: grid;
  place-content: center;
}

.chip-toggle input:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 2px;
  box-shadow: inset 1em 1em var(--primary);
}

.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  background-color: var(--white);
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  vertical-align: middle;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.custom-checkbox:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.custom-checkbox:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--white);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.custom-checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: inherit;
}

.wizard-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.result-box {
  margin: 20px 0;
  padding: 20px 24px;
  border-radius: 20px;
  background: #f0fdfa;
  border: 1px solid rgba(28, 124, 141, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  opacity: 0.85;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.result-box.active {
  opacity: 1;
  transform: translateY(0);
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.wizard-hint {
  margin: 18px 0 10px;
  color: var(--text-muted);
  font-size: 15px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.usp-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.usp-icon,
.icon-circle,
.icon-label,
.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #ecfeff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  /* For backwards compatibility if emoji is still used */
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.usp-card:hover .usp-icon,
.service-card:hover .icon-circle,
.premium-card:hover .icon-label,
.diff-card:hover .diff-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--primary);
  color: white;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(28, 124, 141, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.service-item {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.service-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 10px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
  font-weight: 600;
  color: var(--primary-dark);
}

.select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.select-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.select-card {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  padding: 18px;
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.select-icon {
  font-size: 30px;
}

.select-card strong {
  font-size: 16px;
}

.select-card small {
  color: var(--text-muted);
  font-size: 13px;
}

.select-input:checked+.select-card {
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(28, 124, 141, 0.15);
  color: var(--primary-dark);
}

.config-header {
  display: grid;
  gap: 24px;
  margin-bottom: 30px;
}

.preset-box {
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 18px;
  padding: 18px;
  background: #f8fafc;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
}

.product-card label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 24px;
  padding: 16px;
  cursor: pointer;
  background: var(--white);
  transition: border 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.product-card input:checked+label {
  border-color: #059669;
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
}

.product-card h3 {
  margin: 0;
}

.product-card select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 10px;
  font-family: inherit;
}

.value-bar {
  margin-top: 30px;
  border-radius: 20px;
  background: #ecfdf5;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.value-bar strong {
  font-size: 20px;
  color: #065f46;
}

.value-selection {
  font-weight: 600;
  color: var(--primary-dark);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.cost-table th,
.cost-table td {
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 12px;
  text-align: left;
}

.cost-table th {
  background: #f8fafc;
  font-weight: 700;
  color: var(--primary-dark);
}

.tech-card span {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

.status-chips label[data-feedback="green"] {
  border-color: #059669;
}

.status-chips label[data-feedback="yellow"] {
  border-color: #d97706;
}

.form-card {
  margin-top: 20px;
}

.order-form input,
.order-form select,
.order-form textarea {
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 12px;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
  margin-bottom: 16px;
}

.order-form textarea {
  min-height: 90px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 18px;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.financing-grid {
  align-items: start;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(28, 124, 141, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
}

.conditional-organisation {
  margin-bottom: 20px;
  display: none;
}

.faq {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.faq h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

details.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 0;
}

details.faq-item:last-of-type {
  border-bottom: none;
}

details.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-list li::before {
  content: '•';
  color: var(--primary);
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.trust-item.trust-item--muted {
  margin-top: 10px;
  opacity: 0.92;
  font-size: 14px;
}

.trust-item strong {
  color: var(--text-main);
}

.trust-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.reviews {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 380px;
  min-height: 220px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.review-card p {
  margin: 10px 0 14px;
  font-size: 15px;
  color: var(--text);
}

.review-stars {
  color: #f59e0b;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 16px;
}

.review-source {
  margin-top: auto;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes reviews-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .reviews {
    padding: 60px 0;
  }

  .review-card {
    flex-basis: 300px;
    min-height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 480px) {

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
}

.table-wrapper,
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.table-wrapper table {
  margin-bottom: 0;
  white-space: nowrap;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

/* Feature Grid Redesign */
.feature-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.premium-card {
  position: relative;
  background: #ffffff;
  border-radius: 32px;
  padding: 48px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card h2,
.premium-card h3 {
  font-size: 28px;
  margin-top: 20px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.premium-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Standardized via .icon-label base above */

/* Standardized via hover base above */

.premium-card .premium-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.premium-card:hover .premium-cta {
  gap: 12px;
}

/* Specific Card Accents */
.card-accent-gold {
  border-top-color: #f59e0b;
}

.card-accent-gold .icon-label {
  background: #fffbeb;
  color: #d97706;
}

.card-accent-blue {
  border-top-color: #0ea5e9;
}

.card-accent-blue .icon-label {
  background: #f0f9ff;
  color: #0369a1;
}

.card-accent-green {
  border-top-color: #10b981;
}

.card-accent-green .icon-label {
  background: #ecfdf5;
  color: #047857;
}

.card-accent-primary {
  border-top-color: var(--primary);
}

@media (max-width: 991px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .premium-card {
    padding: 32px;
  }
}

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
}

.service-group {
  margin-bottom: 40px;
}

.group-label {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.service-card h3 {
  margin-top: 10px;
  margin-bottom: 12px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .mini-list {
  margin-bottom: 16px;
}

.service-card .btn {
  align-self: center;
  margin-top: auto;
  padding: 10px 18px;
  font-size: 13px;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding-top: 32px;
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 86px;
  font-weight: 800;
  color: rgba(15, 95, 108, 0.12);
  letter-spacing: 0.04em;
  z-index: 0;
}

.step-grid .step-card h3 {
  margin-top: 0;
}

.step-grid .step-card h3,
.step-grid .step-card p {
  position: relative;
  z-index: 1;
}

.region-card {
  padding: 28px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  background: #fdfdfd;
}

.region-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.region-card p {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Standardized via .icon-circle base above */

.financing-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
  border-color: #fde68a;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: #78350f;
  font-weight: 600;
}

.list-clean li::before {
  content: '▪';
  color: #d97706;
}

.jobs-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.cta-buttons.is-stacked {
  flex-direction: column;
  align-items: flex-start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: flex-start;
}

.form-wrap {
  background: var(--primary-dark);
  color: white;
  border-radius: var(--radius);
  padding: 36px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 16px;
}

textarea {
  min-height: 110px;
}

footer {
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  padding: 40px 0 calc(30px + var(--safe-inset-bottom));
  font-size: 14px;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.link-back {
  color: var(--primary);
  font-weight: 600;
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

.steps .card {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 16px 0;
}

.faq-item h3 {
  margin: 0 0 8px;
}

.placeholder-panel {
  border: 2px dashed rgba(13, 148, 136, 0.4);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
}

.notice {
  font-size: 13px;
  color: var(--text-muted);
}

.calm-wizard-section {
  background: linear-gradient(180deg, #fafdff, #f4fbfb);
}

.calm-wizard {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.calm-wizard-fallback .calm-screen {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.calm-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.calm-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 700;
}

.calm-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(28, 124, 141, 0.1);
  overflow: hidden;
}

.calm-progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #1c7c8d, #84d4cb);
  width: 0%;
  transition: width 0.4s ease;
}

.calm-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 6px 12px;
}

.calm-progress-label {
  opacity: 0.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.calm-progress-label.is-active {
  color: var(--primary-dark);
  opacity: 1;
  font-weight: 600;
}

.calm-screen-stack {
  position: relative;
  display: grid;
  min-height: 520px;
}

.calm-screen {
  grid-area: 1 / 1;
  background: rgba(244, 251, 251, 0.9);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 40px);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calm-screen.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.calm-screen-tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0;
  font-size: 13px;
}

.calm-screen h3 {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.4;
  margin: 0;
  color: var(--text-main);
}

.calm-screen .muted {
  color: var(--text-muted);
  font-weight: 500;
}

.sentence-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 4px;
  border-bottom: 2px solid rgba(28, 124, 141, 0.4);
}

.sentence-select select {
  appearance: none;
  border: none;
  background: transparent;
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 600;
  color: var(--primary-dark);
  padding: 6px 26px 6px 2px;
  min-width: 120px;
  min-height: 48px;
  line-height: 1.2;
  cursor: pointer;
}

.sentence-select::after {
  content: '▾';
  position: absolute;
  right: 4px;
  color: var(--primary-dark);
  font-size: 16px;
  pointer-events: none;
}

.calm-helper {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.calm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.calm-actions .btn {
  flex: 1;
  min-width: 160px;
  min-height: 48px;
}

.calm-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.calm-chip-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.calm-chip {
  border: 1px solid rgba(28, 124, 141, 0.2);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  background: white;
  color: var(--primary-dark);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.calm-chip:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 10px 18px rgba(28, 124, 141, 0.1);
}

.calm-chip.is-selected {
  background: rgba(28, 124, 141, 0.12);
  border-color: var(--primary);
}

.calm-dropbox {
  border-radius: 22px;
  padding: 20px;
  background: rgba(28, 124, 141, 0.06);
  border: 1px dashed rgba(28, 124, 141, 0.4);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calm-dropbox-head {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--primary-dark);
}

.calm-topic-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calm-topic-list li {
  background: rgba(28, 124, 141, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.calm-form {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.calm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
}

.calm-field input {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 14px 16px;
  font-size: 16px;
  min-height: 48px;
}

.calm-form-hint {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.calm-form-hint.is-success {
  color: #0d9488;
}

.calm-form-hint.is-error {
  color: #b91c1c;
}

.chip-enter-active,
.chip-leave-active {
  transition: all 0.35s ease;
}

.chip-enter-from,
.chip-leave-to {
  opacity: 0;
  transform: translateY(10px);
}

.chip-move {
  transition: transform 0.35s ease;
}

@media (max-width: 720px) {
  .calm-progress-labels {
    flex-direction: column;
    align-items: flex-start;
  }

  .calm-screen-stack {
    min-height: 620px;
  }

  .calm-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .calm-actions {
    flex-direction: column;
  }

  .calm-actions .btn {
    width: 100%;
  }

  .sentence-select select {
    min-width: 100px;
  }
}

/* Page: Blog */
.page-blog main {
  background: linear-gradient(180deg, #f4fbfb 0%, #ffffff 42%, #f4fbfb 100%);
}

.blog-hero,
.blog-article-hero {
  padding: 78px 0 54px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 251, 0.86)),
    url('/leistungen/alltagsbegleitung/hero_Alltagsbegleitung_why.jpg');
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
  gap: 36px;
  align-items: end;
}

.blog-hero h1,
.blog-article-hero h1 {
  max-width: 820px;
  margin: 16px 0 18px;
  color: var(--primary-dark);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
}

.blog-hero-copy,
.blog-article-excerpt {
  max-width: 700px;
  margin: 0;
  color: var(--text-main);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

.blog-hero-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.blog-hero-panel-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero-panel strong {
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1.35;
}

.blog-hero-panel span {
  color: var(--text-muted);
  font-weight: 600;
}

.blog-hero-panel-actions,
.blog-topic-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-hero-panel-actions .btn {
  padding: 10px 18px;
}

.blog-topic-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 38, 51, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-topic-chip:hover,
.blog-topic-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(28, 124, 141, 0.4);
  box-shadow: var(--shadow-sm);
}

.blog-topic-chip-primary {
  border-color: rgba(28, 124, 141, 0.28);
  background: rgba(28, 124, 141, 0.12);
}

.blog-index-section {
  padding: 58px 0 88px;
}

.blog-index-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.blog-index-nav {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.blog-index-nav-label {
  margin: 0 0 4px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-index-nav a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.blog-index-nav a:hover,
.blog-index-nav a:focus-visible {
  color: var(--primary);
}

.blog-index-content,
.blog-topic-sections {
  display: grid;
  gap: 28px;
}

.blog-section-heading {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.blog-section-heading h2 {
  margin: 8px 0 0;
  color: var(--primary-dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.blog-section-kicker,
.blog-section-count {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-jump-link,
.blog-read-more {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.blog-jump-link:hover,
.blog-jump-link:focus-visible,
.blog-read-more:hover,
.blog-read-more:focus-visible {
  color: var(--primary-dark);
}

.blog-featured,
.blog-topic-overview,
.blog-topic-section {
  padding: 30px;
  border: 1px solid rgba(15, 38, 51, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.blog-featured-copy {
  display: grid;
  gap: 14px;
}

.blog-featured-copy time,
.blog-list-card-meta,
.blog-article-meta {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
}

.blog-featured-copy h3,
.blog-list-card h3 {
  margin: 0;
  color: var(--primary-dark);
  line-height: 1.2;
}

.blog-featured-copy h3 {
  font-size: clamp(30px, 3vw, 40px);
}

.blog-featured-copy p,
.blog-list-card p {
  margin: 0;
  color: var(--text-muted);
}

.blog-featured-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.blog-topic-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.blog-topic-overview-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(28, 124, 141, 0.16);
  background: linear-gradient(180deg, rgba(244, 251, 251, 0.98), rgba(255, 255, 255, 0.95));
  color: var(--primary-dark);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blog-topic-overview-card:hover,
.blog-topic-overview-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.blog-topic-overview-card strong {
  font-size: 19px;
  line-height: 1.25;
}

.blog-topic-overview-card span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.blog-topic-list {
  display: grid;
  gap: 18px;
}

.blog-list-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border-radius: 28px;
  background: #f8fcfc;
  border: 1px solid rgba(15, 38, 51, 0.08);
}

.blog-list-card-image img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

.blog-list-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
}

.blog-list-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.blog-topic-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(28, 124, 141, 0.12);
  color: var(--primary-dark);
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.blog-tag-list li {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 38, 51, 0.06);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.blog-empty {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.blog-article-shell {
  max-width: 1120px;
}

.blog-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.blog-article-hero-copy {
  display: grid;
  align-content: start;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-article-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-article-jump-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(28, 124, 141, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.blog-article-jump-link:hover,
.blog-article-jump-link:focus-visible {
  border-color: rgba(28, 124, 141, 0.42);
  color: var(--primary);
}

.blog-article-summary {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 38, 51, 0.08);
  box-shadow: var(--shadow-sm);
}

.blog-article-summary-label,
.blog-article-toc-label,
.blog-content-section-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article-summary-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-article-summary-list li {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(244, 251, 251, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(28, 124, 141, 0.12);
}

.blog-article-summary-list strong {
  color: var(--primary-dark);
  font-size: 17px;
  line-height: 1.25;
}

.blog-article-summary-list span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.blog-article-figure {
  margin: 32px 0 0;
}

.blog-article-figure img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
}

.blog-article-section {
  padding: 58px 0 88px;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  align-items: start;
}

.blog-article-main {
  min-width: 0;
}

.blog-article-sidebar {
  position: sticky;
  top: 108px;
}

.blog-article-toc {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 38, 51, 0.08);
  box-shadow: var(--shadow-sm);
}

.blog-article-toc a {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.blog-article-toc a:hover,
.blog-article-toc a:focus-visible {
  color: var(--primary);
}

.blog-article-content {
  padding: 34px clamp(22px, 4vw, 42px) 40px;
  border-radius: 32px;
  border: 1px solid rgba(15, 38, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.82;
}

.blog-article-content > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.blog-content-section + .blog-content-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(15, 38, 51, 0.08);
}

.blog-content-section-head {
  margin-bottom: 16px;
}

.blog-content-section-intro > p:first-of-type {
  color: var(--primary-dark);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.7;
}

.blog-article-content p {
  max-width: 72ch;
  margin-top: 0;
  margin-bottom: 20px;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--primary-dark);
  line-height: 1.2;
}

.blog-article-content h2 {
  font-size: clamp(28px, 3vw, 36px);
}

.blog-article-content h3 {
  margin-top: 24px;
  font-size: 23px;
}

.blog-list {
  max-width: 72ch;
  padding: 22px 24px 22px 44px;
  margin-top: 0;
  margin-bottom: 26px;
  border-radius: 24px;
  border: 1px solid rgba(28, 124, 141, 0.12);
  background: linear-gradient(180deg, rgba(244, 251, 251, 0.96), rgba(255, 255, 255, 0.98));
}

.blog-list li {
  margin-bottom: 10px;
}

.blog-list li::marker {
  color: var(--primary);
}

.blog-checklist-block {
  max-width: 72ch;
  padding: 24px 24px 22px;
  margin-bottom: 26px;
  border-radius: 26px;
  background: #f6fbfb;
  border: 1px solid rgba(28, 124, 141, 0.14);
}

.blog-checklist-block h3 {
  margin: 0 0 14px;
  color: var(--primary-dark);
}

.blog-checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-checklist li {
  position: relative;
  padding-left: 34px;
  color: var(--text-main);
  font-weight: 600;
}

.blog-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(28, 124, 141, 0.14);
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}

.blog-callout {
  max-width: 68ch;
  padding: 22px 24px;
  margin-bottom: 24px;
  border-radius: 24px;
  border: 1px solid rgba(28, 124, 141, 0.16);
}

.blog-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 16px;
}

.blog-callout p {
  margin: 0;
}

.blog-callout-info {
  background: linear-gradient(135deg, rgba(28, 124, 141, 0.08), rgba(244, 251, 251, 0.96));
}

.blog-callout-highlight {
  background: linear-gradient(135deg, rgba(15, 38, 51, 0.08), rgba(255, 255, 255, 0.96));
}

.blog-article-content blockquote {
  max-width: 68ch;
  margin: 0;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(28, 124, 141, 0.12), rgba(244, 251, 251, 0.98));
  color: var(--primary-dark);
  font-size: 21px;
  font-weight: 700;
}

.blog-article-content blockquote cite {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.blog-faq-block {
  max-width: none;
  margin-top: 8px;
  padding: 26px 28px;
  border-radius: 28px;
  border: 1px solid rgba(15, 38, 51, 0.08);
  background: #f8fcfc;
}

.blog-faq-block h2 {
  margin-bottom: 10px;
}

.blog-faq-item {
  border-top: 1px solid rgba(15, 38, 51, 0.08);
  padding: 16px 0;
}

.blog-faq-item:last-of-type {
  padding-bottom: 0;
}

.blog-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 800;
  list-style: none;
}

.blog-faq-item summary::-webkit-details-marker {
  display: none;
}

.blog-faq-item summary::after {
  content: '+';
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

.blog-faq-item[open] summary::after,
details[open].blog-faq-item summary::after {
  content: '−';
}

.blog-faq-item p {
  max-width: 70ch;
  margin: 12px 0 0;
  color: var(--text-muted);
}

.blog-cta-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary-dark), #167285);
  color: white;
  box-shadow: var(--shadow-md);
}

.blog-cta-block h2 {
  margin: 0 0 8px;
  color: white;
  font-size: clamp(24px, 3vw, 32px);
}

.blog-cta-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.blog-cta-block .btn {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .blog-hero,
  .blog-article-hero {
    padding: 50px 0 38px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .blog-hero-inner,
  .blog-featured-card,
  .blog-list-card,
  .blog-cta-block,
  .blog-article-hero-grid,
  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-featured,
  .blog-topic-overview,
  .blog-topic-section {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .blog-section-heading {
    align-items: start;
  }

  .blog-hero-panel-actions .btn,
  .blog-topic-chip {
    width: 100%;
    justify-content: center;
  }

  .blog-article-content {
    padding: 24px 18px 28px;
    border-radius: 24px;
    font-size: 17px;
  }

  .blog-article-figure img {
    border-radius: 20px;
  }

  .blog-content-section + .blog-content-section {
    margin-top: 28px;
    padding-top: 28px;
  }

  .blog-list {
    padding: 18px 18px 18px 34px;
  }

  .blog-faq-block {
    padding: 20px;
    border-radius: 22px;
  }

  .blog-article-summary,
  .blog-article-toc {
    border-radius: 24px;
  }

  .blog-list-card {
    padding: 14px;
  }

  .blog-list-card-image img {
    min-height: 0;
  }

  .blog-cta-block .btn {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .blog-index-layout {
    grid-template-columns: 1fr;
  }

  .blog-index-nav {
    position: static;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-article-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(110px + var(--safe-inset-bottom));
  }

  .nav-links {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
  }

  .mega-menu {
    display: none !important;
  }

  .header-inner {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .mobile-cta-bar {
    display: block;
  }

  .hero {
    padding-top: 20px;
  }

  section {
    padding: 50px 0;
  }

  .zone-grid {
    gap: 24px;
  }

  .zone-media img {
    min-height: 220px;
    border-radius: 24px;
  }

  .wizard-card {
    margin-top: 0;
    padding: 28px;
  }

  .wizard-panel {
    padding: 20px;
  }

  .form-wrap {
    padding: 28px;
  }

  .icon-options {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-menu {
    top: 0;
  }

  .mobile-menu-inner {
    height: 100vh;
    border-radius: 0;
  }
}

/* Ablauf detail pages */
body.page-planning,
body.page-continuity,
body.page-dignity,
body.page-loyalty {
  background: linear-gradient(180deg, #f8fcfc 0%, #f4fbfb 52%, #ffffff 100%);
}

body.page-planning .planning-hero,
body.page-continuity .continuity-hero,
body.page-dignity .dignity-hero,
body.page-loyalty .loyalty-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 76px) 0 clamp(48px, 7vw, 84px) !important;
  background:
    radial-gradient(circle at 86% 16%, rgba(132, 212, 203, 0.26), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%) !important;
}

body.page-planning .planning-hero::after,
body.page-continuity .continuity-hero::after,
body.page-dignity .dignity-hero::after,
body.page-loyalty .loyalty-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(15, 95, 108, 0.08);
}

body.page-planning .planning-hero .hero-grid,
body.page-continuity .continuity-hero .hero-grid,
body.page-dignity .dignity-hero .hero-grid,
body.page-loyalty .loyalty-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

body.page-planning .hero-content h1,
body.page-continuity .hero-content h1,
body.page-dignity .hero-content h1,
body.page-loyalty .hero-content h1 {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--text-main);
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.03;
  letter-spacing: 0;
}

body.page-planning .hero-content > p:not(.badge),
body.page-continuity .hero-content > p:not(.badge),
body.page-dignity .hero-content > p:not(.badge),
body.page-loyalty .hero-content > p:not(.badge) {
  max-width: 64ch;
}

body.page-planning .hero-image-wrap,
body.page-continuity .hero-image-wrap,
body.page-dignity .hero-image-wrap,
body.page-loyalty .hero-image-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  border: 1px solid rgba(15, 95, 108, 0.1);
  background: linear-gradient(135deg, rgba(132, 212, 203, 0.26), rgba(28, 124, 141, 0.08));
  box-shadow: var(--shadow-lg);
}

body.page-planning .hero-image-wrap img,
body.page-continuity .hero-image-wrap img,
body.page-dignity .hero-image-wrap img,
body.page-loyalty .hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(28, 124, 141, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.detail-proof-list li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: 800;
}

body.page-planning .manifesto-section,
body.page-continuity .manifesto-section,
body.page-dignity .manifesto-section,
body.page-loyalty .manifesto-section {
  background: #ffffff;
}

body.page-planning .manifesto-grid,
body.page-continuity .manifesto-grid,
body.page-dignity .manifesto-grid,
body.page-loyalty .manifesto-grid {
  gap: 22px;
  margin-top: 38px;
}

body.page-planning .manifesto-card,
body.page-continuity .manifesto-card,
body.page-dignity .manifesto-card,
body.page-loyalty .manifesto-card {
  position: relative;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 18px;
  border: 1px solid rgba(15, 95, 108, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

body.page-planning .manifesto-card::before,
body.page-continuity .manifesto-card::before,
body.page-dignity .manifesto-card::before,
body.page-loyalty .manifesto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--secondary);
}

body.page-planning .manifesto-card:hover,
body.page-continuity .manifesto-card:hover,
body.page-dignity .manifesto-card:hover,
body.page-loyalty .manifesto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

body.page-planning .card-icon,
body.page-continuity .card-icon,
body.page-dignity .card-icon,
body.page-loyalty .card-icon {
  background: var(--primary-soft);
}

.principle-switcher {
  padding: clamp(54px, 8vw, 90px) 0;
  background:
    radial-gradient(circle at top left, rgba(132, 212, 203, 0.18), transparent 34%),
    #f7fbfb;
}

.principle-switcher-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.principle-switcher-head .badge {
  justify-self: start;
  align-self: start;
  width: auto;
}

.principle-switcher-head h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

.principle-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.principle-link {
  min-height: 150px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 95, 108, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}

.principle-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.principle-link[aria-current="page"] {
  background: var(--primary-dark);
  color: white;
}

.principle-link span {
  display: block;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.principle-link[aria-current="page"] span,
.principle-link[aria-current="page"] small {
  color: rgba(255, 255, 255, 0.72);
}

.principle-link strong {
  display: block;
  color: inherit;
  font-size: 18px;
  line-height: 1.25;
}

.principle-link small {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

body.page-planning .attitude-section,
body.page-continuity .attitude-section,
body.page-loyalty .attitude-section,
body.page-dignity .promise-section {
  margin: 0;
  border-radius: 0;
  padding: clamp(64px, 8vw, 92px) 0 !important;
}

body.page-planning .attitude-grid,
body.page-continuity .attitude-grid {
  gap: 20px;
  margin-bottom: 36px;
}

body.page-planning .attitude-box,
body.page-continuity .attitude-box {
  border-radius: 18px;
}

body.page-planning .promise-box,
body.page-continuity .promise-box,
body.page-loyalty .promise-box {
  border-radius: 18px;
}

@media (min-width: 861px) {
  body.page-planning .planning-hero .hero-grid,
  body.page-continuity .continuity-hero .hero-grid,
  body.page-dignity .dignity-hero .hero-grid,
  body.page-loyalty .loyalty-hero .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr) !important;
  }
}

@media (max-width: 1100px) {
  .principle-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.page-planning .planning-hero .hero-grid,
  body.page-continuity .continuity-hero .hero-grid,
  body.page-dignity .dignity-hero .hero-grid,
  body.page-loyalty .loyalty-hero .hero-grid,
  .principle-switcher-head {
    grid-template-columns: 1fr !important;
  }

  body.page-planning .hero-image-wrap,
  body.page-continuity .hero-image-wrap,
  body.page-dignity .hero-image-wrap,
  body.page-loyalty .hero-image-wrap {
    aspect-ratio: 16 / 11;
    border-radius: 18px;
  }

  .principle-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .detail-proof-list li {
    width: 100%;
    border-radius: 14px;
  }

  body.page-planning .attitude-section .btn,
  body.page-continuity .attitude-section .btn,
  body.page-loyalty .attitude-section .btn,
  body.page-dignity .promise-section .btn {
    width: 100%;
    margin-left: 0 !important;
  }

  body.page-planning .attitude-section .btn + .btn,
  body.page-continuity .attitude-section .btn + .btn,
  body.page-loyalty .attitude-section .btn + .btn,
  body.page-dignity .promise-section .btn + .btn {
    margin-top: 12px;
  }
}

/* Page: Jobs */
.jobs-page {
  color-scheme: light;
  --bg: #f4fbfb;
  --surface: #ffffff;
  --surface-alt: #e8f4f5;
  --text: #1e293b;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --primary: #1c7c8d;
  --primary-dark: #0f5f6c;
  --accent: #1c7c8d;
  --shadow: 0 20px 45px rgba(15, 95, 108, 0.18);
  --radius: 22px;
  --max: 1100px;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.jobs-page a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.jobs-page a:hover {
  color: var(--primary);
}

.jobs-page img {
  max-width: 100%;
  display: block;
}

.jobs-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jobs-page main .wrap,
.jobs-page footer .wrap {
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.jobs-page .job-hero {
  background: linear-gradient(135deg, #ffffff 0%, #ebf7f7 50%, #dff2f2 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.05);
}

.jobs-page .hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.jobs-page .hero-inner h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.1rem, 5vw, 3rem);
  letter-spacing: -0.01em;
}

.jobs-page .hero-inner p {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.jobs-page .hero-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.jobs-page .hero-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
  font-weight: 600;
}

.jobs-page .hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.jobs-page .hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow);
}

.jobs-page .hero-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.jobs-page .hero-perks li+li {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.jobs-page .hero-perks strong {
  display: block;
  font-size: 1rem;
}

.jobs-page .hero-perks p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.jobs-page .hero-cta {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.jobs-page .jobs-board {
  padding: clamp(1.8rem, 4.5vw, 3rem) 0 4.5rem;
}

.jobs-page .board-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  margin-bottom: 0.9rem;
}

.jobs-page .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.jobs-page .board-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.jobs-page .board-header p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.jobs-page .filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.jobs-page .input {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  min-width: clamp(220px, 40vw, 320px);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.05);
  color: var(--muted);
}

.jobs-page .input input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.jobs-page .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid transparent;
  background: var(--surface);
  padding: 0.55rem 0.95rem;
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid var(--border);
}

.jobs-page .pill strong {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.jobs-page .state,
.job-detail-page .state {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  box-shadow: var(--shadow);
  min-height: 70px;
  display: flex;
  align-items: center;
}

.jobs-page .state strong,
.job-detail-page .state strong {
  color: var(--primary-dark);
}

.jobs-page .grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.5rem;
}

.jobs-page .card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.jobs-page .media {
  height: 180px;
  background: #e2f3f4;
  position: relative;
  overflow: hidden;
}

.jobs-page .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jobs-page .fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(28, 124, 141, 0.2), rgba(15, 95, 108, 0.35));
  font-weight: 600;
  padding: 1.2rem;
  text-align: center;
}

.jobs-page .content {
  padding: 1.25rem 1.4rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.jobs-page .title {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
}

.jobs-page .title h2 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
}

.jobs-page .job-badge {
  border: 1px solid transparent;
  background: rgba(13, 148, 136, 0.1);
  color: var(--primary-dark);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.jobs-page .desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  white-space: pre-wrap;
}

.jobs-page .job-bullets,
.job-detail-page .job-bullets {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.jobs-page .job-bullets li,
.job-detail-page .job-bullets li {
  position: relative;
  padding-left: 20px;
  line-height: 1.35;
}

.jobs-page .job-bullets li::before,
.job-detail-page .job-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.35em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
  opacity: 0.8;
}

.jobs-page .actions {
  padding: 0 1.4rem 1.4rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.jobs-page .job-btn,
.job-detail-page .job-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  font-family: inherit;
}

.jobs-page .job-btn.primary,
.job-detail-page .job-btn.primary {
  background: linear-gradient(135deg, #0b7285, #29a3b4);
  border-color: #0b7285;
  color: #fff;
  box-shadow: 0 14px 26px rgba(11, 114, 133, 0.3);
}

.jobs-page .job-btn:hover,
.job-detail-page .job-btn:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
}

:where([hidden]) {
  display: none !important;
}

.job-detail-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.job-detail-page .back-link:hover {
  color: var(--primary);
}

.job-detail-page .job-detail-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  background: linear-gradient(135deg, #eef7f9, #f9fcfd);
  overflow: hidden;
}

.job-detail-page .job-detail-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -180px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.28), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.job-detail-page .job-detail-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(41, 163, 180, 0.2), transparent 70%);
  pointer-events: none;
}

.job-detail-page .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

.job-detail-page .hero-panel {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 24px 50px rgba(15, 95, 108, 0.08);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 1.5rem;
  padding: 1.8rem;
}

.job-detail-page .hero-content {
  display: grid;
  gap: 0.7rem;
}

.job-detail-page .detail-title {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--text);
}

.job-detail-page .detail-teaser {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.job-detail-page .hero-bullets {
  margin-top: 0.8rem;
  grid-template-columns: 1fr;
}

.job-detail-page .hero-cta {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.16), rgba(41, 163, 180, 0.2));
  border-radius: calc(var(--radius) + 4px);
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  border: 1px solid rgba(13, 148, 136, 0.18);
}

.job-detail-page .cta-kicker {
  margin: 0;
  font-weight: 600;
  color: var(--primary-dark);
}

.job-detail-page .hero-cta .job-btn {
  width: 100%;
  justify-content: center;
}

.job-detail-page .job-detail-body {
  padding: 1.2rem 0 4rem;
}

.job-detail-page .detail-cta {
  margin-top: 1.6rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(41, 163, 180, 0.08));
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: calc(var(--radius) + 8px);
  padding: 1.6rem 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
}

.job-detail-page .detail-cta h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.4rem;
}

.job-detail-page .detail-cta p {
  margin: 0;
  color: var(--muted);
}

.job-detail-page .detail-cta-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--primary-dark);
}

.job-detail-page .detail-cta-actions {
  display: grid;
  gap: 0.6rem;
}

.job-detail-page .detail-cta-actions .job-btn {
  width: 100%;
  justify-content: center;
}

.job-detail-page .detail-card {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 1.5rem;
  overflow: hidden;
}

.job-detail-page .detail-media {
  background: #e2f3f4;
  position: relative;
  min-height: 220px;
}

.job-detail-page .detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.job-detail-page .detail-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(28, 124, 141, 0.2), rgba(15, 95, 108, 0.35));
  font-weight: 600;
  padding: 1.2rem;
  text-align: center;
}

.job-detail-page .detail-content {
  padding: 1.6rem 1.8rem 1.8rem;
  display: grid;
  gap: 0.8rem;
}

.job-detail-page .detail-subtitle {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--primary-dark);
}

.job-detail-page .detail-desc {
  margin: 0;
  color: var(--text);
  white-space: pre-wrap;
}

@media (max-width: 900px) {
  .job-detail-page .hero-panel {
    grid-template-columns: 1fr;
  }

  .job-detail-page .detail-card {
    grid-template-columns: 1fr;
  }

  .job-detail-page .detail-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  section {
    padding: 5px 0;
  }
}

@media (max-width: 700px) {
  .jobs-page .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .jobs-page .board-header {
    grid-template-columns: 1fr;
  }

  .jobs-page .nav-links {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .jobs-page .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .jobs-page .input {
    width: 100%;
    min-width: 0;
  }

  .jobs-page .actions {
    flex-direction: column;
  }
}

/* Page: Team */
.page-team .team-hero {
  position: relative;
  background: url("/team/team.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.page-team .team-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.35));
}

.page-team .team-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 72px 0 56px;
}

.page-team .team-hero-content {
  max-width: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-team .team-hero-oversize {
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: 800;
  font-size: clamp(80px, 14vw, 190px);
  letter-spacing: 0.08em;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
}

.page-team .team-hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin: 0;
  color: #fff;
  line-height: 1.05;
}

.page-team .team-hero p {
  color: rgba(255, 255, 255, 0.9);
}

.page-team .team-hero .badge,
.page-team .team-hero h1,
.page-team .team-hero p {
  position: relative;
  z-index: 1;
}

.page-team .portrait {
  width: 100%;
  height: clamp(260px, 55vw, 520px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 12px;
  margin-bottom: 16px;
  background-color: #e2e8f0;
}

.page-team .quote-box {
  background: #e1f5f4;
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin-top: 20px;
  font-style: italic;
  color: var(--primary-dark);
}

.page-team .team-lead-section {
  padding-top: 80px;
}

.page-team .lead-name {
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 6px 0;
  color: var(--text-main);
}

.page-team .lead-role {
  margin: 0 0 16px 0;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 900px) {
  .page-team .team-hero-inner {
    min-height: 260px;
    padding: 56px 0 44px;
  }

  .page-team .team-hero-oversize {
    font-size: clamp(64px, 16vw, 140px);
    letter-spacing: 0.06em;
  }

  .page-team .team-hero h1 {
    font-size: clamp(28px, 6vw, 40px);
  }
}

@media (max-width: 600px) {
  .page-team .team-hero-inner {
    min-height: 220px;
    padding: 44px 0 36px;
  }

  .page-team .team-hero-oversize {
    font-size: clamp(52px, 18vw, 110px);
    bottom: -4px;
  }

  .page-team .team-hero-content {
    max-width: 100%;
  }

  .page-team .lead-name {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .page-team .lead-role {
    font-size: 14px;
  }

  .page-team .portrait {
    height: clamp(220px, 70vw, 420px);
  }
}

.page-team .value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.page-team .section-title,
.page-teamkachel .section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 60px 0 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
  color: var(--primary-dark);
}

.page-team .team-grid,
.page-teamkachel .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.page-team .member-card,
.page-teamkachel .member-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.page-team .member-card:hover,
.page-teamkachel .member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-team .img-wrapper,
.page-teamkachel .img-wrapper {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 280px;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

.page-team .member-img,
.page-teamkachel .member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slightly higher framing so faces aren't cropped too aggressively */
  object-position: center 20%;
}

.page-team .member-fallback,
.page-teamkachel .member-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d9488, #0891b2);
  color: #fff;
  font-weight: 800;
  font-size: 64px;
  letter-spacing: 0.06em;
  user-select: none;
}

.page-team .member-info,
.page-teamkachel .member-info {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-team .member-name,
.page-teamkachel .member-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-main);
  margin: 0;
}

.page-team .member-role,
.page-teamkachel .member-role {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.page-team .member-bio,
.page-teamkachel .member-bio {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-team .member-cta,
.page-teamkachel .member-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.95), rgba(236, 253, 245, 0.98));
  color: var(--primary-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-team .member-cta:hover,
.page-team .member-cta:focus-visible,
.page-teamkachel .member-cta:hover,
.page-teamkachel .member-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(13, 148, 136, 0.34);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.14);
  outline: none;
}

.page-team #team-loader {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

.page-teamkachel #loader {
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}

.page-team .team-state,
.page-teamkachel .team-state {
  text-align: center;
  padding: 40px 0 12px;
  color: var(--text-muted);
}

body.team-modal-open {
  overflow: hidden;
}

.page-team .team-modal,
.page-teamkachel .team-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(6px);
}

.page-team .team-modal[hidden],
.page-teamkachel .team-modal[hidden] {
  display: none !important;
}

.page-team .team-modal-dialog,
.page-teamkachel .team-modal-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(132, 212, 203, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  box-shadow: 0 38px 90px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.page-team .team-modal-close,
.page-teamkachel .team-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.page-team .team-modal-close:focus-visible,
.page-teamkachel .team-modal-close:focus-visible {
  outline: 2px solid rgba(13, 148, 136, 0.4);
  outline-offset: 2px;
}

.page-team .team-modal-content,
.page-teamkachel .team-modal-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
}

.page-team .team-modal-media-host,
.page-teamkachel .team-modal-media-host {
  min-height: 100%;
}

.page-team .team-modal-media,
.page-teamkachel .team-modal-media {
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(8, 145, 178, 0.12));
}

.page-team .team-modal-image,
.page-teamkachel .team-modal-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.page-team .team-modal-fallback,
.page-teamkachel .team-modal-fallback {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d9488, #0891b2);
  color: #fff;
  font-weight: 800;
  font-size: clamp(64px, 8vw, 108px);
  letter-spacing: 0.08em;
}

.page-team .team-modal-copy,
.page-teamkachel .team-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 56px 42px 42px;
}

.page-team .team-modal-label,
.page-teamkachel .team-modal-label {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-team .team-modal-title,
.page-teamkachel .team-modal-title {
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-team .team-modal-role,
.page-teamkachel .team-modal-role {
  margin: 0;
  color: var(--text-main);
  font-size: 16px;
  font-weight: 700;
}

.page-team .team-modal-description,
.page-teamkachel .team-modal-description {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  white-space: pre-line;
}

@media (max-width: 760px) {
  .page-team .team-modal,
  .page-teamkachel .team-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .page-team .team-modal-dialog,
  .page-teamkachel .team-modal-dialog {
    width: 100%;
    max-height: min(92vh, 920px);
    border-radius: 24px 24px 0 0;
  }

  .page-team .team-modal-content,
  .page-teamkachel .team-modal-content {
    grid-template-columns: 1fr;
  }

  .page-team .team-modal-media,
  .page-teamkachel .team-modal-media,
  .page-team .team-modal-fallback,
  .page-teamkachel .team-modal-fallback {
    min-height: 280px;
  }

  .page-team .team-modal-copy,
  .page-teamkachel .team-modal-copy {
    padding: 28px 20px 24px;
  }

  .page-team .team-modal-close,
  .page-teamkachel .team-modal-close {
    top: 14px;
    right: 14px;
  }
}

/* Page: Datenschutz */
.page-datenschutz .privacy-hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 60%, #f5f3ff 100%);
  position: relative;
  overflow: hidden;
}

.page-datenschutz .privacy-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 55%);
  pointer-events: none;
}

.page-datenschutz .privacy-hero .hero-grid {
  position: relative;
  z-index: 2;
  align-items: flex-start;
}

.page-datenschutz .privacy-hero .hero-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.15);
  padding: 32px;
}

.page-datenschutz .privacy-hero .hero-card h3 {
  margin-top: 0;
}

.page-datenschutz .policy-section {
  padding: 80px 0;
  background: white;
}

.page-datenschutz .policy-section:nth-of-type(even) {
  background: #f8fafc;
}

.page-datenschutz .policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.page-datenschutz .policy-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.page-datenschutz .policy-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.page-datenschutz .policy-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.page-datenschutz .policy-card ul li {
  margin-bottom: 6px;
}

.page-datenschutz .service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 15px;
}

.page-datenschutz .service-table th,
.page-datenschutz .service-table td {
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  vertical-align: top;
}

.page-datenschutz .service-table th {
  background: #eff6ff;
  font-weight: 700;
  width: 220px;
}

.page-datenschutz .rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.page-datenschutz .rights-list li {
  list-style: none;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: white;
  font-weight: 600;
}

.page-datenschutz .notice-box {
  border-radius: 18px;
  padding: 18px;
  background: rgba(15, 118, 110, 0.08);
  margin-top: 20px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .page-datenschutz .privacy-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .page-datenschutz .policy-card {
    padding: 20px;
  }

  .page-datenschutz .service-table th {
    width: 140px;
  }
}

/* Page: Impressum */
.page-impressum .legal-hero {
  background: linear-gradient(135deg, #eef2ff 0%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
}

.page-impressum .legal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.12), transparent 55%);
  pointer-events: none;
}

.page-impressum .legal-hero .hero-grid {
  position: relative;
  z-index: 2;
}

.page-impressum .legal-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.page-impressum .legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.page-impressum .legal-grid h3 {
  margin-top: 0;
}

.page-impressum .legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-impressum .legal-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.page-impressum .legal-list li:last-child {
  border-bottom: none;
}

.page-impressum .legal-section {
  padding: 70px 0;
}

.page-impressum .legal-section:nth-of-type(even) {
  background: #f8fafc;
}

.page-impressum .notice-box {
  border-radius: 18px;
  padding: 18px;
  background: rgba(79, 70, 229, 0.08);
  margin-top: 24px;
  font-size: 15px;
}

/* Page: Finanzierung */
.page-finanzierung .money-hero {
  background: linear-gradient(135deg, #e3f7f6 0%, #fdfefe 100%);
  padding: 60px 0 80px;
  border-bottom: 1px solid #84d4cb;
}

.page-finanzierung .money-badge {
  background: rgba(28, 124, 141, 0.12);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.page-finanzierung .budget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.page-finanzierung .budget-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-top: 6px solid var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-finanzierung .budget-card.highlight {
  border-top-color: var(--secondary);
  background: #f0fbfa;
}

.page-finanzierung .card-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.page-finanzierung .amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-main);
  margin: 10px 0;
  display: block;
  line-height: 1;
}

.page-finanzierung .amount small {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.page-finanzierung .extras-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-finanzierung .extras-box:hover {
  border-color: rgba(15, 95, 108, 0.3);
  box-shadow: 0 10px 25px rgba(15, 95, 108, 0.12);
}

.page-finanzierung .extras-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-finanzierung .extras-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
  background: #def6f4;
  border: 1px solid rgba(15, 95, 108, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.page-finanzierung .extras-box:hover .extras-link {
  background: #caeeea;
}

.page-finanzierung .icon-box {
  width: 50px;
  height: 50px;
  background: #e1f5f4;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.page-finanzierung .wizard-section {
  background: var(--primary-dark);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.page-finanzierung .wizard-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.page-finanzierung .wizard-box {
  background: white;
  color: var(--text-main);
  border-radius: 24px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.page-finanzierung .w-step {
  display: none;
  animation: fadeInFinanzierung 0.4s ease;
}

.page-finanzierung .w-step.active {
  display: block;
}

@keyframes fadeInFinanzierung {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-finanzierung .w-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.page-finanzierung .w-btn {
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: white;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.page-finanzierung .w-btn:hover {
  border-color: var(--primary);
  background: #e1f5f4;
  color: var(--primary);
}

.page-finanzierung .progress-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.page-finanzierung .dot {
  width: 10px;
  height: 10px;
  background: #e2e8f0;
  border-radius: 50%;
}

.page-finanzierung .dot.active {
  background: var(--primary);
}

@media (max-width: 768px) {
  .page-finanzierung .w-options {
    grid-template-columns: 1fr;
  }

  .page-finanzierung .amount {
    font-size: 32px;
  }

  .page-finanzierung .extras-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Page: Kontakt */
.page-kontakt .contact-hero {
  background: linear-gradient(135deg, #ecfdf3 0%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.page-kontakt .contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(10, 87, 90, 0.08), transparent 55%);
  pointer-events: none;
}

.page-kontakt .contact-hero .hero-grid {
  position: relative;
  z-index: 2;
}

.page-kontakt .contact-hero .hero-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.page-kontakt .contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.page-kontakt .contact-badge {
  background: rgba(15, 118, 110, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
}

.page-kontakt .contact-details {
  padding: 80px 0 40px;
}

.page-kontakt .contact-card-grid .card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.page-kontakt .contact-card-grid h3 {
  margin-bottom: 10px;
}

.page-kontakt .contact-card-grid p {
  margin-bottom: 6px;
}

.page-kontakt .contact-card-grid .contact-card-actions {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.page-kontakt .contact-card-grid .contact-card-actions .btn {
  font-size: 14px;
  padding: 8px 14px;
}

.page-kontakt .contact-form-section {
  background: var(--primary-dark);
  color: white;
  padding: 80px 0;
}

.page-kontakt .contact-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.page-kontakt .contact-form-copy {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 32px;
}

.page-kontakt .contact-form-copy h3 {
  margin-top: 0;
}

.page-kontakt .contact-form-copy ul {
  margin: 16px 0 0;
  padding-left: 18px;
  line-height: 1.5;
}

.page-kontakt .contact-steps {
  padding: 70px 0;
}

.page-kontakt .step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.page-kontakt .step-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: white;
  box-shadow: var(--shadow-sm);
}

.page-kontakt .step-item strong {
  display: block;
  font-size: 16px;
}

.page-kontakt .step-item span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #ecfeff;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-kontakt .contact-cta {
  padding: 60px 0 100px;
}

.page-kontakt .contact-cta .cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 42px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.3);
}

.page-kontakt .contact-cta .cta-box p {
  margin: 0 auto;
  max-width: 520px;
}

.page-kontakt .contact-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 768px) {
  .page-kontakt .contact-form-copy {
    padding: 24px;
  }

  .page-kontakt .step-item {
    flex-direction: column;
  }
}

/* Page: Ablauf */
.page-ablauf .ablauf-hero {
  background: linear-gradient(135deg, #ecfdf3 0%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

.page-ablauf .ablauf-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(10, 87, 90, 0.08), transparent 55%);
  pointer-events: none;
}

.page-ablauf .ablauf-hero .hero-grid {
  position: relative;
  z-index: 2;
}

.page-ablauf .ablauf-hero .hero-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.page-ablauf .ablauf-trustline {
  margin-top: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.page-ablauf .ablauf-problem {
  padding: 80px 0;
}

.page-ablauf .ablauf-steps {
  padding: 70px 0;
}

.page-ablauf .ablauf-gantt-stack {
  display: grid;
  gap: 16px;
}

.page-ablauf .gantt-card {
  position: relative;
  border: 2px solid rgba(15, 23, 42, 0.4);
  border-radius: 24px;
  padding: 28px 84px 24px 28px;
  background: white;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.page-ablauf .gantt-card h3 {
  margin: 8px 0 10px;
}

.page-ablauf .gantt-card p {
  margin: 0 0 8px;
}

.page-ablauf .gantt-card .gantt-note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.page-ablauf .gantt-index {
  position: absolute;
  right: 28px;
  top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-weight: 700;
}

.page-ablauf .gantt-1 {
  width: 86%;
}

.page-ablauf .gantt-2 {
  width: 82%;
  margin-left: 6%;
}

.page-ablauf .gantt-3 {
  width: 88%;
  margin-left: 12%;
}

.page-ablauf .gantt-4 {
  width: 84%;
  margin-left: 20%;
}

.page-ablauf .gantt-5 {
  width: 78%;
  margin-left: 26%;
}

.page-ablauf .ablauf-steps .steps .card p {
  margin-bottom: 0;
}

.page-ablauf .ablauf-cta-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-ablauf .ablauf-diff {
  padding: 80px 0;
  background: var(--bg-muted);
}

.page-ablauf .lead-section {
  background: linear-gradient(180deg, rgba(28, 124, 141, 0.08), rgba(132, 212, 203, 0.06));
  color: var(--text-main);
  padding: 70px 0;
}

.page-ablauf .lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

@media (max-width: 900px) {

  .page-ablauf .gantt-1,
  .page-ablauf .gantt-2,
  .page-ablauf .gantt-3,
  .page-ablauf .gantt-4,
  .page-ablauf .gantt-5 {
    width: 100%;
    margin-left: 0;
  }
}

@media (min-width: 1100px) {
  .page-ablauf .lead-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }
}

@media (min-width: 1100px) {

  .page-ablauf .lead-copy,
  .page-ablauf .lead-form-card {
    align-self: stretch;
  }
}

.page-ablauf .lead-grid {
  border-radius: 32px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.page-ablauf .lead-copy {
  background: radial-gradient(circle at top right, rgba(132, 212, 203, 0.22), transparent 55%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: 0;
  padding: 34px;
  width: 100%;
  height: 100%;
}

.page-ablauf .lead-copy h3 {
  margin-top: 0;
}

.page-ablauf .lead-copy ul {
  margin: 16px 0 0;
  padding-left: 18px;
  line-height: 1.5;
}

.page-ablauf .lead-form-card {
  background: white;
  border-radius: 0;
  box-shadow: none;
  padding: 28px;
  color: var(--text);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  width: 100%;
  height: 100%;
}

@media (min-width: 1100px) {
  .page-ablauf .lead-form-card {
    border-top: none;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
  }
}

.page-ablauf .lead-form-card label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin: 12px 0 8px;
  color: #0f172a;
}

.page-ablauf .lead-copy .badge {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-ablauf .lead-form-card input,
.page-ablauf .lead-form-card select,
.page-ablauf .lead-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 12px;
  font: inherit;
  outline: none;
}

.page-ablauf .lead-form-card input:focus,
.page-ablauf .lead-form-card select:focus,
.page-ablauf .lead-form-card textarea:focus {
  border-color: rgba(15, 118, 110, 0.8);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.page-ablauf .lead-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.page-ablauf .entlastungs-check .wizard-meta {
  margin-bottom: 14px;
}

.page-ablauf .entlastungs-check .wizard-stepline {
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}

.page-ablauf .entlastungs-check .wizard-question {
  margin-top: 10px;
}

.page-ablauf .lead-form-card .entlastungs-check {
  max-width: none;
  margin: 0;
}

.page-ablauf .entlastungs-check {
  min-height: 0;
}

.page-ablauf .entlastungs-check .ec-scroll {
  overflow: visible;
  padding-right: 0;
}

@media (min-width: 1100px) {
  .page-ablauf .entlastungs-check {
    min-height: 660px;
  }
}

.page-ablauf .entlastungs-check .wizard-option.is-selected {
  border-color: rgba(28, 124, 141, 0.85);
  box-shadow: 0 18px 35px rgba(28, 124, 141, 0.16);
  background: rgba(28, 124, 141, 0.06);
}

.page-ablauf .entlastungs-check .wizard-option:focus-visible {
  outline: 2px solid rgba(28, 124, 141, 0.85);
  outline-offset: 3px;
}

.page-ablauf .entlastungs-check .wizard-options {
  grid-template-columns: 1fr;
}

.page-ablauf .entlastungs-check .ec-tile {
  padding: 12px 14px;
  border-radius: 14px;
}

.page-ablauf .entlastungs-check .ec-tile-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.page-ablauf .entlastungs-check .ec-tile-icon {
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

.page-ablauf .entlastungs-check .ec-tile-main {
  flex: 1;
  min-width: 0;
}

.page-ablauf .entlastungs-check .ec-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-ablauf .entlastungs-check .ec-tile-label {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-ablauf .entlastungs-check .ec-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.06);
  color: var(--primary-dark);
  border: 1px solid rgba(15, 23, 42, 0.06);
  white-space: nowrap;
}

.page-ablauf .entlastungs-check .ec-tile-hint {
  margin-top: 4px;
  color: var(--text-muted);
  font-weight: 650;
  font-size: 13px;
}

.page-ablauf .entlastungs-check .ec-area {
  margin-top: 12px;
  border-radius: 16px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.page-ablauf .entlastungs-check .ec-area-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-ablauf .entlastungs-check .ec-area-value {
  margin-top: 2px;
  font-weight: 800;
}

.page-ablauf .entlastungs-check .ec-box {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.04);
}

.page-ablauf .entlastungs-check .ec-inline {
  margin-top: 10px;
}

.page-ablauf .entlastungs-check .ec-box.ec-box-compact {
  margin-top: 0;
  padding: 10px;
  border-radius: 14px;
}

.page-ablauf .entlastungs-check .ec-input.ec-input-compact {
  padding: 10px 10px;
  font-size: 15px;
}

.page-ablauf .entlastungs-check .ec-label {
  display: block;
  font-weight: 800;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.page-ablauf .entlastungs-check .ec-input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.page-ablauf .entlastungs-check .ec-input:focus {
  border-color: rgba(28, 124, 141, 0.75);
  box-shadow: 0 0 0 4px rgba(28, 124, 141, 0.14);
}

.page-ablauf .entlastungs-check .ec-help {
  margin-top: 8px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 13px;
}

.page-ablauf .entlastungs-check .ec-result-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.page-ablauf .entlastungs-check .ec-result-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
  padding: 14px;
}

.page-ablauf .entlastungs-check .ec-result-kicker {
  font-weight: 800;
  color: var(--text-muted);
  font-size: 13px;
}

.page-ablauf .entlastungs-check .ec-result-value {
  margin-top: 4px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-ablauf .entlastungs-check .ec-summary {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.7);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.page-ablauf .entlastungs-check .ec-summary-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: start;
}

.page-ablauf .entlastungs-check .ec-summary-row span {
  color: var(--text-muted);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-ablauf .entlastungs-check .ec-methods {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.page-ablauf .entlastungs-check .ec-method {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 12px;
  cursor: pointer;
  font-weight: 800;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.page-ablauf .entlastungs-check .ec-method:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(28, 124, 141, 0.35);
}

.page-ablauf .entlastungs-check .ec-method.is-selected {
  border-color: rgba(28, 124, 141, 0.85);
  box-shadow: 0 18px 35px rgba(28, 124, 141, 0.16);
  background: rgba(28, 124, 141, 0.06);
}

.page-ablauf .entlastungs-check .ec-consent {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  color: var(--text-main);
}

.page-ablauf .entlastungs-check .ec-consent input {
  margin-top: 3px;
}

@media (max-width: 520px) {
  .page-ablauf .entlastungs-check .ec-methods {
    grid-template-columns: 1fr;
  }

  .page-ablauf .entlastungs-check .ec-summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.page-ablauf .trust-anchors {
  padding: 80px 0;
}

.page-ablauf .quote-card {
  border-left: 6px solid rgba(15, 118, 110, 0.35);
}

.page-ablauf .final-cta {
  padding: 60px 0 100px;
}

.page-ablauf .final-cta .cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 42px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.3);
}

.page-ablauf .final-cta .cta-box p {
  margin: 0 auto;
  max-width: 560px;
}

.page-ablauf .final-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.page-ablauf .conditional-field {
  display: none;
}

.page-ablauf .conditional-field[data-visible="true"] {
  display: block;
}

@media (max-width: 768px) {
  .page-ablauf .lead-copy {
    padding: 24px;
  }

  .page-ablauf .lead-form-card {
    padding: 22px;
  }
}

/* Page: Pflegehilfsmittel (KI) */
.page-pflegehilfsmittel-ki .shop-hero {
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
  padding: 60px 0 100px;
  text-align: center;
  position: relative;
}

.page-pflegehilfsmittel-ki .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.page-pflegehilfsmittel-ki .select-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.page-pflegehilfsmittel-ki .select-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.page-pflegehilfsmittel-ki .select-card.selected {
  border-color: var(--primary);
  background-color: #f0fdfa;
  position: relative;
}

.page-pflegehilfsmittel-ki .select-card.selected::after {
  content: '✔';
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-pflegehilfsmittel-ki .select-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.page-pflegehilfsmittel-ki .shop-wizard {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: -80px auto 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-pflegehilfsmittel-ki .wizard-header {
  background: var(--primary-dark);
  color: white;
  padding: 20px;
  text-align: center;
  font-weight: 700;
}

.page-pflegehilfsmittel-ki .wizard-body {
  padding: 40px;
}

.page-pflegehilfsmittel-ki .step {
  display: none;
}

.page-pflegehilfsmittel-ki .step.active {
  display: block;
  animation: fadeInPflegehilfsmittel 0.3s ease;
}

@keyframes fadeInPflegehilfsmittel {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-pflegehilfsmittel-ki .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #065f46;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-pflegehilfsmittel-ki .partner-section {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}

.page-pflegehilfsmittel-ki .partner-logo {
  font-weight: 800;
  font-size: 24px;
  color: #333;
  letter-spacing: -1px;
}

.thank-page {
  padding: 40px 0 80px;
}

.thank-card {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 48px);
}

.thank-card h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 12px 0 10px;
}

.thank-lead {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.thank-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  align-items: start;
}

.thank-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thank-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.thank-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .thank-grid {
    grid-template-columns: 1fr;
  }
}

/* Differentiation Section 2x2 Grid Fix */
.grid-diff-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.diff-card {
  padding: 40px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15);
  border-color: var(--primary-light);
}

/* Standardized via base classes above */

.diff-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.diff-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .grid-diff-2x2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diff-card {
    padding: 30px;
  }
}
/* reCAPTCHA Badge Visibility Fix */
.grecaptcha-badge {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
    right: 24px !important;
    bottom: 24px !important;
    display: block !important;
    transition: opacity 0.3s ease !important;
}

.recaptcha-disclosure {
  margin: 12px 0 14px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.recaptcha-disclosure a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* --- Jobs Component --- */

.jobs-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  gap: 14px;
  margin-bottom: 40px;
}

.jobs-search,
.jobs-filter {
  min-height: 52px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  padding: 0 18px;
  font: inherit;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jobs-search:focus,
.jobs-filter:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(28, 124, 141, 0.1);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.job-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.job-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(132, 212, 203, 0.2), rgba(28, 124, 141, 0.1));
}

.job-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-card-fallback {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 18px;
}

.job-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.job-card-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: var(--primary-dark);
}

.job-status {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: rgba(132, 212, 203, 0.3);
  color: var(--primary-dark);
  border-radius: 999px;
  white-space: nowrap;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.job-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.job-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
}

.job-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.job-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.job-actions .btn {
  flex: 1;
  padding: 12px;
  font-size: 14px;
}

.jobs-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  background: var(--white);
  border-radius: 24px;
  border: 1px dashed var(--border);
  color: var(--text-muted);
}

.job-detail-hero {
  padding-bottom: 20px;
}

.job-detail-media {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(132, 212, 203, 0.2), rgba(28, 124, 141, 0.1));
  box-shadow: var(--shadow-sm);
}

.job-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-detail-fallback {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 24px;
  padding: 40px;
  text-align: center;
}

.job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.job-detail-meta span {
  background: rgba(28, 124, 141, 0.1);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.content-card {
  background: var(--white);
  border-radius: 32px;
  padding: clamp(24px, 5vw, 44px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
  margin-bottom: 30px;
}

.content-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.job-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
  white-space: pre-line;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.state-overlay {
  padding: 80px 20px;
  text-align: center;
  background: var(--white);
  border-radius: 32px;
  border: 1px dashed var(--border);
}

.back-nav {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 900px) {
  .jobs-toolbar {
    grid-template-columns: 1fr;
  }
}
