:root {
  --orange: #f2700d;
  --orange-hot: #ff7500;
  --navy: #0b2344;
  --dark: #1a1a1a;
  --ink: #142033;
  --muted: #5a6575;
  --line: #d8dde5;
  --gray: #eef0f3;
  --gray-soft: #f4f5f7;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  --container: 1180px;
  --page-gutter: 1rem;
  /* Abstand vom Viewport-Rand bis zur Content-Kante (= virtuelle Linie) */
  --side-space: max(var(--page-gutter), calc((100vw - var(--container)) / 2));
  --font: "Montserrat", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

[hidden] {
  display: none !important;
}

/* Header */
.site-header {
  background: #0a0a0a;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding-block: 0.65rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-main {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  line-height: 1.1;
}

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

.logo-tag {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  opacity: 0.85;
  font-weight: 500;
}

.header-trust {
  display: none;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-contact {
  display: none;
  text-align: right;
  line-height: 1.3;
}

.header-phone {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.header-mail {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.1rem;
}

.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #25d366;
}

.header-wa svg {
  width: 16px;
  height: 16px;
}

.header-mail:hover,
.header-phone:hover {
  color: var(--orange);
}

.header-wa:hover {
  filter: brightness(1.15);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.mobile-nav {
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a {
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-nav[hidden] {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  background: #1c1e22;
  color: var(--white);
  overflow: hidden;
  padding-bottom: 3.25rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #121316;
  /* Mobile: Rolle sichtbar, Text links lesbar */
  background-image:
    linear-gradient(
      115deg,
      rgba(18, 19, 22, 0.94) 0%,
      rgba(18, 19, 22, 0.82) 38%,
      rgba(18, 19, 22, 0.4) 62%,
      rgba(18, 19, 22, 0.18) 100%
    ),
    url("../assets/hero-bg-v2.jpg");
  background-repeat: no-repeat;
  background-size: auto, cover;
  background-position: left center, 72% center;
}

@media (min-width: 900px) {
  .hero-bg {
    background-image:
      linear-gradient(
        90deg,
        #121316 0%,
        #121316 26%,
        rgba(18, 19, 22, 0.78) 40%,
        rgba(18, 19, 22, 0.25) 52%,
        transparent 64%
      ),
      linear-gradient(
        270deg,
        #121316 0%,
        #121316 var(--side-space),
        rgba(18, 19, 22, 0.35) calc(var(--side-space) + 1.5rem),
        transparent calc(var(--side-space) + 4rem)
      ),
      url("../assets/hero-bg-v2.jpg");
    background-size: auto, auto, auto 100%;
    background-position:
      left center,
      right center,
      right var(--side-space) top;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 1rem;
  max-width: var(--container);
}

.hero-copy {
  max-width: 34rem;
}

.hero-copy h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.hero-lead {
  margin: 0 0 1.35rem;
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 3px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  text-align: left;
}

.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-secondary {
  background: rgba(11, 35, 68, 0.88);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}

.btn-hero {
  width: 100%;
  min-height: 62px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  min-height: 50px;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.btn-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  flex: 1;
}

.btn-text strong {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.btn-text small {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.92;
}

.btn-arrow {
  font-size: 1.05rem;
  opacity: 0.9;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25d366;
  font-size: 0.88rem;
  font-weight: 600;
}

.whatsapp-link svg {
  width: 20px;
  height: 20px;
}

.whatsapp-link:hover {
  color: #3be07a;
  filter: brightness(1.08);
}

/* Config – overlaps hero */
.config-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #1c1e22 0 3rem, var(--gray-soft) 3rem);
  margin-top: -3.25rem;
  padding: 0 0 2rem;
}

.config-container {
  position: relative;
}

.config-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.config-form-wrap {
  padding: 1.25rem 1.1rem 1.35rem;
}

.config-form-wrap h2 {
  margin: 0 0 0.95rem;
  color: var(--navy);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.field-row {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.field-label em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}

.input-suffix {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
}

.input-suffix input,
.field > input,
.field > textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.62rem 0.7rem;
  background: var(--white);
}

.input-suffix input {
  border: 0;
}

.input-suffix em {
  display: grid;
  place-items: center;
  padding: 0 0.7rem;
  background: var(--gray);
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  border-left: 1px solid var(--line);
}

/* Inneres Input im Suffix: Fokus-Ring nur am Wrapper */
.input-suffix input:focus {
  outline: none;
}

.field:not(.is-invalid) > input:focus,
.field:not(.is-invalid) > textarea:focus,
.field:not(.is-invalid) .input-suffix:focus-within {
  outline: 2px solid rgba(242, 112, 13, 0.35);
  border-color: var(--orange);
}

.info-tip {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #9aa3b0;
  background: #eef1f5;
  color: #5b6573;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  padding: 0;
}

.choice-group {
  border: 0;
  margin: 0 0 0.75rem;
  padding: 0;
}

.choice-group--visual {
  border: 1px solid #b8c0cc;
  border-radius: 4px;
  padding: 0.5rem 0.55rem 0.85rem;
}

.choice-group--visual legend {
  float: none;
  width: auto;
  max-width: calc(100% - 0.5rem);
  margin: 0 0 0.15rem 0.1rem;
  padding: 0 0.3rem;
  background: var(--white);
}

.choice-group--rollentyp {
  border-color: #9aa6b5;
}

.choice-group--rollentyp legend {
  color: var(--navy);
}

.choice-group--achsenden {
  border-color: #b0a89a;
}

.choice-group--achsenden legend {
  color: #3d3428;
}

.choice-group legend {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  padding: 0;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.choice-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 3px;
  padding: 0.48rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.choice-btn:hover {
  border-color: #b8c0cc;
}

.choice-btn.is-active {
  background: #2b3340;
  border-color: #2b3340;
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.legend-link {
  margin-left: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
}

.legend-link:hover {
  text-decoration: underline;
}

.achse-choice-row,
.visual-choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.achse-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.3rem;
  padding: 0.3rem 0.3rem 0.4rem;
  text-align: center;
  min-width: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  container-type: inline-size;
}

.achse-choice:hover {
  border-color: transparent;
}

.achse-choice.is-active {
  background: var(--white);
  border: 2px solid var(--orange);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(242, 112, 13, 0.2);
  padding: calc(0.3rem - 1px) calc(0.3rem - 1px) calc(0.4rem - 1px);
}

.achse-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 2px;
  background-color: #f7f8fa;
}

.achse-choice img.achse-thumb {
  height: auto;
  max-height: none;
}

/* Crop 25px top + 10px bottom of displayed square thumbs (no image edits) */
.visual-choice-row .achse-choice .achse-thumb,
.achse-choice-row .achse-choice .achse-thumb {
  aspect-ratio: unset;
  height: calc(100cqw - 35px);
  object-fit: cover;
  object-position: 50% calc(100% * 25 / 35);
}

.visual-choice-row .achse-choice img.achse-thumb,
.achse-choice-row .achse-choice img.achse-thumb {
  height: calc(100cqw - 35px);
}

.achse-thumb--unknown {
  display: grid;
  place-items: center;
  background-color: #eef1f5;
  color: #7a8494;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.achse-label {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.achse-choice.is-active .achse-label {
  color: var(--ink);
}

.achse-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.achse-visual-card {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.achse-visual-card .achse-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.achse-visual-card figcaption {
  padding: 0.55rem 0.65rem 0.7rem;
}

.achse-visual-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.achse-visual-card span {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.4;
}

.achsenden-overview {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.75rem 0 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}

@media (min-width: 640px) {
  .achse-choice-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .visual-choice-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .type-material {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .type-material .choice-group {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .type-material .visual-choice-row {
    flex: 1;
  }

  .achse-visual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .achse-visual-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.field.is-invalid > input,
.field.is-invalid > textarea,
.field.is-invalid .input-suffix {
  border-color: #d92d20;
  border-width: 2px;
  background: #ffebe9;
  box-shadow: none;
  outline: none;
}

/* Invalid + Fokus: kein Orange (outline/border/box-shadow) — nur Rot */
.field.is-invalid > input:focus,
.field.is-invalid > textarea:focus,
.field.is-invalid .input-suffix:focus-within,
.field.is-invalid .input-suffix input:focus {
  outline: none;
  outline-offset: 0;
  border-color: #d92d20;
  box-shadow: none;
  background: #ffebe9;
}

/* Inner input otherwise keeps white bg and hides the wrapper fill */
.field.is-invalid .input-suffix input {
  background: #ffebe9;
  outline: none;
}

.choice-group.is-invalid {
  border-radius: 8px;
  background: #fff5f4;
  box-shadow: inset 0 0 0 2px #d92d20;
  outline: none;
}

.choice-group.is-invalid .choice-btn,
.choice-group.is-invalid .choice-btn:focus,
.choice-group.is-invalid .choice-btn:focus-visible {
  border-color: #d92d20;
  border-width: 2px;
  outline: none;
  box-shadow: none;
}

.choice-group.is-invalid .achse-choice.is-active,
.choice-group.is-invalid .achse-choice:focus,
.choice-group.is-invalid .achse-choice:focus-visible {
  border-color: #d92d20;
  box-shadow: none;
  outline: none;
}

.choice-group.is-invalid legend {
  color: #d92d20;
  font-weight: 700;
}

.qty-btn {
  min-width: 40px;
  text-align: center;
}

.qty-other {
  margin-top: 0.55rem;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.secure-note svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.step-intro {
  margin: -0.35rem 0 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

button.back-link,
.back-link {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: #f2700d;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0 0 1rem;
  display: block;
  text-align: left;
  text-decoration: none;
}

button.back-link:hover,
.back-link:hover {
  color: #f2700d;
  color: var(--orange);
  text-decoration: underline;
}

.file-field input[type="file"] {
  padding: 0.55rem;
  background: var(--gray-soft);
}

.file-name {
  font-size: 0.78rem;
  color: var(--muted);
}

.consent {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.75rem 0 1rem;
}

.consent a {
  color: var(--orange);
  text-decoration: underline;
}

/* Consent banner – full-page lock until choice */
html.consent-locked,
body.consent-locked {
  overflow: hidden;
  touch-action: none;
}

.consent-banner {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(7rem, 18vh, 11rem) 1rem 1.5rem;
  pointer-events: auto;
}

.consent-banner__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(10px) saturate(0.6);
  -webkit-backdrop-filter: blur(10px) saturate(0.6);
}

.consent-banner__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  background: #141820;
  color: #f2f4f7;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  padding: 1.1rem 1.15rem 1.2rem;
  display: grid;
  gap: 1rem;
}

.consent-banner__text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.consent-banner__text p {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.consent-banner__text a {
  color: var(--orange);
  text-decoration: underline;
}

.consent-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  margin: 0.35rem 0;
  cursor: pointer;
}

.consent-check em {
  font-style: normal;
  opacity: 0.65;
  margin-left: 0.25rem;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-btn {
  border: 0;
  border-radius: 4px;
  padding: 0.7rem 0.95rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}

.consent-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.consent-btn--primary {
  background: #2b3340;
  color: #fff;
}

.consent-btn--accent {
  background: var(--orange);
  color: #fff;
}

.consent-btn:hover {
  filter: brightness(1.08);
}

@media (min-width: 800px) {
  .consent-banner__panel {
    grid-template-columns: 1.4fr auto;
    align-items: end;
    gap: 1.25rem;
  }

  .consent-banner__actions {
    flex-direction: column;
    min-width: 180px;
  }
}

.form-status {
  min-height: 1.3em;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.form-status.is-ok {
  color: #1b7a3d;
}

.form-status.is-err {
  color: #b42318;
}

.form-success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.75rem;
}

.form-success-check {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: #e8f7ee;
  color: #1b7a3d;
  display: grid;
  place-items: center;
}

.form-success-check svg {
  width: 2.35rem;
  height: 2.35rem;
}

.form-success-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* v41-success-title: huge thank-you — must beat .config-form-wrap h2 */
.config-form-wrap .form-success h2.form-success-title,
.form-success .form-success-title {
  margin: 0 0 0.65rem;
  font-size: clamp(3.5rem, 9vw, 5rem) !important;
  line-height: 1.05;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.form-success-lead {
  margin: 0 auto 1.35rem;
  max-width: 26rem;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 600;
}

.form-success-next {
  margin: 0 auto 1.15rem;
  padding: 1rem 1.15rem;
  max-width: 28rem;
  text-align: left;
  list-style: none;
  counter-reset: success-step;
  background: var(--gray-soft);
  border-radius: 8px;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
}

.form-success-next li {
  position: relative;
  padding-left: 2.15rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #333c4a;
  counter-increment: success-step;
}

.form-success-next li::before {
  content: counter(success-step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}

.form-success-note {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.form-success-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.form-success-actions .btn {
  min-height: 48px;
  padding: 0.8rem 1.25rem;
}

.config-usps {
  background: #e8ebf0;
  padding: 1.35rem 1.15rem;
  display: grid;
  gap: 1.15rem;
  align-content: stretch;
}

.config-usps article {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0.75rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.config-usps svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
  margin-top: 0.05rem;
}

.config-usps h3 {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.config-usps h3 span {
  color: var(--orange);
}

.config-usps p {
  margin: 0.25rem 0 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
}

/* USP 6: only when sidebar has enough vertical room */
.config-usps__item--optional {
  display: none;
}

@media (min-width: 900px) and (min-height: 920px) {
  .config-usps__item--optional {
    display: grid;
  }
}

/* Process */
.process {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0;
}

.process-inner {
  display: grid;
  gap: 1.35rem;
}

.process h2 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.process-rail {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  height: 52px;
}

.process-steps .process-arrow {
  display: none;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

.process-rail svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

/* Benefits */
.benefits {
  background: var(--gray-soft);
  padding: 1.75rem 0;
  border-top: 1px solid #e5e8ee;
}

.benefits-grid {
  display: grid;
  gap: 1.25rem;
}

.benefits article {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 0.7rem;
}

.benefits svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #3a4454;
  stroke-width: 1.5;
  grid-row: 1 / span 2;
}

.benefits h3 {
  margin: 0;
  font-size: 0.9rem;
  grid-column: 2;
}

.benefits p {
  margin: 0.15rem 0 0;
  grid-column: 2;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.88);
  padding: 1.75rem 0;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-contact,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  align-items: center;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #25d366;
}

.footer-wa svg {
  width: 18px;
  height: 18px;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: var(--orange);
}

.footer-wa:hover {
  color: #3be07a;
}

/* Tip bubble */
.tip-bubble {
  position: fixed;
  z-index: 100;
  max-width: 220px;
  background: #1d2430;
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.tip-bubble[hidden] {
  display: none;
}

/* Legal pages */
.legal-page {
  background: var(--gray-soft);
  min-height: 60vh;
}

.legal-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.25rem 2rem;
  margin: 1.5rem auto 2rem;
  max-width: 860px;
}

.legal-wrap h1 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.6rem;
}

.legal-wrap .legal-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-wrap h2 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.legal-wrap h3 {
  margin: 1.2rem 0 0.45rem;
  font-size: 0.98rem;
}

.legal-wrap p,
.legal-wrap li {
  font-size: 0.92rem;
  color: #333c4a;
}

.legal-wrap ul {
  padding-left: 1.2rem;
}

.legal-wrap a {
  color: var(--orange);
}

/* Content / FAQ / Landing pages */
.content-page {
  background: var(--gray-soft);
  min-height: 60vh;
}

.content-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.25rem 2rem;
  margin: 1.5rem auto 2rem;
  max-width: 920px;
}

.content-wrap h1 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.2;
}

.content-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.content-wrap h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.content-wrap h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1rem;
  color: var(--ink);
}

.content-wrap p,
.content-wrap li {
  font-size: 0.94rem;
  color: #333c4a;
  line-height: 1.55;
}

.content-wrap a {
  color: var(--orange);
  font-weight: 600;
}

.content-wrap a:hover {
  text-decoration: underline;
}

.content-wrap a.btn {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.content-wrap a.btn:hover {
  text-decoration: none;
  color: var(--white);
}

.content-wrap a.whatsapp-link {
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
}

.content-wrap a.whatsapp-link:hover {
  color: #3be07a;
  text-decoration: none;
}

.content-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin: 1.25rem 0 0.5rem;
}

.content-cta .btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  min-height: 46px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.5;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 520px;
}

.compare-table th,
.compare-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
  background: var(--gray-soft);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.faq-list {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--gray);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--orange);
  color: var(--white);
}

.faq-item .faq-answer {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--line);
  margin: 0;
}

.faq-item .faq-answer p:first-child {
  margin-top: 0.85rem;
}

.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

.related-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.related-card {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--gray-soft);
  text-decoration: none !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.related-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.related-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.related-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}

/* FAQ teaser on homepage */
.faq-teaser {
  background: linear-gradient(180deg, #f7f8fa 0%, #eef1f5 100%);
  padding: 2.25rem 0 2.5rem;
  border-top: 1px solid #e5e8ee;
}

.faq-teaser-layout {
  display: grid;
  gap: 1.5rem;
}

.faq-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.faq-teaser-intro h2 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.15;
}

.faq-teaser-lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 28rem;
}

.faq-teaser-cta {
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  min-height: 46px;
}

.faq-panel {
  background: var(--white);
  border: 1px solid #dce1e8;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(15, 28, 48, 0.07);
  overflow: hidden;
}

.faq-panel .faq-item {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #e6ebf1;
  background: transparent;
}

.faq-panel .faq-item:last-child {
  border-bottom: 0;
}

.faq-panel .faq-item summary {
  padding: 0.95rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.35;
  transition: background 0.15s ease;
}

.faq-panel .faq-item summary:hover {
  background: #f7f9fb;
}

.faq-panel .faq-item[open] summary {
  background: #f7f9fb;
  color: var(--navy);
}

.faq-panel .faq-item .faq-answer {
  padding: 0 1.1rem 1rem;
  border-top: 0;
  background: #f7f9fb;
}

.faq-panel .faq-item .faq-answer p {
  margin: 0;
  padding-top: 0.15rem;
  font-size: 0.88rem;
  color: #4a5565;
  line-height: 1.5;
}

.faq-panel .faq-item .faq-answer a {
  color: var(--orange);
  font-weight: 600;
}

/* Topics strip */
.topic-links {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 0 2rem;
}

.topic-links-head {
  margin-bottom: 1rem;
}

.topic-links-head h2 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
  color: var(--white);
}

.topic-links-head p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.topic-strip {
  display: grid;
  gap: 0.65rem;
}

.topic-strip a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.topic-strip a:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  border-left-color: var(--orange);
  transform: translateY(-1px);
  color: inherit;
}

.topic-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--orange);
  min-width: 1.5rem;
}

.topic-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.topic-copy strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.topic-copy span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

.topic-arrow {
  font-size: 1.15rem;
  color: var(--orange);
  font-weight: 600;
}

/* Desktop */
@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 1.25rem;
    min-height: 78px;
  }

  .logo-main {
    font-size: 1.15rem;
  }

  .header-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .header-contact {
    display: block;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .hero {
    padding-bottom: 3.5rem;
  }

  .hero-inner {
    padding: 1.6rem 0 1.1rem;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 540px;
  }

  .config-section {
    margin-top: -3.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(180deg, #1c1e22 0 3rem, var(--gray-soft) 3rem);
  }

  .config-card {
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.55fr);
  }

  .config-form-wrap {
    padding: 1.6rem 1.6rem 1.7rem;
  }

  .config-form-wrap h2 {
    font-size: 1.2rem;
  }

  .dims {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .config-usps {
    padding: 1.35rem 1.1rem;
    grid-template-columns: 1fr;
    align-content: stretch;
    gap: 0.75rem;
  }

  .config-usps article {
    flex: 1;
  }

  .process {
    padding: 2.25rem 0;
  }

  .process-inner {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 2rem;
  }

  .process h2 {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    column-gap: 0.75rem;
    width: 100%;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .process-rail {
    justify-content: center;
    height: 56px;
    gap: 0.75rem;
  }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-width: 2px;
  }

  .process-rail svg {
    width: 42px;
    height: 42px;
  }

  .process-steps .process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px; /* gleiche virtuelle Linie wie .process-rail */
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
    opacity: 0.55;
    line-height: 1;
  }

  .process-step p {
    font-size: 0.88rem;
    max-width: 220px;
    line-height: 1.4;
    min-height: 2.8em;
  }

  .config-usps {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
  }

  .legal-wrap {
    padding: 2.25rem 2.5rem 2.75rem;
  }

  .content-wrap {
    padding: 2.25rem 2.5rem 2.75rem;
  }

  .content-wrap h1 {
    font-size: 1.85rem;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-teaser-layout {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
    gap: 2.25rem;
    align-items: start;
  }

  .faq-teaser-intro {
    padding-top: 0.35rem;
    position: sticky;
    top: 5.5rem;
  }

  .faq-teaser-intro h2 {
    font-size: 1.65rem;
  }

  .topic-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }

  .topic-strip a {
    align-items: start;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.35rem 0.75rem;
    min-height: 100%;
  }

  .topic-num {
    grid-row: 1;
  }

  .topic-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .topic-arrow {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    padding-bottom: 0.1rem;
  }
}

/* Content pages: same contact block as homepage, without trust row */
.site-header--content .header-inner {
  grid-template-columns: 1fr auto;
}

@media (min-width: 900px) {
  .site-header--content .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-header--content .header-contact {
    display: block;
  }

  .site-header--content .nav-toggle,
  .site-header--content .mobile-nav {
    display: none !important;
  }
}
