:root {
    --primary-color: #83C170;
    --primary-dark: #6ba359;
    --primary-light: #9cd189;
    --secondary-color: #83C170;
    --text-dark: #14262E;
    --text-light: #5a6c73;
    --text-white: #ffffff;
    --text-light-alt: #c2c2c2;
    --bg-light: #d6d7de;
    --bg-dark: #4a4a4a;
    --bg-white: #ffffff;
    --border-color: #b8b9c3;
    --success-color: #83C170;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --max-width: 1280px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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);
    overflow-x: hidden;
}

/* Verhindert horizontales Scrollen durch lange deutsche Wörter */
h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(214, 215, 222, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.625rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(131, 193, 112, 0.08);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white) !important;
    padding: 0.625rem 1.75rem !important;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(131, 193, 112, 0.25);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--bg-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(131, 193, 112, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

main {
    margin-top: 70px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    background:
        linear-gradient(135deg, rgba(20, 38, 46, 0.85) 0%, rgba(20, 38, 46, 0.6) 50%, rgba(131, 193, 112, 0.3) 100%),
        url('img/hero.jpg');
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(131, 193, 112, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(131, 193, 112, 0.2);
    border: 1px solid rgba(131, 193, 112, 0.5);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: var(--spacing-md);
    color: var(--bg-white);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(131, 193, 112, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--bg-white);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(131, 193, 112, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(131, 193, 112, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-card-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.hero-card span {
    color: var(--bg-white);
    font-size: 1rem;
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

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

.hero-scroll svg {
    opacity: 0.7;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(131, 193, 112, 0.3);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.benefits {
    padding: var(--spacing-xl) var(--spacing-md);
    padding-bottom: calc(var(--spacing-xl) + 3rem);
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(131, 193, 112, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.benefits-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(131, 193, 112, 0.1);
    border: 1px solid rgba(131, 193, 112, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.benefits-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

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

.benefit-card {
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(131, 193, 112, 0.2);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(131, 193, 112, 0.15);
    line-height: 1;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.products {
    padding: var(--spacing-xl) var(--spacing-md);
    padding-top: calc(var(--spacing-xl) + 2rem);
    background-color: var(--bg-white);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.products-header-left {
    flex: 1;
}

.products-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(131, 193, 112, 0.1);
    border: 1px solid rgba(131, 193, 112, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.products-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.products-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
}

.products-header-right {
    flex-shrink: 0;
}

.products-configs-wrapper {
    margin-top: var(--spacing-xl);
}

.products-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: calc(var(--spacing-xl) + 2rem);
}

.product-main-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.product-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-main-visual {
    position: relative;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.product-main-card:hover .product-main-image {
    transform: scale(1.08);
}

.product-main-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 38, 46, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

.product-main-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.product-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 1;
    color: var(--bg-white);
}

.product-main-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.product-main-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.product-main-specs {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.product-main-specs span {
    padding: 0.5rem 1rem;
    background: rgba(131, 193, 112, 0.9);
    color: var(--bg-white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.product-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-detail-btn:hover {
    background: var(--bg-white);
    color: var(--text-dark);
    transform: translateX(5px);
}

.product-detail-btn svg {
    transition: transform 0.3s ease;
}

.product-detail-btn:hover svg {
    transform: translateX(3px);
}

.product-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.product-modal.active {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 38, 46, 0.9);
    backdrop-filter: blur(10px);
}

.product-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 24px;
    max-width: 1400px;
    max-height: 90vh;
    width: 95%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.product-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    overflow: hidden;
    flex: 1;
}

.product-modal-images {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

.product-modal-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-modal-info {
    padding: 3rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.product-modal-category {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-modal-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-modal-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-modal-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-modal-sizes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.size-option {
    padding: 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
}

.size-option:hover {
    border-color: var(--primary-color);
    background: rgba(131, 193, 112, 0.1);
    color: var(--primary-color);
}

.product-modal-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-modal-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

.product-modal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-modal-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.services {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #f8f8f8;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.services-view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E86A33;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.services-view-all:hover {
    gap: 0.75rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card-wrapper {
    position: relative;
    cursor: pointer;
}

.service-card {
    background: transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 16 / 9;
    width: 100%;
}

.service-card-wrapper:hover .service-card {
    transform: translateY(-8px);
}

.service-card-image-wrapper {
    width: 100%;
    height: calc(100% + 100px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: url(#card-notch-shape);
}


.service-card-wrapper:hover .service-card-image-wrapper {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.service-tag {
    background: var(--bg-white);
    text-align: right;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-card-footer {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 5rem;
}

.service-content h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--bg-white);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-arrow {
    position: absolute;
    bottom: 0rem;
    right: 0rem;
    width: 56px;
    height: 56px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 3;
}

.service-arrow svg {
    color: var(--bg-white);
    transition: var(--transition);
}

.service-card-wrapper:hover .service-arrow {
    background: var(--primary-color);
    transform: rotate(-45deg);
}

.about {
    padding: var(--spacing-xl) var(--spacing-md);
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.stat {
    text-align: center;
    padding: var(--spacing-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: url('img/products/JEPAA_Bruessel_2021_b.jpg') center/cover no-repeat;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.youtube-videos {
    padding: var(--spacing-xl) var(--spacing-md);
    /*background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);*/
    background: #f8f8f8;
}

.videos-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.videos-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(131, 193, 112, 0.1);
    border: 1px solid rgba(131, 193, 112, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.videos-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    margin-top: var(--spacing-sm);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: var(--spacing-lg);
}

.video-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-light);
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Video Consent Overlay */
.video-consent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.video-consent-content {
    max-width: 280px;
}

.video-consent-icon {
    width: 48px;
    height: 48px;
    color: #ff0000;
    margin-bottom: 1rem;
}

.video-consent-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-consent-content p a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.video-consent-content p a:hover {
    color: var(--primary-light);
}

.video-consent-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-bottom: 0.75rem;
}

.video-consent-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.video-consent-remember {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    cursor: pointer;
}

.video-consent-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Video Consent Mobile - kompaktere Darstellung */
@media (max-width: 768px) {
    .video-consent-overlay {
        padding: 0.75rem;
    }

    .video-consent-content {
        max-width: 100%;
    }

    .video-consent-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.4rem;
    }

    .video-consent-content p {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .video-consent-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        border-radius: 6px;
    }

    .video-consent-remember {
        font-size: 0.65rem;
        gap: 0.3rem;
    }

    .video-consent-remember input[type="checkbox"] {
        width: 12px;
        height: 12px;
    }
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.videos-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.contact {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-white);
}

.contact h2.section-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info {
    padding-right: var(--spacing-md);
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-details {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(131, 193, 112, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(131, 193, 112, 0.15) 0%, rgba(131, 193, 112, 0.08) 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    margin: 0.25rem 0;
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    scroll-margin-top: 90px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(131, 193, 112, 0.15);
}

.contact-form button {
    margin-top: var(--spacing-sm);
    width: 100%;
    padding: 1.1rem 2rem;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.form-message-success {
    background: rgba(131, 193, 112, 0.15);
    border: 1px solid rgba(131, 193, 112, 0.4);
    color: var(--primary-dark);
}

.form-message-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.form-message-icon {
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.form-message-success .form-message-icon {
    color: var(--primary-color);
}

.form-message-error .form-message-icon {
    color: #dc3545;
}

.form-message-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==================== Unterseiten (Kauf & Leihe) ==================== */

.page-hero {
    padding: calc(var(--spacing-xl) + 70px) var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(20, 38, 46, 0.9) 0%, rgba(20, 38, 46, 0.7) 50%, rgba(131, 193, 112, 0.4) 100%),
                url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--bg-white);
}

.page-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(131, 193, 112, 0.2);
    border: 1px solid rgba(131, 193, 112, 0.5);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-content {
    padding: var(--spacing-xl) var(--spacing-md);
}

/* Vorteile Cards (Kauf & Leihe) */
.purchase-benefits,
.rental-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
}

.purchase-benefit-card,
.rental-benefit-card {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition);
}

.purchase-benefit-card:hover,
.rental-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(131, 193, 112, 0.3);
}

.purchase-benefit-icon,
.rental-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.purchase-benefit-card h3,
.rental-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.purchase-benefit-card p,
.rental-benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: var(--spacing-lg);
}

/* Produkte Grid (Kauf & Leihe Seite) */
.purchase-products,
.rental-products {
    margin-bottom: var(--spacing-xl);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.product-card-vertical {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(131, 193, 112, 0.3);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-vertical:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-card-content > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-card-content .btn {
    margin-top: auto;
    text-align: center;
    justify-content: center;
}

/* Alte Produkt-Cards (falls noch genutzt) */
.purchase-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.purchase-product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.purchase-product-image {
    position: relative;
    overflow: hidden;
}

.purchase-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.purchase-product-card:hover .purchase-product-image img {
    transform: scale(1.05);
}

.purchase-product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.purchase-product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.purchase-product-info > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.purchase-product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.purchase-product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.purchase-product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Prozess-Schritte (Leihe-Seite) */
.rental-process {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: #f8f8f8;
    border-radius: 24px;
}

.rental-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.rental-step {
    text-align: center;
    position: relative;
}

.rental-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--primary-color);
}

.rental-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.rental-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.rental-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Anwendungsbereiche (Leihe-Seite) */
.rental-usecases {
    margin-bottom: var(--spacing-xl);
}

.rental-usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.rental-usecase {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--bg-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.rental-usecase:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(131, 193, 112, 0.15);
}

.rental-usecase-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.rental-usecase h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.rental-usecase p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Bereiche */
.purchase-cta,
.rental-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: var(--spacing-lg);
    text-align: center;
}

.purchase-cta-content,
.rental-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.purchase-cta h2,
.rental-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.75rem;
}

.purchase-cta p,
.rental-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.purchase-cta .btn-primary,
.rental-cta .btn-primary {
    background: var(--bg-white);
    color: var(--primary-dark);
    border-color: var(--bg-white);
}

.purchase-cta .btn-primary:hover,
.rental-cta .btn-primary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
    border-color: var(--text-dark);
}

/* Nav Active State */
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    transform: scaleX(1);
}

/* ==================== Product Cards with Prices ==================== */

.product-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(131, 193, 112, 0.4);
    z-index: 2;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-light);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.product-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.product-card-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    height: 48px;
    line-height: 44px;
    display: block;
    box-sizing: border-box;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.product-card-actions .btn-primary {
    background: var(--primary-color);
    color: white;
}

.product-card-actions .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.product-card-actions .btn-details {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-dark);
}

.product-card-actions .btn-details:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(131, 193, 112, 0.08);
}

/* ==================== Product Detail Modals ==================== */

.product-detail-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-detail-modal.active {
    display: flex;
}

.product-detail-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 38, 46, 0.85);
    backdrop-filter: blur(8px);
}

.product-detail-modal .modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 24px;
    max-width: 1000px;
    max-height: 90vh;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    z-index: 1;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-detail-modal .modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-dark);
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-detail-modal .modal-close:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.product-detail-modal .modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
}

.product-detail-modal .modal-image {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

.product-detail-modal .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.product-detail-modal .modal-info {
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-category {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-detail-modal .modal-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.modal-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-price-box {
    background: linear-gradient(135deg, rgba(131, 193, 112, 0.1) 0%, rgba(131, 193, 112, 0.05) 100%);
    border: 1px solid rgba(131, 193, 112, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.modal-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.modal-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.modal-price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.product-detail-modal .modal-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-specs,
.modal-included {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modal-specs li,
.modal-included li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.5;
}

.modal-specs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.modal-included li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.modal-specs li strong {
    color: var(--text-dark);
}

.modal-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-light);
}

.modal-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .product-detail-modal .modal-content {
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }

    .product-detail-modal .modal-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
        flex: 1;
        overflow: hidden;
    }

    .product-detail-modal .modal-image {
        max-height: 200px;
        flex-shrink: 0;
    }

    .product-detail-modal .modal-image img {
        min-height: 200px;
        height: 200px;
    }

    .product-detail-modal .modal-info {
        padding: 1.5rem;
        padding-bottom: 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-detail-modal .modal-info h2 {
        font-size: 1.5rem;
    }
}

/* Responsive für Unterseiten */
@media (max-width: 968px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .purchase-products-grid {
        grid-template-columns: 1fr;
    }

    .purchase-product-card {
        grid-template-columns: 1fr;
    }

    .rental-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 968px) {
    .rental-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .rental-process-steps {
        grid-template-columns: 1fr;
    }

    .purchase-benefits,
    .rental-benefits {
        grid-template-columns: 1fr;
    }

    .rental-usecases-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--bg-white);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    color: var(--text-light-alt);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-visual {
        display: none;
    }

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

    .products-main-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .configs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    /* Formular zuerst auf mobilen Geräten anzeigen */
    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md) 0;
        gap: 0;
    }

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

    .nav-menu li {
        padding: var(--spacing-sm) 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .benefits-grid,
    .products-grid,
    .config-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Mobile Product Cards - 768px */
    .product-main-card {
        min-height: 420px;
    }

    .product-main-content {
        padding: 1.5rem;
    }

    .product-main-content h3 {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
    }

    .product-main-content p {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }

    .product-main-specs {
        gap: 0.5rem;
    }

    .product-main-specs span {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
    }

    .product-detail-btn {
        margin-top: 0.875rem;
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    /* Mobile Product Cards - Static Layout */
    .product-main-card {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .product-main-visual {
        position: relative;
        height: 200px;
        flex-shrink: 0;
    }

    .product-main-image {
        height: 100%;
    }

    .product-main-visual::after {
        display: none;
    }

    .product-main-content {
        position: static;
        padding: 1.25rem;
        background: linear-gradient(135deg, rgba(20, 38, 46, 0.95) 0%, rgba(20, 38, 46, 0.9) 100%);
        color: var(--bg-white);
    }

    .product-main-content h3 {
        font-size: 1.35rem;
        margin-bottom: 0.375rem;
    }

    .product-main-content p {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-main-specs {
        gap: 0.4rem;
    }

    .product-main-specs span {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .product-detail-btn {
        margin-top: 0.75rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Mobile Service Cards */
    .service-card {
        aspect-ratio: 4 / 3;
    }

    .service-card-image-wrapper {
        height: calc(100% + 70px);
        clip-path: none;
        border-radius: 16px;
    }

    .service-arrow {
        width: 44px;
        height: 44px;
        bottom: -22px;
        right: 1rem;
    }

    .service-arrow svg {
        width: 18px;
        height: 18px;
    }

    .service-card-footer {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 4rem;
    }

    .service-content h3 {
        font-size: 1.25rem;
    }

    .service-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .service-card-tags {
        top: 0.75rem;
        left: 0.75rem;
    }

    /* Mobile Modals - Vertical Layout */
    .product-modal-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 180px 1fr;
    }

    .product-modal-images {
        max-height: 180px;
    }

    .product-modal-images img {
        height: 180px;
        object-fit: cover;
    }

    .product-modal-info {
        padding: 1.25rem;
        padding-bottom: 2rem;
        max-height: none;
        overflow-y: auto;
    }

    .product-modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }

    .product-modal-info h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .product-modal-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .product-modal-info h3 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .product-modal-list li {
        padding: 0.4rem 0;
        padding-left: 1.75rem;
        font-size: 0.9rem;
    }

    .product-modal-sizes {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .size-option {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .product-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

/* ============================================
   Cookie Banner Styles
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.cookie-banner-text h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--primary-dark);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0;
}

.cookie-banner-actions button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

#cookie-accept-all {
    background: var(--primary-color);
    color: white;
}

#cookie-accept-all:hover {
    background: var(--primary-dark);
}

#cookie-accept-essential {
    background: var(--bg-light);
    color: var(--text-dark);
}

#cookie-accept-essential:hover {
    background: var(--border-color);
}

#cookie-settings-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

#cookie-settings-btn:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Cookie Settings Panel */
.cookie-settings {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-info {
    flex: 1;
    padding-right: 1rem;
}

.cookie-setting-info h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-setting-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

#cookie-save {
    margin-top: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

#cookie-save:hover {
    background: var(--primary-dark);
}

/* Cookie Settings Toggle (Icon unten links) */
#cookie-settings-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(131, 193, 112, 0.4);
    transition: var(--transition);
    z-index: 9999;
}

#cookie-settings-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

#cookie-settings-toggle svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Mobile Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 1.25rem 1rem;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-banner-actions button {
        width: 100%;
        padding: 0.875rem 1rem;
    }

    .cookie-setting-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-setting-info {
        padding-right: 0;
    }

    .cookie-toggle {
        align-self: flex-start;
    }

    #cookie-settings-toggle {
        bottom: 15px;
        left: 15px;
        width: 44px;
        height: 44px;
    }

    #cookie-settings-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   Legal Modal (Datenschutz, Impressum)
   ============================================ */

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.legal-modal.active {
    display: flex;
}

.legal-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.legal-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.legal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 1;
}

.legal-modal-close:hover {
    background: var(--primary-color);
    color: white;
}

.legal-modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.legal-modal-body h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.legal-modal-body h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-modal-body h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-modal-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-modal-body ul {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-modal-body ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-modal-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-modal-body a:hover {
    color: var(--primary-dark);
}

.legal-modal-updated {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Footer Datenschutz Link */
.footer-bottom a {
    color: var(--text-light-alt);
    text-decoration: underline;
    transition: var(--transition);
}

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

/* Legal Modal Responsive */
@media (max-width: 768px) {
    .legal-modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }

    .legal-modal-body {
        padding: 1.5rem;
    }

    .legal-modal-body h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .legal-modal-body h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .legal-modal-body h4 {
        font-size: 0.95rem;
    }

    .legal-modal-body p,
    .legal-modal-body ul {
        font-size: 0.9rem;
    }

    .legal-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}