:root {
    --ap-primary: #78005e;
    --ap-magenta: #ab1160;
    --ap-accent: #b4ff33;
    --ap-white: #ffffff;
    --ap-bg: #f5f3f5;
    --ap-surface: rgba(255,255,255,0.78);
    --ap-surface-strong: rgba(255,255,255,0.92);
    --ap-text: #201a1f;
    --ap-heading: #111111;
    --ap-muted: #625a62;
    --ap-border: rgba(120, 0, 94, 0.12);
    --ap-border-strong: rgba(120, 0, 94, 0.2);
    --ap-container: 1280px;
    --ap-narrow: 820px;
    --ap-radius-xl: 32px;
    --ap-radius-lg: 24px;
    --ap-radius-md: 18px;
    --ap-shadow: 0 18px 60px rgba(120, 0, 94, 0.08);
    --ap-shadow-soft: 0 10px 30px rgba(120, 0, 94, 0.06);
    --ap-gradient: linear-gradient(135deg, #78005e 0%, #ab1160 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ap-text);
    background:
        radial-gradient(circle at top right, rgba(171,17,96,0.05), transparent 24%),
        radial-gradient(circle at bottom left, rgba(120,0,94,0.04), transparent 26%),
        var(--ap-bg);
    line-height: 1.65;
}

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

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

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

.narrow {
    max-width: var(--ap-narrow);
}

.center {
    text-align: center;
}

.site-main {
    overflow: clip;
}

/* TOPBAR */

.topbar {
    border-bottom: 1px solid var(--ap-border);
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(10px);
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--ap-muted);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-note,
.topbar-lang {
    color: var(--ap-muted);
    white-space: nowrap;
}

.topbar-link {
    color: var(--ap-muted);
    transition: color 0.2s ease;
}

.topbar-link:hover,
.topbar a:hover {
    color: var(--ap-primary);
}

.topbar-link-portal {
    font-weight: 700;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.88);
    border-bottom: 1px solid var(--ap-border);
}

.header-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.header-cta {
    display: flex;
    justify-content: flex-end;
}

.header-btn {
    min-height: 46px;
    padding: 0.8rem 1.15rem;
}

.site-branding {
    display: flex;
    align-items: center;
}

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

.custom-logo {
    max-height: 72px;
    width: auto;
}

.brand-wordmark {
    color: var(--ap-primary);
    font-size: 2rem;
    line-height: 0.88;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: lowercase;
}

.primary-nav {
    justify-self: end;
}

.primary-nav ul,
.site-footer ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.primary-nav a {
    font-weight: 700;
    color: var(--ap-text);
    position: relative;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 2px;
    background: var(--ap-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--ap-border-strong);
    color: var(--ap-primary);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 700;
}

/* TYPO */

.section {
    padding: 4rem 0;
}

.kicker,
.footer-eyebrow {
    margin: 0 0 1rem;
    color: var(--ap-magenta);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    font-weight: 800;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -0.035em;
    line-height: 1.02;
}

h1 {
    font-size: clamp(3.1rem, 5.6vw, 5.2rem);
    color: var(--ap-heading);
    max-width: 9.6ch;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    color: var(--ap-heading);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.35rem;
    color: var(--ap-primary);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

p {
    margin-top: 0;
}

/* BUTTONS */

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 1.55rem;
}

.btn {
    min-height: 52px;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn.primary {
    background: var(--ap-gradient);
    color: #fff;
    box-shadow: var(--ap-shadow-soft);
}

.btn.secondary {
    border: 1px solid var(--ap-border-strong);
    color: var(--ap-primary);
    background: rgba(255,255,255,0.8);
}

/* HERO */

.hero {
    padding: 3.25rem 0 2.25rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 84px;
    align-items: center;
}

.hero-left {
    max-width: 44rem;
}

.hero-left .subline {
    font-size: 1.12rem;
    color: var(--ap-muted);
    margin: 1rem 0 1.45rem;
    max-width: 32rem;
}

.hero-right {
    position: relative;
    height: 640px;
}

.hero-image {
    position: absolute;
    background: var(--ap-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: var(--ap-shadow);
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(120, 0, 94, 0.14);
}

.hero-image.main {
    width: 92%;
    height: 100%;
    left: 0;
    top: 0;
}

.hero-image.small.top {
    width: 172px;
    height: 128px;
    right: -4px;
    top: 22px;
}

.hero-image.small.bottom {
    width: 184px;
    height: 136px;
    right: 20px;
    bottom: 20px;
}

.trustline {
    margin-top: 1.15rem;
    color: var(--ap-muted);
    font-size: 0.94rem;
    max-width: 34rem;
}

/* LEISTUNGEN */

.leistungen {
    padding: 3.5rem 0;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.leistung {
    background: rgba(255,255,255,0.66);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--ap-border);
    box-shadow: var(--ap-shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.leistung:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(120, 0, 94, 0.10);
}

.leistung.featured {
    grid-row: span 2;
    min-height: 460px;
    padding: 26px;
}

.leistung .image {
    height: 220px;
    background: transparent;
    border-radius: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    color: #fff;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}

/* WHY */

.why {
    background: rgba(255,255,255,0.35);
    padding: 3.5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 72px;
    align-items: stretch;
}

.why-image {
    display: flex;
    align-items: stretch;
}

.why-image .image {
    height: 100%;
    min-height: 470px;
    background: transparent;
    border-radius: 24px;
    display: block;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

.why-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-items {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.why-items .item {
    background: rgba(255,255,255,0.65);
    border: 1px solid var(--ap-border);
    border-radius: 20px;
    padding: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-items .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(120, 0, 94, 0.14);
}

/* BRANDSTORE */

.brandstore {
    background: rgba(255,255,255,0.6);
    padding: 4rem 0;
}

.brandstore-grid {
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 72px;
    align-items: stretch;
}

.brandstore-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brandstore-content p {
    color: var(--ap-text);
}

.brandstore .kicker,
.produktportal .kicker {
    color: var(--ap-magenta);
}

.brandstore h2,
.produktportal h2 {
    color: var(--ap-primary);
}

.brandstore-benefits {
    margin-top: 1.75rem;
    display: grid;
    gap: 0.55rem;
    font-weight: 600;
    color: var(--ap-primary);
}

.brandstore-image {
    display: flex;
    align-items: stretch;
}

.brandstore-image img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: none;
}

.brandstore-image .image {
    width: 100%;
    min-height: 470px;
    background: transparent;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ap-text);
    font-weight: 600;
    box-shadow: none;
    overflow: hidden;
}

/* PRODUKTPORTAL */

.produktportal {
    background: rgba(255,255,255,0.42);
    padding: 3.5rem 0;
}

.produktportal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: stretch;
}

.produktportal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 40rem;
}

.produktportal-content p {
    color: var(--ap-text);
}

.produktportal-points {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.6rem;
    color: var(--ap-primary);
    font-weight: 600;
}

.produktportal-side,
.produktportal-image {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
}

.produktportal-image img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: none;
}

.produktportal-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--ap-border);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: var(--ap-shadow-soft);
    max-width: 420px;
}

.produktportal-label {
    margin: 0 0 0.8rem;
    color: var(--ap-magenta);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.produktportal-card h3 {
    margin-bottom: 1rem;
}

.produktportal-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 1.7rem;
    align-items: stretch;
}

.produktportal-compare-box,
.produktportal-compare-box-strong {
    background: rgba(255,255,255,0.66);
    border: 1px solid var(--ap-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--ap-shadow-soft);
    min-height: 220px;
}

.produktportal-compare-box-strong {
    background: rgba(255,255,255,0.66);
    border-color: var(--ap-border);
}

.produktportal-compare-label {
    margin: 0 0 0.9rem;
    color: var(--ap-primary);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.15;
    text-transform: none;
}

.produktportal-compare-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.produktportal-compare-box li {
    position: relative;
    padding-left: 1rem;
    color: var(--ap-text);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
}

.produktportal-compare-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ap-primary);
    font-weight: 900;
}

.produktportal-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 1.35rem;
    width: 100%;
    align-items: start;
}

.produktportal-actions .btn {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.produktportal-compare-box h3,
.produktportal-compare-box-strong h3 {
    color: var(--ap-primary);
}

.produktportal-note {
    margin-top: 0.95rem;
    color: var(--ap-muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* USE CASES */

.usecases {
    background: rgba(255,255,255,0.5);
    padding: 3.5rem 0;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.usecase {
    background: transparent;
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.usecase:hover {
    transform: translateY(-3px);
}

.usecase .image {
    height: 180px;
    background: transparent;
    border-radius: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    color: #fff;
    font-weight: 700;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(120, 0, 94, 0.12);
}

.usecase h3 {
    margin-top: auto;
    font-size: 1.2rem;
    font-weight: 700;
}

/* CTA */

.cta {
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    max-width: 16ch;
    margin-inline: auto;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--ap-muted);
    font-size: 0.95rem;
}

/* FOOTER */

.site-footer {
    padding: 3.5rem 0;
    background: rgba(255,255,255,0.72);
    border-top: 1px solid var(--ap-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.footer-title {
    margin: 0 0 1rem;
    color: var(--ap-magenta);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.site-footer ul {
    flex-direction: column;
    gap: .75rem;
}

.site-footer li {
    margin: 0;
}

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

.content-default p {
    margin-top: 0;
}

/* CONTACT PAGE */

.contact-hero {
    padding: 3.5rem 0 3rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 72px;
    align-items: start;
}

.contact-intro {
    max-width: 42rem;
    color: var(--ap-muted);
    font-size: 1.05rem;
}

.contact-hero-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid var(--ap-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--ap-shadow-soft);
}

.contact-card-kicker {
    margin: 0 0 0.8rem;
    color: var(--ap-magenta);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-data-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.contact-data-item {
    display: grid;
    gap: 0.35rem;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ap-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-details {
    background: rgba(255,255,255,0.42);
    padding: 3.5rem 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}

.contact-details-box {
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--ap-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--ap-shadow-soft);
}

.contact-feature-list {
    margin: 1.25rem 0 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.6rem;
}

.contact-cta {
    padding: 3.5rem 0 4rem;
}

.center-text {
    margin-inline: auto;
    max-width: 42rem;
}

.button-center {
    justify-content: center;
}

.contact-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-why-items {
    display: grid;
    gap: 20px;
}

.why-box {
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--ap-border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.process-step {
    background: rgba(255,255,255,0.7);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--ap-border);
}

.process-step span {
    font-weight: 800;
    color: var(--ap-magenta);
}

/* IMAGES */

.hero-image img,
.leistung .image img,
.why-image .image img,
.usecase .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image img {
    border-radius: 20px;
}

.leistung .image img,
.usecase .image img {
    border-radius: 18px;
}

.why-image .image img {
    border-radius: 24px;
}

.hero-image.main img,
.hero-image.small.top img,
.hero-image.small.bottom img {
    filter: saturate(0.98) contrast(1.02);
}

.hero-image span,
.leistung .image span,
.why-image .image span,
.usecase .image span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: 700;
}

/* LEAD MODAL */

body.lead-modal-open {
    overflow: hidden;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    overflow-y: auto;
    padding: 1rem 0;
}

.lead-modal.is-open {
    display: block;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 20, 0.44);
    backdrop-filter: blur(4px);
}

.lead-modal-dialog {
    position: relative;
    width: min(100% - 2rem, 720px);
    margin: 3vh auto;
    max-height: 94vh;
    overflow-y: auto;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--ap-border);
    border-radius: 28px;
    box-shadow: 0 30px 100px rgba(20, 18, 20, 0.22);
    padding: 2rem;
}

.lead-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: 1px solid var(--ap-border);
    background: rgba(255,255,255,0.9);
    border-radius: 999px;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ap-text);
}

.lead-modal-kicker {
    margin: 0 0 0.85rem;
    color: var(--ap-magenta);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 800;
}

.lead-modal-panel h3 {
    color: var(--ap-heading);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin-bottom: 0.9rem;
}

.lead-modal-intro {
    color: var(--ap-muted);
    max-width: 44rem;
    margin-bottom: 1.5rem;
}

.lead-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lead-type-button {
    appearance: none;
    border: 1px solid var(--ap-border);
    background: rgba(255,255,255,0.82);
    border-radius: 18px;
    padding: 1.15rem 1rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ap-primary);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.lead-type-button:hover {
    transform: translateY(-2px);
    border-color: var(--ap-border-strong);
    box-shadow: var(--ap-shadow-soft);
}

.lead-modal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.lead-modal-benefits span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(120, 0, 94, 0.06);
    color: var(--ap-primary);
    font-size: 0.92rem;
    font-weight: 700;
}

.lead-type-selected {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--ap-muted);
}

.lead-type-selected strong {
    color: var(--ap-primary);
}

.lead-back-button {
    background: transparent;
    border: 0;
    color: var(--ap-primary);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lead-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.lead-field-full {
    margin-bottom: 0;
}

.lead-field label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ap-text);
}

.lead-field input,
.lead-field select,
.lead-field textarea {
    width: 100%;
    border: 1px solid var(--ap-border);
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    padding: 0.9rem 1rem;
    font: inherit;
    color: var(--ap-text);
}

.lead-field textarea {
    resize: vertical;
    min-height: 160px;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
    outline: none;
    border-color: rgba(120, 0, 94, 0.28);
    box-shadow: 0 0 0 4px rgba(120, 0, 94, 0.08);
}

.lead-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ap-border);
}

.lead-form-note {
    margin: 0;
    max-width: 30rem;
    color: var(--ap-muted);
    font-size: 0.9rem;
}

.lead-submit-button {
    min-width: 210px;
}

.lead-form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.lead-form-status.is-error {
    color: #9d1b1b;
}

.lead-success-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.lead-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* TRUST STRIP */

.trust-strip {
    padding: 2.5rem 0;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.trust-strip-item {
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--ap-border);
    border-radius: 20px;
    padding: 1.2rem 1.25rem;
}

.trust-strip-item strong {
    display: block;
    color: var(--ap-heading);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.trust-strip-item span {
    color: var(--ap-muted);
    font-size: 0.95rem;
}

/* STICKY CTA */

.sticky-lead-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    min-height: 52px;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    background: var(--ap-gradient);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(120, 0, 94, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sticky-lead-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(120, 0, 94, 0.22);
}

/* LANGUAGE SWITCH */

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.lang-switch a {
    color: var(--ap-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.92rem;
    line-height: 1;
}

.lang-switch a.is-active {
    color: var(--ap-primary);
    font-weight: 800;
}

.lang-separator {
    color: rgba(32, 26, 31, 0.28);
    font-size: 0.9rem;
    line-height: 1;
}

/* PORTAL BUTTONS */

.btn-portal {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--ap-accent);
    color: #111;
    font-weight: 800;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    transition: all 0.2s ease;
    box-shadow: 0 6px 18px rgba(180,255,51,0.25);
}

.btn-portal:hover {
    background: #a3f02d;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(180,255,51,0.35);
}

.portal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    background: rgba(17,17,17,0.08);
    color: #111;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn.portal {
    background: var(--ap-accent);
    color: #111;
    border: none;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(180,255,51,0.28);
}

.btn.portal:hover {
    background: #a3f02d;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(180,255,51,0.38);
}

.sticky-portal-mini {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: var(--ap-accent);
    color: #111;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(180,255,51,0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.sticky-portal-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(180,255,51,0.32);
    color: #000;
}

.sticky-portal-mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0.12rem 0.42rem;
    border-radius: 999px;
    background: rgba(17,17,17,0.08);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .hero-grid,
    .why-grid,
    .brandstore-grid,
    .produktportal-grid,
    .footer-grid,
    .contact-hero-grid,
    .contact-details-grid,
    .contact-why-grid,
    .process-grid,
    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

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

    .leistung.featured {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: auto;
    }

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

    .hero-right {
        height: 500px;
    }

    .why-image .image,
    .brandstore-image img,
    .brandstore-image .image,
    .produktportal-image img {
        min-height: 420px;
    }

    .produktportal-side {
        justify-content: flex-start;
    }

    .produktportal-compare {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 840px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .primary-nav {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
        width: 100%;
    }

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

    .primary-nav ul {
        padding: 1rem 0 0.5rem;
        gap: 1rem;
        flex-direction: column;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0;
    }

    .topbar-right {
        flex-wrap: wrap;
    }

    h1 {
        max-width: 100%;
    }

    .hero-grid,
    .leistungen-grid,
    .why-grid,
    .brandstore-grid,
    .produktportal-grid,
    .usecase-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .hero,
    .leistungen,
    .why,
    .brandstore,
    .produktportal,
    .usecases,
    .cta,
    .contact-hero,
    .contact-details,
    .contact-cta {
        padding: 3rem 0;
    }

    .hero-right {
        height: 430px;
    }

    .hero-image.main {
        width: 86%;
    }

    .hero-image.small.top {
        width: 118px;
        height: 90px;
    }

    .hero-image.small.bottom {
        width: 126px;
        height: 96px;
        right: 8px;
        bottom: 12px;
    }

    .why-image .image,
    .brandstore-image img,
    .brandstore-image .image,
    .produktportal-image img {
        min-height: 320px;
        height: auto;
    }

    .usecase .image,
    .leistung .image {
        height: 180px;
    }

    .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .produktportal-actions {
        grid-template-columns: 1fr;
    }

    .produktportal-actions .btn {
        width: 100%;
    }

    .lead-modal-dialog {
        width: min(100% - 1rem, 720px);
        margin: 1rem auto;
        max-height: calc(100vh - 2rem);
        padding: 1.25rem;
        border-radius: 22px;
    }

    .lead-type-grid,
    .lead-form-grid {
        grid-template-columns: 1fr;
    }

    .lead-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .lead-submit-button {
        width: 100%;
    }

    .sticky-lead-cta {
        right: 14px;
        bottom: 14px;
        min-height: 46px;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .btn-portal {
        padding: 0.42rem 0.75rem;
        font-size: 0.88rem;
    }

    .portal-badge {
        font-size: 0.62rem;
    }

    .sticky-portal-mini {
        right: 14px;
        bottom: 76px;
        min-height: 40px;
        padding: 0.65rem 0.85rem;
        font-size: 0.88rem;
    }
}

.lead-privacy-consent {
  margin-bottom: 1rem;
}

.lead-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.lead-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.lead-checkbox a {
  text-decoration: underline;
}

.lead-submit-button[disabled],
.lead-submit-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.footer-legal-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-menu li {
  margin-bottom: 10px;
}

.footer-legal-menu a {
  text-decoration: none;
}
