/* ReconBase – Farben & Stil angelehnt an Anzeigenmotiv */

/* Lokal gehostete Schriften (keine Verbindung zu Google-Servern).
   Variable Fonts – ein Datei je Familie und Subset deckt den gesamten
   Schnittbereich ab. Quelle: Google Fonts, SIL Open Font License 1.1. */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f7f8fa;
  --bg-white: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: #4a5560;
  --anthracite: #22262a;
  --blue: #0050ab;
  --blue-hover: #003d85;
  --blue-soft: #e8f1fb;
  --blue-mid: #2a6fc0;
  --orange: #f47b20;
  --orange-hover: #db6a12;
  --orange-soft: #fff1e6;
  --line: rgba(0, 80, 171, 0.14);
  --header-bg: rgba(247, 248, 250, 0.92);
  --footer-bg: #f7f8fa;
  --price-bg: #0050ab;
  --radius: 6px;
  --font-display: "Montserrat", "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --space: clamp(1.25rem, 4vw, 2.5rem);
  --max: 68rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.65rem;
  --dot-blue: rgba(0, 80, 171, 0.34);
  --dot-orange: rgba(244, 123, 32, 0.34);
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0f1419;
  --bg-white: #171d24;
  --ink: #eef2f6;
  --ink-muted: #a0aab4;
  --anthracite: #f4f6f8;
  --blue: #4d9be8;
  --blue-hover: #73b2f0;
  --blue-soft: #152536;
  --blue-mid: #3a7ec7;
  --orange: #f47b20;
  --orange-hover: #ffa04a;
  --orange-soft: #2a1c10;
  --line: rgba(77, 155, 232, 0.2);
  --header-bg: rgba(15, 20, 25, 0.92);
  --footer-bg: #0f1419;
  --price-bg: #0d3d75;
  --dot-blue: rgba(77, 155, 232, 0.4);
  --dot-orange: rgba(244, 123, 32, 0.4);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
  overflow-x: clip;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--blue-hover);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

p:last-child {
  margin-bottom: 0;
}

.wrap {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* Split divider: blau | orange */
.split-line {
  display: block;
  height: 3px;
  width: min(100%, 22rem);
  margin: 0.7rem auto;
  border: 0;
  background: linear-gradient(90deg, var(--blue) 50%, var(--orange) 50%);
}

.split-line--left {
  margin-left: 0;
}

.split-line--wide {
  width: 100%;
  max-width: none;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 50%, var(--orange) 50%);
  opacity: 0.85;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  letter-spacing: -0.04em;
}

.logo-recon {
  color: #0050ab;
}

.logo-base {
  color: #f47b20;
}

[data-theme="dark"] .logo-recon {
  color: #4d9be8;
}

[data-theme="dark"] .logo-base {
  color: #f47b20;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue);
}

.nav__cta {
  color: #fff !important;
  background: var(--orange);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease);
}

.nav__cta:hover {
  background: var(--orange-hover);
  color: #fff !important;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  background: #1a1a1a;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.theme-toggle:hover {
  background: #2b3035;
  border-color: #2b3035;
  color: #ffffff;
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
}

[data-theme="dark"] .theme-toggle {
  background: #ffffff;
  border-color: #ffffff;
  color: #1a1a1a;
}

[data-theme="dark"] .theme-toggle:hover {
  background: #eef2f6;
  border-color: #eef2f6;
  color: #1a1a1a;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.95rem 1.45rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease),
    color 0.2s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--orange);
  color: #fff;
}

.btn--primary:hover {
  background: var(--orange-hover);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--blue);
  box-shadow: inset 0 0 0 2px var(--blue);
}

.btn--sm {
  padding: 0.65rem 1.05rem;
  font-size: 0.88rem;
}

.btn--secondary:hover {
  background: var(--blue-soft);
  color: var(--blue-hover);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* —— Hero (Anzeigen-Look) —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, color-mix(in srgb, var(--blue-soft) 88%, var(--blue)), transparent 72%),
    radial-gradient(ellipse 55% 45% at 100% 100%, color-mix(in srgb, var(--orange-soft) 85%, var(--orange)), transparent 72%),
    var(--bg);
}

@media (max-width: 759px) {
  .hero {
    min-height: 0;
    align-items: start;
    padding: 0.85rem 0 1.35rem;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: min(42vw, 18rem);
  height: min(42vw, 18rem);
  pointer-events: none;
  z-index: 0;
  opacity: 0.78;
  background-image: radial-gradient(var(--dot-blue) 1.35px, transparent 1.35px);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(circle, #000 28%, transparent 74%);
  mask-image: radial-gradient(circle, #000 28%, transparent 74%);
}

.hero::before {
  top: 0;
  left: 0;
}

.hero::after {
  right: 0;
  bottom: 0;
  background-image: radial-gradient(var(--dot-orange) 1.35px, transparent 1.35px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 0.85s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 8.8vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.22em;
  white-space: nowrap;
}

.hero__title .word-daten {
  display: inline-block;
  color: var(--blue);
}

.hero__title .word-rettung {
  display: inline-block;
  color: var(--orange);
}

@media (min-width: 760px) {
  .hero__title {
    display: block;
    white-space: normal;
    font-size: clamp(2.2rem, 7.2vw, 4.4rem);
    line-height: 0.92;
  }

  .hero__title .word-daten,
  .hero__title .word-rettung {
    display: block;
  }
}

.hero__lead {
  font-size: clamp(0.92rem, 2vw, 1.12rem);
  color: var(--ink-muted);
  max-width: 36rem;
  margin: 0 auto 0.95rem;
  font-weight: 500;
}

.hero__mid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(5.75rem, 0.75fr);
  gap: 0.75rem 0.9rem;
  align-items: center;
  text-align: left;
  margin: 0 auto 1rem;
  max-width: 40rem;
  width: 100%;
}

@media (min-width: 760px) {
  .hero__mid {
    grid-template-columns: 1.15fr 0.85fr;
    max-width: 46rem;
    gap: 1.75rem;
    margin-bottom: 1.35rem;
  }
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.hero .check-list {
  gap: 0.32rem;
}

@media (min-width: 760px) {
  .hero .check-list {
    gap: 0.45rem;
  }
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--anthracite);
  font-size: 0.96rem;
  line-height: 1.25;
}

.hero .check-list li {
  gap: 0.5rem;
  font-size: 0.82rem;
}

@media (min-width: 760px) {
  .hero .check-list li {
    gap: 0.7rem;
    font-size: 0.96rem;
  }
}

.check-list .check {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
}

.hero .check-list .check {
  width: 1.15rem;
  height: 1.15rem;
}

@media (min-width: 760px) {
  .hero .check-list .check {
    width: 1.35rem;
    height: 1.35rem;
  }
}

.check-list .check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.diag-badge {
  justify-self: center;
  width: min(100%, 9.75rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--price-bg);
  border: 4px solid var(--orange);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0.85rem;
  box-shadow: 0 12px 28px rgba(0, 80, 171, 0.22);
  animation: float 7s ease-in-out infinite;
}

.hero .diag-badge {
  width: min(100%, 7.25rem);
  border-width: 3px;
  padding: 0.55rem;
}

@media (min-width: 760px) {
  .hero .diag-badge {
    width: min(100%, 9.75rem);
    border-width: 4px;
    padding: 0.85rem;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.diag-badge__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.hero .diag-badge__label {
  font-size: 0.62rem;
}

@media (min-width: 760px) {
  .hero .diag-badge__label {
    font-size: 0.78rem;
  }
}

.diag-badge__nur {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: center;
  margin: 0.35rem 0 0.15rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero .diag-badge__nur {
  gap: 0.3rem;
  margin: 0.2rem 0 0.1rem;
  font-size: 0.58rem;
}

@media (min-width: 760px) {
  .hero .diag-badge__nur {
    gap: 0.45rem;
    margin: 0.35rem 0 0.15rem;
    font-size: 0.72rem;
  }
}

.diag-badge__nur::before,
.diag-badge__nur::after {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.hero .diag-badge__nur::before,
.hero .diag-badge__nur::after {
  width: 0.85rem;
}

@media (min-width: 760px) {
  .hero .diag-badge__nur::before,
  .hero .diag-badge__nur::after {
    width: 1.4rem;
  }
}

.diag-badge__price {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  margin: 0;
}

.hero .diag-badge__price {
  font-size: 1.55rem;
}

@media (min-width: 760px) {
  .hero .diag-badge__price {
    font-size: 2.15rem;
  }
}

.diag-badge__note {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero .diag-badge__note {
  margin: 0.25rem 0 0;
  font-size: 0.58rem;
}

@media (min-width: 760px) {
  .hero .diag-badge__note {
    margin: 0.35rem 0 0;
    font-size: 0.72rem;
  }
}

.feature-bar {
  display: grid;
  gap: 0;
  margin: 0 auto 1rem;
  max-width: 46rem;
  border: 2px solid var(--blue);
  border-radius: 12px;
  background: var(--bg-white);
  overflow: hidden;
}

@media (min-width: 700px) {
  .feature-bar {
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 1.25rem;
  }
}

.feature-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--anthracite);
  text-align: left;
}

@media (min-width: 700px) {
  .feature-bar__item {
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.84rem;
  }
}

.feature-bar__item + .feature-bar__item {
  border-top: 1px solid var(--line);
}

@media (min-width: 700px) {
  .feature-bar__item + .feature-bar__item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

.feature-bar__item svg {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--blue);
}

.hero__brand-block {
  margin: 0 auto 0.85rem;
  max-width: 28rem;
}

@media (min-width: 760px) {
  .hero__brand-block {
    margin-bottom: 1rem;
  }
}

.hero__brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.hero__brand-row::before,
.hero__brand-row::after {
  content: "";
  flex: 1;
  height: 3px;
  max-width: 5rem;
}

.hero__brand-row::before {
  background: var(--blue);
}

.hero__brand-row::after {
  background: var(--orange);
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  letter-spacing: -0.03em;
  margin: 0;
}

.hero__tagline {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}

@media (min-width: 760px) {
  .hero__tagline {
    margin-top: 0.55rem;
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__inner,
  .diag-badge {
    animation: none;
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.section--white {
  background: var(--bg-white);
}

.section--tint {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, var(--orange-soft), transparent 65%),
    var(--blue-soft);
}

.section__head {
  max-width: 38rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section__head h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
}

.section__head p {
  font-size: 1.08rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Services —— */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  color: var(--anthracite);
  font-weight: 500;
}

.service-list .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--blue);
  min-width: 1.75rem;
}

/* —— Media —— */
.media-grid {
  display: grid;
  gap: 0.85rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .media-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.media-grid li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--anthracite);
  font-weight: 600;
}

.media-grid .check {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
}

.media-grid .check svg {
  width: 0.7rem;
  height: 0.7rem;
}

.note-excl {
  margin-top: 2rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.note-excl strong {
  color: var(--anthracite);
}

/* —— Process —— */
.process {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .process {
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.price-block {
  background: transparent;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 1.25rem;
}

.price-block .diag-badge {
  animation: none;
}

.price-block > p {
  text-align: center;
  max-width: 18rem;
}

.price-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.price-checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.price-checks .dot {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange);
  border-radius: 1px;
  flex: 0 0 auto;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  padding: 1rem 0 1rem 3.25rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: none;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue);
}

.steps strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 0.2rem;
}

.steps span {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* —— Hints —— */
.hints {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .hints {
    grid-template-columns: 1fr 1fr;
  }
}

.hints li {
  padding-top: 1rem;
  border-top: 3px solid var(--orange);
}

.hints strong {
  display: block;
  font-family: var(--font-display);
  color: var(--anthracite);
  margin-bottom: 0.35rem;
}

.hints p {
  margin: 0;
  font-size: 0.98rem;
}

/* —— Form —— */
.form-section {
  scroll-margin-top: 1rem;
}

.form-section .wrap {
  width: min(100% - 2 * var(--space), 78rem);
}

.form-intro {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.form-intro h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
}

.form-panel {
  position: relative;
  background: var(--bg-white);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-split {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 980px) {
  .form-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: start;
  }

  .form-col--summary {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--blue-soft);
    display: grid;
    gap: 1rem;
  }
}

.media-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.media-row {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

@media (min-width: 560px) {
  .media-row {
    grid-template-columns: auto 1fr 1fr;
    align-items: end;
  }

  .media-row__model {
    grid-column: 2 / -1;
  }
}

.media-row__index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--blue);
  padding-bottom: 0.7rem;
}

.media-row .field {
  margin: 0;
}

.media-list-wrap[hidden],
#media-list-wrap[hidden],
#incident-other-wrap[hidden],
#data-other-wrap[hidden] {
  display: none !important;
}

.field--nested {
  margin-top: 0.75rem;
}

.form-col--summary {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.form-col--summary textarea {
  min-height: 16rem;
  background: var(--bg-white);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 560px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field-label,
.field > label,
.field .sub-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--anthracite);
}

.field .sub-label {
  margin-top: 0.55rem;
  font-weight: 600;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.field-label-row label {
  margin: 0;
}

.btn-copy {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--blue);
  background: transparent;
  color: var(--blue);
  cursor: pointer;
}

.btn-copy:hover {
  background: var(--blue-soft);
}

[data-theme="dark"] .btn-copy {
  border-color: var(--orange);
  color: var(--orange);
}

[data-theme="dark"] .btn-copy:hover {
  background: var(--orange-soft);
  border-color: var(--orange-hover);
  color: var(--orange-hover);
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-grid--2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem 1rem;
}

@media (min-width: 420px) {
  .option-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.option-grid--3 {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 560px) {
  .option-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.option-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.35rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--anthracite);
}

.option-check > input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.option-check__box {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid var(--blue);
  border-radius: 3px;
  background: var(--bg-white);
  position: relative;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}

.option-check input:checked + .option-check__box {
  background: var(--orange);
  border-color: var(--orange);
}

.option-check input:checked + .option-check__box::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.05rem;
  width: 0.32rem;
  height: 0.6rem;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.option-check input:focus-visible + .option-check__box {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.option-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0.55rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--anthracite);
  white-space: nowrap;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.option-chip--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.option-chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
}

.option-chip:has(input:focus-visible) {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.option-chip:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--anthracite);
}

.option-chip span {
  line-height: 1.2;
  white-space: nowrap;
}

.export-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.export-filters .option-chip--sm {
  min-width: 4.75rem;
  padding: 0.45rem 1rem;
}

.export-filters .option-chip--sm:has(input[value="USB-Stick"]) {
  min-width: 7.25rem;
  padding-inline: 1.15rem;
}

.export-shop {
  margin-top: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  display: grid;
  gap: 0.85rem;
}

.export-shop[hidden] {
  display: none !important;
}

.export-shop__intro {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.price-flow {
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 560px) {
  .price-flow {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}

.price-flow__step {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.2rem;
}

.price-flow__step strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--anthracite);
}

.price-flow__step > span:last-child {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

.price-flow__phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-flow__step--now {
  border-color: rgba(0, 80, 171, 0.35);
  background: rgba(0, 80, 171, 0.07);
}

.price-flow__step--now .price-flow__phase {
  color: var(--blue);
}

.price-flow__step--later {
  border-color: rgba(244, 123, 32, 0.35);
  background: rgba(244, 123, 32, 0.07);
}

.price-flow__step--later .price-flow__phase {
  color: var(--orange);
}

.export-list {
  display: grid;
  gap: 0.45rem;
}

.export-option {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

@media (min-width: 560px) {
  .export-option {
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 0.65rem;
  }
}

.export-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.export-option__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--bg-white);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.export-option--recommend .export-option__body {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.export-option__check {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  border: 2px solid var(--blue);
  border-radius: 3px;
  position: relative;
}

.export-option input:checked + .export-option__check {
  border-color: var(--orange);
  background: var(--orange);
}

.export-option input:checked + .export-option__check::after {
  content: "";
  position: absolute;
  left: 0.22rem;
  top: 0.02rem;
  width: 0.28rem;
  height: 0.55rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.export-option input:checked ~ .export-option__text,
.export-option:has(input:checked) .export-option__body {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.export-option__qty {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.25rem;
}

@media (min-width: 560px) {
  .export-option__qty {
    padding-right: 0.25rem;
  }
}

.export-option__qty-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-muted);
}

.export-option__qty select {
  width: auto;
  min-width: 4.5rem;
  padding: 0.35rem 0.5rem;
}

.export-need {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--anthracite);
}

.export-recommend {
  margin-top: 0.55rem;
}

.export-recommend__hint {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.btn-recommend {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border: none;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}

.btn-recommend:hover {
  background: var(--orange-hover);
}

.export-warn {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #8a2b22;
  font-weight: 600;
}

[data-theme="dark"] .export-warn {
  color: #ffb4a8;
}

.export-option__text {
  display: grid;
  gap: 0.15rem;
}

.export-option__text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--anthracite);
}

.export-option__text small {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.export-option__text em {
  font-style: normal;
  font-weight: 700;
  color: var(--blue);
}

.export-total {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.cost-block {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}

.cost-block--now {
  border-color: rgba(0, 80, 171, 0.35);
  background: rgba(0, 80, 171, 0.07);
}

.cost-block--later {
  border-color: rgba(244, 123, 32, 0.35);
  background: rgba(244, 123, 32, 0.06);
}

.cost-block--labor {
  border-color: rgba(42, 46, 51, 0.28);
  background: color-mix(in srgb, var(--bg-white) 70%, rgba(0, 80, 171, 0.08));
}

.cost-block--total {
  border-color: rgba(0, 80, 171, 0.45);
  background: rgba(0, 80, 171, 0.1);
  gap: 0.5rem;
}

.cost-block--total .cost-block__title {
  color: var(--blue);
  font-size: 1rem;
}

.cost-block--total .export-total__row--total {
  margin-top: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: var(--blue-soft);
  border: 1px solid color-mix(in srgb, var(--blue) 35%, transparent);
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.cost-block--total .export-total__row--total span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.cost-block--total .export-total__row--total strong,
#cost-sum-total {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cost-block__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cost-block--now .cost-block__title {
  color: var(--blue);
}

.cost-block--later .cost-block__title {
  color: var(--orange);
}

.cost-block--labor .cost-block__title {
  color: var(--anthracite);
}

.cost-block__lead {
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.cost-block__note {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--ink-muted);
}

.export-total__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.export-total__row em {
  font-style: normal;
  font-weight: 600;
  opacity: 0.85;
}

.export-total__row--due {
  margin-top: 0.15rem;
  font-size: 1.05rem;
  color: var(--anthracite);
}

.export-total__row--due strong {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.export-total__row--orient {
  margin-top: 0.25rem;
  padding-top: 0.4rem;
  border-top: 1px dashed var(--line);
  color: var(--anthracite);
  font-size: 0.95rem;
}

.export-total__row--orient strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.export-total__row--total {
  margin-top: 0.35rem;
  align-items: baseline;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 700;
}

.export-total__row--total strong {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
}

.export-total__row--sum {
  margin-top: 0.2rem;
  font-size: 1.05rem;
  color: var(--anthracite);
}

.export-total__row--sum strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.form-fineprint {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.field label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--anthracite);
}

.field .req {
  color: var(--orange);
}

.field input:not([type="checkbox"]):not([type="radio"]),
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:not([type="checkbox"]):not([type="radio"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 80, 171, 0.15);
}

.field.is-invalid input:not([type="checkbox"]):not([type="radio"]),
.field.is-invalid select,
.field.is-invalid textarea,
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

.field--check.is-invalid {
  padding: 0.65rem 0.75rem;
  border: 1.5px solid #c0392b;
  border-radius: 8px;
  background: rgba(192, 57, 43, 0.06);
}

.export-shop.is-invalid,
.export-list.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

[data-theme="dark"] .field.is-invalid input:not([type="checkbox"]):not([type="radio"]),
[data-theme="dark"] .field.is-invalid select,
[data-theme="dark"] .field.is-invalid textarea,
[data-theme="dark"] input.is-invalid,
[data-theme="dark"] select.is-invalid,
[data-theme="dark"] textarea.is-invalid {
  border-color: #e8746a;
  box-shadow: 0 0 0 3px rgba(232, 116, 106, 0.2);
}

[data-theme="dark"] .field--check.is-invalid {
  border-color: #e8746a;
  background: rgba(232, 116, 106, 0.08);
}

[data-theme="dark"] .field input:not([type="checkbox"]):not([type="radio"]):focus,
[data-theme="dark"] .field select:focus,
[data-theme="dark"] .field textarea:focus {
  box-shadow: 0 0 0 3px rgba(77, 155, 232, 0.2);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}

.field--check input {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--blue);
}

.field--check label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.field--check label a {
  font-weight: 600;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-status.is-error {
  display: block;
  background: #fdecea;
  color: #8a2b22;
}

.form-status.is-ok {
  display: block;
  background: #e8f5ee;
  color: #1f5c3a;
}

[data-theme="dark"] .form-status.is-error {
  background: #3a1c1a;
  color: #ffb4a8;
}

[data-theme="dark"] .form-status.is-ok {
  background: #1a3224;
  color: #9ddec0;
}

/* —— Footer —— */
.site-footer {
  background: var(--footer-bg);
  color: var(--ink-muted);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer .logo {
  font-size: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.site-footer a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-meta {
  font-size: 0.9rem;
  margin: 0;
  padding-top: 0.5rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 22rem);
  justify-content: center;
}

.footer-brand-row::before,
.footer-brand-row::after {
  content: "";
  flex: 1;
  height: 3px;
}

.footer-brand-row::before {
  background: var(--blue);
}

.footer-brand-row::after {
  background: var(--orange);
}

/* —— Legal pages —— */
.page-hero {
  padding: 3.25rem 0 2.25rem;
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%, var(--blue-soft), transparent 70%),
    radial-gradient(ellipse 40% 50% at 100% 100%, var(--orange-soft), transparent 70%),
    var(--bg);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.prose {
  max-width: 42rem;
  padding-bottom: 4rem;
}

.prose h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: var(--blue);
}

.prose h3 {
  font-size: 1.02rem;
  margin: 1.15rem 0 0.45rem;
  color: var(--anthracite);
}

.prose p,
.prose li {
  line-height: 1.6;
}

.prose ul,
.prose ol {
  color: var(--ink-muted);
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.prose li + li {
  margin-top: 0.35rem;
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.prose code {
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: color-mix(in srgb, var(--blue-soft) 70%, transparent);
}

.prose-meta {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Hervorgehobener Textblock (z. B. Muster-Widerrufsformular) */
.prose-box {
  margin: 1rem 0 1.75rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--bg-white);
}

.prose-box p {
  margin: 0 0 0.7rem;
  color: var(--ink-muted);
}

.prose-box p:last-child {
  margin-bottom: 0;
}

/* —— Preise / Orientierungskalkulator —— */
.price-guide {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 980px) {
  .price-guide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.38fr);
    gap: 1.75rem;
  }

  .price-guide__summary {
    order: 2;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }

  .price-guide__panels {
    order: 1;
  }
}

.price-guide__summary {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  min-width: 0;
  max-width: 100%;
}

.price-guide__summary-label {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-guide__summary-rows {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  max-width: 100%;
}

.price-guide__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.65rem 0.75rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--ink-muted);
  width: 100%;
  max-width: 100%;
}

.price-guide__summary-row > span {
  flex: 1 1 auto;
}

.price-guide__summary-row strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  margin-left: auto;
}

.price-guide__summary-row--total {
  margin-top: 0.45rem;
  padding: 0.75rem 0.75rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--blue) 35%, transparent);
  background: var(--blue-soft);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.price-guide__summary-row--total > span {
  flex: 1 1 10rem;
  min-width: min(100%, 10rem);
}

.price-guide__summary-row--total strong,
#pg-sum-total {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .cost-block--total .export-total__row--total,
[data-theme="dark"] .price-guide__summary-row--total {
  background: color-mix(in srgb, var(--blue-soft) 88%, #000);
  border-color: color-mix(in srgb, var(--blue) 55%, transparent);
}

[data-theme="dark"] .cost-block--total .export-total__row--total strong,
[data-theme="dark"] #cost-sum-total,
[data-theme="dark"] .price-guide__summary-row--total strong,
[data-theme="dark"] #pg-sum-total {
  color: #7eb6f5;
}

.price-guide__summary-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.price-guide__summary-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.35;
  text-align: center;
}

.price-guide__summary .btn {
  justify-self: stretch;
  width: 100%;
}

#anfrage-form .is-prefilled,
#anfrage-form .is-prefilled .media-row {
  animation: prefill-flash 1.8s ease;
}

@keyframes prefill-flash {
  0%,
  100% {
    box-shadow: none;
  }
  20%,
  55% {
    box-shadow: inset 0 0 0 2px var(--orange);
  }
}

.price-guide__panels {
  display: grid;
  gap: 1.15rem;
}

.price-guide__panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-white);
}

.price-guide__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.price-guide__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.price-guide__step h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.price-guide__step p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.price-guide__media {
  display: grid;
  gap: 0.75rem;
}

.price-guide__media .media-row {
  position: relative;
}

.pg-media-remove {
  justify-self: start;
  margin: 0;
  padding: 0.35rem 0;
  border: none;
  background: none;
  color: var(--ink-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}

.pg-media-remove:hover {
  color: var(--orange);
}

@media (min-width: 560px) {
  .price-guide__media .media-row:has(.pg-media-remove) {
    grid-template-columns: auto 1fr 1fr auto;
    align-items: end;
  }

  .price-guide__media .pg-media-remove {
    padding-bottom: 0.85rem;
    text-decoration: none;
  }
}

.price-guide__result {
  display: grid;
  gap: 0.45rem;
  padding-top: 0.35rem;
  border-top: 1px dashed var(--line);
}

.price-guide__export-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price-guide__need {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.price-guide__need strong {
  color: var(--ink);
}

#pg-export-shop {
  display: grid;
  gap: 0.85rem;
}

#pg-export-shop[hidden],
#pg-export-need[hidden],
#pg-add-media[hidden] {
  display: none !important;
}

.price-guide__disclaimer {
  margin: 1.35rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 52rem;
}
