/* Kraftwerk – statischer Onepager, Systemfonts, keine externen Abhängigkeiten */
:root {
  --bg: #14161a;
  --bg-elevated: #1c2028;
  --bg-card: #232830;
  --text: #eef1f5;
  --text-muted: #9aa3b2;
  --accent: #0f9d91;
  --accent-hover: #14c4b6;
  --accent-soft: rgba(15, 157, 145, 0.14);
  --accent-border: rgba(15, 157, 145, 0.3);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(20, 22, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
}

.logo .logo__accent {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.nav a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--accent);
  color: #041816 !important;
  font-weight: 600;
  padding: 0.55rem 1rem !important;
  border-radius: 10px;
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: #05221f !important;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-header--simple .nav-toggle {
    display: none;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    display: none;
    box-shadow: var(--shadow);
  }

  .site-header--simple .nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 0.5rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 8px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Sections */
.section {
  padding: 4.5rem 1.25rem;
}

.section--tight {
  padding-top: 2rem;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.section__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 0 0 2rem;
}

/* Hero */
.hero {
  padding: 3rem 1.25rem 4.5rem;
  background: linear-gradient(165deg, var(--bg) 0%, #1a1e28 45%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  max-width: 520px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.hero__sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, transform 0.1s ease;
}

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

.btn--primary {
  background: var(--accent);
  color: #041816;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #05221f;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.15);
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
}

.hero__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #1e2229;
  position: relative;
  margin: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.5rem 1rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(to top, rgba(10, 12, 16, 0.92) 0%, transparent 100%);
}

.hero__caption span {
  color: var(--accent);
  font-weight: 700;
}

.hero__visual-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__visual-placeholder strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: center;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .section__split {
    grid-template-columns: 1fr;
  }
}

.section__split-text .section__lead {
  max-width: none;
}

.check-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.95rem;
}

.check-list li::marker {
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.15s ease;
}

.feature-card:hover {
  border-color: var(--accent-border);
}

.feature-card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.feature-card p strong {
  color: var(--text);
  font-weight: 600;
}

.real-shots__title {
  margin: 1.75rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.real-shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 640px) {
  .real-shots {
    grid-template-columns: 1fr;
  }
}

.real-shots .media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.media-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #1e2229;
}

.media-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.media-frame--tall img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  min-height: 240px;
}

.media-frame__cap {
  padding: 0.65rem 1rem;
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.visual-strip {
  width: 100%;
  max-height: min(48vh, 440px);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.visual-strip img {
  width: 100%;
  height: min(48vh, 440px);
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.section--post-visual {
  padding-top: 3.5rem;
}

.contact-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
}

.contact-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 42%;
}

.contact-visual figcaption {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 800px) {
  .contact-visual {
    position: static;
  }
}

/* Cards grid */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.15s ease;
}

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

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead th {
  text-align: left;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

thead th:nth-child(3),
thead th:nth-child(4) {
  text-align: right;
}

tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.15);
}

td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.notice-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.notice-box strong {
  color: var(--text);
}

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .packages {
    grid-template-columns: 1fr;
  }
}

.package {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.package h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.package ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.package .price-tag {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.25rem;
  height: 2.25rem;
  background: var(--accent);
  color: #041816;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.benefit {
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.benefit strong {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.benefit span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item button::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-panel {
  display: none;
  padding-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem;
  background: var(--bg-elevated);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer a:hover {
  color: var(--text);
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.25rem 4rem;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-page ol {
  padding-left: 1.35rem;
  margin: 0.5rem 0 1rem;
}

.legal-page ol li {
  margin-bottom: 0.45rem;
}

.legal-page .placeholder {
  background: var(--accent-soft);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--accent);
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* Übergabe-Checkliste — Dokumentlayout (Bildschirm + Druck/PDF) */
.checklist-page {
  max-width: 52rem;
}

.print-only {
  display: none !important;
}

/* Dokumentrahmen: seitlicher Akzent (Screen + mit Farbwahrung im Druck) */
.checklist-doc {
  position: relative;
  margin: 1.25rem 0 2.5rem;
  padding-left: 1.1rem;
}

.checklist-doc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #14b5a8 0%, #0f9d91 35%, #0a6b62 78%, #1c2524 100%);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
}

.checklist-doc::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--accent-border) 20%,
    var(--accent-border) 80%,
    transparent
  );
  opacity: 0.9;
  pointer-events: none;
}

.checklist-doc__surface {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.35rem 1.5rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist-doc__head {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.checklist-doc__logo-wrap {
  flex-shrink: 0;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.checklist-doc__logo {
  display: block;
  width: 72px;
  height: auto;
  border-radius: 6px;
}

.checklist-doc__brand {
  min-width: 0;
}

.checklist-doc__brand-line {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.checklist-doc__brand-accent {
  color: var(--accent);
  letter-spacing: 0.1em;
}

.checklist-doc__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 3.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

.checklist-doc__lead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 36rem;
}

.checklist-meta {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.checklist-meta__row {
  display: grid;
  grid-template-columns: minmax(132px, 38%) 1fr;
  gap: 0.65rem;
  align-items: center;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checklist-meta__row--multiline {
  align-items: start;
}

.checklist-meta__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checklist-meta__label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
  padding-top: 0;
}

.checklist-meta__row--multiline .checklist-meta__label {
  padding-top: 0.45rem;
}

.checklist-field {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.4rem 0.5rem;
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-height: 2.35rem;
  box-sizing: border-box;
}

.checklist-field::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}

.checklist-field:focus {
  outline: none;
  border-color: var(--accent-border);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.checklist-field--area {
  min-height: 3.75rem;
  resize: vertical;
  display: block;
}

.checklist-date-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checklist-date-row__label {
  font-weight: 600;
  flex-shrink: 0;
  margin: 0;
}

.checklist-date-row .checklist-field {
  flex: 1 1 12rem;
  min-width: 10rem;
}

.checklist-section {
  margin-top: 1.5rem;
}

.checklist-meta + .checklist-section {
  margin-top: 0.35rem;
}

.checklist-section h2 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.checklist-section h2::before {
  content: "";
  width: 3px;
  height: 1.05em;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.95;
}

.checklist-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0.38rem 0.45rem 0.38rem 0.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.12s ease;
}

.checklist-option:hover {
  background: var(--accent-soft);
}

.checklist-option + .checklist-option {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.checklist-option input[type="checkbox"] {
  margin-top: 0.22rem;
  flex-shrink: 0;
  width: 1.05em;
  height: 1.05em;
  accent-color: var(--accent);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.checklist-option--composite {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
}

.checklist-option--composite > input[type="checkbox"] {
  margin-top: 0.3rem;
}

.checklist-option__label-text {
  flex: 1 1 14rem;
  min-width: min(100%, 11rem);
  color: inherit;
}

.checklist-field--in-option {
  width: 5.75rem;
  min-width: 4.5rem;
  min-height: 2rem;
  padding: 0.28rem 0.45rem;
  font-size: 0.88rem;
}

.checklist-option__suffix {
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}

.checklist-option__tail {
  flex: 1 1 10rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.checklist-option--stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
}

.checklist-option__row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checklist-field--below-checkbox {
  align-self: stretch;
  margin-left: calc(1.05em + 0.65rem);
  width: auto;
  max-width: 100%;
  min-height: 2.35rem;
  box-sizing: border-box;
}

@media (max-width: 520px) {
  .checklist-field--below-checkbox {
    margin-left: 0;
  }
}

.checklist-more__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 0.45rem;
}

.checklist-field--more {
  min-height: 5.5rem;
}

.checklist-option strong {
  color: var(--text);
}

.checklist-sign-hint {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.checklist-section:has(.checklist-lines),
.checklist-section--signatures {
  padding: 1rem 1rem 0.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--accent-border);
  border-radius: 10px;
}

.checklist-lines {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checklist-lines .line {
  border-bottom: 1px dashed var(--border);
  min-height: 1.75rem;
  margin-bottom: 0.5rem;
}

.checklist-lines--date {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.signature-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 0.35rem;
}

@media (min-width: 640px) {
  .signature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }
}

.signature-field__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.signature-pad-wrap {
  position: relative;
}

.signature-pad-wrap canvas {
  display: block;
  width: 100%;
  height: 128px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  touch-action: none;
  cursor: crosshair;
  box-sizing: border-box;
}

.signature-pad-wrap.is-drawing canvas {
  box-shadow: 0 0 0 2px var(--accent-border);
}

.btn-signature-clear {
  margin-top: 0.45rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.btn-signature-clear:hover {
  color: var(--text);
  border-color: var(--accent-border);
}

.checklist-sign-hint--fine {
  font-size: 0.78rem;
  margin-top: 1rem;
  opacity: 0.92;
}

.checklist-doc__print-note {
  margin: 1.35rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.checklist-toolbar {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.checklist-toolbar--after {
  margin-top: 2rem;
  margin-bottom: 0;
}

.checklist-toolbar__intro {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checklist-toolbar__intro strong {
  color: var(--text);
}

.checklist-toolbar__intro a {
  color: var(--accent);
  font-weight: 600;
}

.checklist-toolbar__row {
  margin-bottom: 1rem;
}

.checklist-toolbar__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.checklist-toolbar__input {
  width: 100%;
  max-width: 28rem;
}

.checklist-toolbar__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.checklist-toolbar .btn-print {
  margin-bottom: 0;
}

.btn-print {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--accent);
  color: #041816;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn-print:hover {
  background: var(--accent-hover);
}

.btn-print:disabled {
  opacity: 0.65;
  cursor: wait;
}

.btn-print--quiet {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  box-shadow: none;
}

.btn-print--quiet:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.btn-print--after {
  margin-top: 2rem;
  margin-bottom: 0.25rem;
}

@media print {
  @page {
    size: A4;
    margin: 12mm 14mm 14mm;
  }

  body {
    background: #fff !important;
    color: #1a1d22 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .site-header,
  .site-footer,
  .back-link,
  .no-print,
  .btn-print {
    display: none !important;
  }

  .print-only {
    display: block !important;
  }

  .checklist-page,
  .legal-page {
    padding: 0 !important;
    max-width: 100% !important;
  }

  .checklist-doc {
    margin: 0 !important;
    padding-left: 10px !important;
  }

  .checklist-doc::before {
    width: 4px !important;
    border-radius: 2px !important;
    background: #0d8a80 !important;
    box-shadow: none !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .checklist-doc::after {
    left: 6px !important;
    background: #c5ddd9 !important;
    opacity: 1 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .checklist-doc__head {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .checklist-doc__surface {
    background: #fff !important;
    border: 1px solid #e2e6ea !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    padding: 0.6rem 0.9rem 0.85rem 1.1rem !important;
  }

  .checklist-section:has(.checklist-lines),
  .checklist-section--signatures {
    break-inside: avoid;
    page-break-inside: avoid;
    background: #fafbfb !important;
    border-color: #c5ddd9 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .checklist-doc__logo-wrap {
    background: #f6f8f9 !important;
    border-color: #e2e6ea !important;
  }

  .checklist-doc__brand-line {
    color: #5c6570 !important;
  }

  .checklist-doc__brand-accent {
    color: #0d6b62 !important;
  }

  .checklist-doc__title {
    color: #1a1d22 !important;
  }

  .checklist-doc__lead {
    color: #4a5259 !important;
  }

  .checklist-meta {
    background: #f7f9fa !important;
    border-color: #dee3e7 !important;
  }

  .checklist-meta__row {
    border-bottom-color: #e8ecef !important;
  }

  .checklist-meta__label {
    color: #4a5259 !important;
  }

  .checklist-field,
  textarea.checklist-field {
    background: #fff !important;
    border: 1px solid #b8c2ca !important;
    color: #1a1d22 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    box-shadow: none !important;
  }

  .checklist-option__tail,
  .checklist-more__label {
    color: #4a5259 !important;
  }

  .checklist-option__suffix {
    color: #1a1d22 !important;
  }

  .checklist-date-row__label {
    color: #4a5259 !important;
  }

  .checklist-option,
  .checklist-meta,
  .legal-page p,
  .legal-page li,
  .checklist-lines,
  .checklist-sign-hint,
  .checklist-doc__print-note {
    color: #2b3137 !important;
  }

  .checklist-section h2 {
    color: #1a1d22 !important;
  }

  .checklist-section h2::before {
    background: #0d8a80 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .checklist-option {
    background: transparent !important;
    border-radius: 0 !important;
  }

  .checklist-option:hover {
    background: transparent !important;
  }

  .checklist-option + .checklist-option {
    border-top-color: #ebeff2 !important;
  }

  .checklist-option input[type="checkbox"] {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    accent-color: #0d6b62 !important;
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
  }

  .signature-field__label {
    color: #4a5259 !important;
  }

  .signature-pad-wrap canvas {
    border: 1px solid #889099 !important;
    background: #fff !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .checklist-option strong {
    color: #1a1d22 !important;
  }

  .checklist-lines .line {
    border-color: #889099 !important;
  }

  a {
    color: #1a1d22 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
  }
}
