:root {
  --bg: #09070f;
  --bg-strong: #130d1f;
  --surface: rgba(19, 14, 31, 0.82);
  --surface-strong: #171123;
  --line: rgba(182, 129, 255, 0.18);
  --text: #f6f0ff;
  --muted: #c7b8e4;
  --primary: #9d4dff;
  --primary-dark: #7f2dff;
  --accent: #cf7dff;
  --accent-soft: rgba(157, 77, 255, 0.14);
  --shadow: 0 28px 80px rgba(3, 1, 10, 0.48);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(157, 77, 255, 0.28), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(207, 125, 255, 0.18), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(85, 34, 148, 0.22), transparent 28%),
    linear-gradient(180deg, #06040b 0%, #0e0817 52%, #130b1f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 84%);
}

a {
  color: inherit;
}

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

.page-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 50;
  padding: 18px 0 0;
}

.nav {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 12, 25, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand,
.nav-links,
.button,
.text-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 4px 8px 4px 2px;
  border-radius: 999px;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 4px -6px 4px -14px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 16% 50%, rgba(157, 77, 255, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(10, 7, 18, 0.95), rgba(10, 7, 18, 0));
  filter: blur(18px);
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", sans-serif;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}

.brand-logo {
  width: clamp(132px, 14vw, 210px);
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  opacity: 0.98;
  filter:
    drop-shadow(0 0 18px rgba(10, 7, 18, 0.95))
    drop-shadow(0 12px 28px rgba(157, 77, 255, 0.12));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #cf7dff);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(157, 77, 255, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-category {
  position: relative;
}

.nav-category summary {
  list-style: none;
}

.nav-category summary::-webkit-details-marker {
  display: none;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.nav-category-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.nav-category-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-category[open] .nav-category-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-category-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 9, 19, 0.98);
  box-shadow: var(--shadow);
}

.nav-category-menu a {
  width: 100%;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(182, 129, 255, 0.2);
  background: linear-gradient(135deg, rgba(157, 77, 255, 0.18), rgba(207, 125, 255, 0.12));
  box-shadow: 0 10px 24px rgba(157, 77, 255, 0.18);
}

.nav-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-links a.is-active,
.nav-category-toggle.is-active,
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-category-toggle:hover,
.nav-category-toggle:focus-visible {
  background: rgba(157, 77, 255, 0.14);
  color: var(--text);
}

.nav-social:hover,
.nav-social:focus-visible {
  background: linear-gradient(135deg, rgba(157, 77, 255, 0.34), rgba(207, 125, 255, 0.22));
}

.nav-instagram {
  background: linear-gradient(135deg, rgba(255, 96, 163, 0.18), rgba(157, 77, 255, 0.14));
  box-shadow: 0 10px 24px rgba(210, 86, 179, 0.18);
}

.nav-instagram:hover,
.nav-instagram:focus-visible {
  background: linear-gradient(135deg, rgba(255, 96, 163, 0.32), rgba(157, 77, 255, 0.22));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(24, 18, 38, 0.95);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero-section,
.page-hero {
  padding: 26px 0 0;
}

.hero-grid,
.split-layout,
.contact-layout,
.booking-layout,
.footer-grid,
.feature-layout {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: start;
}

.hero-copy,
.hero-panel,
.info-card,
.price-card,
.timeline-card,
.feature-card,
.contact-card,
.content-panel,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.content-panel,
.contact-card {
  padding: 36px;
}

.hero-section .hero-copy,
.hero-section .hero-panel {
  padding: 34px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 77, 255, 0.38), transparent 72%);
}

.eyebrow,
.badge,
.overline {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.8rem;
  color: #b985ff;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 64ch;
  font-size: 1.06rem;
  margin: 20px 0 0;
}

.hero-section .hero-copy h1 {
  font-size: clamp(2.85rem, 5vw, 5rem);
  max-width: 9.2ch;
  line-height: 0.96;
}

.hero-section .hero-copy .lead {
  max-width: 36ch;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 0;
}

.hero-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(157, 77, 255, 0.12), rgba(255, 255, 255, 0.03));
  color: var(--muted);
}

.hero-note strong {
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.metric-row,
.stack-list,
.card-grid,
.timeline-grid,
.contact-list,
.check-list {
  display: grid;
  gap: 16px;
}

.metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.hero-panel > .eyebrow,
.hero-panel > h2,
.hero-panel > p {
  width: 100%;
}

.hero-panel-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-panel-intro h2 {
  max-width: 11ch;
  font-size: clamp(1.8rem, 2.6vw, 2.55rem);
}

.hero-panel-intro p {
  margin: 0;
}

.stack-list {
  width: 100%;
  max-width: none;
  margin: 0;
}

.metric-row article,
.stack-list article {
  padding: 17px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(182, 129, 255, 0.12);
}

.metric-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--text);
}

.stack-list article h2,
.stack-list article p {
  max-width: none;
}

.stack-list article h3,
.stack-list article p {
  max-width: none;
}

.hero-panel-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-panel-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.hero-panel-contact a:hover,
.hero-panel-contact a:focus-visible {
  background: rgba(157, 77, 255, 0.14);
  border-color: rgba(182, 129, 255, 0.22);
}

.section {
  padding: 26px 0 0;
}

.section-accent .split-layout,
.content-panel.accent {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(34, 23, 54, 0.82), rgba(18, 12, 31, 0.94));
  box-shadow: var(--shadow);
}

.split-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.section-heading {
  margin-bottom: 22px;
}

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

.card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card-grid-packages {
  grid-template-columns: 1fr;
  gap: 22px;
}

.info-card,
.price-card,
.timeline-card,
.feature-card,
.contact-box {
  padding: 24px;
}

.price-card {
  padding: 30px;
}

.package-card-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}

.featured {
  background: linear-gradient(180deg, rgba(157, 77, 255, 0.18), rgba(19, 14, 31, 0.92));
}

.package-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed rgba(207, 125, 255, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(157, 77, 255, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.package-image-placeholder span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-image-placeholder strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  color: var(--text);
}

.package-image-placeholder-strong {
  border-style: solid;
  background:
    radial-gradient(circle at top, rgba(207, 125, 255, 0.28), transparent 52%),
    linear-gradient(180deg, rgba(157, 77, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 0 1px rgba(207, 125, 255, 0.12);
}

.package-list {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.package-list li + li {
  margin-top: 10px;
}

.package-content {
  display: grid;
  align-content: start;
  gap: 6px;
}

.package-title,
.package-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.package-subtitle {
  margin: 2px 0 4px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  color: var(--text);
}

.package-mark,
.package-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.package-mark-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.package-mark-xs {
  background: #d3e111;
  box-shadow: 0 0 0 6px rgba(139, 227, 74, 0.16);
}

.package-mark-s {
  background: #14d56d;
  box-shadow: 0 0 0 6px rgba(20, 213, 109, 0.16);
}

.package-mark-m {
  background: #2f8cff;
  box-shadow: 0 0 0 6px rgba(47, 140, 255, 0.16);
}

.package-mark-l {
  background: #8f7cff;
  box-shadow: 0 0 0 6px rgba(143, 124, 255, 0.16);
}

.package-mark-xl {
  background: #c86bff;
  box-shadow: 0 0 0 6px rgba(200, 107, 255, 0.18);
}

.package-mark-xxl {
  background: #ff7a59;
  box-shadow: 0 0 0 6px rgba(255, 122, 89, 0.18);
}

.package-mark-speaker {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(181, 129, 255, 0.12);
  color: #d6b7ff;
  font-size: 1.1rem;
}

.package-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 800;
}

.package-icon-check {
  background: #12d368;
  color: #ffffff;
}

.package-icon-people {
  background: rgba(176, 124, 255, 0.16);
  color: #d9b7ff;
}

.package-icon-price {
  background: rgba(255, 200, 92, 0.16);
  color: #ffd36a;
}

.package-icon-alert {
  background: rgba(255, 135, 92, 0.16);
  color: #ffb58f;
}

.package-content .badge,
.package-content h3,
.package-content p,
.package-content .text-link {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
}

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

.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.page-hero-grid,
.booking-overview-grid,
.feature-layout,
.contact-layout,
.booking-layout,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hero-grid,
.booking-overview-grid {
  display: grid;
  gap: 24px;
}

.content-panel {
  min-height: 100%;
}

.page-hero .content-panel:first-child {
  padding-right: 42px;
}

.page-hero .content-panel h1 {
  font-size: clamp(2.6rem, 4.9vw, 4.8rem);
  max-width: 9.5ch;
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.page-hero .content-panel .lead {
  max-width: 42ch;
}

.page-leistungen .page-hero .content-panel h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.95rem);
  max-width: 8.4ch;
  line-height: 1;
  text-wrap: pretty;
}

.page-leistungen .page-hero .content-panel .lead {
  max-width: 41ch;
}

.page-leistungen .page-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.page-leistungen .page-hero .content-panel:first-child {
  display: grid;
  align-content: start;
  gap: 0;
}

.page-stromversorgung .page-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
}

.page-stromversorgung .page-hero-grid > * {
  min-width: 0;
}

.page-stromversorgung .page-hero .content-panel:first-child {
  display: grid;
  align-content: start;
  gap: 0;
  padding-right: 16px;
}

.power-hero-copy h1 {
  max-width: 8.2ch;
  font-size: clamp(1.95rem, 2.45vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.power-hero-copy h1 span {
  display: block;
}

.power-hero-copy .lead {
  max-width: 38ch;
}

.power-hero-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(157, 77, 255, 0.12), rgba(255, 255, 255, 0.03));
  color: var(--muted);
}

.power-hero-note strong {
  color: var(--text);
}

.power-hero-panel {
  display: grid;
  align-content: start;
}

.page-stromversorgung .check-list {
  gap: 14px;
}

.page-stromversorgung .check-list li {
  padding: 18px 20px;
  line-height: 1.45;
}

.generator-details {
  margin-top: 22px;
}

.generator-details summary {
  cursor: pointer;
  user-select: none;
}

.generator-details-content {
  margin-top: 18px;
}

.generator-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}

.generator-layout > * {
  min-width: 0;
}

.generator-details-panel {
  grid-column: 1 / -1;
}

.generator-gallery-card,
.generator-copy-card,
.generator-details-panel {
  padding: 24px;
}

.generator-slider {
  display: grid;
  gap: 14px;
}

.generator-slider-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 4 / 3;
}

.generator-slider-link,
.generator-slider-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.generator-slider-link {
  cursor: zoom-in;
}

.generator-slider-link img {
  object-fit: cover;
}

.generator-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(182, 129, 255, 0.22);
  border-radius: 999px;
  background: rgba(20, 14, 31, 0.82);
  color: var(--text);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.generator-slider-nav:hover {
  background: rgba(157, 77, 255, 0.22);
  border-color: rgba(182, 129, 255, 0.38);
}

.generator-slider-prev {
  left: 14px;
}

.generator-slider-next {
  right: 14px;
}

.generator-slider-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.generator-thumb {
  padding: 0;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 10, 0.84);
  backdrop-filter: blur(10px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: min(86vh, 920px);
  padding: 18px;
  border: 1px solid rgba(182, 129, 255, 0.18);
  border-radius: 28px;
  background: rgba(18, 13, 30, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.image-lightbox-image {
  width: 100%;
  height: auto;
  max-height: calc(86vh - 36px);
  object-fit: contain;
  border-radius: 20px;
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(182, 129, 255, 0.22);
  border-radius: 999px;
  background: rgba(15, 10, 25, 0.9);
  color: var(--text);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: rgba(157, 77, 255, 0.24);
  border-color: rgba(182, 129, 255, 0.38);
  transform: scale(1.03);
}

body.lightbox-open {
  overflow: hidden;
}

.generator-thumb:hover,
.generator-thumb.is-active {
  border-color: rgba(182, 129, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(157, 77, 255, 0.16);
}

.generator-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.generator-copy-card {
  display: grid;
  gap: 0;
}

.generator-copy-card h3 {
  margin-bottom: 12px;
}

.generator-copy-card .lead {
  margin-bottom: 14px;
  max-width: 34ch;
}

.generator-copy-card > p:not(.lead):not(.generator-hint) {
  max-width: 54ch;
}

.generator-price-row {
  display: grid;
  gap: 6px;
  margin: 18px 0 18px;
}

.generator-price-row strong {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.generator-feature-list {
  margin: 0 0 18px;
}

.generator-hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.service-highlights article:last-child {
  grid-column: 1 / -1;
}

.service-highlights article {
  padding: 18px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.service-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.02rem;
}

.service-highlights p {
  margin: 0;
  max-width: 30ch;
}

.page-leistungen .feature-card h3 {
  max-width: none;
  font-size: clamp(1.4rem, 1.65vw, 1.8rem);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.page-leistungen .feature-card p {
  max-width: 23ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

.booking-overview-grid .content-panel:first-child h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  max-width: 11ch;
}

.booking-overview-grid .content-panel:first-child .lead {
  max-width: 34ch;
}

.contact-layout .contact-card h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  max-width: 8.8ch;
  line-height: 1;
  text-wrap: pretty;
}

.check-list,
.contact-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.contact-list li {
  padding: 14px 16px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.check-list li strong,
.contact-list li strong {
  color: var(--text);
}

.booking-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.booking-info-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.booking-info-strip strong {
  color: var(--text);
}

.site-footer {
  padding: 28px 0 40px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-selection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) minmax(0, 1fr);
  grid-template-areas:
    "type package service"
    "summary summary summary";
  gap: 16px;
}

.booking-selection-type {
  grid-area: type;
}

.booking-selection-package {
  grid-area: package;
}

.booking-selection-service {
  grid-area: service;
}

.booking-selection-grid > label[hidden] {
  display: none !important;
}

.booking-package-panel {
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.booking-package-panel h2,
.booking-package-panel h3 {
  margin-bottom: 10px;
}

.booking-hero-panel {
  display: grid;
  gap: 0;
  padding: 22px 28px;
}

.booking-hero-panel h1 {
  max-width: none;
  font-size: clamp(1.95rem, 2.6vw, 2.95rem);
  line-height: 0.98;
}

.booking-hero-panel h1 span {
  display: block;
  white-space: nowrap;
}

.booking-hero-panel .lead {
  max-width: 46ch;
  margin-top: 10px;
  font-size: 0.98rem;
}

.booking-package-panel-inline {
  grid-area: summary;
  margin-top: 0;
  padding: 18px 20px;
  border-color: rgba(182, 129, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.booking-package-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.booking-package-head .eyebrow {
  margin-bottom: 8px;
}

.booking-package-panel-inline .lead {
  max-width: 44ch;
  margin: 0;
  font-size: 0.98rem;
}

.booking-package-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 18px 28px;
  align-items: start;
}

.booking-package-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.booking-package-price {
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

.booking-package-list {
  margin: 0;
}

.booking-form-panel {
  padding: 34px;
}

.booking-form-panel > p {
  max-width: 48ch;
}

.booking-info-strip-compact {
  margin-top: 12px;
}

.booking-info-strip-compact span {
  padding: 7px 11px;
  font-size: 0.85rem;
}

.addon-fieldset {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.addon-fieldset legend {
  padding: 0 10px;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.addon-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(10, 7, 18, 0.58);
  cursor: pointer;
}

.addon-option input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.addon-copy {
  display: grid;
  gap: 4px;
}

.addon-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.addon-option strong {
  color: var(--text);
  font-size: 1rem;
}

.addon-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(182, 129, 255, 0.18);
  border-radius: 999px;
  background: rgba(157, 77, 255, 0.14);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.addon-option small {
  color: var(--muted);
  line-height: 1.55;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  position: relative;
}

.contact-form span {
  font-size: 0.95rem;
}

.inline-link {
  display: inline;
  margin-top: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(182, 129, 255, 0.16);
  border-radius: 16px;
  background: rgba(7, 5, 14, 0.72);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  color-scheme: dark;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(199, 184, 228, 0.64);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(157, 77, 255, 0.18);
  border-color: rgba(157, 77, 255, 0.45);
}

.contact-form textarea {
  resize: none;
  overflow-y: auto;
}

.contact-form select {
  appearance: none;
  color: var(--text);
}

.contact-form option {
  color: #111;
}

.picker-field input {
  padding-right: 70px;
}

.picker-input-shell {
  position: relative;
  display: block;
}

.picker-input-shell::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  pointer-events: none;
  opacity: 0.95;
  border: 1px solid rgba(182, 129, 255, 0.2);
  border-radius: 12px;
  background-color: rgba(157, 77, 255, 0.12);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.picker-field-date .picker-input-shell::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.picker-field-time .picker-input-shell::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15 15'/%3E%3C/svg%3E");
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  width: 52px;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
}

.form-status-success {
  background: rgba(143, 89, 255, 0.16);
  color: #f0e4ff;
  border: 1px solid rgba(185, 133, 255, 0.26);
}

.form-status-error {
  background: rgba(255, 82, 168, 0.12);
  color: #ffd5ef;
  border: 1px solid rgba(255, 82, 168, 0.22);
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
}

.checkbox-field span {
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
}

.form-hint {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.form-full {
  grid-column: 1 / -1;
}

.form-submit-block {
  display: grid;
  gap: 12px;
  margin-top: -2px;
}

.form-submit-block .button {
  width: 100%;
}

.legal-copy {
  display: grid;
  gap: 20px;
}

.legal-copy > div:first-child h1,
.legal-copy > div:first-child .lead {
  max-width: none;
}

.legal-copy,
.legal-copy section,
.legal-copy section > * {
  min-width: 0;
}

.legal-copy section {
  padding: 22px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.legal-copy p,
.legal-copy li {
  overflow-wrap: anywhere;
}

.legal-list {
  list-style: none;
  counter-reset: legal-counter;
  margin: 14px 0 0;
  padding-left: 0;
  color: var(--muted);
}

.legal-list li {
  position: relative;
  padding-left: 44px;
}

.legal-list li::before {
  content: "(" counter(legal-counter) ")";
  counter-increment: legal-counter;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
  font-weight: 700;
}

.legal-list li + li {
  margin-top: 10px;
}

.privacy-list {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.privacy-list li + li {
  margin-top: 10px;
}

.legal-copy h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  max-width: none;
  margin-bottom: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.footer-grid {
  padding: 28px;
  border: 1px solid rgba(182, 129, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(157, 77, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(26, 18, 40, 0.86), rgba(14, 10, 22, 0.96));
  box-shadow: var(--shadow);
  align-items: start;
  gap: 28px;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.footer-logo-image {
  width: clamp(148px, 16vw, 220px);
  height: auto;
  border-radius: 18px;
  opacity: 0.98;
  filter:
    drop-shadow(0 0 16px rgba(10, 7, 18, 0.9))
    drop-shadow(0 8px 24px rgba(157, 77, 255, 0.1));
}

.footer-brand p {
  margin: 0;
  max-width: 42ch;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer-social {
  gap: 10px;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-nav {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.footer-title {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links-row {
  width: 100%;
}

.footer-links-secondary {
  margin-top: -2px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(182, 129, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  background: rgba(157, 77, 255, 0.14);
  border-color: rgba(182, 129, 255, 0.24);
}

.nav-open .nav-links {
  display: flex;
  z-index: 70;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .metric-row,
  .card-grid,
  .card-grid-4,
  .card-grid-2,
  .timeline-grid,
  .page-hero-grid,
  .booking-overview-grid,
  .feature-layout,
  .contact-layout,
  .booking-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-highlights {
    grid-template-columns: 1fr;
  }

  .page-leistungen .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-stromversorgung .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .generator-layout {
    grid-template-columns: 1fr;
  }

  .package-card-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .content-panel,
  .contact-card,
  .section-accent .split-layout {
    padding: 28px;
  }

  h1 {
    max-width: 12ch;
  }

  .page-hero .content-panel:first-child {
    padding-right: 28px;
  }

  .page-hero .content-panel h1 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 8vw, 4.1rem);
    text-wrap: pretty;
  }

  .contact-layout .contact-card h1 {
    max-width: 10ch;
    font-size: clamp(2.2rem, 7.1vw, 3.5rem);
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-nav {
    justify-items: start;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  body::before {
    background-size: 28px 28px;
  }

  .nav {
    border-radius: 28px;
    padding: 14px;
    gap: 14px;
  }

  .brand {
    max-width: calc(100% - 64px);
    padding-right: 0;
  }

  .brand-logo {
    width: min(160px, 100%);
    border-radius: 14px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 70;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(12, 9, 19, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links a {
    width: 100%;
  }

  .nav-category {
    width: 100%;
  }

  .nav-category-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-category-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-category-menu a {
    padding-left: 24px;
  }

  .nav-whatsapp {
    width: 100%;
    height: 44px;
    border-radius: 16px;
  }

  .hero-copy,
  .hero-panel,
  .content-panel,
  .contact-card,
  .info-card,
  .price-card,
  .timeline-card,
  .feature-card,
  .contact-box {
    border-radius: 24px;
  }

  .page-hero .content-panel:first-child {
    padding-right: 24px;
  }

  .page-hero .content-panel h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 12vw, 3.6rem);
    line-height: 1;
  }

  .contact-layout .contact-card h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10.5vw, 3.1rem);
    text-wrap: pretty;
  }

  .power-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.4vw, 3rem);
    line-height: 0.96;
  }

  .power-hero-note {
    padding: 13px 14px;
  }

  .generator-gallery-card,
  .generator-copy-card,
  .generator-details-panel {
    padding: 20px;
  }

  .generator-slider-stage {
    border-radius: 20px;
  }

  .generator-slider-thumbs {
    gap: 10px;
  }

  .hero-actions,
  .button-row,
  .hero-panel-contact,
  .booking-info-strip,
  .footer-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .hero-panel-contact a,
  .footer-meta a {
    width: 100%;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero-panel-intro h2,
  h2 {
    max-width: 100%;
  }

  .package-title,
  .package-line {
    align-items: flex-start;
  }

  .package-image-placeholder {
    min-height: 180px;
  }

  .package-image-placeholder strong {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .booking-package-panel,
  .booking-form-panel,
  .addon-fieldset {
    padding: 20px;
  }

  .booking-hero-panel {
    padding: 20px 24px;
  }

  .booking-package-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-selection-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "type"
      "package"
      "service"
      "summary";
  }

  .booking-package-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-package-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .addon-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-highlights article:last-child {
    grid-column: auto;
  }

  .legal-copy {
    gap: 16px;
  }

  .legal-copy > div:first-child {
    margin-bottom: 2px;
  }

  .legal-copy section {
    padding: 18px;
  }

  .legal-copy h2 {
    line-height: 1.15;
    text-wrap: pretty;
  }

  .legal-list li {
    padding-left: 38px;
  }

  .privacy-list {
    padding-left: 18px;
  }

  .footer-grid {
    padding: 22px;
  }

  .footer-links-row {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --radius-xl: 26px;
    --radius-lg: 20px;
    --radius-md: 16px;
  }

  .site-header {
    padding-top: 12px;
  }

  .hero-section,
  .page-hero,
  .section,
  .site-footer {
    padding-top: 18px;
  }

  .nav {
    padding: 12px;
  }

  .nav-links {
    top: calc(100% + 8px);
    padding: 12px;
  }

  .hero-copy,
  .hero-panel,
  .content-panel,
  .contact-card,
  .info-card,
  .price-card,
  .timeline-card,
  .feature-card,
  .contact-box,
  .legal-copy section {
    padding: 20px;
  }

  .hero-section .hero-copy,
  .hero-section .hero-panel,
  .section-accent .split-layout,
  .content-panel.accent {
    padding: 22px;
  }

  .legal-copy {
    gap: 14px;
  }

  .legal-copy section {
    padding: 16px;
  }

  .page-hero .content-panel:first-child {
    padding-right: 20px;
  }

  .page-hero .content-panel h1,
  .page-leistungen .page-hero .content-panel h1,
  .booking-overview-grid .content-panel:first-child h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    max-width: 100%;
  }

  .booking-hero-panel {
    padding: 18px 20px;
  }

  .booking-hero-panel h1 {
    font-size: clamp(1.8rem, 8.2vw, 2.45rem);
    max-width: 100%;
  }

  .booking-hero-panel h1 span {
    white-space: normal;
  }

  .booking-info-strip-compact span {
    width: auto;
  }

  .lead,
  .page-hero .content-panel .lead,
  .page-leistungen .page-hero .content-panel .lead,
  .booking-overview-grid .content-panel:first-child .lead {
    max-width: 100%;
    font-size: 0.98rem;
  }

  h3,
  .page-leistungen .feature-card h3,
  .legal-copy h2 {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
  }

  .legal-copy > div:first-child h1 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.02;
    text-wrap: pretty;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .legal-copy > div:first-child .lead,
  .legal-copy section p,
  .legal-copy li {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .eyebrow,
  .badge,
  .overline {
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .package-list li {
    gap: 10px;
  }

  .package-mark-dot {
    width: 14px;
    height: 14px;
  }

  .package-mark-speaker,
  .package-icon {
    width: 26px;
    height: 26px;
  }

  .legal-list li {
    padding-left: 34px;
  }

  .legal-list li::before {
    font-size: 0.92rem;
    top: 1px;
  }

  .privacy-list {
    padding-left: 16px;
  }

  .form-status,
  .checkbox-field {
    padding: 14px;
  }

  .contact-form {
    gap: 14px;
  }

  .form-submit-block {
    gap: 10px;
    margin-top: -4px;
  }

  .footer-links a {
    min-height: 38px;
    padding: 0 12px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 16px), var(--container));
  }

  .nav,
  .footer-grid {
    border-radius: 22px;
  }

  .brand-logo {
    width: min(138px, 100%);
  }

  .page-hero .content-panel h1,
  .page-leistungen .page-hero .content-panel h1,
  .contact-layout .contact-card h1 {
    font-size: clamp(1.85rem, 10.5vw, 2.65rem);
  }

  .legal-copy > div:first-child h1 {
    font-size: clamp(1.5rem, 8.8vw, 2rem);
    line-height: 1.04;
  }

  .legal-copy > div:first-child .lead,
  .legal-copy section p,
  .legal-copy li {
    font-size: 0.94rem;
  }

  .legal-copy section {
    padding: 15px;
    overflow: hidden;
  }

  .legal-copy h2 {
    font-size: 1.2rem;
    line-height: 1.15;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .button {
    min-height: 48px;
    padding: 0 16px;
  }

  .package-image-placeholder {
    min-height: 150px;
  }

  .package-image-placeholder strong {
    font-size: clamp(2.2rem, 15vw, 3.2rem);
  }
}
