* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #a4d233;
    --dark-green: #8cb829;
    --bg-black: #1a1a1a;
    --bg-dark-gray: #2a2a2a;
    --bg-white: #ffffff;
    --bg-light-gray: #f5f5f5;
    --text-black: #000000;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --border-color: #dddddd;
    --border-dark: #333333;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Content Section Management */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Navigation active state */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--text-black) !important;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 2px;
}

/* Legal Page Styles */
.legal-page {
    min-height: 100vh;
    padding-top: 120px;
    background: var(--bg-white);
}

.legal-section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-section-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-black);
    font-weight: bold;
}

.legal-section-content h3 {
    color: var(--text-black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.legal-section-content h4 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.legal-section-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-section-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.legal-section-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-section-content a {
    color: var(--text-dark);
    text-decoration: underline;
    text-decoration-color: var(--primary-green);
    text-decoration-thickness: 2px;
    transition: color 0.2s ease;
}

.legal-section-content a:hover {
    color: var(--text-black);
    text-decoration: underline;
}

/* Header */
header {
    background: var(--bg-white);
    border-bottom: 3px solid var(--primary-green);
    color: var(--text-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px var(--card-shadow);
}

.header-topbar {
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white);
}

.header-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.35rem 2rem;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.header-contact-tile {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    padding: 0.45rem 0.75rem;
    text-decoration: none;

    background: rgba(26, 26, 26, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark);

    transition: background-color var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.header-contact-tile:hover,
.header-contact-tile:focus-visible {
    background: rgba(164, 210, 51, 0.12);
    border-color: rgba(164, 210, 51, 0.40);
    box-shadow: 0 2px 8px var(--card-shadow);
}

.header-notdienst-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;

    padding: 0.45rem 0.75rem;

    background: rgba(200, 30, 30, 0.10);
    border: 1px solid rgba(200, 30, 30, 0.35);
    color: #b01010;

    cursor: default;
    user-select: none;
}

.header-notdienst-icon {
    /* Override the greyscale filter used on phone/mail icons — render in red */
    filter: invert(15%) sepia(90%) saturate(500%) hue-rotate(340deg) brightness(85%) contrast(120%) !important;
    opacity: 1 !important;
}

.header-contact-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;

    /* Keep icons monochrome and consistent */
    filter: grayscale(1) contrast(1.2);
    opacity: 0.95;
}

.header-contact-text {
    font-size: 0.92rem;
    line-height: 1.2;
    white-space: nowrap;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    /* push nav links a bit lower */
    padding: 0.8rem 2rem 0.5rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-speed) ease;
    z-index: 1001;

    /* keep logo vertically centered even though nav aligns items to bottom */
    align-self: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo:hover {
    opacity: 0.8;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;

    /* nudge chapter buttons down slightly */
    padding-top: 0.15rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-speed);
    font-weight: normal;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    background: var(--bg-black);
    color: white;

    /* extra bottom padding so the slide-in visuals don't collide with text */
    padding: 4.25rem 2rem 7.25rem;

    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-visuals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-visual {
    position: absolute;
    opacity: 0;

    /* “Negative” look (white on black background) */
    filter: brightness(0) invert(1) contrast(1.1);

    /* keep it subtle */
    will-change: transform, opacity;
}

.hero-visual-dolly {
    left: clamp(0.75rem, 3vw, 2rem);
    bottom: 1rem;
    width: clamp(110px, 18vw, 175px);
    z-index: 1;

    animation: heroSlideInLeft 0.9s ease-out 0.1s forwards;
}

.hero-visual-worker {
    right: clamp(0.75rem, 3vw, 2rem);
    bottom: 1rem;
    width: clamp(90px, 14vw, 140px);
    z-index: 2;

    animation: heroSlideInRight 0.9s ease-out 0.25s forwards;
}

.hero-visual-pump {
    right: clamp(5rem, 18vw, 12rem);
    bottom: 1rem;
    width: clamp(90px, 14vw, 140px);
    z-index: 1;

    /* vacuumpump.png is already prepared (matching background + white contours) */
    filter: none;

    animation: heroSlideInRightPump 1.0s ease-out 0.4s forwards;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-green);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 auto 0.65rem;
    font-weight: bold;
    color: white;

    /* Full-width grey bar (no background picture) */
    display: block;
    width: 100%;

    background-color: var(--bg-dark-gray);

    padding: 1rem 1.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);

    opacity: 0;
    transform: translateY(8px);
    animation: heroFadeInUp 0.7s ease-out 1.35s forwards;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin: 0;
    color: var(--primary-green);
    font-weight: normal;

    opacity: 0;
    transform: translateY(8px);
    animation: heroFadeInUp 0.7s ease-out 1.55s forwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-dark-gray);
    border-radius: 4px;
    border-left: 3px solid var(--primary-green);
}

.feature-item::before {
    content: "▸";
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1;
}

/* Sections */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-black);
    font-weight: bold;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-green);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0;
    border: 2px solid var(--border-color);
    border-left: 4px solid var(--primary-green);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

/* Subtle pictogram background (centered + transparent) */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: clamp(140px, 20vw, 180px);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px var(--card-shadow);
    transform: translateY(-2px);
}

.service-card.service-repair::after {
    background-image: url('images/piktograms/repair.svg');
}

.service-card.service-personal::after {
    background-image: url('images/piktograms/conversation.svg');
}

.service-card.service-sales::after {
    background-image: url('images/piktograms/sales.svg');
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;

    background: var(--bg-black);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.service-card h3 {
    color: var(--text-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: left;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.4rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.card-link {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.6rem 1.2rem;
    background: var(--bg-black);
    color: white;
    border: 2px solid var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
}

.card-link:hover {
    background: var(--primary-green);
    color: var(--bg-black);
}

/* Hersteller Section */
.vendors-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vendors-intro {
    text-align: center;
    margin-bottom: 2.25rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.vendors-intro p {
    margin: 0;
    line-height: 1.7;
}

.vendors-intro p + p {
    margin-top: 0.85rem;
}

.vendors-disclaimer {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.vendor-type-block {
    position: relative;
    margin: 1.5rem 0;
    padding: 1.25rem 1.25rem 1.35rem;

    /* Transparent tile behind rows */
    background: rgba(26, 26, 26, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.vendor-type-block h3 {
    margin: 0;
    color: var(--text-black);
    font-size: 1.25rem;
    font-weight: bold;
    text-align: left;
}

.vendors-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    margin-top: 1rem;
}

.vendor-row {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 260px);
    align-items: stretch;

    /* Slightly darker than the page background */
    background: rgba(26, 26, 26, 0.09);
    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 0;
    overflow: hidden;
    transition: background-color var(--transition-speed), box-shadow var(--transition-speed), border-color var(--transition-speed);
}

.vendor-row-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
}

.vendor-row-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1rem;

    background: rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(0, 0, 0, 0.08);

    text-decoration: none;
    transition: background-color var(--transition-speed), border-color var(--transition-speed);
}

.vendor-row:hover,
.vendor-row:focus-within {
    /* Transparent green tint on hover */
    background: rgba(164, 210, 51, 0.12);
    border-color: rgba(164, 210, 51, 0.40);
    box-shadow: 0 2px 8px var(--card-shadow);
}

.vendor-row:hover .vendor-row-right,
.vendor-row:focus-within .vendor-row-right {
    background: rgba(164, 210, 51, 0.16);
    border-left-color: rgba(164, 210, 51, 0.40);
}

.vp-parts-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.2rem;
}

.vp-parts-name {
    color: var(--text-black);
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1.2;
}

.vp-parts-site {
    color: var(--text-medium);
    font-size: 0.85rem;
}

.vendor-logo {
    width: 180px;
    height: 48px;
    object-fit: contain;

    /* fully transparent logo tile */
    background: transparent;
    border: 0;

    /* Default: black & white */
    filter: grayscale(1) contrast(1.15);
    opacity: 0.9;
    transition: filter var(--transition-speed), opacity var(--transition-speed);
}

.vendor-row:hover .vendor-logo,
.vendor-row:focus-within .vendor-logo {
    /* Hover: show original colored logo */
    filter: none;
    opacity: 1;
}

.vendor-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vendor-name {
    color: var(--text-black);
    font-weight: bold;
    font-size: 1.05rem;
}

.vendor-site {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.vendors-note {
    background: var(--bg-black);
    color: white;
    padding: 1.5rem;
    border-radius: 0;
    margin-top: 2rem;
}

.vendors-note p {
    margin: 0;
    color: white;
    line-height: 1.7;
}

.vendors-note p + p {
    margin-top: 0.9rem;
}

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

    .vendor-row-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .vendor-row-right {
        justify-content: flex-start;
        text-align: left;
        border-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .vp-parts-text {
        text-align: left;
    }

    .vendor-logo {
        width: 100%;
        max-width: 260px;
    }
}

/* Products Section */
.products-content {
    max-width: 1000px;
    margin: 0 auto;
}

.products-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.manufacturers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.manufacturer-card {
    background: var(--bg-light-gray);
    padding: 1.5rem;
    border-radius: 0;
    border-left: 4px solid var(--primary-green);
    transition: all var(--transition-speed);
}

.manufacturer-card:hover {
    background: var(--bg-white);
    box-shadow: 0 2px 8px var(--card-shadow);
    border-left-width: 6px;
}

.manufacturer-card h4 {
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.manufacturer-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.product-note {
    background: var(--bg-black);
    color: white;
    padding: 1.5rem;
    border-radius: 0;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-green);
}

.product-note p {
    margin: 0;
    color: white;
}

.product-note strong {
    color: var(--primary-green);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: var(--bg-light-gray);
    padding: 2rem;
    border-radius: 0;
    border-left: 4px solid var(--primary-green);
}

.contact-info h3 {
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.info-item {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.info-item strong {
    color: var(--text-black);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-form {
    background: var(--bg-white);
}

.contact-form h3 {
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: #cc0000;
    font-weight: bold;
    margin-left: 2px;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all var(--transition-speed);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(164, 210, 51, 0.1);
}

/* Custom select — suppress native arrow, add branded chevron */
select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23a4d233' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 20px;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.privacy-note {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--text-medium);
}

.privacy-note a {
    color: var(--text-dark);
    text-decoration: underline;
    text-decoration-color: var(--primary-green);
    text-decoration-thickness: 2px;
    transition: color 0.2s ease;
}

.privacy-note a:hover {
    color: var(--text-black);
    text-decoration-color: var(--primary-green);
    text-decoration: underline;
}

button {
    background: var(--bg-black);
    color: white;
    padding: 0.9rem 2rem;
    border: 2px solid var(--primary-green);
    border-radius: 0;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

button:hover {
    background: var(--primary-green);
    color: var(--bg-black);
    border-color: var(--primary-green);
}

button:disabled {
    background: var(--text-light);
    border-color: var(--text-light);
    cursor: not-allowed;
}

/* Footer */
footer {
    background: var(--bg-black);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 3px solid var(--primary-green);
}

/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    gap: 0;
    background: transparent;
    border: none;
    padding: 10px;
    width: 45px;
    height: 38px;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-black);
    transition: 0.3s;
    display: block;
}

@media (max-width: 768px) {
    .header-topbar-inner {
        padding: 0.35rem 1.5rem;
        justify-content: center;
    }

    nav {
        padding: 0.75rem 1.5rem 0.45rem;
    }

    .hero {
        padding: 3.5rem 1.5rem 6.25rem;
    }

    .hero h1 {
        padding: 0.9rem 1rem;
    }

    .hero-visual-dolly {
        bottom: 0.65rem;
        width: 110px;
    }

    .hero-visual-worker {
        bottom: 0.65rem;
        width: 95px;
    }

    .hero-visual-pump {
        right: 3.5rem;
        bottom: 0.65rem;
        width: 95px;
    }

    .service-card::after {
        background-size: 140px;
    }

    nav ul {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-bottom: 3px solid var(--primary-green);
        box-shadow: 0 4px 6px var(--card-shadow);
        z-index: 1000;
        gap: 0;
    }

    nav ul.active {
        left: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    .nav-link.active {
        background: var(--bg-light-gray);
    }

    .hamburger {
        display: flex;
        position: fixed;
        right: 1.5rem;
        top: 60px;
    }

    .logo img {
        height: 35px;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-page {
        padding-top: 100px;
    }

    .legal-section-content {
        padding: 1rem;
    }

    .legal-section-content h2 {
        font-size: 1.8rem;
    }
}

@keyframes heroSlideInLeft {
    from {
        transform: translateX(-80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.9;
    }
}

@keyframes heroSlideInRight {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 0.9;
    }
}

@keyframes heroSlideInRightPump {
    from {
        transform: translateX(90px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes heroFadeInUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual,
    .hero h1,
    .subtitle {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

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

/* Honeypot field */
.honeypot-field {
    position: absolute;
    left: -5000px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Status messages for AJAX response */
#form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0;
    font-weight: normal;
    display: none;
    text-align: center;
    border-left: 4px solid;
}

#form-status.success {
    background: #d4edda;
    color: #155724;
    border-color: var(--primary-green);
    display: block;
}

#form-status.error {
    background: #f8d7da;
    color: #721c24;
    border-color: #cc0000;
    display: block;
}

#form-status.sending {
    background: #d1ecf1;
    color: #0c5460;
    border-color: var(--primary-green);
    display: block;
}

/* ============================================================
   Service card as clickable link (Qualität → Warum wir)
   ============================================================ */
a.service-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

a.service-card-link:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
    transform: translateY(-3px);
}

a.service-card-link .service-card h3,
a.service-card-link h3 {
    color: var(--text-black);
}

.card-cta-btn {
    display: inline-block;
    margin-top: auto;
    padding-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    margin-top: 1.5rem;
    background: var(--bg-black);
    color: white;
    border: 2px solid var(--primary-green);
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    align-self: center;
}

a.service-card-link:hover .card-cta-btn {
    background: var(--primary-green);
    color: var(--bg-black);
}

/* ============================================================
   Warum wir – page-specific styles
   ============================================================ */
.warum-wir-page .legal-section-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.warum-intro-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.warum-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warum-highlights li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.warum-highlights li:last-child {
    border-bottom: none;
}

.warum-highlights li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.warum-owner-photo {
    flex-shrink: 0;
}

.owner-photo-placeholder {
    width: 180px;
    height: 220px;
    background: var(--bg-light-gray);
    border: 2px dashed var(--border-color);
    border-left: 4px solid var(--primary-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem;
}

.owner-photo-icon {
    font-size: 3rem;
    opacity: 0.4;
}

.owner-photo-caption {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.owner-photo-caption span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.warum-cta {
    margin-top: 3rem;
    padding: 1.75rem 2rem;
    background: var(--bg-black);
    color: white;
    border-left: 4px solid var(--primary-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.warum-cta p {
    margin: 0;
    color: white;
    font-size: 1.05rem;
}

.warum-cta .card-link {
    white-space: nowrap;
    background: var(--primary-green);
    color: var(--bg-black);
    border: 2px solid var(--primary-green);
}

.warum-cta .card-link:hover {
    background: white;
    color: var(--bg-black);
    border-color: var(--primary-green);
}

@media (max-width: 768px) {
    .warum-intro-grid {
        grid-template-columns: 1fr;
    }

    .owner-photo-placeholder {
        width: 100%;
        height: 160px;
    }

    .warum-cta {
        align-items: center;
    }
}

/* ============================================================
   Einsatzgebiete – index.php teaser section
   ============================================================ */
#einsatzgebiete {
    background: var(--bg-light-gray);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 2rem;
    max-width: 100%;
}

#einsatzgebiete > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.einsatz-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.einsatz-intro p {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.einsatz-cta {
    display: inline-block;
    margin-top: 0.25rem;
    width: auto;
}

.einsatz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.einsatz-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: rgba(26, 26, 26, 0.07);
    border: 1px solid rgba(0,0,0,0.07);
    font-size: 0.97rem;
    color: var(--text-dark);
    transition: background var(--transition-speed), border-color var(--transition-speed);
}

.einsatz-row:hover {
    background: rgba(164, 210, 51, 0.12);
    border-color: rgba(164, 210, 51, 0.40);
}

.einsatz-icon {
    color: var(--primary-green);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ============================================================
   Einsatzgebiete – full page (einsatzgebiete.php)
   ============================================================ */
.einsatz-page .legal-section-content h2 {
    font-size: 2.2rem;
}

.einsatz-problems {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 1.5rem 0 2.5rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.einsatz-problem-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.einsatz-problem-row:last-child {
    border-bottom: none;
}

.einsatz-problem-title,
.einsatz-problem-solution {
    padding: 0.9rem 1.25rem;
    font-size: 0.97rem;
    line-height: 1.5;
}

.einsatz-problem-title {
    background: rgba(26, 26, 26, 0.04);
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
}

.einsatz-problem-solution {
    background: rgba(164, 210, 51, 0.07);
    color: var(--text-dark);
    font-weight: 500;
}

.einsatz-sectors {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0 2.5rem;
}

.einsatz-sector-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(26, 26, 26, 0.06);
    border: 1px solid rgba(0,0,0,0.07);
    transition: background var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.einsatz-sector-row:hover {
    background: rgba(164, 210, 51, 0.12);
    border-color: rgba(164, 210, 51, 0.40);
    box-shadow: 0 2px 8px var(--card-shadow);
}

.einsatz-sector-icon {
    color: var(--primary-green);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.einsatz-sector-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.einsatz-sector-text strong {
    color: var(--text-black);
    font-size: 1rem;
}

.einsatz-sector-text span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .einsatz-problem-row {
        grid-template-columns: 1fr;
    }

    .einsatz-problem-title {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    #einsatzgebiete {
        padding: 3rem 1.5rem;
    }
}

/* ============================================================
   Vendor row – single column after vp-parts removal
   ============================================================ */
.vendor-row {
    grid-template-columns: 1fr;
}

/* ============================================================
   Hero – hide decorative slide-in illustrations on mobile
   ============================================================ */
@media (max-width: 768px) {
    .hero-visuals {
        display: none;
    }

    .hero {
        padding-bottom: 4.25rem;
    }
}
