.hero {
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.95) 0%, rgba(146, 43, 33, 0.95) 60%);
  color: #fff;
  padding: 80px 20px;
  margin-bottom: 30px;
  border-radius: 18px;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0 0 10px;
  font-weight: 800;
  font-family: 'Merriweather', Georgia, serif;
}

.hero h2 {
  font-size: 1.25rem;
  margin: 0 0 18px;
  font-weight: 400;
  opacity: 0.95;
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 22px;
  opacity: 0.92;
}

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

.btn-primary {
  background: linear-gradient(90deg, #f8d46a, #e0b84c);
  color: #111;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.pdf-download-btn {
  background: linear-gradient(135deg, #f8d46a, #e0b84c);
  color: #111;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 10px;
}

.pdf-download-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(248, 212, 106, 0.4);
  background: linear-gradient(135deg, #ffe082, #f8d46a);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.print-btn {
  background-color: var(--mvp-accent-dark, #922B21);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.print-btn:hover {
  background-color: var(--mvp-accent, #C0392B);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.print-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  background: linear-gradient(90deg, #f8d46a, #e0b84c);
  color: #111;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-weight: 800;
  text-decoration: none;
  z-index: 2200;
  transition: transform .12s ease;
}

.sticky-cta:hover {
  transform: translateY(-4px);
}

.quick-facts {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 18px auto;
  padding: 8px;
}

.summary-card {
  max-width: 900px;
  margin: 30px auto;
  background: #fdfaf6;
  border-left: 6px solid #C0392B;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.summary-card h2 {
  color: #C0392B;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: 'Merriweather', Georgia, serif;
}

.summary-card p {
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #333;
}

.summary-card .more {
  display: inline-block;
  margin-top: 15px;
  background: var(--mvp-accent-dark, #922B21);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.summary-card .more:hover {
  transform: translateY(-2px);
  background: var(--mvp-accent, #C0392B);
  box-shadow: 0 6px 16px rgba(192, 57, 43, 0.3);
}

@media (max-width: 600px) {
  .summary-card {
    padding: 15px 12px;
    margin: 15px 8px;
    border-left-width: 4px;
  }
  
  .summary-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
    hyphens: auto;
    word-break: break-word;
  }

  .summary-card p {
    font-size: 18px;
    hyphens: auto;
    word-break: break-word;
  }
}

.fact {
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  min-width: 120px;
  text-align: center;
}

.fact .num {
  font-weight: 800;
  color: #C0392B;
  font-size: 1.2rem;
}

.fact .label {
  font-size: 0.85rem;
  color: #333;
}

.policies {
  max-width: 1100px;
  margin: 20px auto 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding: 0 18px;
}

.policy {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.policy h3 {
  margin: 0 0 8px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.05rem;
}

.policy p {
  margin: 0;
  color: #444;
  font-size: 0.95rem;
}

.policy .more {
  margin-top: 10px;
  display: inline-block;
  color: #C0392B;
  font-weight: 700;
  text-decoration: none;
}

.headline {
  background-color: rgb(223, 219, 219);
  border-radius: 32px;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C0392B;
  text-align: center;
  margin: 50px 0 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #C0392B;
}

.grundsatz-box {
  background: linear-gradient(135deg, #C0392B 0%, #922B21 100%);
  color: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 30px 0;
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.25);
}

.headline h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.headline h2 {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  color: #555;
  margin-bottom: 1.5rem;
}

.toc {
  max-width: 900px;
  margin: 10px auto 22px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.toc ul {
  list-style: none;
  padding: 6px 0 0 0;
  margin: 6px 0 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.toc li {
  margin: 0;
}

.toc a {
  text-decoration: none;
  color: #153A5B;
  font-weight: 700;
  font-size: 0.95rem;
}

.mvp-link {
  color: #C0392B;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.mvp-link:hover,
.mvp-link:focus {
  color: #922B21;
  border-color: #f8d46a;
  transform: translateY(-1px);
}

.form-accept {
  margin: .6rem 0;
  font-size: .98rem;
}

.form-accept label {
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}

.form-accept input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.form-accept .mvp-link {
  white-space: normal;
}

@media (max-width: 480px) {
  .form-accept {
    font-size: 0.96rem;
  }

  .form-accept label {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }

  .form-accept input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }

  .mvp-link {
    display: inline;
  }
}

@media (max-width: 320px) {
  .form-accept {
    font-size: 0.92rem;
  }

  .form-accept label {
    gap: .25rem;
  }
}

.toc strong {
  display: block;
  margin-bottom: 4px;
  color: #111;
}

details {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

details[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

details summary {
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 8px;
}

details summary::-webkit-details-marker {
  display: none;
}

.social-grid {
  max-width: 1100px;
  margin: 18px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 0 18px;
}

.social-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0;
}

.card-media {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  overflow: hidden;
  border-radius: 10px;
}

.social-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-input {
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 22px 22px;
  padding-left: 46px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  box-sizing: border-box;
}

#name.icon-input {
  background-image: url("../img/name.png");
}

#email.icon-input {
  background-image: url("../img/mail.png");
}

#phone.icon-input {
  background-image: url("../img/telefon.png");
}

#message.icon-input {
  background-image: none;
  padding-left: 12px;
}

.card-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.share {
  color: #333;
  text-decoration: underline;
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

form label {
  font-weight: 600;
  color: #333;
  margin-bottom: -8px;
  font-size: 0.95rem;
}

form input,
form textarea,
form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d0d0d0;
  font-size: 16px;
  background-color: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #C0392B;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.bewerbungsformular textarea {
  resize: none;
  min-height: 90px;
}

form input[aria-invalid="true"],
form textarea[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

.error-message {
  color: #c0392b;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.formular-erfolg {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.formular-fehler {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.btn-primary:disabled,
form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.privacy-note {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-top: -5px;
  background: #f9f9f9;
  padding: 12px;
  border-radius: 8px;
  border-left: 3px solid #C0392B;
}

form button {
  padding: 12px;
  background-color: #C0392B;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #922B21;
}

.popup {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: #27ae60;
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 2000;
}


.cta-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 1.1rem;
}

.cta-box a {
  font-weight: bold;
  color: #e0b84c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-box a:hover {
  color: #cfa73e;
  text-decoration: underline;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdf-download-btn .pdf-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}

.unterschrift {
  width: 250px;
  margin-top: 10px;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
}

.logoimg {
  animation: logoFloat 6s ease-in-out infinite;
  transition: transform 0.2s ease;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

.fade-up {
  animation: fadeUp .8s ease both;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .sticky-cta {
    right: 12px;
    bottom: 16px;
    padding: 10px 14px;
  }

  .quick-facts {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .headline h1 {
    font-size: 1.8rem;
  }

  .headline h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .headline h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .headline h2 {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
    padding: 0 12px;
    gap: 14px;
  }

  .social-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .card-media {
    width: 260px;
    height: 260px;
    margin: 0 auto;
    flex: 0 0 260px;
  }

  .social-thumb {
    height: 260px;
    object-fit: cover;
  }

  .card-body {
    padding: 12px 8px;
  }

  .card-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .social-card {
    text-align: center;
  }

  .card-body {
    padding: 10px 6px;
  }

  .card-media {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    flex: 0 0 180px;
  }

  .social-thumb {
    height: 180px;
  }

  .card-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .card-actions .btn {
    width: 120px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 64px 18px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 44px 16px;
    border-radius: 12px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    box-sizing: border-box;
  }

  .quick-facts {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .fact {
    width: 100%;
    max-width: 420px;
  }

  .policies {
    padding: 0 12px;
    gap: 12px;
  }

  .policy {
    padding: 14px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 28px 12px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 0.95rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-ctas {
    gap: 8px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px;
    border-radius: 10px;
  }

  .sticky-cta {
    display: none;
  }
}

.lead-section {
  max-width: 920px;
  margin: 28px auto 18px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.lead-section h2 {
  margin: 0 0 10px 0;
  color: #153A5B;
  font-size: 1.6rem;
  line-height: 1.2;
}

.lead-section p {
  margin: 10px 0;
  color: #222;
  font-size: 1rem;
}

.lead-section p strong {
  display: block;
  color: #111;
  font-size: 1.03rem;
  margin: 6px 0;
}

@media (max-width: 768px) {
  .lead-section {
    padding: 14px 12px;
    margin-top: 18px;
  }

  .lead-section h2 {
    font-size: 1.35rem;
  }
}

.lead-claims {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  margin-top: 14px;
}

.lead-claims .claim {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-claims .claim-title {
  font-weight: 800;
  color: #153A5B;
  font-size: 1.05rem;
  text-align: center;
}

@media (max-width: 680px) {
  .lead-claims {
    flex-direction: column;
    gap: 10px;
  }

  .lead-claims .claim {
    min-width: auto;
  }
}