/* Font Awesome sizing baseline */
.fa-solid, .fa-brands { line-height: 1; }

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 60px);
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
}

.navbar__logo img {
    height: 35px;
    width: auto;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.navbar__link {
    position: relative;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-2);
    padding: 10px 14px;
    border-radius: var(--r-pill);
    transition: color var(--t-fast);
    white-space: nowrap;
}
.navbar__link:hover {
    color: var(--ink);
}
.navbar__link.active {
    background: var(--ink);
    color: #fff;
}

/* Dropdown */
.navbar__dropdown {
    position: relative;
}
.navbar__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}
.navbar__dropdown-toggle i {
    font-size: 14px;
    transition: transform var(--t-fast);
}
.navbar__dropdown.open .navbar__dropdown-toggle i {
    transform: rotate(180deg);
}

.navbar__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px) scale(0.97);
    transform-origin: top center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-hover);
    padding: var(--s3);
    min-width: 240px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 150ms var(--ease-out),
        transform 150ms var(--ease-out),
        visibility 0ms linear 150ms;
}
.navbar__dropdown.open .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    transition:
        opacity 150ms var(--ease-out),
        transform 150ms var(--ease-out),
        visibility 0ms linear 0ms;
}

.navbar__dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--s4);
    padding: 13px var(--s4);
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-2);
    transition: background var(--t-fast);
}
.navbar__dropdown-item:hover {
    background: var(--surface);
    color: var(--ink);
}
.navbar__dropdown-item i {
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}
.navbar__dropdown-item span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

.navbar__cta {
    background: var(--accent);
    color: #fff !important;
    font-size: 17px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    transition:
        filter var(--t-fast),
        transform var(--t-fast);
    flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
    .navbar__cta:hover {
        filter: brightness(0.9);
        transform: translateY(-1px);
    }
}
.navbar__cta:active {
    transform: scale(0.97);
}

/* Hamburger */
.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 14px 12px;
}
.navbar__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition:
        transform var(--t-base),
        opacity var(--t-base);
}

/* Mobile nav */
.nav-mobile {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
        opacity 220ms var(--ease-out),
        transform 220ms var(--ease-out),
        visibility 0ms linear 220ms;
}
.nav-mobile.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
        opacity 220ms var(--ease-out),
        transform 220ms var(--ease-out),
        visibility 0ms linear 0ms;
}
.nav-mobile__link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
}
.nav-mobile__close {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 1.5rem;
    color: var(--ink);
    background: none;
}

@media (max-width: 760px) {
    .navbar__links,
    .navbar__cta {
        display: none;
    }
    .navbar__burger {
        display: flex;
    }
}

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--r-pill);
    transition:
        filter 150ms var(--ease-out),
        transform 120ms var(--ease-out),
        background var(--t-fast),
        color var(--t-fast);
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
    line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        transform: translateY(-1px);
    }
}
.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}
.btn--primary:hover {
    filter: brightness(0.9);
}

.btn--outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}
.btn--outline:hover {
    background: var(--ink);
    color: #fff;
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn--white {
    background: #fff;
    color: var(--accent);
    border: 1.5px solid #fff;
}
.btn--white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn--sm {
    font-size: 13px;
    padding: 11px 18px;
}

/* ═══════════════════════════════════
   SERVICE CARD (Bento)
═══════════════════════════════════ */
.service-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: var(--s8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition:
        transform var(--t-base),
        box-shadow var(--t-base);
    text-decoration: none;
    color: inherit;
}
@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }
    .service-card:hover .service-card__link {
        gap: 10px;
    }
}

.service-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--s5);
}

.service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-card__icon i {
    font-size: 20px;
    color: #fff;
}

.service-card__num {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.7;
}

.service-card h3 {
    margin-bottom: var(--s3);
}

.service-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
    max-width: none;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2);
    margin-top: var(--s5);
}
.tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-body);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-top: auto;
    padding-top: var(--s5);
    transition: gap var(--t-fast);
}

/* Ghost watermark number */
.service-card__watermark {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 180px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Per-service accent override */
.service-card--kk {
    --accent: var(--accent-klickkarte);
}
.service-card--sp {
    --accent: var(--accent-schichtplan);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: var(--ink);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0 -320px;
    background: linear-gradient(73deg,
        #000773 0%, #000773 10%,
        #000da3 10%, #000da3 20%,
        #0013cc 20%, #0013cc 30%,
        #0022ff 30%, #0022ff 70%,
        #0013cc 70%, #0013cc 80%,
        #000da3 80%, #000da3 90%,
        #000773 90%, #000773 100%
    );
    transform: translateX(var(--hero-drift, 0px));
    will-change: transform;
    pointer-events: none;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    max-width: 820px;
}
.hero__content .eyebrow {
    margin-bottom: var(--s4);
    color: rgba(255, 255, 255, 0.65);
}
.hero__content h1 {
    margin-bottom: var(--s4);
    color: #fff;
}
.hero__content p {
    max-width: none;
}

.hero__sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.hero__whisper {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    margin-top: var(--s5);
    margin-bottom: var(--s8);
    height: 4em;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
    justify-content: center;
}

/* Shorter hero for inner pages (breadcrumb + title, photo background, dark overlay) */
.hero--page {
    min-height: 340px;
    padding-top: 80px;
    padding-bottom: var(--s16);
    background-size: cover;
    background-position: center;
}
.hero--page::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 0;
}
.hero--page .hero__content {
    position: relative;
    z-index: 1;
}
.hero--page .hero__content {
    max-width: none;
    color: #fff;
}
.hero--page h1 {
    color: #fff;
}

/* Single pricing block (replaces 3-card grid) */
.pricing-single {
    max-width: 640px;
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--r-card);
    padding: var(--s10) var(--s12);
    text-align: center;
}
.pricing-single__header h3 {
    color: #fff;
    margin-bottom: var(--s2);
}
.pricing-single__header p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto;
}
.pricing-single__price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-block: var(--s6);
}
.pricing-single__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    text-align: left;
    margin-inline: auto;
    max-width: 420px;
}
.pricing-single__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}
.pricing-single__features i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Hero illustration (right side) — on pages without photo */
.hero--illustrated {
    background: var(--surface);
}
.hero--illustrated .hero__bg {
    display: none;
}
.hero--illustrated .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--s16);
}
.hero__illus {
    position: relative;
}

/* ═══════════════════════════════════
   STATS ROW
═══════════════════════════════════ */
.stat__num {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat__num .suffix {
    color: var(--accent);
}
.stat__label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: var(--s2);
}

/* ═══════════════════════════════════
   VALUE CARDS
═══════════════════════════════════ */
.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: var(--s6);
    box-shadow: var(--shadow-card);
    transition: transform var(--t-base);
}
.value-card:hover {
    transform: translateY(-2px);
}

.value-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s4);
}
.value-card__icon i {
    font-size: 18px;
    color: var(--accent);
}
.value-card h4 {
    margin-bottom: var(--s2);
    color: var(--ink);
}
.value-card p {
    font-size: 14px;
    max-width: none;
}

/* ═══════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: var(--s5) 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s4);
    user-select: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230119FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
        center/contain no-repeat;
    flex-shrink: 0;
    transition: transform var(--t-fast);
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-body {
    padding-bottom: var(--s5);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    max-width: none;
}

/* ═══════════════════════════════════
   TEAM CARD
═══════════════════════════════════ */
.team-card {
    text-align: center;
    padding: var(--s8) var(--s6);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    box-shadow: var(--shadow-card);
    transition:
        transform var(--t-base),
        box-shadow var(--t-base);
}
@media (hover: hover) and (pointer: fine) {
    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }
}
.team-card__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--s5);
    border: 3px solid var(--surface);
}
.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--s1);
}
.team-card__role {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: var(--s4);
}
.team-card p {
    font-size: 14px;
    max-width: none;
}
.team-card__contact {
    list-style: none;
    padding: var(--s5) 0 var(--s5);
    margin: 0 0 var(--s2);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}
.team-card__contact li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    font-size: 13px;
    color: var(--text-body);
}
.team-card__contact li i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent);
}
.team-card__contact a {
    color: var(--text-body);
    transition: color var(--t-fast);
}
.team-card__contact a:hover {
    color: var(--accent);
}
.team-card__links {
    display: flex;
    justify-content: center;
    gap: var(--s3);
    margin-top: var(--s4);
}
.team-card__links a {
    color: var(--text-muted);
    transition: color var(--t-fast);
}
.team-card__links a:hover {
    color: var(--accent);
}
.team-card__links i {
    font-size: 18px;
}

/* ═══════════════════════════════════
   CTA BANNER
═══════════════════════════════════ */
.cta-banner {
    background: var(--accent);
    border-radius: var(--r-card);
    padding: var(--s16) var(--s12);
    text-align: center;
    color: #fff;
}
.cta-banner h2 {
    color: #fff;
    margin-bottom: var(--s4);
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto var(--s8);
    max-width: 50ch;
}

/* ═══════════════════════════════════
   PRICING CARDS (Breakdown)
═══════════════════════════════════ */
.pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
}
.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: var(--s8);
    position: relative;
    box-shadow: var(--shadow-card);
}
.pricing-card__num {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--s3);
    letter-spacing: 0.04em;
}
.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    margin-bottom: var(--s4);
    letter-spacing: -0.02em;
}
.pricing-card__price .suffix {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--s3);
}
.pricing-card p {
    font-size: 14px;
}

@media (max-width: 760px) {
    .pricing-row {
        grid-template-columns: 1fr;
    }
}

/* Pricing card variants & feature list */
.pricing-card {
    display: flex;
    flex-direction: column;
}
.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent), var(--shadow-card);
    padding-top: var(--s10);
}
.pricing-card--featured .pricing-card__price { color: var(--accent); }
.pricing-card--addon { border-style: dashed; }

.pc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}
.pc-chip {
    display: inline-block;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    margin-bottom: var(--s4);
}
.pc-features {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: var(--s5);
    margin-top: var(--s5);
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    font-size: 14px;
    flex: 1;
}
.pc-features li { display: flex; align-items: center; gap: var(--s3); }
.pc-features i  { color: var(--accent); flex-shrink: 0; font-size: 13px; line-height: 1; margin-top: 2px; }
.pc-features__highlight {
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--r-sm);
    padding: 2px 6px;
    font-weight: 600;
    display: inline-block;
}
.pc-btn { margin-top: var(--s6); align-self: center; }
.pricing-card--featured .pc-btn { align-self: stretch; display: flex; justify-content: center; }
.pc-legal { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: var(--s8); max-width: none; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding-block: var(--s20) var(--s8);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s16);
    padding-bottom: var(--s16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand p {
    font-size: 14px;
    margin-top: var(--s4);
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.65);
}


.footer__col h5 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--s4);
}
.footer__col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    padding-block: 4px;
    transition: color var(--t-fast);
}
.footer__col a:hover {
    color: #fff;
}

.footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s4);
    padding-top: var(--s8);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}
.footer__bottom > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__statement {
    margin-top: var(--s8);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.6;
    max-width: none;
    width: 100%;
}
.footer__meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    display: block;
}
.footer__bottom-links {
    display: flex;
    gap: var(--s5);
}
.footer__bottom-links a {
    color: inherit;
    transition: color var(--t-fast);
}
.footer__bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 760px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s8);
    }
    .footer__brand {
        grid-column: span 2;
    }
}
@media (max-width: 480px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .footer__brand {
        grid-column: 1;
    }
}

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */
.contact-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: var(--s10);
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--t-base), transform var(--t-base);
}
@media (hover: hover) and (pointer: fine) {
    .contact-form-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }
}

.kontakt-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
}
.kontakt-meta li {
    display: flex;
    align-items: center;
    gap: var(--s3);
    padding: var(--s4) 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-body);
}
.kontakt-meta li i { font-size: 16px; flex-shrink: 0; color: var(--accent); line-height: 1; }
.kontakt-meta a { color: var(--text-body); transition: color var(--t-fast); }
.kontakt-meta a:hover { color: var(--accent); }

/* ═══════════════════════════════════
   CONTACT FORM
═══════════════════════════════════ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--s4);
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}
.form-group--checkbox { gap: 0; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-body);
    cursor: pointer;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}
.checkbox-label a { color: var(--accent); }
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
}

.form-control {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 15px;
    color: var(--ink);
    background: var(--card);
    transition: border-color var(--t-fast);
    width: 100%;
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-control.is-error {
    border-color: #ef4444;
}
.form-error {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 2px;
}
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}
textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Honeypot */
.hp-field {
    display: none !important;
}


/* ═══════════════════════════════════
   FEATURE LIST (Service pages)
═══════════════════════════════════ */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
    font-size: 15px;
    line-height: 1.5;
}
.feature-list i {
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ═══════════════════════════════════
   SECTION HEADER
═══════════════════════════════════ */
.section-header {
    margin-bottom: var(--s12);
}
.section-header--center {
    text-align: center;
}
.section-header--center p {
    margin-inline: auto;
}
.section-header p {
    font-size: 17px;
    color: var(--text-body);
    margin-top: var(--s4);
    max-width: 55ch;
}

/* ═══════════════════════════════════
   PROCESS STEPS (Product pages)
═══════════════════════════════════ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: var(--s12);
}
.process-step {
    padding: 0 var(--s8);
    border-left: 1px solid var(--border);
}
.process-step:first-child {
    border-left: none;
    padding-left: 0;
}
.process-step:last-child {
    padding-right: 0;
}
.process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: var(--s5);
}
.process-step h3 {
    margin-bottom: var(--s3);
}
.feature-list--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s3) var(--s10);
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    .process-step {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: var(--s8) 0;
    }
    .process-step:first-child {
        border-top: none;
        padding-top: 0;
    }
}
@media (max-width: 760px) {
    .feature-list--grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════
   404 ERROR PAGE
═══════════════════════════════════ */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: var(--s16) var(--s6);
}
.error-page__inner {
    display: flex;
    align-items: center;
    gap: var(--s16);
    max-width: 900px;
}
.error-page__img {
    width: 300px;
    max-width: 45%;
}
.error-page__actions {
    display: flex;
    gap: var(--s4);
    flex-wrap: wrap;
    margin-top: var(--s8);
}
@media (max-width: 760px) {
    .error-page__inner { flex-direction: column; text-align: center; }
    .error-page__actions { justify-content: center; }
    .error-page__img { width: 200px; max-width: 100%; }
}
