/* welcometo.berlin – statische Landingpage */
:root {
  /* Startseite: gemeinsame Breite mit Rand (Header, Countdown, Main) */
  --page-shell-max: min(86rem, calc(100vw - 2.75rem));
  /* Hero links / Gebot rechts: gleiche Mindesthöhe im oberen Bereich */
  --split-hero-band-min: clamp(440px, 68vh, 740px);
  /* Helles, sachliches Farbschema (Vertrauen / weniger „dunkle Promo“) */
  --bg: #f2f5f3;
  --bg-elevated: #e8eeea;
  --surface: #ffffff;
  --stone: #8a9a90;
  --text: #14261c;
  --text-muted: #4d6258;
  --accent: #0d6b47;
  --accent-dark: #084d32;
  --accent-hover: #108a5a;
  --accent-glow: rgba(13, 107, 71, 0.14);
  --border: #c9d8cf;
  --border-glass: rgba(22, 55, 40, 0.1);
  --focus: #0b6efd;
  --radius: 12px;
  --space: clamp(1rem, 4vw, 2rem);
  --max: 68rem;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  /* 0 … 1: Scroll-Tiefe für Verlauf + Blur über fixem Berlin-Hintergrund */
  --scroll-frost: 0;
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: transparent;
  overflow-x: clip;
}

/* Fixiertes Berlin-Motiv (full viewport), Crossfade zwischen Motiven, darüber Frost + Blur */
.viewport-bg-stack {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  transform: translateZ(0);
}

.viewport-bg-layer {
  position: absolute;
  inset: 0;
  background-color: #e4ebe7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.35s ease-in-out;
}

.viewport-bg-layer.is-visible {
  opacity: 1;
}

.viewport-frost {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* Ganz oben: kein Verlauf/kein Blur; erst mit Scroll zunehmend */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, calc(var(--scroll-frost) * 0.42)) 0%,
    rgba(248, 251, 249, calc(var(--scroll-frost) * 0.62)) 50%,
    rgba(242, 246, 243, calc(var(--scroll-frost) * 0.78)) 100%
  );
  backdrop-filter: blur(calc(var(--scroll-frost) * 20px));
  -webkit-backdrop-filter: blur(calc(var(--scroll-frost) * 20px));
}

/*
 * Lesevignette fixiert wie der Frost: kein „Schnitt“ an der unteren Hero-Kante,
 * weil der Verlauf an der Viewport-Höhe endet, nicht an der Sektionsbox.
 */
.page-hero-dim {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: min(170vh, 1320px);
  z-index: 0;
  pointer-events: none;
  /* Helle Lesefläche über dem Foto – Text bleibt klar, Motiv bleibt sichtbar */
  background: linear-gradient(
    185deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.72) 22%,
    rgba(248, 251, 249, 0.45) 42%,
    rgba(242, 246, 243, 0.18) 66%,
    rgba(242, 246, 243, 0.04) 86%,
    transparent 100%
  );
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.top-stack {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

.topbar {
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(calc(var(--scroll-frost) * 16px)) saturate(145%);
  -webkit-backdrop-filter: blur(calc(var(--scroll-frost) * 16px)) saturate(145%);
}

.countdown-ribbon {
  width: 100%;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
  background: linear-gradient(
    105deg,
    #e8f4ee 0%,
    #e4f0f7 48%,
    #e9eef5 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.countdown-ribbon__bd {
  max-width: var(--page-shell-max);
  margin: 0 auto;
  padding: 0.5rem var(--space);
}

.countdown-ribbon__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.75rem;
  font-size: clamp(0.76rem, 2.1vw, 0.9rem);
  line-height: 1.2;
  text-align: center;
}

.countdown-ribbon__blocks {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem;
}

.countdown-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  padding: 0.2rem 0.4rem 0.28rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  border: 1px solid rgba(22, 55, 40, 0.1);
}

.countdown-block strong {
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  font-variant-numeric: tabular-nums;
  color: var(--accent-dark);
  line-height: 1.1;
}

.countdown-block > span:last-child {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.08rem;
}

.countdown-ribbon__prefix {
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.countdown-ribbon__suffix {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.countdown-ribbon__ended {
  font-weight: 800;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: #a61e2a;
  letter-spacing: 0.02em;
}

.countdown-ribbon__inner--ended {
  justify-content: center;
}

.topbar-inner {
  max-width: var(--page-shell-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--space);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.brand:hover .wordmark-logo__main,
.brand:hover .wordmark-logo__tld {
  filter: brightness(1.08);
}

/* Logo als echtes Markup (kein PNG-Chroma): Glas-Optik per CSS */
.wordmark-logo {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: center;
}

.wordmark-logo__main,
.wordmark-logo__tld {
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 1px 2px rgba(20, 38, 28, 0.12));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .wordmark-logo__main,
  .wordmark-logo__tld {
    color: #0d4a32;
    -webkit-text-fill-color: currentColor;
    background: none;
    filter: none;
  }
}

.wordmark-logo__main {
  background-image: linear-gradient(165deg, #1a3d2c 0%, #0d6b47 55%, #0a5236 100%);
}

.wordmark-logo__tld {
  background-image: linear-gradient(165deg, #0d6b47 0%, #0a8f5c 50%, #084d32 100%);
}

.wordmark-logo--hero {
  position: relative;
  margin: 0;
  font-size: clamp(1.65rem, 6.5vw, 3.05rem);
  padding: 0.42em 0.65em 0.48em;
  border-radius: 18px;
  border: 1px solid rgba(22, 55, 40, 0.12);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 244, 0.88));
  box-shadow:
    0 8px 28px rgba(20, 50, 35, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.wordmark-logo--hero .wordmark-logo__main,
.wordmark-logo--hero .wordmark-logo__tld {
  filter: drop-shadow(0 1px 2px rgba(20, 38, 28, 0.1));
}

.wordmark-logo--compact {
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  padding: 0.2em 0.4em;
  border-radius: 10px;
  border: 1px solid rgba(22, 55, 40, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 239, 0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hero: Wordmark-Bühne */
.hero-logo-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(0.5rem, 2vw, 1.25rem) 0 clamp(0.75rem, 2.5vw, 1.5rem);
}

.hero-inner .lang-en {
  margin-top: auto;
}

.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.95rem;
}

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

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

.topbar-cta {
  color: var(--accent-dark) !important;
  font-weight: 600;
}

main {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space) 4rem;
  background: transparent;
}

/* Startseite: breiter Kasten mit seitlichem Rand; links Inhalt inkl. Hero / rechts Gebot */
main.page-layout {
  max-width: var(--page-shell-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space);
  padding-right: var(--space);
  box-sizing: border-box;
}

.page-layout__split {
  display: block;
}

@media (min-width: 1080px) {
  .page-layout__split {
    display: grid;
    /* ca. 60 % Inhalt / 40 % Gebot */
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: clamp(1.25rem, 2.5vw, 2.5rem) clamp(1.25rem, 2.8vw, 2.75rem);
    align-items: start;
  }

  .page-layout__primary {
    min-width: 0;
  }

  .page-layout__aside {
    position: sticky;
    top: 5.85rem;
    align-self: start;
    box-sizing: border-box;
    /* Abstand nach oben + optisch an den Hero-Headline-Bereich angeglichen */
    padding-top: clamp(5.25rem, 11vw, 7.75rem);
    padding-left: clamp(0.35rem, 1.2vw, 0.75rem);
    min-height: var(--split-hero-band-min);
  }

  .page-layout__aside .inquiry.section {
    padding-top: 0;
    width: 100%;
    max-width: min(26rem, 100%);
    margin-left: auto;
    margin-right: 0;
  }

  /* Sprachenbox: gleiche Breite und rechte Flucht wie Gebotsformular */
  .page-layout__aside > .lang-switcher {
    width: 100%;
    max-width: min(26rem, 100%);
    margin-left: auto;
    margin-right: 0;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
  }

  .page-layout__aside .inquiry-form {
    max-width: none;
    width: 100%;
  }

  .page-layout__aside .bid-notice,
  .page-layout__aside .form-error {
    max-width: none;
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .page-layout__aside .inquiry.section {
    max-width: min(27.5rem, 100%);
  }

  .page-layout__aside > .lang-switcher {
    max-width: min(27.5rem, 100%);
  }

  .page-layout__aside .inquiry-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
  }

  .page-layout__aside .inquiry-form__fields .field--full {
    grid-column: 1 / -1;
  }
}

.section {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.hero-bleed {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(520px, 88vh, 900px);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

/* Hero in der linken Spalte (kein Edge-to-Edge-Breakout) */
.hero.hero--in-split {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: var(--split-hero-band-min);
  padding-bottom: clamp(1rem, 3vw, 1.75rem);
  margin-bottom: 0.25rem;
}

.hero.hero--in-split .hero-inner {
  max-width: none;
  margin: 0;
  min-height: var(--split-hero-band-min);
  padding-left: 0;
  padding-right: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  min-height: clamp(520px, 88vh, 900px);
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 2rem) var(--space) 0;
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
}

.hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: none;
}

.hero-sub {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 42rem;
  text-shadow: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(165deg, #108a5a 0%, var(--accent) 48%, var(--accent-dark) 100%);
  color: #ffffff;
  border-color: color-mix(in srgb, var(--accent-dark) 55%, #000);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  background: linear-gradient(165deg, var(--accent-hover) 0%, #12965f 52%, var(--accent) 100%);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  background: #ffffff;
}

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

@media (min-width: 640px) {
  .trustbar {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.trustbar li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  text-shadow: none;
}

.trustbar-icon {
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1.4;
}

.hero-micro {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 44rem;
  margin: 0 0 2rem;
  text-shadow: none;
}

.lang-en {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.lang-en-heading {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--text);
  font-weight: 600;
  text-shadow: none;
}

.lang-en-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 40rem;
  text-shadow: none;
}

.section h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.grid-usecases {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .grid-usecases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid-usecases {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 4px 18px rgba(20, 45, 32, 0.06);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--text);
}

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

.value-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.value-list li {
  margin-bottom: 0.5rem;
}

.pricing-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.pricing-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.pricing-block p {
  margin: 0;
  color: var(--text-muted);
}

.process-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.process-list li {
  margin-bottom: 0.65rem;
}

.process-list strong {
  color: var(--text);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  margin-bottom: 0.65rem;
  padding: 0 1rem;
  box-shadow: 0 2px 10px rgba(20, 45, 32, 0.04);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.9rem 0;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.lang-switcher__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-switcher__btns {
  display: flex;
  gap: 0.35rem;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  min-height: 2.35rem;
  padding: 0.2rem 0.45rem;
  margin: 0;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-elevated) 90%, transparent);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.lang-switcher__btn:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
}

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

.lang-switcher__btn--active {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, #ffffff);
}

.lang-switcher__flag {
  font-size: 1.35rem;
  line-height: 1;
  pointer-events: none;
}

.lang-switcher--inline {
  margin-bottom: 0;
  margin-left: auto;
}

.inquiry-urgency {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.inquiry--aside h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.2;
}

.inquiry-heading-muted {
  display: block;
  margin-top: 0.2em;
  font-weight: 600;
  font-size: 0.58em;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

@media (min-width: 1280px) {
  .inquiry-heading-muted {
    display: inline;
    margin-top: 0;
    margin-left: 0.35em;
  }
}

.inquiry-hint {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 40rem;
}

.inquiry-hint--compact {
  margin: 0 0 0.75rem;
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.35;
}

.bid-notice {
  max-width: 36rem;
  margin: 0 0 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--border));
  background: linear-gradient(165deg, #ecf6f0, #f4faf7);
  box-shadow: 0 4px 16px rgba(20, 45, 32, 0.06);
}

.bid-notice p {
  margin: 0;
  line-height: 1.55;
}

.bid-notice--form-hint {
  margin-top: 1.15rem;
}

.bid-notice--form-hint .bid-notice__lead {
  margin-bottom: 0.65rem;
}

.bid-notice--form-hint .bid-notice__detail {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.field--checkbox {
  margin-bottom: 0.85rem;
}

.field-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text);
}

.field-checkbox-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}

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

.form-error {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  color: #7a1212;
  background: #fdeaea;
  border: 1px solid #e8b4b4;
  border-radius: var(--radius);
  max-width: 40rem;
}

.inquiry-form {
  max-width: 32rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 8px 28px rgba(20, 45, 32, 0.07);
}

.inquiry-form--aside {
  padding: 1.05rem 1.15rem 1.15rem;
}

.page-layout__aside .inquiry-form--aside .field {
  margin-bottom: 0.72rem;
}

.page-layout__aside .inquiry-form--aside .field:last-child {
  margin-bottom: 0;
}

.inquiry-form__fields {
  display: block;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.optional {
  font-weight: 500;
  color: var(--text-muted);
}

.req {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  font: inherit;
  color: var(--text);
  background: #fbfcfb;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--text-muted);
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.inquiry-form--aside .field textarea {
  min-height: 4.5rem;
}

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

.legal-inline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.legal-inline a {
  color: var(--accent);
}

.legal-inline--compact {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem 1rem;
}

.verify-main {
  max-width: 28rem;
}

.verify-lead {
  margin: 0 0 1.25rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.verify-lead strong {
  color: var(--text);
}

.bid-summary {
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--border));
  background: linear-gradient(165deg, #f2faf5, #ffffff);
  box-shadow: 0 4px 16px rgba(20, 45, 32, 0.06);
}

.bid-summary__title {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

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

.bid-summary__intro strong {
  color: var(--text);
}

.verify-form .bid-summary {
  margin-bottom: 1.35rem;
}

.thanks-mail-hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.thanks-main .bid-summary {
  margin-bottom: 1.25rem;
}

.bid-summary__list {
  margin: 0;
  display: grid;
  gap: 0.55rem 1rem;
}

.bid-summary__row {
  display: grid;
  grid-template-columns: minmax(0, 7.5rem) minmax(0, 1fr);
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  font-size: 0.9rem;
}

@media (max-width: 380px) {
  .bid-summary__row {
    grid-template-columns: 1fr;
  }
}

.bid-summary__row dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.bid-summary__row dd {
  margin: 0;
  color: var(--text);
  word-break: break-word;
}

.bid-summary__value--multiline {
  white-space: pre-wrap;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.verify-error {
  max-width: none;
}

.verify-form {
  margin-top: 0.5rem;
}

.otp-fieldset {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
}

.otp-legend {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  padding: 0;
  color: var(--text);
}

.otp-hint {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.otp-cells {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto 1.25rem;
  max-width: 22rem;
}

.otp-cell {
  width: clamp(2.65rem, 12vw, 3.15rem);
  height: clamp(3.1rem, 14vw, 3.65rem);
  padding: 0;
  font: inherit;
  font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: center;
  color: var(--text);
  background: #ffffff;
  border: 2px solid color-mix(in srgb, var(--border) 85%, var(--accent) 15%);
  border-radius: 10px;
  box-shadow:
    0 2px 10px rgba(20, 45, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.12s ease;
}

.otp-cell:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--accent);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--accent) 22%, transparent),
    0 4px 14px rgba(20, 45, 32, 0.08);
}

.verify-actions {
  margin-bottom: 1rem;
}

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

.verify-abort {
  margin: 0;
  font-size: 0.88rem;
  text-align: center;
}

.verify-abort a {
  color: var(--text-muted);
}

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

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 2.5rem var(--space) 2rem;
  background: color-mix(in srgb, #ffffff 88%, var(--bg-elevated));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin: 0 0 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.site-footer small {
  color: var(--text-muted);
}

/* Legal / Danke */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-header {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border-glass);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(calc(var(--scroll-frost) * 14px)) saturate(140%);
  -webkit-backdrop-filter: blur(calc(var(--scroll-frost) * 14px)) saturate(140%);
}

.legal-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-header .brand {
  display: inline-flex;
}

.legal-main {
  flex: 1;
  max-width: 42rem;
  margin: 1rem auto 2rem;
  padding: 2rem var(--space) 3rem;
  width: 100%;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
}

.legal-main h1 {
  font-size: 1.75rem;
  margin-top: 0;
}

.legal-main h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

.legal-main p,
.legal-main li {
  color: var(--text-muted);
}

.legal-main a:not(.btn) {
  color: var(--accent);
}

.legal-note {
  font-size: 0.88rem;
  margin-top: 2rem;
  padding: 1rem;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.site-footer--minimal {
  margin-top: auto;
  text-align: center;
}

.site-footer--minimal p {
  margin: 0.35rem 0;
}

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

.thanks-main .btn {
  margin-top: 1rem;
}
