:root {
  --bg: #07090d;
  --surface: #11151c;
  --surface-elevated: #181e28;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f6f9;
  --text-muted: #9aa3b2;
  --accent: #e85d4f;
  --accent-soft: rgba(232, 93, 79, 0.14);
  --accent-border-35: rgba(232, 93, 79, 0.35);
  --accent-border-28: rgba(232, 93, 79, 0.28);
  --accent-dark: #8b3a32;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Instrument Sans", var(--font);
  --max: 1180px;
  --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;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 9, 13, 0.94);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.brand {
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.brand img {
  height: 56px;
  width: auto;
  max-width: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switch {
  --lang-pad: 3px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  flex-shrink: 0;
  min-width: 5.75rem;
  height: 2.25rem;
  padding: var(--lang-pad);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.lang-switch::before {
  content: "";
  position: absolute;
  top: var(--lang-pad);
  bottom: var(--lang-pad);
  left: var(--lang-pad);
  width: calc(50% - var(--lang-pad));
  border-radius: 999px;
  background-color: #e85d4f;
  box-shadow: 0 2px 14px rgba(232, 93, 79, 0.55);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.lang-switch[data-active="en"]::before {
  transform: translateX(100%);
}

.lang-switch-btn {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 0.7rem;
  height: 100%;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.38);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.2s ease;
}

.lang-switch-btn:hover {
  color: rgba(255, 255, 255, 0.62);
}

.lang-switch[data-active="de"] .lang-switch-btn[data-lang="de"],
.lang-switch[data-active="en"] .lang-switch-btn[data-lang="en"] {
  color: var(--white);
}

.lang-switch-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background-color: #e85d4f;
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(232, 93, 79, 0.35);
}

.btn-primary:hover {
  background-color: #f06a5c;
  color: #ffffff;
}

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

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 0.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  display: grid;
  grid-template-areas: "stack";
  align-items: center;
  padding: 0 0 5rem;
  min-height: min(720px, 85vh);
  overflow: hidden;
  position: relative;
}

.hero-bg,
.hero > .container {
  grid-area: stack;
}

.hero-bg {
  z-index: 0;
  width: 100%;
  min-height: 100%;
  pointer-events: none;
}

.hero-bg img,
.hero-bg picture {
  width: 100%;
  height: 100%;
  min-height: min(720px, 85vh);
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-bg picture {
  display: block;
  height: 100%;
}

.hero::before {
  content: "";
  grid-area: stack;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 13, 0.55) 0%,
    rgba(7, 9, 13, 0.2) 42%,
    transparent 72%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  grid-area: stack;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 13, 0.35) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 36rem);
  align-items: center;
  padding-top: calc(var(--header-h) + 4rem);
}

.hero-content {
  position: relative;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: rgba(7, 9, 13, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.55;
  color: #c5ccd6;
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.hero-footer {
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  max-width: calc(100% - 5rem);
}

.made-germany-label--hero {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 4.5rem;
  height: auto;
  display: block;
  z-index: 2;
  pointer-events: none;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

/* Why BlackoutPod */
.why-section {
  background: var(--bg);
  padding-top: 0;
  margin-top: -1.5rem;
}

.why-section .section-header {
  margin-bottom: 0.75rem;
}

.why-stack {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  row-gap: 0;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.why-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: start;
  width: 100%;
  max-width: 400px;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.why-card--1 {
  grid-column: 1 / span 5;
  grid-row: 1;
  z-index: 3;
  justify-self: start;
  margin-top: 2.5rem;
}

.why-card--1 .why-card-media img {
  min-height: 108px;
}

.why-card--1 .why-card-body {
  padding: 0.85rem 1rem 0.9rem 1.15rem;
}

.why-card--2 {
  grid-column: 4 / span 6;
  grid-row: 2;
  z-index: 1;
  justify-self: center;
  margin-top: -3.5rem;
}

.why-card--3 {
  grid-column: 8 / span 5;
  grid-row: 1;
  z-index: 2;
  justify-self: end;
  align-self: start;
  margin-top: 2.75rem;
}

.why-card:hover {
  border-color: var(--accent-border-35);
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}

.why-card-media {
  align-self: stretch;
  overflow: hidden;
}

.why-card-media img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.why-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  padding: 1rem 1rem 1.1rem 1.25rem;
}

.why-card-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

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

.why-card-highlight {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--accent);
}

/* Functions */
.functions {
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding-top: 2.5rem;
}

.functions .section-header {
  padding-top: 0;
  margin-bottom: 0;
}

.functions .section-header p {
  padding-bottom: 1rem;
}

.functions-hero-media {
  margin: 0 auto 2.5rem;
  max-width: 26rem;
  text-align: center;
}

.functions-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.functions .function-group + .function-group {
  margin-top: 2rem;
}

.functions .function-group-header {
  text-align: center;
  padding: 0.75rem 0 1.25rem;
  margin: 0;
}

.function-group-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.functions .function-group-header h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.function-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.function-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.function-card:hover {
  border-color: var(--accent-border-35);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.function-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-elevated);
}

.function-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.function-card-media--placeholder {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-elevated) 100%);
  border-bottom: 1px solid var(--border);
}

.function-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.25rem 1.35rem;
}

.function-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.function-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: #e85d4f;
}

.function-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.function-card-head h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

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

.functions-cta {
  display: flex;
  justify-content: center;
  margin-top: 5.5rem;
}

.functions-cta .btn {
  min-width: 16rem;
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

/* Modals */
body.modal-open {
  overflow: hidden;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.78);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
  max-height: min(90vh, 52rem);
  overflow: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  padding: 1.5rem 1.5rem 1.35rem;
}

.modal-panel--wide {
  width: min(100%, 40rem);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.modal-close:hover {
  color: var(--text);
  border-color: var(--accent-border-35);
}

.modal-header {
  padding-right: 2.5rem;
  margin-bottom: 1.25rem;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.modal-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.config-group + .config-group {
  margin-top: 1.25rem;
}

.config-group-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--accent);
}

.config-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.config-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.75rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.config-option--selected {
  border-color: rgba(72, 187, 120, 0.45);
  background: rgba(34, 84, 61, 0.32);
}

.config-option:hover {
  border-color: var(--accent-border-28);
  background: var(--surface-elevated);
}

.config-option--selected:hover {
  border-color: rgba(72, 187, 120, 0.55);
  background: rgba(34, 84, 61, 0.4);
}

.config-option--locked {
  cursor: default;
  opacity: 0.92;
}

.config-option--locked:hover {
  border-color: var(--border);
  background: var(--surface);
}

.config-option-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: var(--accent);
  transition: width 0.2s, height 0.2s, background 0.2s, color 0.2s;
}

.config-option--selected .config-option-icon {
  width: 44px;
  height: 44px;
  background: rgba(72, 187, 120, 0.22);
  color: #6ee7a0;
}

.config-option-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: width 0.2s, height 0.2s;
}

.config-option--selected .config-option-icon svg {
  width: 24px;
  height: 24px;
}

.config-option-content {
  min-width: 0;
}

.config-option-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.config-option-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.config-option-check {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.config-option--locked .config-option-check {
  cursor: not-allowed;
  opacity: 0.55;
}

.modal-config-summary {
  padding: 1rem 1.1rem;
  border: 1px solid var(--accent-border-28);
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.modal-config-summary strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.modal-config-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.modal-contact-form {
  padding: 0;
  background: transparent;
  border: none;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.audience-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-elevated) 100%);
  overflow: hidden;
}

.audience-card-media {
  grid-row: 1 / -1;
  align-self: stretch;
  overflow: hidden;
}

.audience-card-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.audience-card h3 {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  padding: 1.25rem 1.5rem 0 1.25rem;
}

.audience-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--text-muted);
  padding: 0 1.5rem 1.25rem 1.25rem;
}

/* Contact */
.contact-section {
  padding-bottom: 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
}

.contact-intro p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  white-space: pre-line;
}

.contact-intro-cta {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-intro-cta .btn {
  min-width: 16rem;
}

.made-germany-label--contact {
  width: 8.75rem;
  height: auto;
  display: block;
}

.contact-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-meta strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-group .error {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.35rem;
  display: none;
}

.form-group.invalid .error {
  display: block;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: var(--accent);
}

.form-actions {
  margin-top: 1.5rem;
}

.form-actions .btn {
  width: 100%;
}

.form-actions .btn[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(245, 101, 101, 0.12);
  border: 1px solid rgba(245, 101, 101, 0.35);
  color: #feb2b2;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(72, 187, 120, 0.12);
  border: 1px solid rgba(72, 187, 120, 0.3);
  color: #9ae6b4;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.form-success.visible {
  display: block;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Legal / imprint */
.legal-page {
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
}

.legal-page-inner {
  max-width: 42rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.legal-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  white-space: pre-line;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(7, 9, 13, 0.5) 0%,
      rgba(7, 9, 13, 0.15) 55%,
      transparent 100%
    );
  }

  .hero::after {
    background: none;
  }

  .hero-content {
    padding: 1.5rem 1.25rem;
  }

  .made-germany-label--hero {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 3.75rem;
  }

  .hero-actions {
    max-width: calc(100% - 4.25rem);
  }

  .function-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section {
    margin-top: 0;
  }

  .why-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    gap: 1.25rem;
  }

  .why-card,
  .why-card--1,
  .why-card--2,
  .why-card--3 {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    z-index: auto;
    box-shadow: none;
  }

  .why-card-body h3 {
    font-size: 1.15rem;
  }

  .why-card-text {
    font-size: 0.95rem;
  }

  .why-card-media img {
    min-height: 200px;
  }

}

@media (max-width: 960px) {
  .nav {
    gap: 1.1rem;
  }

  .nav a {
    font-size: 0.82rem;
  }

  .brand img {
    height: 44px;
  }

  .header-cta {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 720px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: var(--header-h) 0 2rem;
    overflow: visible;
  }

  .hero-bg,
  .hero > .container {
    grid-area: unset;
  }

  .hero-bg {
    order: 1;
    min-height: auto;
    width: 100%;
  }

  .hero-bg picture,
  .hero-bg img {
    min-height: auto;
    height: auto;
    object-fit: cover;
  }

  .hero > .container {
    order: 2;
    position: relative;
    z-index: 2;
    margin-top: -2.75rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-grid {
    padding-top: 0;
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .site-header .container {
    justify-content: space-between;
  }

  .header-end {
    margin-left: 0;
    flex-shrink: 0;
  }

  .header-actions {
    margin-left: 0;
  }

  .audience-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .audience-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .audience-card-media {
    grid-row: auto;
    min-height: 200px;
  }

  .audience-card h3,
  .audience-card p {
    grid-column: 1;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .audience-card p {
    padding-bottom: 1.5rem;
  }
}
