/* FIXED Landingpage — Design-Tokens aus fixed/DOCS/DesignSystem.md / widget/src/index.css.
   Schrift: Inter (wie fixed-handwerk.de), lokal gehostet (OFL). Keine externen Requests. */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113;
}

/* Tokens gespiegelt von fixed-handwerk.de (:root dort in HSL) */
:root {
  --orange: hsl(22, 100%, 51%);
  --orange-dark: hsl(22, 100%, 44%);
  --orange-soft: hsl(22, 100%, 95%);
  --blue: hsl(210, 100%, 40%);
  --ink: hsl(222, 47%, 11%);
  --paper: #ffffff;
  --mist: hsl(0, 0%, 96%);
  --line: hsl(0, 0%, 91%);
  --dim: hsl(0, 0%, 45%);
  --green: hsl(134, 61%, 41%);
  --red: hsl(0, 84%, 60%);
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gradient-primary: linear-gradient(135deg, hsl(22, 100%, 51%), hsl(22, 100%, 60%));
  --shadow-card: 0 10px 30px -10px rgba(15, 23, 41, 0.18), 0 2px 8px rgba(15, 23, 41, 0.06);
  --shadow-elevated: 0 12px 32px -10px hsl(22 100% 51% / 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* ---------- Layout primitives ---------- */

.wrap {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section--mist {
  background: var(--mist);
}

.section--ink {
  background: var(--ink);
  color: #fff;
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.dot {
  color: var(--orange);
}

.lead {
  font-size: 1.1875rem;
  color: var(--dim);
  max-width: 38rem;
  margin: 1.25rem 0 0;
}

.section--ink .lead {
  color: rgba(255, 255, 255, 0.75);
}

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

/* Brückensatz unter den Problemkarten: nennt die Lösung und leitet zur Demo über */
/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease,
    transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

/* Primär-CTA wie auf fixed-handwerk.de: Gradient + orangegetönter Schatten + hover-scale */
.btn--primary {
  background: var(--orange);
  background-image: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-elevated);
}

.btn--primary:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.section--ink .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section--ink .btn--ghost:hover {
  border-color: #fff;
}

.btn--block {
  width: 100%;
}

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  text-decoration: none;
}

.wordmark svg {
  height: 1.75rem;
  width: auto;
  display: block;
  overflow: visible;
}

.footer .wordmark svg {
  height: 0.95rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__link {
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--dim);
}

.header__link:hover {
  color: var(--ink);
}

.header .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
}

@media (max-width: 40rem) {
  .header__link {
    display: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding: 4.5rem 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 52rem) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero__inner {
  max-width: 46rem;
}

/* ---------- Bild-Platzhalter (assets/IMAGE_PROMPTS.md) ---------- */

.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange-soft), var(--mist));
  border: 2px dashed hsl(22, 60%, 80%);
}

.ph.has-img {
  border: none;
  box-shadow: var(--shadow-elevated);
}

.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ph__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dim);
}

.ph__label svg {
  width: 2rem;
  height: 2rem;
  color: hsl(22, 60%, 70%);
}

.ph__label code {
  font-size: 0.78rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
}

.ph--hero {
  aspect-ratio: 1 / 1;
  max-height: 34rem;
}

.ph--pilot {
  aspect-ratio: 3 / 2;
  margin-top: 2rem;
  max-width: 34rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dim);
}

.trustline li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trustline svg {
  width: 1rem;
  height: 1rem;
  color: var(--green);
  flex-shrink: 0;
}

/* ---------- Cards / grids ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 48rem) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--dim);
  font-size: 0.9875rem;
}

.card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* ---------- Demo section: mock browser + widget ---------- */

.demo-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dim);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-top: 1.25rem;
}

.demo-note__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
}

.browser {
  position: relative;
  margin: 2.5rem auto 0;
  max-width: 40rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

/* Klick-Affordanz: Badge + pulsierende Start-Kachel, bis zum ersten Klick */

.browser__badge {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  box-shadow: 0 2px 8px rgba(255, 92, 1, 0.35);
  animation: badge-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

.browser__badge svg {
  width: 0.9rem;
  height: 0.9rem;
}

.browser.started .browser__badge {
  display: none;
}

@keyframes badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

.browser:not(.started) .tiles .tile:first-child {
  animation: tile-ring 2.4s ease-out infinite;
}

@keyframes tile-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 92, 1, 0.45);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(255, 92, 1, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 1, 0);
  }
}

.browser__bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.browser__dots {
  display: flex;
  gap: 0.3rem;
}

.browser__dots span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--line);
}

.browser__url {
  flex: 1;
  font-size: 0.8125rem;
  color: var(--dim);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser__body {
  padding: 1.75rem 1.75rem 0.5rem;
  background: linear-gradient(180deg, #fbfaf9 0%, var(--paper) 30%);
}

/* Widget card — Nachbau der WidgetCard-Optik */

.widget {
  position: relative;
}

.widget__progress {
  height: 3px;
  background: var(--mist);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.widget__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.widget__title {
  font-family: var(--body);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.widget__subtitle {
  text-align: center;
  color: var(--dim);
  font-size: 0.9375rem;
  margin: 0.35rem 0 1.5rem;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

@media (max-width: 30rem) {
  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 6rem;
  padding: 0.75rem 0.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.tile:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.tile svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--orange);
}

.tile--more {
  border-style: dashed;
  color: var(--dim);
}

.tile--more svg {
  color: var(--dim);
}

.tile--more:hover {
  color: var(--ink);
  background: var(--paper);
}

.tile--more:hover svg {
  color: var(--orange);
}

.widget__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.widget__textlink {
  background: none;
  border: none;
  padding: 0.2rem;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.widget__textlink:hover {
  color: var(--ink);
}

.service-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-list button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0.25rem;
  font-family: var(--body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.service-list button:hover {
  color: var(--orange);
}

/* Widget form fields */

.wfield {
  margin-bottom: 1rem;
  text-align: left;
}

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

.wfield .optional {
  color: var(--dim);
  font-weight: 400;
}

.wfield input,
.wfield select,
.wfield textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
}

.wfield select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b76' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1.05rem;
  cursor: pointer;
}

.wfield textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.wfield__hint {
  font-size: 0.78rem;
  color: var(--dim);
  margin: 0.3rem 0 0;
}

.wfield__count {
  font-size: 0.75rem;
  color: var(--dim);
  text-align: right;
  margin-top: 0.25rem;
}

.wfield__count--warn {
  color: var(--orange);
}

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

.wupload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dim);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.wupload:hover {
  border-color: var(--orange);
  color: var(--ink);
}

.wupload svg {
  width: 1.1rem;
  height: 1.1rem;
}

.wcheck {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: var(--dim);
  text-align: left;
  margin-bottom: 1rem;
}

.wcheck input {
  margin-top: 0.2rem;
  accent-color: var(--orange);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.widget__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.widget__back {
  background: none;
  border: none;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dim);
  cursor: pointer;
  padding: 0.3rem;
}

.widget__back:hover {
  color: var(--ink);
}

.widget__error {
  color: var(--red);
  font-size: 0.8125rem;
  margin: 0.25rem 0 0;
}

.powered {
  text-align: center;
  font-size: 0.75rem;
  color: var(--dim);
  padding: 1rem 0 0.75rem;
}

.powered strong {
  color: var(--ink);
}

/* Confirm modal — lebt im Browser-Mock */

.wmodal {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  z-index: 5;
}

.wmodal__card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 20rem;
  text-align: center;
}

.wmodal__card h4 {
  font-family: var(--body);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.wmodal__card p {
  font-size: 0.875rem;
  color: var(--dim);
  margin: 0 0 1.1rem;
}

/* Success */

.wsuccess {
  text-align: center;
  padding: 1rem 0 0.5rem;
}

.wsuccess__check {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wsuccess__check svg {
  width: 1.75rem;
  height: 1.75rem;
}

.wsuccess h4 {
  font-family: var(--body);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.wsuccess p {
  color: var(--dim);
  font-size: 0.9375rem;
  margin: 0;
}

.wsuccess__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin: 1.1rem 0 0.2rem;
  color: #d4d4d8;
}

.wsuccess__stars svg {
  width: 1.4rem;
  height: 1.4rem;
}

.wsuccess__stars .on {
  color: var(--orange);
}

.wsuccess__hint {
  font-size: 0.78rem;
}

/* ---------- Flip: die Anfrage beim Handwerker ---------- */

.inquiry {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

.inquiry__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.inquiry__head h3 {
  font-family: var(--body);
  font-size: 1.05rem;
}

.inquiry__meta {
  font-size: 0.8125rem;
  color: var(--dim);
  margin-top: 0.15rem;
}

.inquiry__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid hsl(22, 100%, 85%);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}

.inquiry__badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
}

.inquiry__body {
  padding: 1.1rem 1.4rem;
  text-align: left;
}

.inquiry__section {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 1.2rem 0 0.6rem;
}

.inquiry__section:first-child {
  margin-top: 0;
}

.inquiry__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.photo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.7rem 0.35rem 0.35rem;
}

.photo-chip[data-photo] {
  cursor: zoom-in;
}

.photo-chip[data-photo]:hover {
  border-color: var(--orange);
}

.photo-chip__thumb {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius-sm) - 2px);
  background: linear-gradient(135deg, #d9b78e, #a97d51);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.photo-chip__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 41, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}

.lightbox figure {
  margin: 0;
  max-width: min(56rem, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  text-align: center;
}

.photo-chip__thumb svg {
  width: 1.1rem;
  height: 1.1rem;
}

.inquiry__photos .none {
  font-size: 0.875rem;
  color: var(--dim);
}

.inquiry__rows {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(9rem, 16rem) 1fr;
  gap: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

#inq-pager {
  min-height: 24rem;
}

.inquiry__pagenav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.inquiry__pagelabel {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dim);
}

.inquiry__pagebtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.inquiry__pagebtn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.inquiry__pagebtn:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
}

.inquiry__pagebtn:disabled {
  opacity: 0.35;
  cursor: default;
}

.inquiry__rows dt {
  color: var(--dim);
  font-weight: 600;
}

.inquiry__rows dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.inquiry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1rem 1.4rem 1.3rem;
  border-top: 1px solid var(--line);
}

.inquiry__actions .btn {
  flex: 1;
  padding: 0.6rem 0.5rem;
  font-size: 0.9rem;
  pointer-events: none;
  white-space: nowrap;
}

.inquiry__actions .btn--primary {
  flex: 1 1 100%;
}

.btn--no {
  background: var(--mist);
  color: var(--ink);
}

.inquiry-hint {
  text-align: center;
  font-size: 0.875rem;
  color: var(--dim);
  margin: 1rem auto 0;
  max-width: 34rem;
}

/* ---------- Dark band: Kein MyHammer ---------- */

.nots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 48rem) {
  .nots {
    grid-template-columns: 1fr;
  }
}

.not-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.not-card h3 {
  font-family: var(--body);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.not-card h3 svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--orange);
  flex-shrink: 0;
}

.not-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
  margin: 0.5rem 0 0;
}

/* ---------- Pilot + Formular ---------- */

.pilot-benefits {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 34rem;
}

.pilot-benefits li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.pilot-benefits svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

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

@media (max-width: 52rem) {
  .signup {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.leadform {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
}

.leadform .wfield input,
.leadform .wfield select {
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
}

.leadform .wfield select {
  padding-right: 2.6rem;
}

.leadform__foot {
  font-size: 0.8125rem;
  color: var(--dim);
  text-align: center;
  margin: 0.9rem 0 0;
}

.leadform__error {
  display: none;
  color: var(--red);
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  text-align: center;
}

.leadform__error.show {
  display: block;
}

.reveal {
  margin-top: 1.5rem;
}

.reveal__info {
  background: var(--orange-soft);
  border: 1px solid hsl(22, 100%, 85%);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
}

.reveal__info h3 {
  margin-bottom: 0.5rem;
}

.reveal__info p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.lead-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.lead-success h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.lead-success p {
  color: var(--dim);
  max-width: 26rem;
  margin: 0.75rem auto 0;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 44rem;
  margin: 2.5rem auto 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.25rem;
  font-weight: 700;
  font-size: 1.03rem;
}

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

.faq summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 1.2rem;
  padding: 0 0.25rem;
  color: var(--dim);
}

/* ---------- Final CTA + Footer ---------- */

.final {
  text-align: center;
}

.final .hero__ctas {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 6rem;
  font-size: 0.875rem;
  color: var(--dim);
}

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

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer a {
  color: var(--dim);
}

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

/* ---------- Sticky Mobile CTA ---------- */

.sticky-cta {
  display: none;
}

@media (max-width: 40rem) {
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }

  .sticky-cta.hidden {
    display: none;
  }
}

/* ---------- Legal pages ---------- */

.legal {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 5rem;
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 2.25rem;
}

.legal h3 {
  margin-top: 1.5rem;
}

.legal p,
.legal li {
  color: #3a3f4d;
}

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

/* ---------- Motion ---------- */

.demo-view {
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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