/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #07501F;
    --secondary-green: #6A9B28;
    --tertiary-green: #A6E94D;
    --dark-green: #004d26;
    --light-green: #e6f5ed;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 4px 20px rgba(7, 80, 31, 0.2);
    --gradient-primary: linear-gradient(135deg, #07501F 0%, #07501F 100%);
    --gradient-light: linear-gradient(135deg, rgba(7, 80, 31, 0.1) 0%, rgba(7, 80, 31, 0.05) 100%);
    /* Einheitlicher Abstand zwischen Themensektionen */
    --section-spacing: 4.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navigation */
.header {
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    position: fixed;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    position: relative;
    border-radius: 4px;
}

.nav-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    background: #e6efe9;
    color: #2f6b4f;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: top;
    display: none;
}

.nav-link:hover {
    background-color: var(--secondary-green);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.3);
}

.nav-link:active {
    background-color: var(--tertiary-green);
    color: white !important;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: var(--text-gray);
    transition: transform 0.3s, color 0.3s;
    margin-left: 0.25rem;
}

.nav-item:hover .dropdown-arrow {
    color: var(--primary-green);
    transform: rotate(180deg);
}

.nav-button {
    background-color: var(--secondary-green);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 4px;
    margin-left: 1rem;
}

.nav-button:hover {
    background-color: var(--secondary-green);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.3);
}

.nav-button:active {
    background-color: var(--tertiary-green);
    color: white !important;
}

/* Dropdown-Hover sollte nicht den neuen Hover überschreiben */
.has-dropdown:hover > .nav-link {
    background-color: var(--secondary-green);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.3);
}

.has-dropdown .nav-link:active,
.has-dropdown:hover > .nav-link:active {
    background-color: var(--tertiary-green);
    color: white !important;
}

.dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(240, 240, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    list-style: none;
    min-width: 220px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background-color: rgba(106, 155, 40, 0.2);
    color: var(--secondary-green);
    padding-left: 1.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
    scroll-margin-top: 0;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.hero-background {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background-image {
    width: 100%;
    height: auto;
    display: block;
    background-color: #1a1a1a;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .hero-background-image {
        object-fit: cover;
        object-position: center;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-background-image {
        object-fit: cover;
        object-position: center;
        min-height: 400px;
    }
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-background::after {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    }
}

@media (max-width: 480px) {
    .hero-background::after {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    }
}

.hero .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: white;
    margin-top: -105px;
    padding-top: 6rem;
    overflow-x: hidden;
}

.hero-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-top: -30px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.hero-main-title .typewriter-text {
    display: inline-block;
    padding-right: 0.5rem;
    white-space: nowrap;
    color: white;
}

.hero-main-title .cursor {
    color: white;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-height: 4rem;
    text-align: left;
}

.hero-title .typewriter-text {
    display: inline-block;
    position: relative;
    padding: 0.5rem 0;
    padding-right: 1rem;
    background: transparent;
    border-radius: 8px;
    white-space: pre-line;
    color: var(--secondary-green);
    text-align: left;
    max-width: 100%;
    overflow-wrap: break-word;
}

.is-hidden {
    display: none !important;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    color: var(--secondary-green);
    font-weight: bold;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary-green), var(--tertiary-green));
    box-shadow: 0 10px 24px rgba(7, 80, 31, 0.2);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(7, 80, 31, 0.25);
}

.hero-cta::after {
    content: '→';
    transition: transform 0.2s ease;
}

.hero-cta:hover::after {
    transform: translateX(4px);
}

/* Zeilenumbruch vor "Jetzt nachhaltig" nur auf Handy */
.hero-cta-br-mobile {
    display: none;
}

.hero-cta-secondary {
    background: #ffffff;
    color: var(--secondary-green);
    border: 1px solid rgba(7, 80, 31, 0.2);
    box-shadow: 0 8px 20px rgba(7, 80, 31, 0.12);
}

.hero-cta-secondary:hover {
    box-shadow: 0 12px 24px rgba(7, 80, 31, 0.18);
}

/* Efficiency Section */
.efficiency {
    padding: var(--section-spacing) 0;
    background-color: #f0f0f0;
    scroll-margin-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    display: none;
}

.efficiency-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.efficiency-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: -0.5rem auto 2rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary-green), var(--tertiary-green));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(7, 80, 31, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.efficiency-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(7, 80, 31, 0.25);
}

.efficiency-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--tertiary-green);
    border-radius: 2px;
    display: block;
}

.efficiency-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.efficiency-number-wrapper {
    flex-shrink: 0;
}

.efficiency-number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.efficiency-number {
    font-size: 6rem;
    font-weight: bold;
    color: var(--secondary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
    width: 200px;
    text-align: center;
    font-variant-numeric: tabular-nums;
    display: inline-block;
}

.efficiency-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.efficiency-text {
    flex: 1;
}

.efficiency-text .section-intro {
    text-align: left;
    margin: 0;
    margin-bottom: 2rem;
}

.category-selects {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.category-select {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2307501F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.category-select:hover {
    border-color: var(--secondary-green);
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.15);
}

.category-select:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(106, 155, 40, 0.2);
}

.category-select option {
    padding: 0.5rem;
}

/* Planning Section */
.planning-section {
    padding: var(--section-spacing) 0;
    background-color: #ffffff;
    scroll-margin-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.planning-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.planning-section-problems .planning-layout {
    grid-template-columns: 1fr;
}

.planning-section-problems .planning-steps {
    align-items: center;
    text-align: center;
}

.planning-section-problems .planning-title,
.planning-section-problems .planning-subtitle,
.planning-section-problems .planning-claim {
    text-align: center;
}

.planning-section-problems .step-list {
    align-items: center;
}

.planning-section-problems .step-item {
    max-width: 900px;
    width: 100%;
}

.planning-section-problems .step-item.active {
    background-color: #f8f8f8;
    border-left: 0;
    padding-left: 0.75rem;
}

.planning-section-problems .step-content,
.planning-section-problems .step-content h3,
.planning-section-problems .step-content p,
.planning-section-problems .step-content .step-content-list {
    text-align: left;
}

.planning-section-problems .step-content h3 {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.planning-section-problems .step-content-list li::before {
    content: none;
    display: none;
}

.planning-section-problems .step-content-list li {
    padding-left: 0;
}

.planning-card-container {
    position: sticky;
    top: clamp(80px, 12vh, 200px);
    height: fit-content;
    align-self: start;
    margin-top: 0;
}

#leistungen .planning-card-container {
    margin-top: 0;
}

.planning-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--secondary-green);
    overflow: visible;
    transition: height 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: fit-content;
    height: auto;
}

.planning-card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.planning-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
}

.planning-section-problems .planning-image {
    background: #ffffff;
}

.planning-section-problems .planning-image img {
    background-color: #ffffff;
}

.planning-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.3s ease;
    background-color: #f8f8f8;
    padding: 10px;
    opacity: 1;
}

.image-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.image-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.image-dot:hover {
    background-color: var(--secondary-green);
    transform: scale(1.2);
}

.image-dot.active {
    background-color: var(--secondary-green);
    width: 12px;
    height: 12px;
    border-color: var(--primary-green);
}

.planning-steps {
    display: flex;
    flex-direction: column;
}

.planning-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    white-space: nowrap;
}

.planning-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--tertiary-green);
    margin-top: 0.75rem;
}

.planning-title-leistungen {
    font-size: 2rem;
    font-weight: bold;
    text-align: left !important;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-dark);
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    white-space: normal;
}

.planning-title-leistungen::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--tertiary-green);
    margin-top: 0.75rem;
}

.section-title.planning-title-leistungen {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

.planning-intro {
    text-align: left;
    margin: 0;
    margin-bottom: 2rem;
    color: var(--primary-green);
    line-height: 1.6;
}

.planning-section .planning-intro {
    color: var(--primary-green);
}

.planning-subtitle {
    text-align: left;
    margin: 0 0 0.75rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.planning-claim {
    text-align: left;
    margin: 0 0 1.5rem;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.warum-wir-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.warum-wir-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.planning-selection-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.selection-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--secondary-green);
    border-radius: 8px;
    background-color: transparent;
    color: var(--secondary-green);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.selection-btn:hover {
    background-color: rgba(106, 155, 40, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 155, 40, 0.2);
}

.selection-btn.active {
    background-color: var(--secondary-green);
    color: white;
    box-shadow: 0 4px 15px rgba(106, 155, 40, 0.3);
}

.selection-btn.active:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 80, 31, 0.4);
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    background-color: #f8f8f8;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-item:hover {
    background-color: #f0f0f0;
    border-color: var(--secondary-green);
    transform: translateX(5px);
}

.step-item.active {
    border-left: 4px solid var(--secondary-green);
    padding-left: 1rem;
    background: #f6fbf3;
    border-color: transparent;
    box-shadow: none;
}

.step-badge {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--secondary-green);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-item.active .step-badge {
    background-color: var(--primary-green);
    transform: scale(1.1);
}

.step-badge span {
    display: block;
}

.step-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.step-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-content-list li {
    position: relative;
    padding-left: 1.4rem;
}

.step-content-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-green);
    font-weight: 700;
}

.planning-card-content {
    padding: 2rem;
    flex: 0 0 auto;
    min-height: fit-content;
}

.planning-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.planning-card-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.planning-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.planning-card-list li {
    position: relative;
    padding-left: 1.5rem;
}

.planning-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-green);
    font-weight: 700;
}

.card-result {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary-green);
    line-height: 1.6;
    white-space: pre-line;
}

.step-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}

.step-nav button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--secondary-green);
    border-radius: 8px;
    background-color: transparent;
    color: var(--secondary-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-nav button:hover {
    background-color: var(--secondary-green);
    color: white;
}

.step-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.step-nav button:disabled:hover {
    background-color: transparent;
    color: var(--secondary-green);
}

/* Features Section */
.features {
    padding: var(--section-spacing) 0;
    background-color: #f0f0f0;
    scroll-margin-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.benefit-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 1.25rem;
    justify-content: center;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid rgba(7, 80, 31, 0.2);
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.benefit-badge-number {
    margin-right: 0.35rem;
    font-weight: 700;
    color: var(--secondary-green);
}

/* Process Section */
.process {
    padding: 4rem 0;
    background-color: #f0f0f0;
    scroll-margin-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(7, 80, 31, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--tertiary-green) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(106, 155, 40, 0.3);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Monitoring Section */
.monitoring {
    display: none; /* Ausgeblendet, aber im Code behalten */
    padding: 4rem 0;
    background-color: #f0f0f0;
    text-align: center;
    scroll-margin-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

/* Contact Form Section */
.contact-form {
    padding: var(--section-spacing) 0;
    background-color: white;
    scroll-margin-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    color: var(--text-dark);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--secondary-green);
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(7, 80, 31, 0.12), 0 4px 12px rgba(7, 80, 31, 0.15);
    transform: translateY(-1px);
}

.form-group input:valid,
.form-group textarea:valid,
.form-group input.valid,
.form-group textarea.valid {
    border-color: var(--tertiary-green);
    box-shadow: 0 0 0 3px rgba(166, 233, 77, 0.2), 0 2px 8px rgba(166, 233, 77, 0.3);
    animation: glowGreen 0.3s ease;
}

.form-group input:valid:focus,
.form-group textarea:valid:focus,
.form-group input.valid:focus,
.form-group textarea.valid:focus {
    border-color: var(--tertiary-green);
    box-shadow: 0 0 0 3px rgba(166, 233, 77, 0.3), 0 4px 12px rgba(166, 233, 77, 0.4);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

@keyframes glowGreen {
    0% {
        box-shadow: 0 0 0 3px rgba(166, 233, 77, 0.1), 0 2px 8px rgba(166, 233, 77, 0.2);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(166, 233, 77, 0.3), 0 4px 12px rgba(166, 233, 77, 0.5);
    }
    100% {
        box-shadow: 0 0 0 3px rgba(166, 233, 77, 0.2), 0 2px 8px rgba(166, 233, 77, 0.3);
    }
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.contact-form-wrapper .btn-primary {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--secondary-green) !important;
    background: var(--secondary-green) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.3) !important;
    border: none;
    position: relative;
    overflow: visible;
}

.contact-form-wrapper .btn-primary::before {
    display: none;
}

.contact-form-wrapper .btn-primary:hover {
    transform: translateY(-1px);
    background-color: var(--secondary-green) !important;
    background: var(--secondary-green) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.3) !important;
}

.contact-form-wrapper .btn-primary:active {
    background-color: var(--tertiary-green) !important;
    background: var(--tertiary-green) !important;
    color: white !important;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--tertiary-green);
    border-radius: 2px;
    display: block;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.section-intro.intro-compact {
    margin-bottom: 1rem;
}

.benefits-panel {
    max-width: 920px;
    margin: 0.5rem auto 2.5rem;
    padding: 1.25rem 1.25rem 0.25rem;
    border-radius: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Facts Section – einheitlicher Abstand zu anderen Themensektionen */
.facts.facts-cards {
    padding: var(--section-spacing) 0;
    scroll-margin-top: 80px;
}

.facts-cards {
    background: #f7f8f6;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.fact-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.fact-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #1f1f1f;
}

.facts-highlight {
    background: #eef7e9;
    border-left: 4px solid #6bcf3f;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 32px 0;
}

.facts-claim {
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-top: 24px;
}

.elearning-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, rgba(240, 245, 241, 0.9), rgba(255, 255, 255, 1));
    text-align: center;
}

.elearning-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 0.75rem;
}

.elearning-title {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.elearning-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.elearning-shop {
    padding: 3rem 0 5rem;
    background: #ffffff;
}

.elearning-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
}

.elearning-filter-group,
.elearning-view-group {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.elearning-view-group {
    display: none;
}

.filter-btn,
.view-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(7, 80, 31, 0.18);
    background: #ffffff;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.filter-btn:hover,
.view-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(7, 80, 31, 0.12);
    background: rgba(7, 80, 31, 0.04);
}

.filter-btn.is-active,
.view-btn.is-active {
    background: var(--secondary-green);
    color: #ffffff;
    border-color: var(--secondary-green);
    box-shadow: 0 8px 18px rgba(7, 80, 31, 0.18);
}

.elearning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.elearning-grid:not(.elearning-grid--list) .elearning-card {
    gap: 0.7rem;
    height: 100%;
}

.elearning-grid--list {
    grid-template-columns: 1fr;
}

.elearning-grid--list .elearning-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.elearning-grid--list .elearning-card-header {
    flex: 1;
}

.elearning-grid--list .elearning-cta-row {
    flex-shrink: 0;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.elearning-grid--list .elearning-price {
    margin-bottom: 0.1rem;
}

.elearning-grid--list .elearning-cta {
    align-self: center;
}

.elearning-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(7, 80, 31, 0.08);
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(7, 80, 31, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.elearning-card-header h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.elearning-card-header p {
    color: var(--text-gray);
    line-height: 1.6;
}

.elearning-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(106, 155, 40, 0.12);
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.elearning-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.elearning-badge--success {
    background: rgba(106, 155, 40, 0.12);
    color: #0f5132;
}

.elearning-badge--danger {
    background: rgba(220, 53, 69, 0.12);
    color: #842029;
}

.elearning-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--text-gray);
}

.elearning-target {
    margin: -0.2rem 0 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.elearning-list li::before {
    content: "✓";
    color: var(--secondary-green);
    margin-right: 0.5rem;
    font-weight: 700;
}

.elearning-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.elearning-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.elearning-cta {
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: var(--secondary-green);
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 22px rgba(7, 80, 31, 0.18);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

.elearning-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(7, 80, 31, 0.25);
}

.modal-open {
    overflow: hidden;
}

.cart-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 12000;
    padding: 1.5rem;
}

.cart-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    width: min(720px, 100%);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(7, 80, 31, 0.12);
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-height: 85vh;
    overflow: hidden;
}

.cart-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    border: none;
    background: rgba(7, 80, 31, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--primary-green);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-close:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(7, 80, 31, 0.2);
}

.cart-header h2 {
    font-size: 1.8rem;
    margin: 0.3rem 0 0.4rem;
    color: var(--text-dark);
}

.cart-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--secondary-green);
    font-size: 0.8rem;
}

.cart-subtitle {
    color: var(--text-gray);
    margin: 0;
}

.cart-body {
    flex: 1;
    overflow: auto;
    padding-right: 0.5rem;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.cart-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(7, 80, 31, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(7, 80, 31, 0.08);
}

.cart-item-info h3 {
    font-size: 1rem;
    margin: 0 0 0.35rem;
    color: var(--text-dark);
}

.cart-item-info p {
    color: var(--text-gray);
    margin: 0;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.cart-item-total {
    font-weight: 700;
    color: var(--text-dark);
}

.cart-remove {
    border: none;
    background: rgba(7, 80, 31, 0.08);
    color: var(--primary-green);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
}

.cart-empty {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-gray);
    display: none;
}

.cart-footer {
    border-top: 1px solid rgba(7, 80, 31, 0.12);
    padding-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.cart-message {
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary-green);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cart-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cart-primary,
.cart-secondary {
    flex: 1;
    min-width: 180px;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.95rem;
}

.cart-primary {
    background: var(--secondary-green);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(7, 80, 31, 0.2);
}

.cart-secondary {
    background: rgba(7, 80, 31, 0.08);
    color: var(--primary-green);
}

.cart-primary:hover,
.cart-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(7, 80, 31, 0.2);
}

@media (max-width: 720px) {
    .cart-panel {
        padding: 2rem 1.5rem;
    }

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

    .cart-item-actions {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 720px) {
    .elearning-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .elearning-grid--list .elearning-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .elearning-hero {
        padding: 5rem 0 2.5rem;
    }

    .elearning-title {
        font-size: 2rem;
    }

    .elearning-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 0.75rem 1rem;
    justify-items: stretch;
    align-items: stretch;
    list-style: none;
    padding: 0;
    max-width: 860px;
    margin: 0.25rem auto 2rem;
    counter-reset: intro-step;
}

.intro-highlights li {
    width: 100%;
    justify-content: flex-start;
    padding: 0.55rem 0.95rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(7, 80, 31, 0.14);
    box-shadow: 0 10px 24px rgba(7, 80, 31, 0.06);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.intro-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(106, 155, 40, 0.12);
    color: var(--secondary-green);
    font-weight: 800;
}

@media (max-width: 720px) {
    .intro-highlights {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 245, 237, 0.5) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(7, 80, 31, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-light);
    transition: left 0.5s ease;
    z-index: 0;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(7, 80, 31, 0.15);
    border-color: rgba(7, 80, 31, 0.3);
}

.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.feature-card p {
    color: var(--text-gray);
}

/* Why Us List Styles */
.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-us-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 245, 237, 0.3) 100%);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(7, 80, 31, 0.08);
}

.why-us-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(7, 80, 31, 0.12);
    border-color: rgba(7, 80, 31, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 245, 237, 0.4) 100%);
}

.why-us-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--tertiary-green) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(106, 155, 40, 0.3);
}

.why-us-content {
    flex: 1;
}

.why-us-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.why-us-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(7, 80, 31, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 80, 31, 0.4);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: white;
}

.btn-link {
    color: var(--primary-green);
    text-decoration: underline;
    padding: 0.5rem 1rem;
}

.btn-link:hover {
    color: var(--dark-green);
}

/* Customers Section */
.customers {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.customer-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quote-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 245, 237, 0.6) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid;
    border-image: var(--gradient-primary) 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quote-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(7, 80, 31, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.quote-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(7, 80, 31, 0.15);
}

.quote-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
}

/* Webinar Section */
.webinar {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
}

.webinar-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.webinar-date {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.webinar-date .label {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.9;
}

.webinar-date .date {
    font-size: 1.1rem;
}

.webinar-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.webinar-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.webinar .btn-primary {
    background-color: white;
    color: var(--primary-green);
}

.webinar .btn-primary:hover {
    background-color: var(--light-green);
}

.webinar .btn-link {
    color: white;
}

/* Whitepaper Section */
.whitepaper {
    padding: 4rem 0;
    background-color: var(--bg-white);
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(7, 80, 31, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-green);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 16px 48px rgba(7, 80, 31, 0.2);
    border-color: rgba(7, 80, 31, 0.3);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* News Section */
.news {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.news-category {
    color: var(--primary-green);
    font-weight: 500;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.news-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--bg-white) 100%);
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* About Section */
.about {
    display: none; /* Ausgeblendet, aber im Code behalten */
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
    scroll-margin-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

/* Footer */
.footer {
    background-color: #f0f0f0;
    color: var(--text-dark);
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-single-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: #000000;
    line-height: 1.6;
    text-align: center;
}

.footer-single-line a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-single-line a:hover {
    color: var(--primary-green);
}

.footer-single-line .copyright {
    color: #000000;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header (Topbar) auf dem Handy immer sichtbar fixieren */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    /* Beim Scrollen zu Ankern Platz für die fixe Topbar lassen */
    html {
        scroll-padding-top: 80px;
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(240, 240, 240, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-light);
        margin-top: 0.5rem;
        border-radius: 0;
        padding: 0.5rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-link:hover {
        background-color: var(--secondary-green);
        color: white !important;
    }

    .nav-button {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .hero {
        min-height: 500px;
        padding-top: 0;
    }

    /* Hero-Inhalt auf Handy unter der Topbar platzieren, nicht zu weit oben */
    .hero .container {
        align-items: flex-start;
        justify-content: center;
        padding-top: 5.5rem;
    }

    .hero-content-wrapper {
        padding: 2rem 1.5rem;
        margin-top: 0;
        padding-top: 1rem;
    }

    .hero-main-title {
        font-size: 1.75rem;
        margin-top: 0;
        margin-bottom: 1.25rem;
        line-height: 1.4;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        white-space: normal;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-main-title .typewriter-text {
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        min-height: 4rem;
    }

    .hero-title .typewriter-text {
        padding: 0.6rem 0;
        padding-right: 1rem;
        font-size: 0.95em;
        background: transparent;
        color: var(--secondary-green);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
        text-align: left;
    }

    .hero-cta {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        background: rgba(106, 155, 40, 0.9);
        border-radius: 6px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        color: white;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
    }

    .hero-cta-br-mobile {
        display: block;
    }

    .hero-animated-text {
        font-size: 1.5rem;
        min-height: 2.5rem;
    }

    .hero-cta {
        font-size: 1rem;
    }

    .efficiency-title {
        font-size: 1.75rem;
    }

    .efficiency-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .efficiency-number {
        font-size: 4rem;
        width: 140px;
    }

    .efficiency-label {
        font-size: 0.9rem;
    }

    .efficiency-text .section-intro {
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid,
    .testimonials-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .why-us-list {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .why-us-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .why-us-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .why-us-content h3 {
        font-size: 1.1rem;
    }

    .why-us-content p {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 10px;
    }

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

    .form-group:last-of-type {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .contact-form-wrapper .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-single-line {
        font-size: 0.75rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }

    .hero {
        min-height: 400px;
    }

    .hero .container {
        padding-top: 5rem;
    }

    .hero-content-wrapper {
        padding: 1.5rem 1rem;
        margin-top: 0;
        padding-top: 0.75rem;
    }

    .hero-main-title {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 1.25rem;
        line-height: 1.4;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        backdrop-filter: blur(5px);
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-main-title .typewriter-text {
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.25rem;
        line-height: 1.4;
        min-height: 3.5rem;
    }

    .hero-title .typewriter-text {
        padding: 0.5rem 0;
        padding-right: 0.9rem;
        font-size: 0.9em;
        background: transparent;
        color: var(--secondary-green);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
        border-radius: 6px;
        text-align: left;
    }

    .cursor {
        font-size: 1.1em;
    }

    .hero-cta {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        background: rgba(106, 155, 40, 0.95);
        border-radius: 6px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
        display: inline-flex;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        color: white;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
    }

    .hero-animated-text {
        font-size: 1.25rem;
        min-height: 2rem;
    }

    .hero-cta {
        font-size: 0.9rem;
    }

    .efficiency-title {
        font-size: 1.5rem;
    }

    .efficiency-number {
        font-size: 3rem;
        width: 110px;
    }

    .efficiency-label {
        font-size: 0.85rem;
    }

    .category-selects {
        flex-direction: column;
        gap: 0.75rem;
    }

    .category-select {
        min-width: 100%;
        width: 100%;
    }

    .webinar-title {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .planning-selection-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .selection-btn {
        min-width: 100%;
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .planning-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .planning-card-container {
        position: sticky;
        top: 120px;
        order: 2;
        align-self: flex-start;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    #leistungen .planning-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .planning-image {
        padding: 1.5rem;
    }

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

    .planning-card-content {
        padding: 0.75rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .planning-steps {
        order: 1;
    }

    .planning-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        white-space: normal;
    }

    .planning-title-leistungen {
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }

    .step-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .step-badge {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

    .planning-claim {
        font-size: 0.95rem;
    }

    .step-content p,
    .step-content .step-content-list li {
        font-size: 0.8rem;
    }
}
.timeline-section {
    padding: 4rem 1rem;
    background: #ffffff;
    text-align: center;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem; /* Gleicher Abstand wie zur Trennlinie */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--tertiary-green);
    border-radius: 2px;
    display: block;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}


/* Zentrale vertikale Trennlinie zwischen links und rechts */
.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e0e0e0;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    margin-left: -1.5rem; /* Kompensiert Grid-Gap */
}

/* Keine horizontalen Verbindungslinien mehr - alles vertikal zentriert */
.timeline-item::after {
    display: none;
}

/* Pfeile am Anfang und Ende */
.timeline-arrow {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-green);
    z-index: 2;
    animation: bounce 2s infinite;
    margin: 1rem 0;
}

.timeline-arrow-start {
    margin-bottom: 1rem;
}

.timeline-arrow-end {
    margin-top: 1rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.timeline-item {
    position: relative;
    display: contents; /* Ermöglicht Grid-Layout */
    margin-bottom: 0.25rem; /* Sehr kompakt */
}

/* Linke Seite: Nummer + Überschrift (Button-ähnlich) */
.timeline-item-left {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    align-self: start;
    background: transparent;
    border: 1px solid transparent;
}

.timeline-item-left:hover {
    background: rgba(106, 155, 40, 0.08);
    border-color: rgba(106, 155, 40, 0.2);
}

.timeline-item.active .timeline-item-left {
    background: var(--secondary-green);
    border-color: var(--secondary-green);
}

.timeline-item.active .timeline-item-left .timeline-content h3 {
    color: #000000;
}

.timeline-item.active .timeline-item-left .timeline-dot {
    background: white;
    color: var(--secondary-green);
}

/* Rechte Seite: Card-Bereich (fix, immer sichtbar) */
.timeline-item-right {
    grid-column: 2;
    position: sticky;
    top: 2rem;
    align-self: start;
    min-height: 400px;
    width: 100%;
}

/* Cards sind standardmäßig versteckt und übereinander positioniert */
.timeline-item-right .timeline-details {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Aktive Card wird angezeigt */
.timeline-item.active .timeline-item-right .timeline-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: absolute;
    pointer-events: auto;
    z-index: 10;
}



.timeline-details-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
    border: 1px solid #e0e0e0;
}


.timeline-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.timeline-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}


.timeline-item:last-child {
    margin-bottom: 0;
}

/* Dot mit Nummer für linke Seite */
.timeline-item-left .timeline-dot {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--secondary-green);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
}

.timeline-item:not(.active):hover .timeline-item-left .timeline-dot {
    background: var(--primary-green);
}

/* Content für linke Seite */
.timeline-item-left .timeline-content {
    flex: 1;
}

.timeline-item-left .timeline-content h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

/* Liste */
.timeline-content .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content .feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.timeline-content .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-section {
        padding: 3rem 0;
    }
    
    .timeline-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .timeline-container {
        padding: 1.5rem 0.5rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
        scroll-margin-top: 100px;
    }
    
    .timeline-dot {
        left: 30px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
        margin-top: 50px;
        padding: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 0.95rem;
    }
    
    .timeline-details {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
    }
    
    .timeline-details-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .timeline-image {
        max-height: 250px;
    }
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: #ffffff;
    scroll-margin-top: 80px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.services-title::after {
    content: '';
    display: block;
    width: 200px;
    height: 3px;
    background: var(--tertiary-green);
    margin: 1rem auto 0;
}

.services-intro {
    max-width: 600px;
    margin: 0.5rem auto 2.5rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Grid wie in deiner Grafik – zentral ein größeres Bild */
.services-grid {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
    grid-template-columns: repeat(3, 220px);
    grid-template-rows: auto auto auto;
}

/* zentrales Element größer */
.service-card-center {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    transform-origin: center;
}

/* Karten-Stil */
.service-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 0.75rem 0.75rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-bottom: 0.5rem;
    transition: transform 0.25s ease;
}

.service-card h3 {
    font-size: 0.95rem;
    margin: 0;
    color: #000000;
    font-weight: 600;
}

/* Hover-Effekt: größer + mehr Schatten */
.service-card:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(106, 155, 40, 0.2);
    border-color: var(--secondary-green);
}

.service-card:hover img {
    transform: scale(1.02);
}

.service-card.active {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(106, 155, 40, 0.2);
    border-color: var(--secondary-green);
}

/* mobil untereinander */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .service-card-center {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-title {
        font-size: 1.5rem;
    }
    
    .services-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card-center {
        grid-column: 1;
        grid-row: auto;
    }
    
    .service-card {
        padding: 0.6rem 0.6rem 0.8rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
}
.steps-section {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  .steps-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5em;
  }
  .steps-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2em;
    color: #555;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  .step-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  .step-box img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1em;
  }
  .step-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5em;
    color: #000000;
  }
  .step-box p {
    font-size: 0.95rem;
    color: #444;
  }

/* Jobs Page Styles */
.jobs-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
    margin-top: 70px;
}

.jobs-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.jobs-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.jobs-hero-small {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.jobs-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    scroll-margin-top: 80px;
}

.jobs-benefits-wrapper {
    max-width: 1000px;
    margin: 4rem auto 0 auto;
}

.jobs-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 245, 237, 0.4) 100%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(7, 80, 31, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(7, 80, 31, 0.15);
    border-color: rgba(7, 80, 31, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(230, 245, 237, 0.5) 100%);
}

.benefit-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    text-align: center;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.benefit-item {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    list-style: none;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.job-accordion {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(7, 80, 31, 0.1);
    margin-bottom: 1rem;
}

.job-accordion:hover {
    box-shadow: 0 6px 25px rgba(7, 80, 31, 0.12);
    border-color: rgba(7, 80, 31, 0.2);
}

.job-accordion.active {
    border-color: var(--secondary-green);
    box-shadow: 0 8px 30px rgba(7, 80, 31, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(7, 80, 31, 0.05) 0%, rgba(106, 155, 40, 0.05) 100%);
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.job-header:hover {
    background: linear-gradient(135deg, rgba(7, 80, 31, 0.08) 0%, rgba(106, 155, 40, 0.08) 100%);
}

.job-accordion.active .job-header {
    background: linear-gradient(135deg, rgba(7, 80, 31, 0.1) 0%, rgba(106, 155, 40, 0.1) 100%);
    border-bottom: 2px solid var(--tertiary-green);
}

.job-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 1.5rem;
}

.job-accordion-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.job-accordion.active .job-accordion-icon {
    transform: rotate(45deg);
    color: var(--primary-green);
}

.job-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.3;
}

.job-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.job-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.job-badge-fulltime {
    background: var(--secondary-green);
    color: white;
}

.job-badge-parttime {
    background: var(--tertiary-green);
    color: white;
}

.job-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.job-accordion.active .job-content {
    max-height: 5000px;
    padding: 2rem;
}

.job-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.job-detail-item {
    color: var(--text-gray);
    font-size: 1rem;
}

.job-detail-item strong {
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.job-description {
    margin-bottom: 2rem;
}

.job-description h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.job-description h4:first-child {
    margin-top: 0;
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.job-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.job-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.job-apply-intro {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
    margin: 1.5rem 0 1rem 0;
    font-style: normal;
    padding: 0.5rem 1rem;
    background-color: var(--tertiary-green);
    border-radius: 20px;
    display: inline-block;
    border-radius: 4px;
}

.job-apply-highlight {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 14px 0 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border-left: 4px solid #4ade80;
    background: rgba(106, 155, 40, 0.12);
    font-size: 0.95rem;
    line-height: 1.35;
}

.job-apply-highlight__icon {
    flex: 0 0 auto;
    margin-top: 1px;
    font-size: 1.05rem;
    opacity: 0.9;
}

.job-apply-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--secondary-green);
    color: white !important;
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.3);
    border: none;
    cursor: pointer;
}

.job-apply-btn:hover {
    transform: translateY(-1px);
    background-color: var(--secondary-green);
    color: white !important;
    box-shadow: 0 2px 8px rgba(106, 155, 40, 0.3);
}

.job-apply-btn:active {
    background-color: var(--tertiary-green);
    color: white !important;
}

/* Responsive Jobs Page */
@media (max-width: 768px) {
    .jobs-hero {
        padding: 6rem 0 3rem;
        margin-top: 60px;
    }

    .jobs-hero-title {
        font-size: 2rem;
    }

    .jobs-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 0.75rem;
    }

    .jobs-hero-small {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .jobs-section {
        padding: 3rem 0;
    }

    .jobs-benefits-wrapper {
        margin: 3rem auto 0 auto;
    }

    .jobs-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .benefit-title {
        font-size: 0.9rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    .jobs-list {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .job-header {
        padding: 1.25rem 1.5rem;
    }

    .job-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .job-accordion.active .job-content {
        padding: 1.5rem;
    }

    .job-title {
        font-size: 1.5rem;
    }

    .job-content {
        padding: 1.5rem;
    }

    .job-details {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .job-description h4 {
        font-size: 1.1rem;
    }

    .job-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .jobs-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.25rem 1rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-title {
        font-size: 0.85rem;
    }

    .benefit-item {
        font-size: 0.8rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-green);
}

.modal-content h2 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.modal-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    white-space: nowrap;
}


@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 2rem 1.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content p {
        font-size: 1rem;
        white-space: normal;
    }
}
.elearning-format-icons {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .format-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #2f2f2f;
    font-weight: 500;
    letter-spacing: 0.2px;
  }
  
  .format-item i {
    font-size: 1.25rem;
    color: #6bbf59; /* euer Grün */
  }
  
  .elearning-format-text {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #6a6a6a;
  }
  