:root {
  --font-sans: "Source Sans Pro", "Source Sans 3", Helvetica, Arial, sans-serif;
  --font-display: "Bitter", Georgia, "Times New Roman", serif;

  --paper: #f3f0e8;
  --ink: #141820;
  --muted: #5e6672;
  --faint: #8a9099;
  --primary: #1a4f9c;
  --primary-fg: #f7f4ec;
  --navy: #0f1c33;
  --navy-fg: #f3f0e8;
  --surface: #fbfaf6;
  --border: #ddd8cc;
  --good: #2c6a4a;
  --warn: #9a5b12;
  --bad: #9b2c2c;
  --ring: #1a4f9c;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;

  --shadow-card:
    0 0 0 1px rgb(20 24 32 / 0.06),
    0 1px 2px rgb(20 24 32 / 0.04),
    0 8px 24px rgb(20 24 32 / 0.04);

  --header-h: 4rem;
  --wrap: 72rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 8rem;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
}

button:not(:disabled),
[role="button"]:not(:disabled) {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: color-mix(in oklab, var(--primary) 22%, transparent);
  color: var(--ink);
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  display: block;
  fill: none;
  stroke: currentColor;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .wrap {
    padding-inline: 1.5rem;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 500;
  text-align: center;
  transition:
    transform 150ms ease-out,
    background-color 150ms ease-out,
    color 150ms ease-out,
    box-shadow 150ms ease-out,
    border-color 150ms ease-out,
    opacity 150ms ease-out;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--ring);
}

.btn:active:not(:disabled) {
  transform: scale(0.96);
}

.btn:disabled,
.btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-sm {
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.btn-md {
  height: 2.75rem;
  padding: 0 1.25rem;
  font-size: 0.9375rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  background: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgb(20 24 32 / 0.15);
}

.btn-outline:hover {
  border-color: rgb(20 24 32 / 0.3);
  background: var(--surface);
}

.btn-inverse {
  background: var(--paper);
  color: var(--navy);
}

.btn-inverse:hover {
  background: var(--surface);
}

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

.btn-ink:hover {
  background: var(--navy);
}

.btn-block {
  width: 100%;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgb(221 216 204 / 0.8);
  background: rgb(243 240 232 / 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
  flex-shrink: 0;
}

.logo img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.logo-word {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

@media (min-width: 640px) {
  .logo-word {
    font-size: 1.125rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.nav-desktop a {
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 150ms ease;
}

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

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

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

.header-phone:hover {
  background: rgb(20 24 32 / 0.05);
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  color: var(--ink);
}

.menu-toggle:hover {
  background: rgb(20 24 32 / 0.05);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0 1rem;
}

.nav-mobile a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.5rem;
}

.nav-mobile .nav-phone {
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle,
  .nav-mobile,
  .nav-mobile.is-open {
    display: none;
  }
}

@media (min-width: 1536px) {
  .header-phone {
    display: inline-flex;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-block: 3rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 4rem;
  }
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow-pill .icon {
  width: 0.875rem;
  height: 0.875rem;
}

.hero h1 {
  margin-top: 1.25rem;
  font-size: 2.25rem;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.lead {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-points .icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.media-frame img {
  width: 100%;
  object-fit: cover;
  outline: 1px solid rgb(20 24 32 / 0.1);
  outline-offset: -1px;
}

.hero-photo img {
  aspect-ratio: 16 / 9;
}

.hero-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--faint);
}

/* ——— Shared section chrome ——— */
.section {
  scroll-margin-top: 5.5rem;
}

.section-pad {
  padding-block: 4rem;
}

.section-pad-tight {
  padding-block: 2rem;
}

@media (min-width: 640px) {
  .section-pad-tight {
    padding-block: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding-block: 5rem;
  }
}

.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-head {
  max-width: 42rem;
}

.section-head h2 {
  margin-top: 0.5rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .section-head h2 {
    font-size: 2.25rem;
  }
}

.section-head .sub {
  margin-top: 0.75rem;
  color: var(--muted);
}

.section-head .note {
  margin-top: 0.75rem;
  max-width: 42rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ——— Configurator ——— */
.paket-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .paket-layout {
    grid-template-columns: 7fr 5fr;
  }

  .paket-aside {
    position: sticky;
    top: 6rem;
  }
}

.service-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  display: flex;
  min-height: 7rem;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: var(--surface);
  padding: 1rem;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition:
    border-color 150ms ease-out,
    background-color 150ms ease-out,
    transform 150ms ease-out;
}

.service-card:hover {
  border-color: var(--border);
}

.service-card.is-on {
  border-color: var(--primary);
  background: rgb(26 79 156 / 0.05);
}

.service-card.is-on:hover {
  border-color: var(--primary);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-card-id {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--muted);
  flex-shrink: 0;
}

.service-icon .icon {
  width: 1rem;
  height: 1rem;
}

.service-card.is-on .service-icon {
  background: var(--primary);
  color: var(--primary-fg);
}

.service-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-kind {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

.check-dot {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: transparent;
}

.check-dot .icon {
  width: 0.875rem;
  height: 0.875rem;
}

.service-card.is-on .check-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-fg);
}

.service-tagline {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.cadence {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cadence-btn {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--paper);
  color: var(--muted);
  box-shadow: inset 0 0 0 1px var(--border);
}

.cadence-btn.is-on {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: none;
}

.paket-panel {
  border-radius: var(--radius-xl);
  background: var(--navy);
  color: var(--navy-fg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .paket-panel {
    padding: 1.5rem;
  }
}

.paket-panel .kicker {
  color: rgb(243 240 232 / 0.6);
}

.paket-panel .hint {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgb(243 240 232 / 0.7);
}

.device-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.stepper-btn {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgb(243 240 232 / 0.15);
  background: rgb(243 240 232 / 0.05);
  color: var(--navy-fg);
}

.stepper-btn:hover {
  background: rgb(243 240 232 / 0.1);
}

.stepper-btn .icon {
  width: 1rem;
  height: 1rem;
}

.device-count {
  text-align: center;
}

.device-count .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.device-count .lbl {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgb(243 240 232 / 0.7);
}

.presets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .presets {
    grid-template-columns: repeat(4, 1fr);
  }
}

.preset {
  border-radius: var(--radius-md);
  padding: 0.5rem 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgb(243 240 232 / 0.08);
  color: rgb(243 240 232 / 0.8);
  transition: background-color 150ms ease, color 150ms ease;
}

.preset:hover {
  background: rgb(243 240 232 / 0.12);
}

.preset.is-on {
  background: var(--paper);
  color: var(--navy);
}

.device-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
}

.device-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: rgb(243 240 232 / 0.9);
}

.device-dots .extra {
  width: auto;
  height: auto;
  background: none;
  margin-left: 0.25rem;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: rgb(243 240 232 / 0.7);
  border-radius: 0;
}

.summary {
  margin-top: 1.5rem;
  border-top: 1px solid rgb(243 240 232 / 0.1);
  padding-top: 1.25rem;
}

.summary-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.summary-list .meta {
  font-variant-numeric: tabular-nums;
  color: rgb(243 240 232 / 0.7);
}

.summary-empty,
.summary-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgb(243 240 232 / 0.65);
}

.summary-note {
  margin-top: 1rem;
}

.summary .btn {
  margin-top: 1.25rem;
}

/* ——— ThreatDown ——— */
.schutz {
  background: var(--navy);
  color: var(--navy-fg);
}

.schutz-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .schutz-grid {
    grid-template-columns: 5fr 7fr;
    padding-block: 5rem;
  }
}

.schutz .kicker {
  color: rgb(243 240 232 / 0.55);
}

.schutz h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .schutz h2 {
    font-size: 2.25rem;
  }
}

.schutz-lead {
  margin-top: 1rem;
  color: rgb(243 240 232 / 0.75);
}

.logo-card {
  margin-top: 2rem;
  display: flex;
  min-height: 13rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 3rem 1.5rem;
}

@media (min-width: 640px) {
  .logo-card {
    min-height: 15rem;
    padding: 3rem 2rem;
  }
}

.logo-card img {
  width: 100%;
  height: auto;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.stats dt {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
}

.stats dd {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgb(243 240 232 / 0.65);
}

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

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgb(243 240 232 / 0.1);
  background: rgb(243 240 232 / 0.05);
  padding: 1.25rem;
}

.feature-card .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(243 240 232 / 0.8);
}

.feature-card h3 {
  margin-top: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgb(243 240 232 / 0.7);
}

.feature-card ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgb(243 240 232 / 0.8);
}

.feature-card li {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.25rem;
  height: 0.25rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgb(243 240 232 / 0.5);
}

.dot-primary {
  background: var(--primary);
}

/* ——— Services ——— */
.service-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.offer-card.is-on {
  box-shadow:
    var(--shadow-card),
    0 0 0 1px var(--primary);
}

.offer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.offer-kind {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

.offer-card h3 {
  margin-top: 0.25rem;
  font-size: 1.5rem;
}

.offer-card .desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.offer-card ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
}

.offer-card li {
  display: flex;
  gap: 0.5rem;
  color: rgb(20 24 32 / 0.9);
}

/* ——— Quiz ——— */
.quiz-intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.quiz-intro h2 {
  margin-top: 0.5rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .quiz-intro h2 {
    font-size: 2.25rem;
  }
}

.quiz-intro .sub {
  margin-top: 0.75rem;
  color: var(--muted);
}

.quiz-card {
  max-width: 36rem;
  margin: 2rem auto 0;
  border-radius: var(--radius-xl);
  background: var(--surface);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .quiz-card {
    padding: 2rem;
  }
}

.progress {
  height: 0.25rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--border);
}

.progress > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--primary);
  transition: width 200ms ease-out;
}

.progress-label {
  margin-top: 0.5rem;
  text-align: right;
  font-size: 0.75rem;
  color: var(--faint);
}

.quiz-q {
  margin-top: 1.5rem;
}

.quiz-cat {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
}

.quiz-q h3 {
  margin-top: 0.25rem;
  font-size: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  min-height: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.quiz-option:hover {
  border-color: var(--primary);
  background: rgb(26 79 156 / 0.05);
}

.quiz-result {
  margin-top: 1.5rem;
  text-align: center;
}

.score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.score.is-good {
  color: var(--good);
}

.score.is-warn {
  color: var(--warn);
}

.score.is-bad {
  color: var(--bad);
}

.quiz-result h3 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
}

.quiz-result .sub {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.gap-list {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 1rem;
  text-align: left;
}

.gap-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgb(221 216 204 / 0.7);
  padding-block: 0.5rem;
  font-size: 0.875rem;
}

.gap-list li:last-child {
  border-bottom: 0;
}

.status-dot {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.status-dot .icon {
  width: 0.875rem;
  height: 0.875rem;
}

.status-dot.is-good {
  background: rgb(44 106 74 / 0.15);
  color: var(--good);
}

.status-dot.is-warn {
  background: rgb(154 91 18 / 0.15);
  color: var(--warn);
}

.status-dot.is-bad {
  background: rgb(155 44 44 / 0.15);
  color: var(--bad);
}

.quiz-recommend {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ——— Process ——— */
.process {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.process-photos {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .process-photos {
    grid-template-columns: 1fr 1fr;
  }
}

.process-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.step {
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.step-n {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
}

.step h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ——— About ——— */
.about-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-photo img {
  aspect-ratio: 3 / 2;
}

.about-copy .sub {
  margin-top: 1rem;
  color: var(--muted);
}

.about-copy .sub + .sub {
  margin-top: 0.75rem;
}

.about-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-points .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: var(--primary);
}

/* ——— FAQ ——— */
.faq-wrap {
  max-width: 48rem;
  margin-inline: auto;
}

.faq-list {
  margin-top: 2rem;
  border-block: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-block: 1rem;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.faq-plus {
  color: var(--faint);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 150ms ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.5rem;
  max-width: 65ch;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ——— Contact ——— */
.kontakt {
  background: var(--navy);
  color: var(--navy-fg);
}

.kontakt-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .kontakt-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.kontakt h2 {
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .kontakt h2 {
    font-size: 2.25rem;
  }
}

.kontakt-lead {
  margin-top: 1rem;
  color: rgb(243 240 232 / 0.75);
}

.contact-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgb(243 240 232 / 0.1);
  background: rgb(243 240 232 / 0.05);
  padding: 0 1rem;
}

.contact-link .icon {
  width: 1rem;
  height: 1rem;
}

.contact-link small {
  display: block;
  font-size: 0.875rem;
  color: rgb(243 240 232 / 0.6);
}

.contact-link strong {
  font-weight: 500;
}

.kontakt-meta {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgb(243 240 232 / 0.6);
}

.form-card,
.success-card {
  border-radius: var(--radius-xl);
  background: var(--paper);
  color: var(--ink);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .form-card,
  .success-card {
    padding: 2rem;
  }
}

.form-card h3,
.success-card h3 {
  font-size: 1.5rem;
}

.form-package {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.field {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.field.mt-4 {
  margin-top: 1rem;
}

.field-optional {
  font-weight: 400;
  color: var(--faint);
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  margin-top: 0.375rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0 0.75rem;
  font-size: 1rem;
  outline: none;
}

.field input {
  height: 2.75rem;
}

.field textarea {
  padding-block: 0.5rem;
  resize: vertical;
  min-height: 6.5rem;
}

.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 2px var(--ring);
}

.field-row {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }

  .field-row .field {
    margin-top: 0;
  }
}

.form-error {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  background: rgb(155 44 44 / 0.1);
  padding: 0.75rem;
  font-size: 0.875rem;
  color: var(--bad);
}

.form-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.form-error-actions .btn {
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.form-hint {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--faint);
}

.form-hint a {
  text-decoration: underline;
}

.form-card .btn-block {
  margin-top: 1.25rem;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgb(44 106 74 / 0.15);
  color: var(--good);
}

.success-icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.success-card h3 {
  margin-top: 1rem;
}

.success-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
}

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

.footer-blurb {
  margin-top: 0.75rem;
  max-width: 20rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-person {
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-address,
.footer-contact {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-contact {
  margin-top: 0.75rem;
  color: var(--ink);
}

.footer-contact a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-copy {
  border-top: 1px solid var(--border);
}

.footer-copy p {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 1rem 1rem;
  font-size: 0.75rem;
  color: var(--faint);
}

@media (min-width: 640px) {
  .footer-copy p {
    padding-inline: 1.5rem;
  }
}

/* ——— Sticky mobile CTA ——— */
.sticky-cta {
  pointer-events: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0.75rem;
  z-index: 30;
  padding-inline: 0.75rem;
}

.sticky-cta-bar {
  pointer-events: auto;
  display: flex;
  max-width: 32rem;
  margin-inline: auto;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgb(243 240 232 / 0.95);
  padding: 0.625rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sticky-cta-text {
  min-width: 0;
  flex: 1;
  padding-inline: 0.5rem;
  font-size: 0.875rem;
}

.sticky-cta-text strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.sticky-cta-text span {
  color: var(--muted);
}

.sticky-cta .btn {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }
}

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

  .btn,
  .service-card,
  .preset,
  .quiz-option,
  .progress > span,
  .faq-plus {
    transition: none;
  }
}
