.k6-page {
  color: #1f2933;
}

.k6-versorgung {
  --k6-blue: #00305c;
  --k6-blue-dark: #06254a;
  --k6-red: #9b1748;
  --k6-light: #f4f7fa;
  --k6-line: #dbe3ea;
  --k6-shadow: 0 24px 60px rgba(0, 48, 92, .14);
}

.k6-hero-section {
  padding: 45px 0 55px;
}

.k6-hero-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  align-items: stretch;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fb 45%, #eaf1f7 100%);
  border: 1px solid var(--k6-line);
  box-shadow: var(--k6-shadow);
  padding: 55px;
  position: relative;
  overflow: hidden;
}

.k6-hero-card:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: rgba(155, 23, 72, .09);
  border-radius: 50%;
}

.k6-eyebrow {
  display: inline-block;
  color: var(--k6-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 16px;
}

.k6-hero-content h1 {
  color: var(--k6-blue);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 22px;
}

.k6-hero-content p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 720px;
}

.k6-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.k6-btn-primary,
.k6-btn-secondary {
  display: inline-block;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.k6-btn-primary {
  background: var(--k6-blue);
  color: #fff;
}

.k6-btn-primary:hover {
  background: var(--k6-blue-dark);
  color: #fff;
  transform: translateY(-2px);
}

.k6-btn-secondary {
  border: 1px solid var(--k6-blue);
  color: var(--k6-blue);
  background: #fff;
}

.k6-btn-secondary:hover {
  background: var(--k6-blue);
  color: #fff;
  transform: translateY(-2px);
}

.k6-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.k6-document-card {
  background: #fff;
  border-top: 5px solid var(--k6-red);
  box-shadow: 0 18px 45px rgba(0,0,0,.13);
  padding: 32px;
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 2;
}

.k6-document-card span {
  color: var(--k6-red);
  font-weight: 700;
  font-size: 13px;
}

.k6-document-card h3 {
  color: var(--k6-blue);
  font-size: 24px;
  line-height: 1.25;
  margin: 14px 0 22px;
}

.k6-document-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.k6-document-card li {
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid #edf1f4;
  position: relative;
}

.k6-document-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--k6-red);
  font-weight: 800;
}

.k6-value-badge {
  position: absolute;
  top: 10px;
  right: 0;
  background: var(--k6-red);
  color: #fff;
  padding: 18px 22px;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(155, 23, 72, .28);
}

.k6-value-badge strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.k6-value-badge span {
  display: block;
  font-size: 12px;
  margin-top: 6px;
}

.k6-intro-section {
  padding-top: 20px;
  padding-bottom: 35px;
}

.k6-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--k6-blue);
  font-weight: 600;
}

.k6-benefit-section {
  margin-bottom: 65px;
}

.k6-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.k6-benefit-card {
  background: #fff;
  border: 1px solid var(--k6-line);
  padding: 30px;
  box-shadow: 0 12px 32px rgba(0, 48, 92, .08);
  transition: all .2s ease;
}

.k6-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 48, 92, .14);
}

.k6-benefit-card span {
  color: var(--k6-red);
  font-size: 13px;
  font-weight: 800;
}

.k6-benefit-card h3 {
  color: var(--k6-blue);
  font-size: 22px;
  margin: 14px 0 12px;
}

.k6-process-section {
  background: var(--k6-light);
  padding: 55px 0;
  margin-bottom: 55px;
}

.k6-process-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.k6-process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
  background: #fff;
  padding: 25px;
  border-left: 4px solid var(--k6-red);
  box-shadow: 0 8px 24px rgba(0, 48, 92, .08);
}

.k6-process-number {
  width: 48px;
  height: 48px;
  background: var(--k6-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
}

.k6-process-item h3 {
  color: var(--k6-blue);
  margin: 0 0 8px;
  font-size: 21px;
}

.k6-process-item p {
  margin: 0;
}

.k6-partner-section {
  margin-bottom: 55px;
}

.k6-partner-box {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 35px;
  align-items: center;
  border: 1px solid var(--k6-line);
  padding: 40px;
  background: #fff;
}

.k6-partner-box h2 {
  color: var(--k6-blue);
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 16px;
}

.k6-partner-highlight {
  background: var(--k6-blue);
  color: #fff;
  padding: 30px;
}

.k6-partner-highlight strong {
  display: block;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.k6-partner-highlight span {
  opacity: .9;
}

.k6-cta-section {
  margin-bottom: 90px;
  scroll-margin-top: 110px;
}

.k6-cta-box {
  background: linear-gradient(135deg, var(--k6-blue), #0d477b);
  color: #fff;
  padding: 45px;
  text-align: center;
  box-shadow: var(--k6-shadow);
}

.k6-cta-box h2 {
  color: #fff;
  font-size: 32px;
  margin: 0 0 16px;
}

.k6-cta-box p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
}

.k6-cta-box {
  position: relative;
  overflow: hidden;
}

.k6-cta-box:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.k6-cta-box:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(155, 23, 72, .35);
}

.k6-cta-box > * {
  position: relative;
  z-index: 2;
}

.k6-cta-box .k6-btn-primary {
  border-radius: 0;
  padding: 16px 30px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.k6-cta-box .k6-btn-primary {
  background: #fff;
  color: var(--k6-blue);
}

.k6-cta-box .k6-btn-primary:hover {
  background: var(--k6-red);
  color: #fff;
}

.k6-contact-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px;
  text-align: left;
  background: #fff;
  color: #1f2933;
}

.k6-contact-panel p {
  color: inherit;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.k6-contact-panel a {
  color: var(--k6-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.k6-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.k6-form-field { min-width: 0; }
.k6-form-field-wide { grid-column: 1 / -1; }

.k6-contact-form label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  line-height: 1.5;
}

.k6-contact-form input:not([type="checkbox"]):not([type="hidden"]),
.k6-contact-form textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #8193a4;
  border-radius: 0;
  background: #fff;
  color: #1f2933;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
}

.k6-contact-form textarea { resize: vertical; }

.k6-contact-panel :focus-visible {
  outline: 3px solid var(--k6-blue);
  outline-offset: 3px;
}

.k6-contact-form [aria-invalid="true"] { border-color: #a11538; }

.k6-field-error {
  display: block;
  margin-top: 7px;
  color: #a11538;
  font-size: 14px;
  line-height: 1.5;
}

.k6-form-optional,
.k6-contact-panel .k6-form-help {
  color: #526170;
  font-size: 14px;
  font-weight: 400;
}

.k6-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
}

.k6-form-consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--k6-blue);
}

.k6-form-consent label { font-weight: 400; font-size: 14px; }

.k6-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.k6-contact-form .k6-btn-primary {
  border: 0;
  background: var(--k6-blue);
  color: #fff;
  font: inherit;
  font-weight: 700;
  white-space: normal;
  cursor: pointer;
}

.k6-contact-form .k6-btn-primary:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.k6-form-notice {
  padding: 20px;
  margin-bottom: 24px;
  background: var(--k6-light);
  border-left: 4px solid var(--k6-blue);
  overflow-wrap: anywhere;
}

.k6-form-notice strong { display: block; margin-bottom: 8px; }
.k6-form-notice p:last-child { margin-bottom: 0; }
.k6-form-notice ul { padding-left: 20px; }
.k6-form-error { background: #fff1f3; border-color: #a11538; }
.k6-form-success { background: #edf8f1; border-color: #287044; margin-bottom: 0; }

.k6-form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 575px) {
  .k6-contact-panel { padding: 20px 16px; }
  .k6-form-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .k6-form-actions .k6-btn-primary { width: 100%; padding: 14px 16px; }
  .k6-cta-section .k6-cta-box { padding: 28px 16px; }
  .k6-cta-box h2 { font-size: 26px; }
}

@media (max-width: 991px) {
  .k6-hero-card,
  .k6-partner-box {
    grid-template-columns: 1fr;
  }

  .k6-benefit-grid {
    grid-template-columns: 1fr;
  }

  .k6-hero-content h1 {
    font-size: 34px;
  }

  .k6-value-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 18px;
  }
}

@media (max-width: 575px) {
  .k6-hero-card,
  .k6-partner-box,
  .k6-cta-box {
    padding: 28px;
  }

  .k6-hero-content h1 {
    font-size: 29px;
  }

  .k6-process-item {
    grid-template-columns: 1fr;
  }
}
.k6-video-section {
  margin-top: -20px;
  margin-bottom: 60px;
}

.k6-video-box {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 35px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--k6-line);
  box-shadow: 0 18px 45px rgba(0, 48, 92, .10);
  padding: 38px;
}

.k6-video-content h2 {
  color: var(--k6-blue);
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 16px;
}

.k6-video-content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.k6-video-frame {
  position: relative;
  background: #071f3d;
  box-shadow: 0 20px 45px rgba(0, 48, 92, .18);
  overflow: hidden;
}

.k6-video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .k6-video-box {
    grid-template-columns: 1fr;
  }
}
