/* LHG Webdesign — site styles, built on the design-system tokens */

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { background: var(--bg-page); overflow-x: clip; }

a { color: var(--brand-primary); text-decoration: none; }
a:hover { color: var(--brand-primary-hover); text-decoration: underline; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

section { padding: var(--section-padding-y) 0; }

#leistungen { padding-top: calc(var(--section-padding-y) - var(--space-lg)); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-default);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.wordmark {
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  color: var(--text-primary);
}
.wordmark:hover { color: var(--text-primary); text-decoration: none; }
.wordmark span { color: var(--brand-primary); }
.wordmark { display: inline-flex; align-items: center; gap: 8px; }
.wm-chip {
  background: var(--brand-primary-soft);
  color: var(--brand-primary) !important;
  padding: 3px 9px;
  border-radius: 8px;
  transform: skewX(-6deg);
  display: inline-block;
}
.wm-rest {
  font-style: italic;
  font-weight: var(--font-weight-semibold, 600);
  color: var(--text-primary) !important;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-small-size);
  transition: color var(--transition-fast);
}
.nav-links a:hover { color: var(--text-primary); text-decoration: none; }
.nav-cta { flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-size: var(--text-body-size);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--brand-primary); color: var(--text-on-brand); }
.btn-primary:hover { background: var(--brand-primary-hover); color: var(--text-on-brand); }
.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-default);
}
.btn-secondary:hover { background: var(--gray-50); color: var(--text-primary); }
.btn-sm { padding: 8px 16px; font-size: var(--text-small-size); }
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: var(--text-micro-size);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-lh);
  font-weight: var(--text-h2-weight);
  letter-spacing: var(--text-h2-tracking);
  margin: 0 0 var(--space-sm);
}
.section-lead {
  color: var(--text-secondary);
  font-size: var(--text-body-lg-size);
  line-height: var(--text-body-lg-lh);
  max-width: 640px;
  margin: 0 0 var(--space-xl);
  text-wrap: pretty;
}

/* ---------- Hero ---------- */
.hero { padding: var(--space-3xl) 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: stretch;
}
.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: var(--text-display-lh);
  font-weight: var(--text-display-weight);
  letter-spacing: var(--text-display-tracking);
  margin: 0 0 var(--space-md);
  text-wrap: pretty;
}
.hero p.sub {
  color: var(--text-secondary);
  font-size: var(--text-body-lg-size);
  line-height: var(--text-body-lg-lh);
  margin: 0 0 var(--space-lg);
  max-width: 480px;
  text-wrap: pretty;
}
.hero-cta-note {
  font-size: var(--text-small-size);
  color: var(--text-muted);
  margin-top: var(--space-sm);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary-border);
  border-radius: var(--radius-full);
  font-size: var(--text-micro-size);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  padding: 4px 12px;
  margin-bottom: var(--space-md);
}

/* Mobile diagonal before/after (hidden on desktop) */
.ba-split { display: none; }

/* Before/after mockups */
.ba-stack {
  position: relative;
  height: 100%;
  min-height: 420px;
  width: 100%;
  max-width: 440px;
  justify-self: end;
}
.ba-stack .mockup { position: absolute; }
.mockup-before {
  top: 4%;
  left: 0;
  width: 70%;
  transform: rotate(-2deg);
  z-index: 1;
}
.mockup-after {
  bottom: 4%;
  right: 0;
  width: 82%;
  transform: rotate(2deg);
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.mockup {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-surface-soft);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}
.mockup-label {
  margin-left: auto;
  font-size: var(--text-micro-size);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mockup-label.after { color: var(--brand-primary); }
.mockup-body img { width: 100%; height: auto; display: block; }
.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  padding: 5px 12px 5px 6px;
  font-size: var(--text-micro-size);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  white-space: nowrap;
}
.float-chip i {
  font-style: normal;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.chip-bad i { background: var(--status-error-bg); color: var(--status-error-fg); }
.chip-good i { background: var(--status-success-bg); color: var(--status-success-fg); }

.ba-arrow {
  justify-self: center;
  color: var(--brand-primary);
  font-size: 1.25rem;
  line-height: 1;
}

/* ---------- Cards / grids ---------- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md);
}
.card h3 {
  font-size: var(--text-h4-size);
  font-weight: var(--text-h4-weight);
  margin: 0 0 var(--space-xs);
}
.card p {
  color: var(--text-secondary);
  font-size: var(--text-small-size);
  line-height: var(--text-small-lh);
  margin: 0;
}
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }

.card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.card-icon svg { width: 20px; height: 20px; }

/* ---------- USP section ---------- */
.usp { background: var(--bg-surface); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.usp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.usp-highlight {
  background: var(--brand-primary-soft);
  border: 1px solid var(--brand-primary-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.usp-highlight h3 {
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  letter-spacing: var(--text-h3-tracking);
  margin: 0 0 var(--space-xs);
}
.usp-highlight p { color: var(--text-secondary); margin: 0 0 var(--space-md); text-wrap: pretty; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-sm); }
.usp-grid .check-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 34px;
}
.check-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.check-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--status-success-bg);
  color: var(--status-success-fg);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-list .check svg { width: 12px; height: 12px; }
.check-list strong { display: block; font-weight: var(--font-weight-semibold); }
.check-list span.desc { color: var(--text-secondary); font-size: var(--text-small-size); }

/* ---------- Services: included strip ---------- */
.service-card { padding: var(--space-lg); }
.service-card-grid {
  display: block;
}
.services-included {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-default);
}
.services-included h3 {
  font-size: var(--text-h4-size);
  font-weight: var(--text-h4-weight);
  margin: 0 0 var(--space-sm);
}
.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-lg);
}
.included-list li { display: flex; gap: var(--space-xs); align-items: center; }
.included-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-primary-soft);
  color: var(--brand-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.included-list .check svg { width: 12px; height: 12px; }
.services-extra-cards { margin-top: var(--space-sm); }
.price-cta {
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) var(--space-lg);
}
.price-cta span { color: var(--text-secondary); text-wrap: pretty; }
.price-cta .btn { flex-shrink: 0; }
.services-extra {
  margin: var(--space-md) 0 0;
  color: var(--text-secondary);
  font-size: var(--text-small-size);
  text-wrap: pretty;
}

/* ---------- Value section ---------- */
.value-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.value-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.value-item h3 { font-size: var(--text-body-size); font-weight: var(--font-weight-semibold); margin: 0 0 4px; }
.value-item p { color: var(--text-secondary); font-size: var(--text-small-size); margin: 0; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); min-width: 0; }
.step > div { min-width: 0; }
.step p, .step h3 { overflow-wrap: break-word; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.step-highlight {
  grid-column: 1 / -1;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  background: var(--brand-primary-soft);
  border-color: var(--brand-primary-border);
}
.step-celebrate {
  width: 48px;
  height: 48px;
  color: var(--brand-primary);
  margin-right: var(--space-sm);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--text-on-brand);
  font-weight: var(--font-weight-bold);
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: var(--text-h4-size); font-weight: var(--text-h4-weight); margin: 0 0 4px; }
.step p { color: var(--text-secondary); margin: 0; max-width: 560px; }
.note-box {
  margin-top: var(--space-lg);
  background: var(--bg-surface-soft);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: var(--text-secondary);
  font-size: var(--text-small-size);
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}
.note-box svg { width: 16px; height: 16px; color: var(--brand-primary); flex-shrink: 0; }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-surface); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.price-card { padding: var(--space-lg); display: flex; flex-direction: column; }
.price-card .price {
  font-size: 2.5rem;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.02em;
  margin: var(--space-xs) 0;
}
.price-card .price small { font-size: var(--text-small-size); font-weight: var(--font-weight-regular); color: var(--text-muted); }
.price-card ul { list-style: none; margin: var(--space-sm) 0 var(--space-md); padding: 0; display: grid; gap: 8px; flex: 1; }
.price-card li {
  color: var(--text-secondary);
  font-size: var(--text-small-size);
  display: flex; gap: 8px; align-items: center;
}
.price-card li svg { width: 14px; height: 14px; color: var(--status-success-fg); flex-shrink: 0; }
.price-note { color: var(--text-secondary); font-size: var(--text-small-size); margin-top: var(--space-md); max-width: 640px; }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, min-content);
  grid-auto-flow: column;
  gap: var(--space-sm);
  align-items: start;
}
.faq-item { align-self: start; }
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-weight: var(--font-weight-semibold);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { color: var(--text-muted); transition: transform var(--transition-base); flex-shrink: 0; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .answer {
  padding: 0 var(--space-md) var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-small-size);
  line-height: var(--text-small-lh);
  max-width: 620px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--space-2xl); align-items: start; }
.form-card { padding: var(--space-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: var(--text-small-size);
  font-weight: var(--font-weight-medium);
}
.field label .opt { color: var(--text-muted); font-weight: var(--font-weight-regular); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans);
  font-size: var(--text-body-size);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: var(--shadow-focus);
}
.field .error-msg { display: none; color: var(--status-error-fg); font-size: var(--text-micro-size); }
.field.invalid input, .field.invalid textarea { border-color: var(--status-error-fg); }
.field.invalid .error-msg { display: block; }
.form-success {
  display: none;
  background: var(--status-success-bg);
  color: var(--status-success-fg);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-small-size);
  margin-top: var(--space-sm);
}
.form-success.visible { display: block; }
.form-privacy {
  margin: var(--space-md) 0 0;
  font-size: 13px;
  color: var(--text-muted);
  text-wrap: pretty;
}
.form-privacy a { text-decoration: underline; }
.contact-aside p { color: var(--text-secondary); text-wrap: pretty; }
.next-steps { margin-top: var(--space-lg); }
.next-steps h3 {
  font-size: var(--text-h4-size);
  font-weight: var(--text-h4-weight);
  margin: 0 0 var(--space-sm);
}
.next-steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}
.next-steps li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-small-size);
}
.next-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-primary-soft);
  border: 1px solid var(--brand-primary-border);
  color: var(--brand-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-micro-size);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-aside .email-line {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
  font-weight: var(--font-weight-medium);
  margin-top: var(--space-md);
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  justify-content: space-between;
  gap: 60px;
  padding-right: 60px;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-on-dark);
}
footer .wordmark { color: var(--text-on-dark); }
footer .wm-rest { color: var(--text-on-dark) !important; }
footer .wordmark:hover { color: var(--blue-200); text-decoration: none; }
.footer-email {
  color: var(--text-on-dark);
  font-size: var(--text-small-size);
}
.footer-email:hover { color: var(--blue-200); }
footer p { color: var(--text-on-dark-muted); font-size: var(--text-small-size); max-width: 320px; }
.footer-col h4 {
  font-size: var(--text-micro-size);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin: 0 0 var(--space-sm);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--text-on-dark); font-size: var(--text-small-size); }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-col li { color: var(--text-on-dark); font-size: var(--text-small-size); }
.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  color: var(--text-on-dark-muted);
  font-size: var(--text-micro-size);
}

/* ---------- Back to top ---------- */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-fast);
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { background: var(--gray-50); }
#backToTop:active { transform: scale(0.98); }
#backToTop svg { width: 18px; height: 18px; }

/* ---------- Legal pages ---------- */
.legal-page { max-width: 720px; margin: 0 auto; padding: var(--space-2xl) var(--section-padding-x) var(--space-3xl); }
.legal-page h1 { font-size: var(--text-h1-size); font-weight: var(--text-h1-weight); letter-spacing: var(--text-h1-tracking); margin: 0 0 var(--space-lg); overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; }
.legal-page h2 { font-size: var(--text-h3-size); font-weight: var(--text-h3-weight); margin: var(--space-lg) 0 var(--space-xs); }
.legal-page p { color: var(--text-secondary); }
.legal-placeholder {
  background: var(--bg-surface-soft);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  color: var(--text-muted);
  font-size: var(--text-small-size);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .usp-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .ba-stack { min-height: 0; height: auto; aspect-ratio: 4 / 3; max-width: 480px; order: -1; margin: 0 auto; }
}

@media (max-width: 640px) {
  .ba-stack { aspect-ratio: 3.4 / 3; max-width: 400px; }
  .mockup-before { width: 62%; top: 6%; left: 0; }
  .mockup-after { width: 74%; bottom: 6%; right: 0; }
  .float-chip { font-size: 12px; }
  .chip-bad:nth-of-type(2) { display: none; }
  .chip-good:nth-of-type(5) { display: none; }
  .chip-bad:nth-of-type(3) { left: 0 !important; }
  .chip-good:nth-of-type(4) { right: 0 !important; }
  .chip-good:nth-of-type(6) { bottom: -3% !important; right: 4% !important; }
}

@media (max-width: 960px) {
  .usp-grid .check-list { margin-top: 0; justify-content: flex-start; gap: var(--space-sm); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  :root { --section-padding-y: var(--space-2xl); }
}
.back-home-short { display: none; }

/* ---------- Mobile nav promo strip ---------- */
.nav-promo {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--brand-primary);
  color: var(--text-on-brand, #fff);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 9px var(--section-padding-x);
}
.nav-promo:hover { color: #fff; background: var(--brand-primary-hover); }
.nav-promo-arrow { font-weight: 700; }

/* ---------- Mobile menu ---------- */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--text-primary); padding: 0;
  border-radius: var(--radius-sm, 8px);
}
.nav-burger svg { width: 26px; height: 26px; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-surface);
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  height: 100dvh;
  padding: 0 var(--section-padding-x);
}
.mobile-menu.open { display: flex; }
.mobile-menu-top {
  position: absolute; top: 10px; right: var(--section-padding-x);
}
.mobile-menu-top .wordmark { display: none; }
.mobile-menu-links {
  display: flex; flex-direction: column; gap: var(--space-lg);
  align-items: center;
  margin-top: 0;
}
.mobile-menu-links a {
  display: block;
  background: none;
  color: var(--brand-primary);
  font-size: 26px; font-weight: 700;
  text-decoration: none;
  padding: 0;
  border-radius: 0;
}
.mobile-menu-links a:active { background: none; color: var(--brand-primary-hover); }

@media (max-width: 640px) {
  .ba-stack { display: none; }
  .ba-split {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    order: -1;
    width: 100%;
  }
  .ba-split-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .ba-split-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .ba-split-after { clip-path: polygon(58% 0, 100% 0, 100% 100%, 42% 100%); }
  .ba-split-divider {
    position: absolute;
    inset: 0;
    clip-path: polygon(57.4% 0, 58.6% 0, 42.6% 100%, 41.4% 100%);
    background: var(--bg-surface);
  }
  .ba-split-label {
    position: absolute;
    top: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(20, 23, 29, 0.65);
    color: #fff;
  }
  .label-before { left: 10px; }
  .label-after { right: 10px; background: var(--brand-primary); }
  .ba-split-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px var(--space-md);
    justify-content: center;
  }
  .ba-perk {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
  }
  .ba-perk i {
    font-style: normal;
    font-weight: 700;
    color: var(--brand-primary);
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  #website-wert { display: none; }
  .nav-promo { display: flex; }
  .next-steps { display: none; }
  .hero h1 { font-size: 30px !important; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .back-home-full { display: none; }
  .back-home-short { display: inline; }
  .legal-page { overflow-wrap: break-word; }
  .legal-page h1 { font-size: 28px; }
  .form-card { padding: var(--space-md); }
  .price-cta { flex-direction: column; align-items: stretch; text-align: center; padding: var(--space-md); }
  .grid-4, .grid-3, .grid-2, .price-cards, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { padding-right: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { grid-template-columns: 40px 1fr; }
  .step-highlight { grid-template-columns: 40px 1fr; }
  .step-celebrate { display: none; }
  .faq-list { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; }
  .hero { padding: var(--space-2xl) 0; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
