/* =========================
GLOBAL
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 1000;
    padding: 12px 16px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}

.skip-link:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    overflow: visible;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================
HEADER
========================= */

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    color: #111;
    text-decoration: none;
    border-bottom: 0;
}

.logo a:hover,
.logo a:focus {
    color: #111;
    text-decoration: none;
    border-bottom: 0;
}

.logo h2 {
    margin: 0;
}

.logo img {
    width: 30px;
    border: 0;
    opacity: .7;
    display: block;
}

.logo h2 .ais {
    font-weight: bold;
    font-family: Helvetica, sans-serif;
}

.logo h2 .claim{
    font-size:9px;
    display:block;
    font-weight:normal;
    color:#666;
    margin:-8px 0 0;
}

.lang-switch img,
.lang-switch-current img {
    width: 18px;
    margin-left: 10px;
    box-shadow: 0 0 8px 0 #999;
}

.lang-switch-current {
    display: inline-flex;
    line-height: 0;
    opacity: 0.55;
    cursor: default;
}

.footer-lang-switch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 28px 24px 12px;
}

.footer-lang-switch a {
    display: inline-flex;
    line-height: 0;
}

.footer-lang-switch img {
    width: 22px;
    height: auto;
    box-shadow: 0 0 8px 0 #999;
}


/* =========================
HERO
========================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero .container{
    padding:120px 24px;
}

.hero h1 {
    font-size: 3rem;
    text-shadow:0px 0px 20px #fff;
}

.hero p{
    text-shadow:0px 0px 10px #fff;
}


#knowledgeGraph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

/* =========================
SECTIONS
========================= */

.section {
    padding: 120px 0;
}

.section:first-of-type {
    padding-top: 80px;
}

.section:last-of-type {
    padding-bottom: 80px;
}

.section h2 {
    margin-bottom: 40px;
}


/* =========================
SERVICES
========================= */

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.card {
    margin-bottom: 60px;
}

.card h3 {
    margin-bottom: 12px;
}

.card img {
    width: 100%;
    margin: 12px 0 16px;
}

.card p {
    margin: 0;
}

#usecases .card {
    border: 0;
    padding: 0;
}

#usecases .card img{
    opacity:.7;
}

#usecases h3 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: block;
    min-height:60px;

}

#usecases p {
    font-size: 13px;
}


/* =========================
PROCESS
========================= */

.process {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
}

.step img {
    width: 260px;
    border-radius: 6px;
}

.step div {
    max-width: 640px;
}


/* =========================
BOOK
========================= */

.book {
    display: flex;
    align-items: center;
    gap: 50px;
}

.book img {
    width: 220px;
}


/* =========================
FORM
========================= */

.contact-form {
    max-width: 700px;
    margin-top: 40px;
}

.contact-rep {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 32px 0 8px;
}

.contact-rep-photo,
.contact-rep picture img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    object-fit: cover;
    flex-shrink: 0;
}

.contact-rep-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-rep-label {
    color: #666;
    display: block;
}

.contact-rep-name {
    font-weight: 700;
    color: #111;
}

.form-row {
    display: flex;
    gap: 20px;
}

input,
textarea {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-family: Georgia, serif;
    font-size: 15px;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:hover,
textarea:hover {
    border-color: #ccc;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #999;
    background: #fff;
}

button {
    margin-top: 20px;
    background: #6b7280;
    color: #fff;
    padding: 14px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
}


/* =========================
FOOTER
========================= */

footer,
.site-footer {
    border-top: 1px solid #eee;
    padding: 40px 0 32px;
    font-size: 12px;
    line-height: 1.45;
}

.site-footer-info .footer-links + .footer-links {
    margin-top: 12px;
}

.definition-box {
    border-left: 4px solid #1a1a1a;
    padding: 20px 24px;
    background: #f7f7f7;
    margin: 0;
}

.definition-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #444;
}

.definition-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.hero-subpage .hero-cta {
    margin-top: 24px;
}

.section-anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

body.subpage .container.narrow a:not(.cta-button):not(.related-card),
body.subpage .section a:not(.cta-button):not(.related-card) {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.subpage .container.narrow a:not(.cta-button):not(.related-card):hover,
body.subpage .section a:not(.cta-button):not(.related-card):hover {
    color: #111;
}

.footer-nav-grid {
    display: grid;
    /* Zeile 1: Services (schmal) + Branchen (Rest); Zeile 2: Denken volle Breite */
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 28px 40px;
    text-align: left;
    margin-bottom: 28px;
    padding-bottom: 8px;
    align-items: start;
}

.footer-nav-col {
    min-width: 0;
}

.footer-nav-col:first-child {
    grid-column: 1;
    grid-row: 1;
}

.footer-nav-block + .footer-nav-block {
    margin-top: 22px;
}

.footer-nav-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-list li {
    margin: 0 0 8px;
    line-height: 1.45;
}

.footer-nav-list a {
    text-decoration: none;
    color: inherit;
    margin: 0;
}

.footer-nav-list a:hover,
.footer-nav-list a:focus {
    text-decoration: underline;
}

.footer-nav-col--multi {
    grid-column: 2;
    grid-row: 1;
}

.footer-nav-split {
    display: grid;
    gap: 24px 32px;
}

.footer-nav-split--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-nav-split--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-nav-col--span {
    grid-column: 1 / -1;
    grid-row: 2;
}

.footer-legal {
    margin-top: 16px;
}

.footer-links {
    text-align: center;
    font-size: 12px;
}

.footer-brand {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
}

.footer-brand-link {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    border-bottom: 0;
}

.footer-brand-link:hover,
.footer-brand-link:focus {
    text-decoration: none;
    border-bottom: 0;
}

.footer-brand img {
    width: 36px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.7;
    border: 0;
}

.footer-links a {
    text-decoration: underline;
    color: inherit;
    margin: 0 6px;
}

@media (max-width: 960px) {
    .footer-nav-grid {
        grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
        gap: 24px 28px;
    }

    .footer-nav-col:first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-nav-col--multi {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-nav-split--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-nav-col--span {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 640px) {
    .footer-nav-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }

    .footer-nav-col:first-child,
    .footer-nav-col--multi,
    .footer-nav-col--span {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-nav-col--multi .footer-nav-list,
    .footer-nav-col--span .footer-nav-list {
        column-count: 1;
    }

    .footer-nav-split--3,
    .footer-nav-split--2 {
        grid-template-columns: 1fr;
    }
}


/* =========================
RESPONSIVE
========================= */

@media (max-width: 900px) {

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step img {
        width: 100%;
        max-width: 420px;
    }

}

@media (max-width: 600px) {

    .hero h1 {
        font-size: 2rem;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    border: 1px solid #ddd;
    background: white;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 14px;
}

.tag.active {
    background: black;
    color: white;
}

.show-more-wrapper {
    text-align: center;
    margin-top: 40px;
    display: block;
    width: 100%;
}

#showAll {
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
    margin: 0 auto;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag {
    border: 1px solid #ddd;
    background: white;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.2s;
    color: #111;
    user-select: none;
}

.tag:hover {
    border-color: black;
}

.tag.active {
    background: black;
    color: white;
}

.subline {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    max-width: 720px;
    margin-bottom: 24px;
    color: #444;
    font-size: 18px !important
}

input[name="tos"]{display: none;}

.form-success{
    background-color:green;
    padding:20px;
}

.form-success p{
    color:#fff !important;
    font-weight:bold;
    text-align:center;
}

#hero.hero.kg-mobile-background {

 background-color: #eee;

}

/* Subpages und Solutions-Nav */
.solutions-card {
    display: block;
    color: inherit;
    text-decoration: none;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.solutions-card:hover {
    box-shadow: none;
}

.hero-subpage {
    background: #f7f7f7;
    padding: 80px 0 60px;
}

.hero-subpage h1 {
    max-width: 880px;
}

.hero-subpage .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
}

.hero-subpage .lead {
    max-width: 820px;
    font-size: 19px;
    line-height: 1.55;
    color: #222;
}

.hero-subpage .hero-grid {
    display: block;
}

.hero-subpage.hero-with-image .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
}

.hero-subpage .hero-copy h1 {
    margin-top: 0;
}

.hero-subpage .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-subpage .hero-visual img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .hero-subpage.hero-with-image .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hero-subpage .hero-visual img {
        max-height: 320px;
    }
}

.container.narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-image,
.block-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px 0 28px;
    border-radius: 6px;
}

.block-image {
    margin: 14px 0 18px;
}

.section-technology .section-image {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.bullet-list {
    padding-left: 22px;
    margin: 18px 0;
}

.bullet-list li {
    margin-bottom: 10px;
    line-height: 1.55;
}

/* Problem vs. Lösung – visueller Kontrast über Marker */
.section-problem,
.section-solution {
    border-radius: 8px;
}

.section-problem .container.narrow,
.section-solution .container.narrow {
    border-left: 4px solid transparent;
    padding-left: 28px;
}

.section-problem {
    background: #fdf5f4;
}

.section-problem .container.narrow {
    border-left-color: #c0392b;
}

.section-solution {
    background: #f3faf5;
}

.section-solution .container.narrow {
    border-left-color: #2e7d32;
}

.bullet-list-problem,
.bullet-list-solution {
    list-style: none;
    padding-left: 0;
}

.bullet-list-problem li,
.bullet-list-solution li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    line-height: 1.55;
}

.bullet-list-problem li::before,
.bullet-list-solution li::before {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.bullet-list-problem li::before {
    content: "\2715";
    background: #c0392b;
    color: #fff;
}

.bullet-list-solution li::before {
    content: "\2713";
    background: #2e7d32;
    color: #fff;
}

@media (max-width: 600px) {
    .section-problem .container.narrow,
    .section-solution .container.narrow {
        padding-left: 22px;
    }
    .bullet-list-problem li,
    .bullet-list-solution li {
        padding-left: 30px;
    }
}

.faq .faq-item {
    border-top: 1px solid #eee;
    padding: 18px 0;
}

.faq .faq-item:last-of-type {
    border-bottom: 1px solid #eee;
}

.faq summary {
    list-style: none;
    cursor: pointer;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary h3 {
    display: inline;
    font-size: 18px;
    margin: 0;
}

.faq summary::after {
    content: "+";
    float: right;
    font-weight: 600;
    color: #888;
    margin-left: 16px;
}

.faq details[open] summary::after {
    content: "–";
}

.faq details p {
    margin-top: 12px;
    color: #333;
    line-height: 1.6;
}

.cta-band {
    background: #111;
    color: #fff;
}

.cta-band h2,
.cta-band p {
    color: #fff;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 14px;
}

.cta-band .cta-button {
    color: #111;
    text-decoration: none;
}

.cta-button:hover,
.cta-band .cta-button:hover {
    background: #eee;
    color: #111;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.related-list li {
    margin: 0;
    padding: 0;
}

.related-card {
    display: block;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    text-decoration: none;
    color: #111;
    height: 100%;
    box-shadow: none;
}

.related-card:hover,
.related-card:focus-visible {
    box-shadow: none;
    transform: none;
    outline: none;
}

.related-card-title {
    display: block;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #111;
    font-weight: 700;
}

.related-card-desc {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

body.subpage .section {
    padding: 60px 0;
}

body.subpage .section h2 {
    margin-bottom: 16px;
}

/* Card mit Icon (statt Bild) */
.card-with-icon {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.card-with-icon:hover {
    box-shadow: none;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #111;
    margin-bottom: 18px;
}

.card-icon .icon {
    display: block;
}

.card-with-icon h3 {
    margin: 0 0 10px;
}

.card-with-icon p {
    margin: 0;
    color: #333;
    line-height: 1.55;
}

body.subpage .card-with-image {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

body.subpage .card-with-image h3 {
    margin: 0 0 14px;
}

body.subpage .card-with-image picture {
    display: block;
    margin: 0 0 16px;
}

body.subpage .card-with-image .card-thumb {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0;
    display: block;
}

body.subpage .card-with-image p {
    margin: 0;
    color: #333;
    line-height: 1.55;
}

/* Altes Markup: .card-head mit Bild vor Titel im DOM → Titel, Bild, Text */
body.subpage .card-with-image .card-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0;
}

body.subpage .card-with-image .card-head h3 {
    order: -1;
    margin: 0 0 14px;
}

body.subpage .card-with-image .card-head picture {
    order: 0;
    display: block;
    margin: 0 0 16px;
}

body.subpage .card-with-image .card-head .card-thumb {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0;
    flex-shrink: unset;
}

/* Technologie-Block mit Icon (links Icon, rechts Inhalt) */
.tech-block {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    margin: 32px 0;
    align-items: start;
}

.tech-block + .tech-block {
    border-top: 1px solid #f0f0f0;
    padding-top: 32px;
}

.tech-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.tech-block-body h3 {
    margin: 0 0 8px;
}

.tech-block-body p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .tech-block {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .tech-block-icon {
        margin-top: 0;
    }
}

/* =========================
COMPARISON TABLE
========================= */

.comparison .comparison-block {
    margin-top: 48px;
}

.comparison .comparison-block:first-of-type {
    margin-top: 32px;
}

.comparison .comparison-title {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    margin: 0 0 18px;
    color: #111;
}

.comparison-table-wrap {
    max-width: 100%;
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.comparison-table {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    color: #1f2937;
}

.comparison-table thead th {
    background: #f7f8fa;
    color: #111;
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #ececec;
    vertical-align: bottom;
    font-size: 13px;
    letter-spacing: 0.01em;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.comparison-table thead th.col-criterion {
    width: 28%;
}

.comparison-table thead th.col-highlight {
    background: #111;
    color: #fff;
    position: relative;
}

.comparison-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table tbody tr:nth-child(even) td {
    background: #fafbfc;
}

.comparison-table tbody tr:nth-child(even) td.cell-highlight {
    background: #f3f4f6;
}

.comparison-table .cell-criterion {
    font-weight: 600;
    color: #111;
    width: 28%;
}

.comparison-table .cell-highlight {
    background: #f8f9fb;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
}

.badge-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 3px 10px;
    background: #2e7d32;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.badge-yes::before {
    content: "\2713";
    font-size: 12px;
    line-height: 1;
}

@media (max-width: 760px) {
    .comparison-table-wrap {
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        max-width: 100%;
    }
    .comparison-table {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        table-layout: auto;
    }
    .comparison-table thead {
        display: none;
    }
    .comparison-table,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .comparison-table tbody tr {
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 10px;
        margin-bottom: 16px;
        padding: 6px 0;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
        overflow: hidden;
    }
    .comparison-table tbody tr:nth-child(even) td:not(.cell-highlight):not(.cell-criterion) {
        background: transparent;
    }
    .comparison-table tbody td {
        border: 0;
        border-bottom: 1px solid #f3f3f3;
        padding: 10px 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .comparison-table tbody td:last-child {
        border-bottom: 0;
    }
    .comparison-table tbody td.cell-criterion {
        background: #f7f8fa;
        border-bottom: 1px solid #ececec;
        font-size: 15px;
        padding: 12px 16px;
        display: block;
        width: 100%;
        max-width: 100%;
        border-radius: 10px 10px 0 0;
        word-break: normal;
        overflow-wrap: anywhere;
        line-height: 1.4;
    }
    .comparison-table .cell-criterion {
        width: 100%;
    }
    .comparison-table tbody td[data-label] .cell-value {
        display: block;
        width: 100%;
        font-size: 14px;
        line-height: 1.45;
        color: #1f2937;
    }
    .comparison-table tbody td[data-label]::before {
        content: attr(data-label);
        display: block;
        width: 100%;
        font-weight: 600;
        color: #555;
        font-size: 12px;
        line-height: 1.35;
        letter-spacing: 0.01em;
    }
    .comparison-table tbody td.cell-highlight {
        background: #f8f9fb;
        border-left: 3px solid #111;
        border-right: 0;
        padding-left: 13px;
    }
    .comparison-table tbody td.cell-highlight[data-label]::before {
        color: #111;
        font-weight: 700;
    }
    .comparison-table tbody td.cell-alt {
        padding-left: 16px;
    }
}

/* =========================
RELATED BLOCK (homepage)
========================= */

.section.related .related-list {
    margin-top: 40px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .section.related .related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .section.related .related-list {
        grid-template-columns: 1fr;
    }
}

/* Hauptnavigation */
.main-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.main-nav .container.nav-bar {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

.nav-toggle {
    display: none;
    box-sizing: border-box;
    margin: 0;
    margin-top: 0;
    padding: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 22px;
    height: 16px;
    pointer-events: none;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    min-height: 2px;
    background-color: #222;
    border-radius: 1px;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:hover,
.nav-toggle:focus {
    border-color: #111;
}

.nav-toggle:hover .nav-toggle-bar,
.nav-toggle:focus .nav-toggle-bar {
    background-color: #000;
}

.nav-lang {
    display: none;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 4px;
    width: auto;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: inline-block;
    padding: 14px 14px;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.nav-list a:hover {
    color: #000;
    border-bottom-color: #111;
}

.nav-contact {
    flex-shrink: 0;
    align-self: center;
    background: #111;
    color: #fff;
    border-radius: 4px;
    padding: 8px 16px;
    margin: 6px 0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.nav-contact:hover,
.nav-contact:focus {
    background: #333;
    color: #fff;
}

.nav-list-compact {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 0;
}

.nav-list-compact + .nav-contact {
    margin-left: 0;
}

/* Hamburger + gestapelte Nav unterhalb der Desktop-Zeile (6 Menüpunkte + Kontakt) */
@media (max-width: 1100px) {
    header {
        position: relative;
    }
    .header-inner {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        gap: 10px;
        padding-right: 110px;
    }
    .logo {
        justify-content: flex-start;
    }
    .header-inner > .lang-switch {
        display: none;
    }
    .main-nav {
        border-top: 0;
        border-bottom: 0;
    }
    .nav-toggle {
        display: inline-flex;
        position: absolute;
        top: 24px;
        right: 24px;
        margin: 0;
        z-index: 10;
        background: #fff;
    }
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .nav-bar.nav-open {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-list.open {
        display: flex;
        border-top: 1px solid #eee;
    }
    .nav-list a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-contact {
        display: none;
    }
    .nav-bar.nav-open .nav-contact {
        display: block;
        width: 100%;
        margin: 8px 0 0;
        padding: 12px 16px;
        text-align: center;
        box-sizing: border-box;
    }
    .nav-list .nav-lang {
        display: flex;
        justify-content: center;
        gap: 18px;
        padding: 14px 0;
        border-bottom: 0;
    }
    .nav-list .nav-lang a {
        display: inline-flex;
        padding: 0;
        width: auto;
        border-bottom: 0;
    }
    .nav-list .nav-lang img {
        width: 22px;
        height: auto;
        box-shadow: 0 0 8px 0 #999;
    }

    .nav-list-compact {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        padding: 10px 0;
        border-top: 1px solid #eee;
    }

    .nav-list-compact a {
        width: auto;
        border-bottom: 0;
        padding: 0;
    }

    .nav-list-compact + .nav-contact {
        display: inline-block;
        margin: 0;
        padding: 8px 16px;
        text-align: center;
    }

    .nav-list-compact .nav-lang {
        display: inline-flex;
        margin-left: auto;
        padding: 0;
        gap: 14px;
        border-bottom: 0;
    }

    .nav-list-compact .nav-lang a {
        padding: 0;
    }
}

/* Legal / info page */
.info-page .nav-contact {
    display: none;
}

.page-not-found-section {
    padding: 3.5rem 0 5rem;
    text-align: center;
}

.page-not-found-inner {
    max-width: 42rem;
    margin: 0 auto;
}

.page-not-found-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666;
}

.page-not-found-title {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.15;
}

.page-not-found-lead {
    margin: 0 0 1rem;
    text-align: left;
}

.page-not-found-aside {
    margin: 0 0 2rem;
    font-size: 1.05rem;
    color: #444;
}

.page-not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: stretch;
    justify-content: center;
    margin-top: 0.25rem;
}

.page-not-found-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11.5rem;
    padding: 12px 26px;
    border-radius: 4px;
    border: 2px solid #111;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.page-not-found-btn-primary {
    background: #111;
    color: #fff;
}

.page-not-found-btn-primary:hover,
.page-not-found-btn-primary:focus {
    background: #333;
    border-color: #333;
    color: #fff;
}

.page-not-found-btn-secondary {
    background: #fff;
    color: #111;
}

.page-not-found-btn-secondary:hover,
.page-not-found-btn-secondary:focus {
    background: #f5f5f5;
    color: #111;
}

@media (max-width: 520px) {
    .page-not-found-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .page-not-found-btn {
        width: min(100%, 18rem);
        min-width: 0;
    }
}

.info-page .hero-info {
    padding-bottom: 24px;
}

.info-navigation {
    padding-top: 0;
}

.info-wrapper {
    max-width: 960px;
}

.info-header {
    margin-bottom: 28px;
}

.info-label,
.impact-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 10px;
}

.info-header h2,
.info-section .info-h2 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    scroll-margin-top: 6rem;
}

.info-section .info-clause-title {
    font-size: 1.15rem;
    margin: 1.75rem 0 0.75rem;
    scroll-margin-top: 6rem;
}

.info-section .email-at {
    white-space: nowrap;
}

.email-protect-img {
    display: inline-block;
    vertical-align: middle;
    height: 1.05em;
    width: auto;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

.info-email-row {
    margin: 0.75rem 0;
}

.info-email-row strong {
    font-weight: 600;
}

.info-section h2 {
    margin: 0 0 12px;
}

.info-intro {
    margin: 0;
    color: #444;
    max-width: 42rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 0;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    background: transparent;
}

.info-card:hover,
.info-card:focus {
    background: transparent;
}

.info-icon {
    flex-shrink: 0;
    color: #111;
}

.info-card-icon {
    display: block;
}

.info-content h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.info-content p {
    margin: 0;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.45;
}

.info-section {
    border-top: 1px solid #eee;
}

.info-anchor {
    display: block;
    height: 0;
    scroll-margin-top: 7rem;
}

.info-page {
    scroll-padding-top: 7rem;
}

.info-section .impact-wrapper {
    padding: 48px 0;
}

.info-section .impact-body p,
.info-section .impact-body ul {
    margin: 0 0 14px;
    line-height: 1.6;
}

.info-section .impact-body h3 {
    margin: 22px 0 10px;
    font-size: 1.05rem;
}

.info-section .impact-body ul {
    padding-left: 1.25rem;
}

.info-notice {
    margin: 0 0 22px;
    padding: 16px 18px;
    background: #f7f7f4;
    border-left: 3px solid #111;
    border-radius: 0 4px 4px 0;
}

.info-notice p {
    margin: 0 0 10px;
}

.info-notice p:last-child {
    margin-bottom: 0;
}

/* Technologie-Plattform-Grid (/technologie) */
body.subpage .section-platform-grid .subline {
    max-width: 720px;
    margin-bottom: 28px;
}

body.subpage .platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin: 28px 0 0;
}

body.subpage .platform-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px 18px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fafafa;
    min-height: 100%;
}

body.subpage .platform-card-featured {
    border-color: #c8c8c8;
    background: #f3f3f0;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
}

body.subpage .platform-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    padding: 4px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ececec;
}

body.subpage .platform-logo {
    display: block;
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

body.subpage .platform-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #e8e8e4;
    color: #222;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.subpage .platform-card-name {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.3;
}

body.subpage .platform-card-body {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

body.subpage .platform-card-role {
    margin: 0;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.45;
}

body.subpage .platform-grid-subtitle {
    margin: 36px 0 10px;
    font-size: 1.05rem;
}

body.subpage .platform-grid-subintro {
    margin: 0 0 8px;
    color: #555;
    max-width: 720px;
}

@media (prefers-color-scheme: dark) {
    body.subpage .platform-card {
        border-color: #333;
        background: #1a1a1a;
    }

    body.subpage .platform-card-featured {
        border-color: #555;
        background: #222;
    }

    body.subpage .platform-card-logo {
        background: #262626;
        border-color: #444;
    }

    body.subpage .platform-logo-fallback {
        background: #333;
        color: #eee;
    }

    body.subpage .platform-card-body {
        color: #ccc;
    }

    body.subpage .platform-card-role {
        color: #aaa;
    }
}

@media (max-width: 640px) {
    body.subpage .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* GEO Audit Schnellcheck (Shopware-Seite) */
body.subpage .section-geo-audit {
    background: #f7f7f7;
}

body.subpage .geo-audit-widget {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
}

body.subpage .geo-audit-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

body.subpage .geo-audit-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

body.subpage .geo-audit-input {
    flex: 1 1 220px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

body.subpage .geo-audit-input:focus {
    outline: 2px solid #111;
    outline-offset: 1px;
    border-color: #111;
}

body.subpage .geo-audit-submit {
    flex: 0 0 auto;
    margin-top: 0;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    background: #111;
    color: #fff;
}

body.subpage .geo-audit-submit:hover {
    background: #333;
    color: #fff;
}

body.subpage .geo-audit-submit:disabled,
body.subpage .geo-audit-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

body.subpage .geo-audit-note {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: #555;
}

body.subpage .geo-audit-status {
    margin-top: 16px;
    padding: 12px 14px;
    background: #f0f4ff;
    border-radius: 4px;
    color: #1a3a6e;
    font-size: 0.95rem;
}

body.subpage .geo-audit-result {
    margin-top: 20px;
}

body.subpage .geo-audit-result-card {
    padding-top: 4px;
}

body.subpage .geo-audit-score-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

body.subpage .geo-audit-score {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #111;
    min-width: 4rem;
}

body.subpage .geo-audit-score-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body.subpage .geo-audit-grade {
    display: inline-block;
    font-size: 0.9rem;
    color: #555;
}

body.subpage .geo-audit-dimensions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

body.subpage .geo-audit-dimension {
    padding: 10px 12px;
    background: #f7f7f7;
    border-radius: 4px;
    text-align: center;
}

body.subpage .geo-audit-dimension-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #666;
    margin-bottom: 4px;
}

body.subpage .geo-audit-dimension-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
}

body.subpage .geo-audit-todos-title {
    font-size: 1rem;
    margin: 0 0 10px;
}

body.subpage .geo-audit-todos {
    margin: 0 0 16px;
    padding-left: 1.25rem;
    line-height: 1.5;
}

body.subpage .geo-audit-report-link {
    margin: 0;
}

body.subpage .geo-audit-report-link a {
    font-weight: 600;
}

@media (max-width: 640px) {
    body.subpage .geo-audit-form-row {
        flex-direction: column;
    }

    body.subpage .geo-audit-submit {
        width: 100%;
        text-align: center;
    }
}

