:root {
  --color-bg: #03070b;
  --color-bg-soft: #071018;
  --color-panel: #0b141d;
  --color-panel-2: #101b25;
  --color-line: rgba(176, 199, 216, 0.16);
  --color-text: #f5f8fb;
  --color-muted: #a9b7c2;
  --color-soft: #dbe8f0;
  --color-accent: #38b6f2;
  --color-accent-2: #78d6ff;
  --color-steel: #5e666c;
  --color-warning: #ffcf66;
  --shadow-panel: 0 18px 55px rgba(0, 0, 0, 0.34);
  --radius-card: 8px;
  --radius-control: 6px;
  --container: 1180px;
  --header-height: 76px;
  --ease: 180ms ease;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top {
  scroll-margin-top: var(--header-height);
}

body {
  position: relative;
  margin: 0;
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(56, 182, 242, 0.09), rgba(3, 7, 11, 0.30) 420px, rgba(3, 7, 11, 0.96) 920px),
    repeating-linear-gradient(90deg, rgba(120, 214, 255, 0.035) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(180deg, rgba(120, 214, 255, 0.028) 0 1px, transparent 1px 86px),
    var(--color-bg);
  background-attachment: fixed;
  font-family: var(--font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(56, 182, 242, 0.11) 18.2%, transparent 18.6% 48%, rgba(94, 102, 108, 0.16) 48.2%, transparent 48.6%),
    linear-gradient(150deg, transparent 0 62%, rgba(56, 182, 242, 0.08) 62.2%, transparent 62.7%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 36%);
  opacity: 0.8;
}

body.nav-open,
body.booking-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #031017;
  background: var(--color-accent-2);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: var(--radius-control);
  color: #061018;
  background: var(--color-accent-2);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 11, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand img {
  width: 218px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-soft);
  font-size: 14px;
}

.main-nav a {
  color: var(--color-muted);
  transition: color var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-text);
}

.lang-switch {
  padding: 7px 10px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.04);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 700;
  color: var(--color-text);
  background: transparent;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

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

.button-primary {
  color: #04121b;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  box-shadow: 0 14px 38px rgba(56, 182, 242, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.button-small {
  min-height: 38px;
  padding: 0 13px;
  color: #071018;
  background: var(--color-accent);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-control);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 54px 0 34px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.46;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.94), rgba(3, 7, 11, 0.68) 47%, rgba(3, 7, 11, 0.34) 72%, rgba(3, 7, 11, 0.86)),
    linear-gradient(180deg, transparent 72%, var(--color-bg) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(760px, 62vw);
  height: 76%;
  background:
    linear-gradient(135deg, transparent 0 22%, rgba(56, 182, 242, 0.14) 22.3%, transparent 22.8% 58%, rgba(255, 255, 255, 0.06) 58.2%, transparent 58.7%),
    repeating-linear-gradient(90deg, rgba(120, 214, 255, 0.09) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(180deg, rgba(120, 214, 255, 0.06) 0 1px, transparent 1px 44px);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.52;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.9fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-accent-2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: 74px;
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-subtitle,
.section-head p,
.split p,
.contact-section p {
  color: var(--color-muted);
  font-size: 18px;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-control);
  color: var(--color-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.muted,
.article-meta {
  color: var(--color-muted);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 610px);
}

.attack-graph-shell {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(120, 214, 255, 0.18);
  background: rgba(3, 7, 11, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 90% 100%, 0 100%, 0 12%);
}

.attack-graph-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.32), transparent 26%, rgba(3, 7, 11, 0.15) 72%, rgba(3, 7, 11, 0.52)),
    linear-gradient(180deg, rgba(120, 214, 255, 0.10), transparent 34%, rgba(3, 7, 11, 0.44));
}

.attack-graph-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(120, 214, 255, 0.12);
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 90% 100%, 0 100%, 0 12%);
}

.attack-graph-shell img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.82;
  filter: saturate(0.92) contrast(1.04);
}

.section {
  padding: 96px 0;
}

#leistungen {
  padding-top: 38px;
}

.section-tight {
  padding: 14px 0 34px;
}

.band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.compact {
  margin-top: 72px;
}

.metrics {
  position: relative;
  z-index: 4;
  background: rgba(3, 7, 11, 0.72);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.metric {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.035);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--color-accent-2);
  font-size: 34px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
}

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

.services-grid .service-card:first-child,
.services-grid .service-card:nth-child(2) {
  grid-column: span 1;
}

.card,
.cert-card,
.contact-form {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(16, 27, 37, 0.92), rgba(8, 16, 24, 0.92));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 92px;
  height: 2px;
  background: var(--color-accent);
  opacity: 0.7;
}

.card-mark {
  display: block;
  width: 36px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--color-accent);
}

.card p {
  color: var(--color-muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.tag-row span {
  padding: 5px 8px;
  border: 1px solid rgba(120, 214, 255, 0.24);
  border-radius: var(--radius-control);
  color: var(--color-soft);
  font-size: 12px;
  background: rgba(56, 182, 242, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.check-list,
.defense-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.defense-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  color: var(--color-soft);
  background: rgba(255, 255, 255, 0.035);
}

.check-list li::before,
.defense-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}

.locked-shields {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 48px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(120, 214, 255, 0.18);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(56, 182, 242, 0.10), rgba(255, 255, 255, 0.025)),
    var(--color-panel);
}

.locked-shields p {
  color: var(--color-muted);
}

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

.project-card {
  min-height: 260px;
}

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

.cert-card {
  display: grid;
  grid-template-rows: 132px auto;
  min-height: 258px;
  padding: 16px;
}

.cert-image {
  display: grid;
  place-items: center;
  min-height: 132px;
  margin-bottom: 13px;
}

.cert-image img {
  max-width: 118px;
  max-height: 118px;
  object-fit: contain;
}

.cert-card h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.cert-card p,
.cert-card span {
  color: var(--color-muted);
  font-size: 13px;
}

.cert-card.is-progress {
  border-style: dashed;
}

.cert-card.is-progress .cert-image {
  opacity: 0.52;
  filter: grayscale(0.45);
}

.cert-card.is-progress span {
  color: var(--color-warning);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
}

.timeline time {
  color: var(--color-accent-2);
  font-weight: 800;
}

.timeline p {
  margin: 0;
  color: var(--color-soft);
}

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

.blog-card {
  min-height: 240px;
}

.blog-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--color-accent-2);
  font-size: 13px;
  font-weight: 800;
}

.blog-card a:hover {
  color: var(--color-accent-2);
}

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

.video-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(16, 27, 37, 0.94), rgba(6, 12, 18, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #020508;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-body {
  padding: 18px;
}

.video-body h3 {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 1.28;
}

.video-body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.empty {
  color: var(--color-muted);
}

.contact-section {
  padding-bottom: 64px;
}

.contact-section + .videos-section {
  padding-top: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form h3 {
  margin-bottom: 2px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: var(--color-soft);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-control);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.045);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}

.contact-form input {
  min-height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 154px;
  resize: vertical;
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  background: rgba(56, 182, 242, 0.07);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.privacy-check span {
  color: var(--color-muted);
  font-weight: 500;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--color-accent-2);
}

.form-status.is-error {
  color: #ff8b8b;
}

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
}

.booking-overlay[hidden] {
  display: none;
}

.booking-dialog {
  width: min(1120px, 100%);
  height: min(780px, calc(100vh - 48px));
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-panel);
}

.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-line);
}

.booking-head h2 {
  margin: 0;
  font-size: 20px;
}

.booking-open-link {
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid rgba(120, 214, 255, 0.22);
  border-radius: var(--radius-control);
  color: var(--color-accent-2);
  font-size: 13px;
  font-weight: 800;
  background: rgba(56, 182, 242, 0.08);
}

.booking-dialog iframe {
  width: 100%;
  height: calc(100% - 64px);
  border: 0;
  background: #fff;
}

.subpage {
  min-height: 68vh;
  padding-top: 48px;
}

.legal-page,
.article {
  max-width: 860px;
  padding: 70px 0 100px;
}

.legal-page p,
.article-body p,
.article-body li {
  color: var(--color-muted);
  font-size: 18px;
}

.article h1,
.legal-page h1 {
  font-size: 56px;
  line-height: 1.05;
}

.article-body {
  margin-top: 34px;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 32px;
}

.article-body h3 {
  margin-top: 30px;
}

.article-body ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.article-cta {
  margin-top: 56px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.035);
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--color-accent-2);
  font-weight: 800;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #020508;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.55fr;
  gap: 36px;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
}

.site-footer p,
.site-footer a {
  color: var(--color-muted);
}

.footer-claim {
  max-width: 420px;
  margin: auto 0 0;
}

.site-footer a {
  display: block;
  margin-top: 7px;
}

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

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: 15px;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--header-height));
    padding: 16px 20px 22px;
    overflow-y: auto;
    border-bottom: 1px solid var(--color-line);
    background: rgba(3, 7, 11, 0.98);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }

  .split,
  .hero-grid,
  .locked-shields,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
  }

  .attack-graph-shell {
    min-height: 320px;
  }

  .attack-graph-shell img {
    height: 320px;
  }

  .metrics-grid,
  .project-grid,
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-line);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  body {
    background-attachment: scroll;
  }

  body::before {
    opacity: 0.58;
  }

  .site-header {
    height: 68px;
  }

  .brand img {
    width: 184px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--color-line);
    background: rgba(3, 7, 11, 0.98);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 22px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .attack-graph-shell {
    min-height: 280px;
  }

  .attack-graph-shell img {
    height: 280px;
    object-position: 58% center;
  }

  .card-grid,
  .blog-teaser,
  .blog-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .metrics {
    background: rgba(3, 7, 11, 0.60);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
  }

  .button-small {
    min-height: 42px;
  }

  .hero-canvas {
    display: none;
  }

  .hero {
    padding: 30px 0 20px;
  }

  .hero-subtitle {
    margin-bottom: 20px;
  }

  .hero-subtitle,
  .section-head p,
  .split p,
  .contact-section p,
  .legal-page p,
  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-highlights {
    gap: 8px;
  }

  .hero-highlights li {
    width: 100%;
    padding: 7px 10px;
  }

  .metrics-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .attack-graph-shell {
    min-height: 220px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
  }

  .attack-graph-shell::after {
    inset: 12px;
  }

  .attack-graph-shell img {
    height: 220px;
    object-position: 62% center;
  }

  .metric {
    min-height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .metric strong {
    font-size: 30px;
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  #leistungen {
    padding-top: 28px;
  }

  .section-tight {
    padding: 10px 0 24px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .card,
  .project-card,
  .blog-card {
    min-height: auto;
    padding: 22px;
  }

  .locked-shields {
    padding: 22px;
  }

  .check-list li,
  .defense-list li {
    padding: 16px 16px 16px 42px;
  }

  .cert-card {
    min-height: auto;
    grid-template-rows: 112px auto;
  }

  .cert-image {
    min-height: 112px;
  }

  .cert-image img {
    max-width: 104px;
    max-height: 104px;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-form {
    padding: 22px;
  }

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

  .captcha-row .icon-button {
    width: 100%;
  }

  .booking-overlay {
    align-items: stretch;
    padding: 10px;
  }

  .booking-dialog {
    height: calc(100dvh - 20px);
  }

  .booking-head {
    flex-wrap: wrap;
    min-height: auto;
    padding: 10px;
    gap: 8px;
  }

  .booking-head h2 {
    flex-basis: 100%;
    font-size: 16px;
  }

  .booking-open-link {
    margin-left: 0;
    padding: 7px 8px;
  }

  .booking-dialog iframe {
    height: calc(100% - 92px);
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .article h1,
  .legal-page h1 {
    font-size: 38px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
