:root {
  --red: #F20505;
  --anthracite: #111827;
  --text: #374151;
  --muted: #6B7280;
  --white: #FFFFFF;
  --off-white: #F9FAFB;
  --line: #E5E7EB;
  --blue-grey: #EEF4F8;
  --tech: #0F766E;

  --shadow-sm: 0 10px 25px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 24px 70px rgba(17, 24, 39, 0.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --container: 1180px;
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: var(--anthracite);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.25rem);
  max-width: 980px;
  margin-bottom: 1.35rem;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

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

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

.section {
  padding: 4.75rem 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--anthracite);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.1rem;
}

.site-nav {
  display: none;
  position: absolute;
  inset: var(--header-height) 1rem auto 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.site-nav.is-open {
  display: grid;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.8rem 0.9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--anthracite);
  background: var(--off-white);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--anthracite);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(15, 118, 110, 0.12), transparent 26%),
    radial-gradient(circle at 10% 22%, rgba(242, 5, 5, 0.07), transparent 24%),
    linear-gradient(180deg, var(--off-white), var(--white));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -8rem auto;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

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

.eyebrow {
  margin-bottom: 1rem;
  color: #4f9187;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-lead {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(242, 5, 5, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 16px 42px rgba(242, 5, 5, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--anthracite);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--off-white);
  box-shadow: var(--shadow-sm);
}

.hero-points {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.hero-points li {
  position: relative;
  padding-left: 1.75rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--tech);
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
}

.hero-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.hero-card strong {
  color: var(--anthracite);
}

.hero-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================================================
   GLOBALE INHALTSLINKS
   Einheitliche Darstellung in der gesamten Website

   - unbesucht: blau
   - hover/fokus: rot
   - besucht: grün
   - keine Unterstreichung
   ========================================================= */

main a:not(.btn):not(.button):not(.service-button):link {
  color: #0b63a5;
  text-decoration: none;
  font-weight: 600;
}

main a:not(.btn):not(.button):not(.service-button):visited {
  color: #247a3d;
  text-decoration: none;
}

main a:not(.btn):not(.button):not(.service-button):hover,
main a:not(.btn):not(.button):not(.service-button):focus-visible,
main a:not(.btn):not(.button):not(.service-button):visited:hover,
main a:not(.btn):not(.button):not(.service-button):visited:focus-visible {
  color: var(--red, #F20505);
  text-decoration: none;
}

/* =========================================================
   LINKEDIN-STREIFEN
   gleiche Hintergrundfarbe wie Footer
   ========================================================= */

.linkedin-strip {
  width: 100%;
  position: relative;
  z-index: 1;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  background-color: #263f4a !important;
  color: #ffffff;
}

.linkedin-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;

  padding: 1rem 0;

  background: transparent;
}

.linkedin-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.linkedin-inner a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.linkedin-inner a:hover,
.linkedin-inner a:focus-visible {
  color: #ffffff;
  opacity: 0.82;
}

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

.content-stack {
  display: grid;
  gap: 0.8rem;
}

.content-stack p:last-child {
  margin-bottom: 0;
}

.problem,
.benefits,
.faq {
  background: var(--white);
}

.solution,
.integration,
.process,
.contact {
  background: var(--off-white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card,
.benefit-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
}

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

.card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  color: var(--red);
  background: rgba(242, 5, 5, 0.08);
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-item {
  display: grid;
  gap: 1.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.04);
}

.service-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--blue-grey);
}

.service-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.tag-row span {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  color: var(--tech);
  background: rgba(15, 118, 110, 0.07);
  font-size: 0.9rem;
  font-weight: 750;
}

.benefit-card {
  background:
    linear-gradient(
      180deg,
      rgba(238, 244, 248, 0.65),
      rgba(255, 255, 255, 1)
    );
  display: flex;
  flex-direction: column;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.process-list span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--anthracite);
  color: var(--white);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-box {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      135deg,
      var(--anthracite),
      #1f2937
    );
}

.trust-box h2,
.trust-box p {
  color: var(--white);
}

.trust-box .eyebrow {
  color: #9FE4DA;
}

.trust-box .content-stack p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  color: var(--anthracite);
  font-weight: 850;
}

details p {
  padding: 0 1.3rem 1.2rem;
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-note {
  margin-top: 1.5rem;
  font-weight: 750;
}

.contact-note a {
  color: var(--red);
}

.contact-form {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

label,
legend {
  color: var(--anthracite);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--anthracite);
  padding: 0.85rem 0.9rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--tech);
  box-shadow:
    0 0 0 4px rgba(15, 118, 110, 0.12);
}

.checkbox-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.checkbox-group legend {
  padding: 0 0.35rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.checkbox-group input {
  width: auto;
  accent-color: var(--red);
}

.error-message {
  min-height: 1.1rem;
  color: var(--red);
  font-size: 0.88rem;
}

.has-error input,
.has-error select,
.has-error textarea,
.checkbox-group.has-error {
  border-color: var(--red);
}

.privacy-note {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: var(--radius-md);
  background: rgba(15, 118, 110, 0.08);
  color: var(--tech);
  font-weight: 750;
}


/* =========================================================
   RESPONSIVE BASIS
   ========================================================= */

@media (min-width: 700px) {

  .linkedin-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .form-field-wide {
    grid-column: 1 / -1;
  }

  .service-item {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }

  .service-item img {
    height: 180px;
  }
}


@media (min-width: 920px) {

  .section {
    padding: 6.5rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .two-column,
  .contact-grid,
  .trust-box {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

  .card-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }
}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* =========================================================
   RECHTLICHE SEITEN
   ========================================================= */

.legal-page {
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(15, 118, 110, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--off-white),
      var(--white)
    );
}

.legal-container {
  max-width: 920px;
}

.legal-container h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  margin-bottom: 2rem;
}

.legal-card {
  padding: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow:
    0 1px 0 rgba(17, 24, 39, 0.04);
}

.legal-card h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  margin-bottom: 0.8rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--red);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}


/* =========================================================
   FORMULARZUSÄTZE
   ========================================================= */

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

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

.form-success.is-error {
  border-color: rgba(242, 5, 5, 0.28);
  background: rgba(242, 5, 5, 0.08);
  color: var(--red);
}


/* =========================================================
   PRIVATKUNDEN
   ========================================================= */

.private-services {
  background: var(--white);
}

.private-services .benefit-card {
  min-height: 260px;
}

.service-image-wrap {
  width: 240px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.service-image-wrap img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
  border-radius:
    calc(var(--radius-lg) - 10px);
}

.service-button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow:
    0 10px 24px rgba(242, 5, 5, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-button:hover,
.service-button:focus {
  background: #c90404;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(242, 5, 5, 0.24);
}

.service-button:focus-visible {
  outline:
    3px solid rgba(242, 5, 5, 0.28);
  outline-offset: 3px;
}

@media (max-width: 699px) {

  .service-image-wrap {
    width: 100%;
  }

  .service-image-wrap img {
    height: 230px;
  }
}


.swiss-statement {
  margin-top: 1.4rem;
  color: var(--red);
  font-weight: 850;
  font-size: 1.15rem;
}

.hero-sovereignty {
  margin-top: 2rem;
}

.ajordi-name,
p .ajordi-name,
a .ajordi-name,
h1 .ajordi-name,
h2 .ajordi-name,
h3 .ajordi-name {
  color: var(--red) !important;
}


/* =========================================================
   DATENSCHUTZ- UND STANDORTDIALOG
   ========================================================= */

.privacy-banner {
  position: fixed;
  z-index: 10000;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1rem;

  background:
    rgba(17, 24, 39, 0.55);

  backdrop-filter: blur(3px);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner__box {
  width: min(100%, 760px);

  max-height:
    calc(100vh - 2rem);

  overflow-y: auto;

  padding: 1.5rem;

  border:
    1px solid var(--line, #d1d5db);

  border-radius: 20px;

  background:
    var(--white, #ffffff);

  color:
    var(--text, #172126);

  box-shadow:
    0 20px 60px
    rgba(17, 24, 39, 0.25);
}


/* Überschrift */

.privacy-banner__box h2 {
  margin: 0 0 0.75rem;

  font-size: 1.4rem;
  line-height: 1.2;
}


/* Einleitung */

#privacyBannerText {
  width: 100%;

  margin:
    0 0 1.25rem;

  color: var(--text);

  line-height: 1.55;
}


/* =========================================================
   OPTIONEN
   ========================================================= */

.privacy-option {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1.5rem;

  margin:
    0 0 0.8rem;

  padding:
    1rem 1.1rem;

  border:
    1px solid #d9dde3;

  border-radius: 12px;

  background: #f8f9fa;

  cursor: pointer;
}

.privacy-option:hover {
  border-color: #c8ced6;
}

.privacy-option--necessary {
  cursor: default;
}

.privacy-option--necessary:hover {
  border-color: #d9dde3;
}


/* Text innerhalb der Option */

.privacy-option__content {
  flex: 1;

  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 0.25rem;
}

.privacy-option__content strong {
  color:
    var(--anthracite);

  font-size: 1rem;
  line-height: 1.35;
}

.privacy-option__content span {
  color: #59636e;

  font-size: 0.9rem;
  line-height: 1.5;
}


/* =========================================================
   CHECKBOX
   ========================================================= */

.privacy-option input[type="checkbox"] {
  width: 22px;
  height: 22px;

  flex:
    0 0 22px;

  margin: 0;

  padding: 0;

  accent-color:
    var(--red, #F20505);

  cursor: pointer;
}

.privacy-option input[type="checkbox"]:disabled {
  cursor: default;
}


/* =========================================================
   ERKLÄRUNGSTEXT
   ========================================================= */

.privacy-banner__notice {
  width: 100%;

  margin:
    1rem 0 0 !important;

  padding:
    0.9rem 1rem;

  border:
    1px solid #e3e7eb;

  border-radius: 10px;

  background: #f5f7f9;

  color: #59636e;

  font-size: 0.88rem;
  line-height: 1.55;
}


/* =========================================================
   DATENSCHUTZ-LINK
   ========================================================= */

.privacy-banner__links {
  width: 100%;

  margin:
    1.1rem 0 0 !important;

  color: #59636e;

  font-size: 0.9rem;
  line-height: 1.5;
}

.privacy-banner__box a {
  color:
    var(--red, #F20505);

  font-weight: 700;

  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.privacy-banner__actions {
  width: 100%;

  display: flex;
  flex-direction: column;

  gap: 0.75rem;

  margin-top: 1.4rem;
}

.privacy-banner__actions button {
  width: 100%;
}

body.privacy-banner-open {
  overflow: hidden;
}


/* =========================================================
   DATENSCHUTZDIALOG DESKTOP
   ========================================================= */

@media (min-width: 640px) {

  .privacy-banner {
    padding: 2rem;
  }

  .privacy-banner__box {
    max-height:
      calc(100vh - 4rem);

    padding: 1.75rem;
  }

  .privacy-banner__actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .privacy-banner__actions button {
    width: auto;
    min-width: 180px;
  }
}


/* =========================================================
   DATENSCHUTZDIALOG MOBILE
   ========================================================= */

@media (max-width: 639px) {

  .privacy-banner {
    align-items: flex-end;

    padding: 0.75rem;
  }

  .privacy-banner__box {
    width: 100%;

    max-height:
      calc(100vh - 1.5rem);

    padding: 1.2rem;

    border-radius: 18px;
  }

  .privacy-option {
    gap: 1rem;

    padding:
      0.9rem 1rem;
  }

  .privacy-option__content strong {
    font-size: 0.96rem;
  }

  .privacy-option__content span {
    font-size: 0.86rem;
  }

  .privacy-banner__notice {
    font-size: 0.84rem;
  }
}


/* =========================================================
   PRIVATE CARD
   ========================================================= */

.private-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.private-card-button {
  margin-top: auto;
  padding-top: 24px;
}

.private-card-button .service-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}


/* =========================================================
   TRENNLINIE
   ========================================================= */

.trennlinie {
  border: none;
  height: 1px;
  background-color: #d9dde3;
  width: 80%;
  margin: 48px auto;
}


/* =========================================================
   OS-TABELLE
   ========================================================= */

.os-table-wrap {
  margin: 2.5rem 0;
  overflow-x: auto;
  border-radius: 18px;
  box-shadow:
    0 10px 35px
    rgba(20, 30, 45, 0.08);
  border: 1px solid #e3e7eb;
  background: #fff;
}

.os-table {
  width: 100%;
  min-width: 1050px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.os-table th,
.os-table td {
  padding: 1.15rem 1.2rem;
  text-align: left;
  vertical-align: top;
}

.os-table thead th {
  background: #f2f5f6;
  border-bottom:
    2px solid #dfe4e8;
}

.os-table thead th:first-child {
  border-radius:
    18px 0 0 0;
}

.os-table thead th:last-child {
  border-radius:
    0 18px 0 0;
}

.os-table tbody td {
  border-bottom:
    1px solid #e7eaed;
}

.os-table tbody tr:nth-child(even) td {
  background: #fafbfc;
}

.os-table tbody tr:hover td {
  background: #f3f7f7;
}

.os-table tbody tr:last-child td {
  border-bottom: 0;
}

.os-table tbody td:first-child {
  font-weight: 700;
  color: #18202c;
  width: 180px;
}

.os-head {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.os-head strong {
  font-size: 1.15rem;
  color: #121925;
}

.os-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.os-origin {
  margin-top: 0.2rem;
  color: #65717d;
  font-size: 0.82rem;
  font-weight: 500;
}

.feature-head {
  color: #65717d;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.badge {
  display: inline-block;
  margin:
    0 0.35rem 0.3rem 0;
  padding:
    0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.badge-open,
.badge-good {
  background: #e6f3ec;
  color: #286444;
}

.badge-commercial {
  background: #edf0f4;
  color: #414c59;
}

.badge-neutral {
  background: #eef1f3;
  color: #56606b;
}

.badge-medium {
  background: #fff2d8;
  color: #805d13;
}

.badge-high {
  background: #fbe8e8;
  color: #943737;
}

.value-icon {
  display: inline-block;
  margin-right: 0.3rem;
  font-weight: 700;
}

.rating {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--red);
}

@media (max-width: 800px) {

  .os-table-wrap {
    border-radius: 12px;
  }

  .os-table th,
  .os-table td {
    padding: 0.9rem;
  }
}


/* =========================================================
   FEATURE-CARD FARBEN
   ========================================================= */

/* 01 – Grün */

.feature-card:nth-child(1) {
  background: #eaf7ee;
  border-color: #b7ddc2;
}


/* 02 – Rot */

.feature-card:nth-child(2) {
  background: #fdecec;
  border-color: #efb8b8;
}


/* 03 – Blau */

.feature-card:nth-child(3) {
  background: #eaf3fb;
  border-color: #b8d3eb;
}

.feature-card:nth-child(1) .card-number {
  background: #d7efde;
  color: #247a3d;
}

.feature-card:nth-child(2) .card-number {
  background: #f8dada;
  color: #b42323;
}

.feature-card:nth-child(3) .card-number {
  background: #d7e9f8;
  color: #24699d;
}


/* =========================================================
   ZENTRALE HINWEIS- UND KERNAUSSAGE-BOXEN
   Einheitliches Erscheinungsbild für ajordi-callout und
   source-feature__aside
   ========================================================= */

.ajordi-callout,
.source-feature__aside {
  position: relative;
  box-sizing: border-box;
  background:
    linear-gradient(
      145deg,
      #fffbea 0%,
      #fff3c4 100%
    );
  color: #1f2933;
  border: 1px solid #eadb92;
  border-left: 5px solid #d3b13f;
  border-radius: 0.72rem;
  box-shadow:
    0 5px 14px
    rgba(111, 91, 21, 0.07);
}

.ajordi-callout {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 0.8rem;
  margin: 0.15rem 0 0;
  padding: 0.78rem 1rem;
  line-height: 1.5;
}

.ajordi-callout > span {
  display: block;
  max-width: 68ch;
}

.ajordi-callout::before,
.source-feature__aside::before {
  content: "💡";
  line-height: 1;
  filter:
    drop-shadow(
      0 0 6px
      rgba(255, 196, 0, 0.4)
    );
}

.ajordi-callout::before {
  flex: 0 0 auto;
  font-size: 1.72rem;
}

.source-feature__aside {
  padding:
    1.15rem 1.25rem
    1.15rem 4.4rem;
}

.source-feature__aside::before {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.72rem;
}

.source-feature__aside strong {
  display: block;
  margin: 0 0 0.9rem;
  color: #1f2933 !important;
  font-size: 1.08rem;
  line-height: 1.45;
}

.source-feature__aside p {
  margin: 0;
  color: #1f2933 !important;
  line-height: 1.5;
  max-width: 68ch;
}

@media (max-width: 700px) {

  .ajordi-callout {
    display: flex;
    width: auto;
    gap: 0.65rem;
    padding:
      0.75rem 0.85rem;
    border-left-width: 4px;
  }

  .ajordi-callout::before {
    font-size: 1.5rem;
  }

  .source-feature__aside {
    padding:
      1.6rem 1.35rem
      1.6rem 4.35rem;
  }

  .source-feature__aside::before {
    left: 1.15rem;
    font-size: 2.15rem;
  }
}


/* =========================================================
   KERNAUSSAGE-BOX
   robuste zentrale Definition
   ========================================================= */

body .source-feature__aside {
  position: relative;
  box-sizing: border-box;

  background:
    linear-gradient(
      145deg,
      #fffbea 0%,
      #fff3c4 100%
    ) !important;

  color: #1f2933 !important;

  border:
    1px solid #eadb92 !important;

  border-left:
    5px solid #d3b13f !important;

  border-radius:
    12px !important;

  box-shadow:
    0 5px 14px
    rgba(111, 91, 21, 0.07) !important;

  padding:
    1.25rem 1.35rem
    1.25rem 4.25rem !important;
}

body .source-feature__aside::before {
  content: "💡" !important;
  position: absolute !important;
  left: 1.25rem !important;
  top: 1.35rem !important;

  transform: none !important;

  line-height: 1 !important;
  font-size: 1.75rem !important;

  filter:
    drop-shadow(
      0 0 6px
      rgba(255, 196, 0, 0.40)
    );
}

body .source-feature__aside strong {
  display: block;

  margin:
    0 0 0.55rem !important;

  color:
    #1f2933 !important;

  font-size: 1.08rem;
  line-height: 1.4;
}

body .source-feature__aside p {
  margin: 0 !important;

  max-width:
    none !important;

  color:
    #1f2933 !important;

  line-height: 1.55;
}

@media (max-width: 700px) {

  body .source-feature__aside {
    padding:
      1.1rem 1rem
      1.1rem 3.65rem !important;

    border-left-width:
      4px !important;
  }

  body .source-feature__aside::before {
    left: 1rem !important;
    top: 1.2rem !important;
    font-size: 1.55rem !important;
  }
}

/* =========================================================
   FESTES SEITEN-HINTERGRUNDBILD
   Die grossen Inhaltsflächen sind zu 50 % transparent.
   Karten, Formulare, Header und Footer bleiben deckend.
   ========================================================= */

:root {
  --page-background-image: url("../images/hintergrund.png");
  --page-background-overlay: rgba(255, 255, 255, 0.99);
  --page-background-overlay-soft: rgba(249, 250, 251, 0.99);
}

html {
  min-height: 100%;
  background: #ffffff;
}

body {
  min-height: 100vh;

  background-image: var(--page-background-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/*
 * Die bisher deckenden Bereichshintergründe werden transparent.
 * Dadurch scheint das feststehende Hintergrundbild durch.
 */
.problem,
.benefits,
.faq,
.private-services {
  background: var(--page-background-overlay);
}

.solution,
.integration,
.process,
.contact {
  background: var(--page-background-overlay-soft);
}

/*
 * Hero: bestehende Farbverläufe bleiben erhalten,
 * werden aber transparent, damit das Hintergrundbild sichtbar bleibt.
 */
.hero {
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(15, 118, 110, 0.10),
      transparent 26%
    ),
    radial-gradient(
      circle at 10% 22%,
      rgba(242, 5, 5, 0.06),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(249, 250, 251, 0.50),
      rgba(255, 255, 255, 0.50)
    );
}

/*
 * Rechtliche Seiten ebenfalls mit 50 % transparenter Grundfläche.
 */
.legal-page {
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(15, 118, 110, 0.06),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(249, 250, 251, 0.50),
      rgba(255, 255, 255, 0.50)
    );
}

/*
 * Mobilgeräte:
 * background-attachment: fixed wird auf einzelnen mobilen Browsern
 * nicht sauber unterstützt. Die Position bleibt dennoch zentriert.
 */
@media (max-width: 900px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }
}



/* =========================================================
   ZENTRALES AKTIONS-FEEDBACK
   ========================================================= */
.ajordi-feedback-host {
  position: fixed;
  top: 78px;
  left: 50%;
  z-index: 200000;
  display: flex;
  width: min(620px, calc(100vw - 28px));
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  transform: translateX(-50%);
}

.ajordi-feedback {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-left-width: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.18);
  color: #1f2937;
  opacity: 0;
  pointer-events: auto;
  transform: translateY(-10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.ajordi-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ajordi-feedback--success { border-left-color: #188038; }
.ajordi-feedback--error { border-left-color: #b00000; }
.ajordi-feedback--warning { border-left-color: #b77900; }
.ajordi-feedback--info,
.ajordi-feedback--loading { border-left-color: #2463a6; }

.ajordi-feedback__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  background: #eef2f7;
}

.ajordi-feedback--success .ajordi-feedback__icon { color: #188038; background: #eaf6ee; }
.ajordi-feedback--error .ajordi-feedback__icon { color: #b00000; background: #fdecec; }
.ajordi-feedback--warning .ajordi-feedback__icon { color: #8a5a00; background: #fff5db; }
.ajordi-feedback--info .ajordi-feedback__icon,
.ajordi-feedback--loading .ajordi-feedback__icon { color: #2463a6; background: #eaf2fb; }

.ajordi-feedback--loading .ajordi-feedback__icon {
  font-size: 0;
  border: 3px solid #cbd5e1;
  border-top-color: #2463a6;
  animation: ajordi-feedback-spin 750ms linear infinite;
}

.ajordi-feedback__content {
  min-width: 0;
}

.ajordi-feedback__title,
.ajordi-feedback__message {
  display: block;
}

.ajordi-feedback__title {
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.25;
}

.ajordi-feedback__message {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
}

.ajordi-feedback__close {
  align-self: start;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4b5563;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.ajordi-feedback__close:hover,
.ajordi-feedback__close:focus-visible {
  background: #f1f5f9;
  color: #111827;
}

@keyframes ajordi-feedback-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 700px) {
  .ajordi-feedback-host {
    top: 68px;
    width: calc(100vw - 20px);
  }
}

/* V3.7 – systemweite Kennzeichnung nicht editierbarer Formularfelder */
input[readonly],
textarea[readonly],
select[readonly],
input:disabled,
textarea:disabled,
select:disabled {
    background-color: #f1f3f5 !important;
    color: inherit;
    opacity: 1;
}

input:disabled,
textarea:disabled,
select:disabled {
    cursor: not-allowed;
}
