/* ===== Variablen (Grün, Blau, Weiß) ===== */
:root {
  --hsc-green: #0d5c2e;
  --hsc-green-light: #1a7a3e;
  --hsc-green-dark: #084020;
  --hsc-blue: #1e4d7b;
  --hsc-blue-light: #2a6ba8;
  --hsc-blue-dark: #133554;
  --white: #ffffff;
  --off-white: #f5f8fa;
  --text: #1a1a1a;
  --text-muted: #4a5568;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

/* ===== Reset & Basis (W3C-orientiert) ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

/* Skip-Link: Zum Inhalt springen (WCAG 2.1, Barrierefreiheit) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--hsc-blue);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0.5rem;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--hsc-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--hsc-blue-dark);
}

/* Sichtbarer Fokus für Tastatur (W3C/WCAG) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--hsc-blue);
  outline-offset: 2px;
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.header-brand-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hsc-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.header-brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  max-width: 220px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-list a {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-list a:hover {
  background: var(--off-white);
  color: var(--hsc-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hsc-blue);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header-brand {
    gap: 0.65rem;
  }

  .header-brand-title {
    font-size: 0.95rem;
  }

  .header-brand-subtitle {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-strong);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition), opacity var(--transition);
  }

  .nav-list.is-open {
    max-height: 320px;
    opacity: 1;
  }

  .nav-list a {
    padding: 0.75rem 1rem;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hsc-green-dark) 0%, var(--hsc-green) 35%, var(--hsc-blue) 70%, var(--hsc-blue-dark) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.45s forwards;
}

.hero .btn-primary {
  opacity: 0;
  animation: fadeUp 0.6s ease 0.6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s ease, box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white);
  color: var(--hsc-green);
}

.btn-primary:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: var(--hsc-blue);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--hsc-blue-dark);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--hsc-blue);
}

.btn-pdf {
  background: var(--hsc-green);
  color: var(--white);
  border: 2px solid var(--hsc-green);
}

.btn-pdf:hover {
  background: var(--hsc-green-dark);
  border-color: var(--hsc-green-dark);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

/* ===== PDF-Modal (Mitgliedsantrag) ===== */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.pdf-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.pdf-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--hsc-blue-dark);
  color: var(--white);
}

.pdf-modal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pdf-modal-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.pdf-modal-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 3rem 3rem;
  overflow: auto;
}

.pdf-modal-hint {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pdf-modal-hint--top {
  margin: 0 0 1rem;
}

.pdf-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-outline-antrag {
  border: 2px solid var(--hsc-blue);
  color: var(--hsc-blue);
  background: transparent;
}

.btn-outline-antrag:hover {
  background: var(--off-white);
  color: var(--hsc-blue-dark);
}

/* ===== Antrag-Formular (ausfüllbar) ===== */
.antrag-form-wrap {
  flex: 1;
  min-height: 0;
  overflow: auto;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.antrag-form {
  max-width: 640px;
}

.antrag-screen {
  display: block;
}

.antrag-print {
  display: none;
}

.antrag-heading {
  font-size: 0.95rem;
  color: var(--hsc-blue-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.antrag-intro {
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.antrag-erklaerung {
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.5;
  color: var(--text);
}

.antrag-row--two {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.85rem;
  align-items: flex-end;
}

.antrag-row--two .antrag-field {
  flex: 1;
  min-width: 0;
}

.antrag-row--inline-small {
  display: flex;
  gap: 0.5rem;
}

.antrag-input--plz {
  width: 5rem;
  flex-shrink: 0;
}

.antrag-input--betrag {
  width: 6rem;
}

.antrag-label--hide {
  visibility: hidden;
}

.antrag-hinweis {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.antrag-select {
  cursor: pointer;
  appearance: auto;
}

.antrag-lieblingstext {
  font-size: 0.85rem;
  color: var(--hsc-green-dark);
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

.antrag-unterschrift-placeholder {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.antrag-block {
  margin-bottom: 1.25rem;
}

.antrag-block-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hsc-green-dark);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.antrag-row {
  margin-bottom: 0.85rem;
}

.antrag-row--inline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.antrag-field {
  flex: 0 0 auto;
  min-width: 0;
}

.antrag-field--grow {
  flex: 1;
  min-width: 120px;
}

.antrag-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.antrag-required {
  color: var(--hsc-blue);
}

.antrag-input {
  width: 100%;
  padding: 0.5rem 0.65rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background: var(--white);
  transition: border-color var(--transition);
}

.antrag-input:focus {
  border-color: var(--hsc-blue);
  box-shadow: 0 0 0 2px rgba(30, 77, 123, 0.2);
}

.antrag-input:focus-visible {
  outline: 2px solid var(--hsc-blue);
  outline-offset: 1px;
}

.antrag-input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.antrag-unterschrift {
  margin-bottom: 0.5rem;
}

.antrag-signature-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* ===== Sections ===== */
.section {
  padding: 4rem 1.5rem;
}

.section--alt {
  background: var(--white);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--hsc-blue-dark);
  margin: 0 0 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-title--light {
  color: var(--white);
}

/* ===== Content Grid (Über uns) ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.content-card {
  background: var(--off-white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 77, 123, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.content-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.content-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hsc-green-dark);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.content-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Goals List ===== */
.goals-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--hsc-green);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform 0.2s ease;
}

.goal-item:hover {
  border-left-color: var(--hsc-blue);
  transform: translateX(4px);
}

.goal-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--hsc-blue);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.goal-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hsc-blue-dark);
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.goal-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== CTA Section ===== */
.section--cta {
  background: linear-gradient(135deg, var(--hsc-blue) 0%, var(--hsc-blue-dark) 100%);
  color: var(--white);
}

.section--cta .container {
  text-align: center;
}

.cta-text {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.section--cta a {
  color: inherit;
}

/* ===== Contact ===== */
.contact-block {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 77, 123, 0.12);
}

.contact-block p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.contact-block p:last-of-type {
  margin-bottom: 1.5rem;
}

.contact-block .btn {
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--hsc-blue-dark);
  color: var(--white);
  padding: 2rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.footer-logo-link:hover .footer-logo {
  opacity: 1;
}

.footer-text {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-text a {
  color: var(--white);
  text-decoration: underline;
}

.footer-text a:hover {
  opacity: 0.85;
}

/* ===== Drucken: Antrag (6 mm Seitenrand, Inhalt mit Abstand) ===== */
@page {
  size: A4;
  margin: 6mm;
}

@media print {
  /* Alles ausblenden, was nicht gedruckt werden soll – nur .antrag-print drucken */
  body > a.skip-link,
  body > header,
  body > footer,
  main > .hero,
  main > .section {
    display: none !important;
    visibility: hidden !important;
  }
  body * {
    visibility: hidden;
  }
  main {
    display: block !important;
    visibility: visible !important;
  }
  /* Nur die Modal-Druckansicht (.antrag-print) sichtbar = nur 1 Dokument */
  .pdf-modal,
  .pdf-modal-box,
  .pdf-modal-body,
  .antrag-form-wrap,
  .antrag-form,
  .antrag-print,
  .antrag-print * {
    visibility: visible;
  }
  .antrag-screen,
  .antrag-screen * {
    display: none !important;
    visibility: hidden !important;
  }
  .antrag-print {
    display: block !important;
  }
  .pdf-modal {
    position: fixed;
    inset: 0;
    background: #fff;
    padding: 0;
    z-index: 99999;
    overflow: auto;
  }
  .pdf-modal-backdrop,
  .pdf-modal-close,
  .pdf-modal-header,
  .pdf-modal-hint--top,
  .pdf-modal-actions {
    display: none !important;
  }
  .pdf-modal-box {
    max-width: none;
    max-height: none;
    box-shadow: none;
    border-radius: 0;
  }
  .pdf-modal-body {
    padding: 0;
  }
  .antrag-form-wrap {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .antrag-print {
    padding-left: 10mm;
    padding-right: 10mm;
  }
  .antrag-print-page {
    page-break-inside: avoid;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10.5pt;
    line-height: 1.3;
    color: #000;
  }
  .antrag-print-title {
    font-size: 13pt;
    font-weight: bold;
    text-align: center;
    margin: 0 0 6pt;
    line-height: 1.25;
  }
  .antrag-print-empfaenger {
    margin: 0 0 6pt;
    font-size: 10pt;
  }
  .antrag-print-intro {
    font-weight: bold;
    margin: 0 0 3pt;
    font-size: 10.5pt;
  }
  .antrag-print-erklaerung {
    margin: 0 0 6pt;
    font-size: 10pt;
    text-align: justify;
    line-height: 1.25;
  }
  .antrag-print-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 5pt;
    font-size: 10.5pt;
  }
  .antrag-print-table td {
    padding: 2pt 6pt 3pt 0;
    vertical-align: bottom;
    border: none;
  }
  .antrag-print-label {
    font-weight: normal;
    width: 1%;
    white-space: nowrap;
    padding-right: 6pt;
  }
  .antrag-print-value {
    border-bottom: 1px solid #000;
    min-height: 1.25em;
  }
  .antrag-print-iban {
    letter-spacing: 0.04em;
  }
  .antrag-print-row {
    margin: 0 0 4pt;
    font-size: 10.5pt;
  }
  .antrag-print-label-inline {
    margin-right: 4pt;
  }
  .antrag-print-value-inline {
    border-bottom: 1px solid #000;
    padding: 0 4pt;
  }
  .antrag-print-hinweis {
    margin: 0 0 5pt;
    font-size: 9pt;
  }
  .antrag-print-lieblingstext {
    margin: 0 0 6pt;
    font-size: 9.5pt;
  }
  .antrag-print-table--unterschrift td {
    padding-top: 8pt;
  }
  .antrag-print-unterschrift {
    border-bottom: 1px solid #000;
    min-width: 50mm;
  }
  .antrag-print-page--zweck {
    font-size: 9.5pt;
    padding-top: 8pt;
    line-height: 1.25;
  }
  .antrag-print-zweck-title {
    font-weight: bold;
    margin: 0 0 4pt;
    font-size: 10.5pt;
  }
  .antrag-print-zweck {
    margin: 0 0 6pt;
    font-size: 9pt;
    text-align: justify;
    line-height: 1.25;
  }
  .antrag-print-zweck-schluss {
    margin: 0 0 6pt;
    font-size: 9.5pt;
    font-weight: bold;
  }
  .antrag-print-footer {
    margin: 0;
    font-size: 9pt;
    line-height: 1.35;
  }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
