:root {
  --color-text: #121923;
  --color-muted: #657080;
  --color-border: #e2e6eb;
  --color-surface: #ffffff;
  --color-page: #f7f7f8;
  --color-orange: #ff5a14;
  --color-orange-dark: #c53d00;
  --color-blue: #1f73c9;
  --color-blue-soft: #eaf3ff;
  --color-green: #19b86a;
  --color-footer: #0f172a;
  --shadow-soft: 0 2px 10px rgba(15, 23, 42, 0.08);
  --radius: 6px;
  --container: 1120px;
  --header-height: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-page);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--color-blue);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #155899;
}

:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  color: #fff;
  background: #0b4f8f;
  border-radius: var(--radius);
}

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

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(247, 247, 248, 0.88);
  border-bottom: 1px solid rgba(226, 230, 235, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(247, 247, 248, 0.72);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 48px;
  min-height: 48px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
}

.js-enabled .nav-toggle {
  display: inline-flex;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.site-nav {
  position: static;
  display: block;
  max-height: none;
  overflow: auto;
  padding: 1rem;
  background: var(--color-page);
  border-bottom: 1px solid var(--color-border);
}

.js-enabled .site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: none;
  max-height: calc(100vh - var(--header-height));
  background: rgba(247, 247, 248, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.js-enabled .site-nav.is-open {
  display: block;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  color: #4d5562;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-link:hover,
.dropdown-toggle:hover,
.nav-link[aria-current="page"],
.dropdown-toggle.is-current {
  color: var(--color-orange-dark);
  background: rgba(255, 90, 20, 0.08);
}

.dropdown-toggle::after {
  width: 0.48rem;
  height: 0.48rem;
  margin-left: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

.dropdown-menu {
  display: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.dropdown[data-open="true"] .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  min-height: 44px;
  padding: 0.62rem 0.8rem;
  color: #4d5562;
  text-decoration: none;
  border-radius: 4px;
}

.dropdown-menu a:hover {
  color: var(--color-orange-dark);
  background: #fff3ed;
}

.nav-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1rem;
  color: var(--color-text);
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.button-primary {
  color: #fff;
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.button-primary:hover {
  color: #fff;
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
}

.button-blue {
  color: #fff;
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.button-blue:hover {
  color: #fff;
  background: #155899;
  border-color: #155899;
}

.button-secondary,
.button-ghost {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--color-border);
}

.button-secondary:hover,
.button-ghost:hover {
  color: var(--color-orange-dark);
  border-color: #f7b08d;
}

.button-ghost-dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.button-ghost-dark:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.main-content {
  padding: 3.4rem 0 4.8rem;
  background: #fff;
}

.home-main {
  background: #fff;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.home-actions .button {
  min-width: min(100%, 250px);
}

.home-actions--center {
  justify-content: center;
}

.home-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.home-section--muted {
  background: var(--color-page);
}

.home-section--dark {
  color: #fff;
  background: var(--color-footer);
}

.home-section__header {
  margin-bottom: 2.3rem;
}

.home-section__header h2 {
  margin-top: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
}

.home-section__header p {
  max-width: 820px;
  font-size: 1.12rem;
}

.home-section__header--center {
  text-align: center;
}

.home-section__header--center p {
  margin-inline: auto;
}

.home-section__header--split {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.benefit-grid,
.category-grid,
.help-grid {
  display: grid;
  gap: 1.2rem;
}

.benefit-card,
.category-card,
.help-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 112px;
  padding: 1.35rem;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.benefit-icon {
  width: 56px;
  height: 56px;
}

.help-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
}

.category-card {
  position: relative;
  display: grid;
  min-height: 218px;
  padding: 1.55rem;
  color: inherit;
  text-decoration: none;
}

.category-card:hover {
  color: inherit;
  border-color: #c9d6e6;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.category-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.28rem;
}

.category-card p {
  margin-bottom: 1.4rem;
}

.category-card strong {
  align-self: end;
  color: var(--color-blue);
}

.category-card__arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid #657080;
  border-right: 2px solid #657080;
  transform: rotate(45deg);
}

.process-list {
  position: relative;
  display: grid;
  gap: 1.6rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 29px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--color-orange);
  border-radius: 999px;
}

.process-list strong {
  max-width: 180px;
  color: #fff;
  font-size: 0.98rem;
}

.home-section--dark h2,
.home-section--dark p {
  color: #fff;
}

.home-section--dark p {
  color: #d8dee9;
}

.home-quality {
  background: #fff;
}

.home-quality .button {
  margin-top: 1rem;
}

.home-quality .home-section__header p {
  font-size: 1.22rem;
}

.help-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.help-card h3 {
  font-size: 1.5rem;
}

.help-card p {
  font-size: 1rem;
}

.help-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.help-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-muted);
}

.help-card li::before {
  position: absolute;
  top: 0.36em;
  left: 0;
  display: grid;
  place-items: center;
  width: 0.74rem;
  height: 0.74rem;
  color: var(--color-orange);
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  content: "✓";
}

.help-card--project li::before {
  color: var(--color-blue);
}

.help-card .button {
  width: 100%;
}

.home-final-cta {
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--color-border);
}

.home-final-cta h2 {
  margin-top: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
}

.home-final-cta p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.12rem;
}

.seminar-overview {
  padding-bottom: 5.2rem;
}

.overview-hero {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.2rem;
  padding: clamp(2rem, 5vw, 3rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  border-radius: var(--radius);
}

.overview-hero h1 {
  color: #fff;
}

.overview-kicker {
  margin: 0 0 0.75rem;
  color: #ffb18c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.overview-hero p {
  max-width: 760px;
  color: #d8dee9;
  font-size: 1.14rem;
}

.overview-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.overview-section {
  margin-top: 3.4rem;
}

.overview-section__header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.3rem;
}

.overview-section__header h2 {
  margin-top: 0;
}

.overview-section__header p {
  max-width: 760px;
  font-size: 1.08rem;
}

.overview-card-grid {
  display: grid;
  gap: 1rem;
}

.overview-card {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.overview-card:hover,
.overview-card:focus-visible {
  color: inherit;
  border-color: #f7b08d;
  box-shadow: 0 12px 30px rgba(255, 90, 20, 0.14);
  transform: translateY(-2px);
}

.overview-card:hover strong,
.overview-card:focus-visible strong {
  color: var(--color-orange-dark);
}

.overview-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.28rem;
}

.overview-card strong {
  align-self: end;
  color: var(--color-blue);
}

.overview-card__arrow {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid #657080;
  border-right: 2px solid #657080;
  transform: rotate(45deg);
}

.featured-seminar-list {
  display: grid;
  gap: 0.85rem;
}

.featured-seminar {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.featured-seminar h3 {
  margin-bottom: 0.35rem;
}

.featured-seminar h3 a {
  color: var(--color-text);
  text-decoration-color: rgba(31, 115, 201, 0.35);
}

.featured-seminar h3 a:hover {
  color: var(--color-orange-dark);
}

.featured-seminar p {
  margin-bottom: 0;
}

.featured-seminar span {
  justify-self: start;
  padding: 0.28rem 0.65rem;
  color: var(--color-orange-dark);
  background: #fff0e8;
  border-radius: 2px;
}

.overview-cta {
  margin-top: 3.6rem;
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.overview-cta h2 {
  margin-top: 0;
}

.overview-cta p {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.adobe-module-section {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background: var(--color-page);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.module-link-list {
  display: grid;
  gap: 0.75rem;
}

.module-link-list a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--color-text);
  text-decoration-color: rgba(31, 115, 201, 0.35);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.module-link-list a:hover {
  color: var(--color-orange-dark);
  border-color: #f7b08d;
}

.contact-hero {
  margin-bottom: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  border-radius: var(--radius);
}

.contact-hero h1 {
  color: #fff;
}

.contact-hero p {
  max-width: 760px;
  color: #d8dee9;
  font-size: 1.14rem;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
}

.contact-form-panel,
.contact-info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-form-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-form-panel h2,
.contact-info-card h2 {
  margin-top: 0;
}

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

.form-field {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1rem;
}

.form-field label,
.form-checkbox {
  color: var(--color-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.8rem;
  color: var(--color-text);
  font: inherit;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.form-field textarea {
  resize: vertical;
}

.form-field--honeypot {
  position: absolute;
  left: -9999px;
}

.form-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0 0 1.2rem;
}

.form-checkbox input {
  margin-top: 0.35rem;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
}

.form-status p,
.form-status ul {
  margin-bottom: 0;
}

.form-status--success {
  color: #0f5132;
  background: #dff7e9;
  border: 1px solid #a7e7bf;
}

.form-status--error {
  color: #7a1f13;
  background: #fff0e8;
  border: 1px solid #f7b08d;
}

.contact-aside {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-info-card {
  padding: 1.25rem;
}

.contact-info-card--accent {
  border-color: #f7b08d;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

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

.quality-hero {
  margin-bottom: 3rem;
  padding: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(24, 39, 64, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(255, 79, 24, 0.32), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  border-radius: var(--radius);
}

.quality-hero h1 {
  color: #fff;
}

.quality-hero p {
  max-width: 780px;
  color: #d8dee9;
  font-size: 1.16rem;
}

.quality-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.quality-section {
  margin-top: 3rem;
}

.quality-promise-grid {
  display: grid;
  gap: 1.2rem;
}

.quality-promise-card {
  padding: clamp(1.25rem, 3vw, 1.7rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quality-promise-card img {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
}

.quality-promise-card h3 {
  margin-bottom: 0.55rem;
}

.quality-promise-card p {
  margin-bottom: 0;
}

.quality-section--split {
  display: grid;
  gap: 1.4rem;
  align-items: start;
  padding: clamp(1.6rem, 4vw, 2.3rem);
  background: var(--color-page);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.quality-check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.quality-check-list li::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  color: var(--color-orange);
  font-size: 0.72rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "✓";
}

.quality-process {
  margin-top: 3rem;
  padding: clamp(2rem, 5vw, 3.2rem);
  border-radius: var(--radius);
}

.quality-process--statement {
  margin-inline: auto;
  padding-block: clamp(2rem, 4vw, 2.5rem);
}

.quality-process--statement .home-section__header {
  margin-bottom: 0;
}

.quality-process--statement .home-section__header p {
  max-width: 580px;
  margin-bottom: 0;
  font-size: 1rem;
}

.quality-feature-grid {
  display: grid;
  gap: 1.2rem;
}

.quality-feature-card {
  min-height: 260px;
  padding: clamp(1.3rem, 3vw, 1.65rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quality-feature-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
}

.quality-feature-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.quality-feature-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.legal-content {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legacy-impressum h2 {
  margin-top: 0;
  font-size: clamp(1.9rem, 4vw, 2.45rem);
}

.legacy-impressum h3 {
  max-width: 880px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.legacy-impressum h4 {
  margin: 1.6rem 0 0.55rem;
  color: var(--color-text);
  font-size: 1.05rem;
}

.legacy-impressum p {
  max-width: 900px;
}

.legacy-impressum .fright {
  float: right;
  max-width: min(200px, 35vw);
  height: auto;
  margin: 0 0 1rem 1.5rem;
  border-radius: var(--radius);
}

.legacy-impressum .fleft {
  float: left;
  max-width: 80px;
  height: auto;
  margin: 0.15rem 1rem 0.6rem 0;
}

.legacy-impressum .linkedlogo {
  display: inline-block;
  max-width: min(300px, 100%);
  height: auto;
}

.legacy-impressum .more {
  margin-top: 1.5rem;
}

.breadcrumb {
  margin-bottom: 2.1rem;
  color: #8a929e;
  font-size: 0.95rem;
  font-weight: 700;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb a {
  color: #8a929e;
  text-decoration: none;
}

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

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.55rem;
  color: #b0b6bf;
  content: "›";
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--color-text);
  line-height: 1.18;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0;
}

h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.35rem, 2.6vw, 1.78rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 2.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.7rem;
  font-weight: 400;
  line-height: 1;
  border-radius: 2px;
}

.chip-orange {
  color: var(--color-orange-dark);
  background: #fff0e8;
}

.chip-blue {
  color: #1763ad;
  background: var(--color-blue-soft);
}

.summary-card {
  margin: 1.15rem 0 2.9rem;
  padding: 1.6rem 1.7rem;
  color: #222c38;
  font-size: 1.12rem;
  font-weight: 400;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.agenda-section {
  margin: 0 0 3rem;
}

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

.agenda-card {
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.agenda-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.agenda-card h3 a {
  color: var(--color-text);
  text-decoration-color: rgba(31, 115, 201, 0.35);
}

.agenda-card h3 a:hover {
  color: var(--color-orange-dark);
}

.agenda-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding-left: 1.15rem;
}

.agenda-list > li::marker {
  color: var(--color-orange);
}

.agenda-list span {
  color: var(--color-text);
  font-weight: 800;
}

.agenda-list span a {
  color: inherit;
  text-decoration-color: rgba(31, 115, 201, 0.35);
}

.agenda-list span a:hover {
  color: var(--color-orange-dark);
}

.agenda-list ul {
  display: grid;
  gap: 0.32rem;
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.agenda-list ul li {
  color: var(--color-muted);
}

#praxisnutzen,
#format-title {
  font-size: clamp(1.24rem, 2.2vw, 1.52rem);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.1rem 0 2.25rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2.15rem;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.check-list li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-green);
  font-size: 0.86rem;
  font-weight: 900;
  border: 3px solid var(--color-green);
  border-radius: 999px;
  content: "✓";
}

.two-column {
  display: grid;
  gap: 2rem;
  margin: 2.4rem 0;
}

.seminar-detail-grid {
  display: grid;
  gap: 2rem;
}

.seminar-aside {
  display: grid;
  align-content: start;
  gap: 1rem;
  margin: 0 0 2.4rem;
}

.seminar-info-card {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.seminar-info-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.seminar-info-card p {
  margin-bottom: 0;
}

.seminar-duration-value {
  color: var(--color-text);
  font-size: 1.08rem;
  font-weight: 800;
}

.seminar-info-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
}

.format-copy {
  margin-bottom: 2.4rem;
}

.divider {
  margin: 2.9rem 0 2.1rem;
  border: 0;
  border-top: 1px solid var(--color-border);
}

.faq {
  margin-bottom: 3.4rem;
  border-top: 1px solid var(--color-border);
}

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

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  color: var(--color-text);
  font-size: 1.08rem;
  font-weight: 400;
  cursor: pointer;
}

.faq summary::after {
  color: #8a929e;
  content: "⌄";
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq details p {
  max-width: 720px;
  padding-bottom: 1.1rem;
}

.cta-panel {
  margin: 0 0 4.8rem;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.cta-panel h2 {
  margin-top: 0;
}

.cta-panel p {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.9rem;
}

.cta-actions .button {
  min-width: min(100%, 280px);
  font-weight: 400;
}

.site-footer {
  padding: 3.5rem 0 2.8rem;
  color: #c7d2e4;
  background: var(--color-footer);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.4rem;
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
}

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

.site-footer a {
  color: #7f97ba;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-link-button {
  padding: 0;
  color: #7f97ba;
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-link-button:hover {
  color: #fff;
}

.copyright {
  margin: 0;
  padding-top: 2rem;
  color: #60708e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.placeholder-note {
  padding: 1rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-items: end;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.42);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__panel {
  width: min(100%, 760px);
  margin-inline: auto;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.24);
}

.cookie-consent h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.cookie-consent__group {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
  padding: 0;
  border: 0;
}

.cookie-consent__group legend {
  margin-bottom: 0.55rem;
  font-weight: 800;
}

.cookie-consent__option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.cookie-consent__option input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.cookie-consent__option small {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-muted);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.cookie-consent__actions .button {
  min-height: 44px;
}

.cookie-consent__note {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

.animate-in {
  opacity: 1;
}

@media (min-width: 720px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-seminar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

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

  .quality-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .two-column {
    grid-template-columns: 1fr 1fr;
  }

  .seminar-detail-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .main-content {
    padding-top: 2.2rem;
  }

  .breadcrumb {
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    margin-top: 2.1rem;
  }

  .summary-card {
    padding: 1.2rem;
    font-size: 1.12rem;
  }

  .cta-actions .button,
  .nav-actions .button,
  .home-actions .button {
    width: 100%;
  }
  .home-section__header--split .button {
    width: 100%;
  }

  .overview-hero__actions .button,
  .overview-cta .button {
    width: 100%;
  }

  .process-list::before {
    display: none;
  }
}

@media (min-width: 1040px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.35fr) 360px;
    align-items: start;
  }

  .overview-hero {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .overview-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quality-section--split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .quality-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-section__header--split {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .benefit-grid,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-toggle,
  .js-enabled .nav-toggle {
    display: none;
  }

  .site-nav,
  .js-enabled .site-nav {
    position: static;
    display: flex;
    align-items: center;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
  }

  .nav-link,
  .dropdown-toggle {
    width: auto;
    min-height: 42px;
    padding-inline: 0.55rem;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    z-index: 10;
    min-width: 240px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    order: 2;
    margin-top: 0;
    margin-left: 0.75rem;
  }

  .nav-actions .button {
    min-height: 38px;
    padding: 0.52rem 0.9rem;
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header,
  .button,
  .nav-link,
  .dropdown-menu a {
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 180ms ease;
  }

  .animate-in {
    transform: translateY(16px);
  }

  .animate-in.is-visible {
    transform: translateY(0);
    transition: transform 420ms ease;
  }
}
