/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #52b043;
    --green-dark: #3a8030;
    --green-light: #eaf6e8;
    --orange: #f07c00;
    --orange-dark: #c96800;
    --orange-light: #fff3e0;
    --white: #ffffff;
    --bg-light: #f7f8f6;
    --text: #1e1e1e;
    --text-light: #666666;
    --border: #e2e8df;
    --shadow: 0 4px 20px rgba(0,0,0,0.07);
    --shadow-hover: 0 10px 35px rgba(0,0,0,0.13);
    --radius: 10px;
    --transition: all 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: #f0f0f2;
    line-height: 1.6;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 124, 0, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--text);
    border-color: var(--white);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 176, 67, 0.35);
}

.btn-outline-green {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--green);
}
.btn-outline-green:hover {
    background: var(--green);
    color: white;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-gray { background: var(--bg-light); }

/* ===== AUSBILDER-BLOCK (Startseite) =====
   Eigener heller Gruenton statt section-gray: der Block sitzt zwischen zwei
   Abschnitten und wuerde sonst mit dem grauen davor verschmelzen. */
.section-ausbilder { background: var(--green-light); }

.ausbilder-teaser {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.ausbilder-teaser img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.ausbilder-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}
.ausbilder-teaser h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}
.ausbilder-teaser p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.ausbilder-teaser .btn { margin-top: 0.5rem; }

@media (max-width: 800px) {
    .ausbilder-teaser {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .ausbilder-teaser img { max-width: 220px; margin: 0 auto; }
    .ausbilder-teaser h2 { font-size: 1.6rem; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--green-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.logo-text span { color: var(--orange); }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex: 1;
    justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.9rem;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text);
    border-radius: 7px;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--green-dark);
    background: var(--green-light);
}

.nav-link.active { font-weight: 600; }

.nav-link i.fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.2s;
}
.nav-item:hover .nav-link i.fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
    background: var(--green-light);
    color: var(--green-dark);
    padding-left: 1.5rem;
}
.dropdown a i {
    width: 18px;
    color: var(--green);
    font-size: 0.9rem;
}

.navbar-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    overflow-y: auto;
    padding: 0.5rem 1rem 2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}
.mobile-nav a:hover {
    color: var(--green-dark);
    background: var(--green-light);
    border-radius: 7px;
}
.mobile-nav-section {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    padding: 1.2rem 1rem 0.3rem;
    font-weight: 700;
}
.mobile-cta { padding: 1.5rem 0; }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    max-height: 820px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hintergrundbild: Kranfahrpruefung, Parcours in der Halle.
   Der Bildausschnitt sitzt rechts, weil links der Textblock steht -
   so bleibt das Motiv sichtbar statt hinter der Schrift zu verschwinden.
   Ersetzt den frueheren grauen Verlauf mit dem funktionslosen Play-Button. */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-kranpruefung.jpg');
    background-size: cover;
    background-position: 65% center;
    background-color: #4a4a52; /* Fallback, solange das Bild laedt */
}

/* Der Verlauf bleibt bis etwa 65% Breite kraeftig, weil dort der Textblock
   sitzt und der Hallenboden im Foto hell ist. Weiter rechts laeuft er aus,
   damit das Motiv sichtbar bleibt. */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.62) 45%,
        rgba(0,0,0,0.35) 70%,
        rgba(0,0,0,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: white;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.4px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1.1rem;
    line-height: 1.1;
}
.hero h1 span { color: #7dd96a; }

.hero p {
    font-size: 1.1rem;
    opacity: 0.88;
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, #a8a8b0 0%, #c8c8d0 100%);
    padding: 3.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item { color: #1e1e1e; }
.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #a8e89a;
    line-height: 1;
    margin-bottom: 0.3rem;
}
/* Felder mit Text statt Zahl brauchen etwas weniger Groesse,
   sonst sprengt der laengere Inhalt die Spalte. */
.stat-number-text { font-size: 2.2rem; }
.stat-label {
    font-size: 0.88rem;
    opacity: 0.82;
    font-weight: 500;
}

/* ===== CATEGORY TILES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
}
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--green), var(--green-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.category-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green);
}
.category-card:hover::after { transform: scaleX(1); }

.category-icon {
    width: 68px;
    height: 68px;
    background: var(--green-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}
.category-card:hover .category-icon {
    background: var(--green);
    transform: scale(1.08);
}

/* Die Zurrgurte im Ladungssicherungs-Symbol sind als Aussparung gezeichnet:
   Sie muessen die Farbe der Kachel tragen, nicht die des Symbols - und beim
   Ueberfahren mitwechseln, weil die Kachel dann kraeftiger wird. */
.ls-gurt { stroke: var(--green-light); }
.category-card:hover .ls-gurt { stroke: var(--green); }

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.category-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}
.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.88rem;
    transition: gap 0.2s;
}
.category-card:hover .category-link { gap: 0.7rem; }

/* ===== USP FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.feature-item { text-align: center; }
.feature-icon {
    width: 76px;
    height: 76px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--orange);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    background: var(--orange);
    color: white;
    transform: scale(1.05);
}
.feature-item h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.feature-item p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 29px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 2px;
    background: linear-gradient(to right, var(--green), var(--orange));
}
.step { text-align: center; }
.step-number {
    width: 60px;
    height: 60px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    border: 4px solid var(--bg-light);
    transition: var(--transition);
}
.step:hover .step-number {
    background: var(--orange);
    transform: scale(1.1);
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

/* ===== NEWS CARDS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.news-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.news-img {
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--green-light), #c8e8c2);
}
.news-body { padding: 1.5rem; }
.news-tag {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.news-body h3 { font-size: 0.98rem; margin-bottom: 0.5rem; line-height: 1.45; }
.news-body p { color: var(--text-light); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.8rem;
}
.news-meta i { color: var(--green); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #a8a8b0 0%, #c8c8d0 100%);
    color: #1e1e1e;
    padding: 5.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Wie beim Leistungsbild: reine Dekoration, darf keine Klicks abfangen.
       Die Kinder sind hier zwar schon durch position:relative geschuetzt,
       aber so haengt es nicht daran, dass diese Regel bestehen bleibt. */
    pointer-events: none;
    background: radial-gradient(ellipse at 70% 50%, rgba(240,124,0,0.15) 0%, transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { margin-bottom: 1rem; color: #1e1e1e; }
.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 auto 2rem;
    max-width: 540px;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: #181f15;
    color: rgba(255,255,255,0.65);
    padding: 4.5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 1.1rem;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--green);
    color: white;
    transform: translateY(-2px);
}
.footer-col h4 {
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.footer-col ul a:hover {
    color: var(--green);
    padding-left: 4px;
}
.footer-contact p {
    font-size: 0.875rem;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact i { color: var(--green); margin-top: 3px; min-width: 14px; }
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--green); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #3d9530 0%, #7dd96a 100%);
    color: white;
    padding: 4.5rem 0 3.5rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}
.breadcrumb a:hover { opacity: 1; }
.breadcrumb i { font-size: 0.6rem; }
.page-hero h1 { margin-bottom: 0.75rem; color: white; }
.page-hero p { opacity: 0.88; font-size: 1.05rem; max-width: 600px; line-height: 1.7; }

/* ===== LEISTUNGEN DETAIL ===== */
.leistung-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}
.leistung-section:last-of-type { border-bottom: none; }
.leistung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.leistung-grid.reverse { direction: rtl; }
.leistung-grid.reverse > * { direction: ltr; }
.leistung-img {
    height: 300px;
    background: linear-gradient(135deg, var(--green-light), #c0e0ba);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}
.leistung-img::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Der Farbschleier liegt ueber der gesamten Kachel und hat damit auch die
       Links darunter abgedeckt - Klicks auf die DGUV-Schaltflaechen kamen nie
       an. Als reine Dekoration darf er Mausereignisse nicht abfangen. */
    pointer-events: none;
    background: linear-gradient(135deg, rgba(82,176,67,0.1), rgba(240,124,0,0.05));
}
.leistung-img-duo {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    background: none;
}
.leistung-img-duo .duo-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.leistung-img-duo .duo-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leistung-img-duo .duo-img-download {
    flex: 0 0 28%;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.25rem 1rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    text-align: center;
}
.leistung-img-duo .duo-img-download:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    border-color: var(--green);
    transform: translateY(-2px);
}
.leistung-img-duo .duo-img-download .dl-icon {
    font-size: 2.2rem;
    color: #003B75;
}
.leistung-img-duo .duo-img-download .dl-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-transform: uppercase;
}
.leistung-img-duo .duo-img-download .dl-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}
.leistung-img-duo .duo-img-download .dl-btn {
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: var(--green);
    border-radius: 6px;
    padding: 0.4rem 0.85rem;
}
.leistung-img-duo .duo-img-ausweis {
    flex: 0 0 26%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.leistung-img-duo .duo-img-ausweis img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.leistung-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.leistung-content h2 { margin-bottom: 1rem; font-size: 1.8rem; }
.leistung-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 1.25rem; }
.leistung-list { margin-bottom: 1.75rem; }
.leistung-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}
.leistung-list li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* Punkte mit fetter Bezeichnung (z.B. die Stufen beim Teleskopstapler):
   Die Bezeichnung bekommt eine eigene Zeile. Sonst beginnt die Erklaerung
   je nach Laenge der Bezeichnung an einer anderen Stelle - bei kurzen direkt
   dahinter, bei langen erst in der zweiten Zeile. Das wirkt unruhig. */
.leistung-list li strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.15rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.75rem;
}
.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 1.2rem;
}
.contact-info-text h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-info-text p, .contact-info-text a {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.55;
}
.contact-info-text a:hover { color: var(--green-dark); }

.form-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 0.25rem; }
.form-card .form-intro { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(82, 176, 67, 0.12);
}
textarea { resize: vertical; min-height: 115px; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.75rem; }

/* ===== AKTUELLES ===== */
.news-list { display: flex; flex-direction: column; gap: 1.5rem; }
.news-list-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}
.news-list-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
    border-color: var(--green);
}
.news-list-img {
    height: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--green-light), #c8e8c2);
}
.news-list-body { padding: 1.5rem 1.5rem 1.5rem 0; }
.news-list-body h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.news-list-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1rem; }

/* ===== E-LEARNING ===== */
.elearning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.elearning-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}
.elearning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
}
.elearning-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--orange);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}
.elearning-card:hover .elearning-icon {
    background: var(--orange);
    color: white;
}
.elearning-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.elearning-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.about-img-placeholder {
    height: 420px;
    background: linear-gradient(135deg, var(--green-light) 0%, #b0d9a8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    border-radius: 16px;
}
.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--orange);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
}
.about-img-badge .num { font-size: 2rem; display: block; line-height: 1; }
.about-img-badge .lbl { font-size: 0.78rem; opacity: 0.9; }
.value-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 1.1rem;
}
.value-item h4 { margin-bottom: 0.2rem; font-size: 0.98rem; }
.value-item p { color: var(--text-light); font-size: 0.875rem; line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.team-img {
    height: 300px;
    background: linear-gradient(135deg, var(--green-light), #c8e8c2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.team-body { padding: 1.25rem; }
.team-body h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-body p { color: var(--green-dark); font-size: 0.82rem; font-weight: 600; }

/* ===== IMPRESSUM ===== */
.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}
.impressum-content h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--green-dark); }
.impressum-content p, .impressum-content address {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.75;
    font-style: normal;
    margin-bottom: 0.5rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .leistung-grid { grid-template-columns: 1fr; gap: 2rem; }
    .leistung-grid.reverse { direction: ltr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-placeholder { height: 280px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .elearning-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Navigation frueh auf das Menue umstellen.
   Logo (242px) + Menue (665px) + Button (197px) + Innenabstand (48px) brauchen
   zusammen rund 1150px. Schaltete das Menue erst bei 768px um, lief die Leiste
   zwischen 769 und 1151px aus dem Bild und die ganze Seite scrollte seitwaerts. */
@media (max-width: 1150px) {
    .navbar-nav, .navbar-cta { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 768px) {
    /* Auf schmalen Bildschirmen nutzt der Text die volle Breite - ein
       waagerechter Verlauf wuerde ihn rechts ungeschuetzt lassen. */
    .hero-overlay {
        background: linear-gradient(to bottom,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.68) 45%,
            rgba(0,0,0,0.72) 100%);
    }

    .categories-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .news-list-item { grid-template-columns: 1fr; }
    .news-list-img { min-height: 160px; }
    .team-grid { grid-template-columns: 1fr; }
    .elearning-grid { grid-template-columns: 1fr; }
    .form-card { padding: 1.5rem; }
    .hero-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .btn { width: 100%; justify-content: center; }

    /* Die Zahlen waren mit 2.8rem zu breit fuer zwei Spalten auf einem
       Handy-Bildschirm: '20.000+' brauchte 201px bei 375px Displaybreite
       und schob die ganze Seite seitwaerts. */
    .stat-number { font-size: 1.85rem; }
    .stat-number-text { font-size: 1.35rem; }
    .stat-label { font-size: 0.8rem; }
}
