/* ==================== DESIGN SYSTEM ==================== */
:root {
    /* === COLORS - Premium Palette === */
    --primary-green: #2D7D31;
    --primary-green-dark: #1B5E20;
    --primary-green-light: #66BB6A;
    --primary-green-ultra-light: #E8F5E9;
    
    --primary-blue: #1976D2;
    --primary-blue-dark: var(--primary-blue);
    --primary-blue-light: #64B5F6;
    
    --accent-gold: var(--treffler-gold);
    --accent-orange: #FF9800;
    
    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFBFC;
    --bg-tertiary: #F5F7FA;
    --bg-gradient: linear-gradient(135deg, #FAFBFC 0%, #F0F4F8 100%);
    
    /* Surfaces */
    --surface-primary: #FFFFFF;
    --surface-secondary: #FAFBFC;
    --surface-elevated: #FFFFFF;
    
    /* Text */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #64748B;
    --text-muted: #94A3B8;
    
    /* Partner Colors */
    --gst-green: #2D7D31;
    --rumex-blue: var(--rumex-blue);
    --bb-green: var(--bb-green);
    --treffler-gold: #2E7D32;
    
    /* === SPACING (8px base) === */
    --spacing-1: 8px;
    --spacing-2: 16px;
    --spacing-3: 24px;
    --spacing-4: 32px;
    --spacing-5: 40px;
    --spacing-6: 48px;
    --spacing-8: 64px;
    --spacing-10: 80px;
    --spacing-12: 96px;
    
    /* === RADIUS === */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-pill: 999px;
    
    /* === SHADOWS - Premium === */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    --shadow-inner: inset 0 2px 4px rgba(15, 23, 42, 0.06);
    
    /* Green Glow */
    --shadow-green: 0 4px 14px 0 rgba(45, 125, 49, 0.2);
    --shadow-green-lg: 0 10px 30px rgba(45, 125, 49, 0.25);
    
    /* === BORDERS - Premium === */
    --border-light: 1px solid rgba(203, 213, 225, 0.5);
    --border-medium: 1px solid rgba(203, 213, 225, 0.8);
    --border-strong: 1px solid rgba(148, 163, 184, 0.8);
    --border-focus: 2px solid var(--primary-green);
    
    /* === TRANSITIONS === */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* === Z-INDEX === */
    --z-dropdown: 1000;
    --z-sticky: 1100;
    --z-fixed: 1200;
    --z-modal: 2000;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Smooth Scroll Behavior */
html {
    scroll-padding-top: 100px;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {    background: var(--bg-primary);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 92px;
    border-bottom: var(--border-soft);
}

.navbar.scrolled {
    height: 68px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    background: var(--surface-primary);
    padding: 8px 14px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
}

.logo {
    height: 62px;
    max-width: 320px;
    padding: 0;
    transition: all var(--transition-base);
    object-fit: contain;
    filter: none;
}

.navbar.scrolled .logo {
    height: 46px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-4);
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-base);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-green);
    color: white !important;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(45, 125, 49, 0.22);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(45, 125, 49, 0.28);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--spacing-2);
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    background: 
         linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 0.98) 100%);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary);
    padding: calc(92px + var(--spacing-8)) 5% var(--spacing-10);
    position: relative;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-3);
    border: var(--border-light);
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-3);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: var(--spacing-5);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-3);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    height: 50px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {    background: white;    border: 2px solid var(--primary-green);    color: var(--primary-green) !important;
    color: white;
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.10);
    color: white;
    border-color: var(--text-primary);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--text-primary);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--spacing-10) 5%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-8);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(45, 125, 49, 0.95), rgba(21, 101, 192, 0.95));
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-2);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: var(--spacing-2);
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ==================== FEATURES ==================== */
.features {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(45, 125, 49, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 125, 49, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green-ultra-light);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-3);
    font-size: 2.5rem;
    color: var(--primary-green);
}

.feature-media {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.feature-card:hover .feature-media img {
    transform: scale(1.05);
}

.feature-card h3 {
    padding: var(--spacing-3) var(--spacing-4) var(--spacing-1);
    font-size: 1.3rem;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    padding: 0 var(--spacing-4) var(--spacing-4);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== PARTNERS ==================== */
.partners {
    background: #ffffff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: var(--border-light);
    position: relative;
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-green-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 125, 49, 0.3);
}

.partner-card:hover::after {
    opacity: 1;
}

.partner-image {
    height: 280px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: rgba(255, 255, 255, 0.02);
}

.partner-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.62));
    pointer-events: none;
}

.partner-content {
    padding: var(--spacing-4);
}

.partner-tag {
    display: inline-block;
    background: var(--primary-green-ultra-light);
    color: var(--primary-green-dark);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-2);
    border: 1px solid rgba(45, 125, 49, 0.25);
    letter-spacing: 0.3px;
}

.partner-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-2);
    color: var(--text-primary);
    font-weight: 700;
}

.partner-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3);
    font-size: 0.95rem;
    line-height: 1.7;
}

.partner-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tag {
    background: var(--bg-tertiary);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
    border: var(--border-light);
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-tag:hover {
    background: var(--surface-primary);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

/* ==================== PRODUCTS ==================== */
.products {
    background: var(--bg);
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-6);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border: var(--border-medium);
    background: var(--surface-primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-secondary);
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: white;
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: var(--border-light);
}

.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(45, 125, 49, 0.3);
}

.product-image {
    height: 280px;
    background: linear-gradient(135deg, rgba(45, 125, 49, 0.40), rgba(21, 101, 192, 0.40));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: 0.15;
}

.product-info {
    padding: var(--spacing-4);
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-2);
    color: var(--text-primary);
    font-weight: 600;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-2);
    line-height: 1.7;
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.benefit-icon {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ==================== SERVICES ==================== */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: var(--border-light);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 125, 49, 0.25);
}

.service-media {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card h3 {
    padding: var(--spacing-3) var(--spacing-4) var(--spacing-1);
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
}

.service-card p {
    padding: 0 var(--spacing-4) var(--spacing-4);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== CONTACT ==================== */
.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
    font-weight: 700;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: white;
    box-shadow: var(--shadow-green);
}

.contact-item span {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

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

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

.contact-form {
    background: var(--surface-primary);
    padding: var(--spacing-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: var(--border-light);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-blue-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.form-group {
    margin-bottom: var(--spacing-3);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: var(--border-medium);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 125, 49, 0.1);
    background: white;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(45, 125, 49, 0.60);
    box-shadow: 0 0 0 4px rgba(45, 125, 49, 0.18);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3);
}

.submit-btn {
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(45, 125, 49, 0.28);
    background: var(--primary-green-dark);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--surface-primary);
    color: var(--text-primary);
    padding: var(--spacing-8) 5% var(--spacing-4);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-5);
    max-width: 1200px;
    margin: 0 auto var(--spacing-5);
}

.footer-brand img {
    height: 120px;
    margin-bottom: var(--spacing-3);
    filter: none;
    opacity: 0.95;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-3);
    color: var(--primary-green);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-4);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-fixed);
    border: 3px solid white;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:active {
    transform: scale(1.05);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ==================== RUMEX SECTION ==================== */
.rumex-section {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

.rumex-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rumex-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85) saturate(1.1);
}

.rumex-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.30) 0%, rgba(45, 125, 49, 0.22) 100%);
}

.rumex-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.rumex-logo-hero {
    height: 80px;
    margin-bottom: 30px;
    filter: none;
}

.rumex-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.rumex-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.rumex-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.rumex-badge {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 600;
}

.rumex-badge-dark {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.rumex-problem,
.rumex-solution,
.rumex-products,
.rumex-showcase {
    padding: 100px 0;
}

.rumex-problem {
    background: transparent;
}

.rumex-solution {
    background: transparent;
}

.rumex-products {
    background: transparent;
}

.rumex-showcase {
    background: transparent;
}

.rumex-problem-grid,
.rumex-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rumex-label {
    display: inline-block;
    background: rgba(45, 125, 49, 0.18);
    color: #eaffea;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    border: 1px solid rgba(45, 125, 49, 0.25);
}

.rumex-label.light {
    background: rgba(21, 101, 192, 0.20);
    border-color: rgba(21, 101, 192, 0.30);
}

.rumex-problem-text h2,
.rumex-solution-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rumex-problem-text p,
.rumex-solution-text p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.rumex-problem-list {
    list-style: none;
    padding: 0;
}

.rumex-problem-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rumex-problem-image,
.rumex-solution-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: var(--border-soft);
}

.rumex-problem-image img,
.rumex-solution-image img {
    width: 100%;
    display: block;
}

.rumex-ki-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rumex-ki-label {
    background: rgba(21, 101, 192, 0.85);
    color: var(--text-primary);
    padding: 5px 12px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.rumex-ki-label.secondary {
    opacity: 0.92;
    filter: saturate(0.95);
}

.rumex-tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rumex-tech-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.rumex-tech-icon {
    font-size: 2rem;
    line-height: 1;
}

.rumex-tech-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.rumex-tech-item span {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.rumex-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
}

.rumex-product-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.rumex-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 125, 49, 0.35);
}

.rumex-product-card.featured {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.12) 0%, rgba(45, 125, 49, 0.10) 100%);
    border-color: rgba(45, 125, 49, 0.35);
}

.rumex-product-image {
    height: 280px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.rumex-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rumex-product-content {
    padding: var(--spacing-4);
}

.rumex-product-tag {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--spacing-2);
}

.rumex-product-badge {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
}

.rumex-product-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.rumex-product-subtitle {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.rumex-product-specs {
    list-style: none;
    margin-bottom: 20px;
}

.rumex-product-specs li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
}

.rumex-product-specs li strong {
    color: var(--text-primary);
}

.rumex-product-targets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.rumex-product-targets span {
    background: rgba(45, 125, 49, 0.14);
    color: #dfffe0;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    border: 1px solid rgba(45, 125, 49, 0.18);
}

.rumex-stats {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.70) 0%, rgba(0, 0, 0, 0.92) 100%);
    padding: var(--spacing-10) 0;
}

.rumex-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-5);
    text-align: center;
}

.rumex-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green-light);
    margin-bottom: 10px;
}

.rumex-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.rumex-cta-buttons {
    display: flex;
    gap: var(--spacing-2);
    justify-content: center;
    margin-top: var(--spacing-5);
    flex-wrap: wrap;
}

.rumex-cta-buttons .btn-primary {
    color: white;
}

/* ==================== BB UMWELTTECHNIK ==================== */
.products-content {
    background: var(--bg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.product-section {
    margin-bottom: 60px;
}

.product-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-section .section-header h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.product-section .section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.product-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.feature-block {
    padding: 20px 0;
}

.feature-block h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.feature-block strong {
    color: var(--text-primary);
}

.product-overview {
    margin-top: 50px;
}

.cta-box {
    margin-top: 40px;
}

.cta-box .btn-light {
    display: inline-block;
    transition: transform var(--transition-base);
}

.cta-box .btn-light:hover {
    transform: translateY(-3px);
}

.partner-card--bbu .partner-tag {
    display: inline-block;
    background: var(--primary-green-ultra-light);
    color: var(--primary-green-dark);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-2);
    border: 1px solid rgba(45, 125, 49, 0.25);
    letter-spacing: 0.3px;
}

.partner-card--bbu .partner-image {
    height: 280px;
    background: radial-gradient(1200px 300px at 20% 0%, rgba(45, 125, 49, 0.22), transparent 60%),
                radial-gradient(900px 260px at 80% 20%, rgba(21, 101, 192, 0.18), transparent 55%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.25));
}

.partner-card--bbu .partner-image img {
    filter: contrast(1.05) saturate(0.95) brightness(0.88);
}

/* ==================== TREFFLER ==================== */
.treffler-logo-hero {
    height: 72px;
    width: auto;
    max-width: min(520px, 90vw);
    margin: 0 auto 28px;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    filter: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--spacing-10);
    margin-top: 40px;
}

.product-card-image {
    height: 280px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==================== MODALS ==================== */
/* Lightbox for images */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.lightbox-image {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

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

/* Make product images clickable */
.product-card-image,
.mrx-card-media,
.partner-image {
    cursor: pointer;
    transition: transform var(--transition-base);
}

.product-card-image:hover,
.mrx-card-media:hover,
.partner-image:hover {
    transform: scale(1.02);
}

/* Enhanced card hover effects */
.product-card,
.mrx-card,
.partner-card {
    transition: all var(--transition-base);
}

.product-card:hover,
.mrx-card:hover,
.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Smooth scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.mrx-section {
    padding: 90px 5%;
    background: var(--bg-2);
}

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

.mrx-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.mrx-section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.mrx-section-head p {
    margin: 10px 0 0;
    color: var(--text-primary);
    max-width: 70ch;
    line-height: 1.6;
}

.mrx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-8);
}

.mrx-card {
    background: var(--surface-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mrx-card-media {
    position: relative;
    height: 280px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.mrx-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mrx-card-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.75) 100%);
}

.mrx-card-body {
    position: relative;
    padding: 20px 22px 22px;
}

.mrx-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.mrx-card-title {
    margin: 14px 0 10px;
    color: var(--text-primary);
    font-size: 1.28rem;
    letter-spacing: -0.01em;
}

.mrx-card-text {
    margin: 0 0 14px;
    color: var(--text-primary);
    line-height: 1.65;
}

.mrx-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 18px;
}

.mrx-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text-primary);
    font-size: 0.85rem;
}

.mrx-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.mrx-btn {
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
}

.mrx-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--text-primary);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
}

.mrx-btn-primary {
    background: rgba(255, 255, 255, 0.10);
}

.mrx-btn-primary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.mrx-modal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    z-index: var(--z-modal);
}

.mrx-modal-backdrop.active {
    display: flex;
}

.mrx-modal {
    width: min(980px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: var(--bg-2);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.7);
}

.mrx-modal-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mrx-modal-top h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.15rem;
}

.mrx-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.mrx-icon-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: rotate(90deg);
}

.modal-content,
.mrx-modal-hero {
    padding: 18px 20px;
    color: var(--text-primary);
    line-height: 1.65;
}

.modal-content h4,
.mrx-modal-hero h4 {
    margin: 18px 0 8px;
    color: var(--text-primary);
}

.modal-content ul,
.mrx-modal-hero ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.modal-content li,
.mrx-modal-hero li {
    margin: 6px 0;
}

.mrx-modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.mrx-modal-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.02);
}

.modal-tabs,
.mrx-modal .modal-tabs {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-tabs .tab-btn,
.mrx-modal .tab-btn {
    padding: 12px 28px;
    border: var(--border-medium);
    background: var(--surface-primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-secondary);
}

.modal-tabs .tab-btn:hover,
.mrx-modal .tab-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    color: var(--text-primary);
}

.modal-tabs .tab-btn.active,
.mrx-modal .tab-btn.active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.tab-content {
    padding-top: 6px;
}

.modal-body {
    padding: 20px;
}

.kv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-3);
}

.kv .item {
    padding: var(--spacing-2);
}

.kv .k {
    color: var(--text-primary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.kv .v {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .rumex-problem-grid,
    .rumex-solution-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-5);
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }
    
    .mrx-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 92px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-4);
        gap: var(--spacing-2);
        transform: translateY(-100%);
        transition: transform var(--transition-base);
        box-shadow: var(--shadow-lg);
        border-bottom: var(--border-light);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .navbar.scrolled {
        height: 64px;
    }
    
    .logo {
        height: 52px;
    }
    
    .navbar.scrolled .logo {
        height: 40px;
    }
}

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: calc(92px + var(--spacing-6)) 5% var(--spacing-8);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

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

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

    .section {
        padding: var(--spacing-8) 5%;
    }

    .section-header {
        margin-bottom: var(--spacing-6);
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card-image {
        height: 280px;
    }

    .mrx-modal-gallery {
        grid-template-columns: 1fr;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .partners-grid,
    .products-showcase {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 640px) {
    .section {
        padding: var(--spacing-8) 5%;
    }
    
    .hero {
        padding: calc(92px + var(--spacing-6)) 5% var(--spacing-8);
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .products-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

/* Accessibility - Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-to-main:focus {
    top: 0;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in {
    animation: slideInFromLeft 0.6s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-btn,
    .mobile-menu-btn,
    .hero-buttons,
    .contact-form,
    button,
    .nav-cta {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: var(--spacing-4);
    }
}

/* Performance Hints */
.feature-card,
.partner-card,
.service-card,
.product-card,
.btn {
    will-change: transform;
}

.feature-media img,
.service-media img {
    will-change: transform;
}

/* GPU Acceleration */
.navbar,
.hero,
.feature-card,
.partner-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }

.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-1); }
.p-2 { padding: var(--spacing-2); }
.p-3 { padding: var(--spacing-3); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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

.gap-1 { gap: var(--spacing-1); }
.gap-2 { gap: var(--spacing-2); }
.gap-3 { gap: var(--spacing-3); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-pill); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0F172A;
        --bg-secondary: #1E293B;
        --bg-tertiary: #334155;
        
        --surface-primary: #1E293B;
        --surface-secondary: #334155;
        --surface-elevated: #475569;
        
        --text-primary: #F1F5F9;
        --text-secondary: #CBD5E1;
        --text-tertiary: #94A3B8;
        --text-muted: #64748B;
        
        --border-light: 1px solid rgba(148, 163, 184, 0.2);
        --border-medium: 1px solid rgba(148, 163, 184, 0.3);
        --border-strong: 1px solid rgba(148, 163, 184, 0.4);
        
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    }
    
    /* Deaktiviere Dark Mode für diese Seite wenn gewünscht */
    /* Kommentiere die nächste Zeile ein um Dark Mode zu deaktivieren: */
    /* body { color-scheme: light; } */
}

/* ============================== */

/* ==================== DSGVO COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
    z-index: 3000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--primary-green);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 14px rgba(45, 125, 49, 0.2);
}

.cookie-btn-accept:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 125, 49, 0.3);
}

.cookie-btn-settings,
.cookie-btn-decline {
    background: white;
    color: var(--text-primary);
    border: 2px solid #E2E8F0;
}

.cookie-btn-settings:hover,
.cookie-btn-decline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1199;
    transition: all 0.25s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    z-index: 1199;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(45, 125, 49, 0.3);
    background: var(--primary-green-dark);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* ==================== LAZY LOADING ==================== */
.lazy-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {background-position: 200% 0;}
    100% {background-position: -200% 0;}
}

/* Native browser lazy loading – no extra opacity manipulation needed */
img[loading="lazy"] {
    transition: opacity 0.3s;
}

/* ==================== MOBILE RESPONSIVENESS ==================== */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================== */

:root{
    --accent:#ffffff;
    --accent-2: rgba(255,255,255,.72);
    --accent-3: rgba(255,255,255,.55);
    --brand: #ffffff;
  }

  /* Readability */
  body{
    color: var(--text-primary) !important;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  p, .section-header p, .feature-card p, .partner-card p, .product-info p, .contact-info p{
    color: var(--text-primary) !important;
  }
  h1, h2, h3, h4, .section-header h2{
    color: var(--text-primary) !important;
    letter-spacing: -0.01em;
  }
  .section-header p{ max-width: 760px; }

  /* Image blocks: avoid distortion */
  img{ height: auto; }
  .feature-media, .service-media, .partner-image, .product-image{
    overflow: hidden;
  }
  .feature-media img, .service-media img, .partner-image img, .product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
    background: rgba(255, 255, 255, 0.02);
  }

  /* remove any gradient text / colored highlights */
  .gradient-text,
  .text-gradient,
  [class*="gradient"]{
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    color: var(--text-primary) !important;
  }
  /* buttons: premium monochrome */
  a.button, .btn, button, .button, .cta, .pill, .tag, .badge, .chip{
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    color: var(--text-primary) !important;
    box-shadow: none !important;
  }
  a.button:hover, .btn:hover, button:hover, .button:hover, .cta:hover{
    background: rgba(255,255,255,.10) !important;
    border-color: var(--text-primary) !important;
    transform: translateY(-1px);
  }
  /* remove colored emoji/icon backplates */
  .emoji, .icon-badge, .feature-icon, .feature-icon img{
    background: transparent !important;
    box-shadow: none !important;
    border-color: var(--text-primary) !important;
  }

  /* feature & service cards: image header */
  .feature-card, .service-card{ overflow:hidden; }
  .feature-media, .service-media{
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    margin: 0 0 16px 0;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
  }
  .feature-media img, .service-media img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
    background: rgba(255, 255, 255, 0.02);
  }
  .feature-card h3, .service-card h3{ margin-top: 0 !important; }

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .partners-grid,
    .products-showcase {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 640px) {
    .section {
        padding: var(--spacing-8) 5%;
    }
    
    .hero {
        padding: calc(92px + var(--spacing-6)) 5% var(--spacing-8);
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .products-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

/* Accessibility - Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-to-main:focus {
    top: 0;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in {
    animation: slideInFromLeft 0.6s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-btn,
    .mobile-menu-btn,
    .hero-buttons,
    .contact-form,
    button,
    .nav-cta {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: var(--spacing-4);
    }
}

/* Performance Hints */
.feature-card,
.partner-card,
.service-card,
.product-card,
.btn {
    will-change: transform;
}

.feature-media img,
.service-media img {
    will-change: transform;
}

/* GPU Acceleration */
.navbar,
.hero,
.feature-card,
.partner-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }

.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-1); }
.p-2 { padding: var(--spacing-2); }
.p-3 { padding: var(--spacing-3); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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

.gap-1 { gap: var(--spacing-1); }
.gap-2 { gap: var(--spacing-2); }
.gap-3 { gap: var(--spacing-3); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-pill); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0F172A;
        --bg-secondary: #1E293B;
        --bg-tertiary: #334155;
        
        --surface-primary: #1E293B;
        --surface-secondary: #334155;
        --surface-elevated: #475569;
        
        --text-primary: #F1F5F9;
        --text-secondary: #CBD5E1;
        --text-tertiary: #94A3B8;
        --text-muted: #64748B;
        
        --border-light: 1px solid rgba(148, 163, 184, 0.2);
        --border-medium: 1px solid rgba(148, 163, 184, 0.3);
        --border-strong: 1px solid rgba(148, 163, 184, 0.4);
        
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    }
    
    /* Deaktiviere Dark Mode für diese Seite wenn gewünscht */
    /* Kommentiere die nächste Zeile ein um Dark Mode zu deaktivieren: */
    /* body { color-scheme: light; } */
}

/* ============================== */

:root{
    --txt-strong:#ffffff;
    --txt:#d7dde1;
    --txt-muted:rgba(215,221,225,.78);
  }
  body{color:var(--txt); font-size:16px; line-height:1.65; text-rendering:optimizeLegibility;}
  h1,h2,h3,h4{color:var(--txt-strong); letter-spacing:.2px;}
  .section-header p, .section-header .subtitle, p{color:var(--txt-muted);}
  /* remove any remaining gradient accents */
  .feature-icon, .icon, [class*="icon"]{background:none !important;}
  .badge, .tag, .chip, .pill{background:rgba(255,255,255,.08) !important; border:1px solid rgba(255,255,255,.14) !important; color:var(--txt) !important;}
  a.button, .btn, button, .button{background:var(--primary-green) !important; border:1px solid var(--primary-green-dark) !important; color:white !important;}
  a.button:hover, .btn:hover, button:hover, .button:hover{background:var(--primary-green-dark) !important;}
  /* images: prevent broken sizing */
  img{max-width:100%; height:auto;}
  .feature-media{height:280px; border-radius:18px; overflow:hidden; background:rgba(255,255,255,.02);}
  .feature-media img{width:100%; height:100%; object-fit:contain; display:block;}


/* v11 readability + no gradient accents */
h1,h2,h3,h4{color: var(--text-primary)!important;}
p,li{color: var(--text-primary)!important;}
.section-badge,.badge,.tag{background:rgba(255,255,255,0.08)!important;border-color: var(--text-primary)!important;color: var(--text-primary)!important;}
/* ensure no gradient backgrounds */
.btn-primary,.hero-button,.cta-button,.nav-cta,.button,.btn{background:var(--primary-green)!important;border:1px solid var(--primary-green-dark)!important;color:#ffffff!important;box-shadow:0 4px 16px rgba(45, 125, 49, 0.25)!important;}
.btn-primary:hover,.hero-button:hover,.cta-button:hover,.nav-cta:hover,.button:hover,.btn:hover{background:var(--primary-green-dark)!important;box-shadow:0 8px 24px rgba(45, 125, 49, 0.35)!important;transform:translateY(-2px);}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .partners-grid,
    .products-showcase {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 640px) {
    .section {
        padding: var(--spacing-8) 5%;
    }
    
    .hero {
        padding: calc(92px + var(--spacing-6)) 5% var(--spacing-8);
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .products-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

/* Accessibility - Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-to-main:focus {
    top: 0;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in {
    animation: slideInFromLeft 0.6s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-btn,
    .mobile-menu-btn,
    .hero-buttons,
    .contact-form,
    button,
    .nav-cta {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: var(--spacing-4);
    }
}

/* Performance Hints */
.feature-card,
.partner-card,
.service-card,
.product-card,
.btn {
    will-change: transform;
}

.feature-media img,
.service-media img {
    will-change: transform;
}

/* GPU Acceleration */
.navbar,
.hero,
.feature-card,
.partner-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }

.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-1); }
.p-2 { padding: var(--spacing-2); }
.p-3 { padding: var(--spacing-3); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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

.gap-1 { gap: var(--spacing-1); }
.gap-2 { gap: var(--spacing-2); }
.gap-3 { gap: var(--spacing-3); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-pill); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0F172A;
        --bg-secondary: #1E293B;
        --bg-tertiary: #334155;
        
        --surface-primary: #1E293B;
        --surface-secondary: #334155;
        --surface-elevated: #475569;
        
        --text-primary: #F1F5F9;
        --text-secondary: #CBD5E1;
        --text-tertiary: #94A3B8;
        --text-muted: #64748B;
        
        --border-light: 1px solid rgba(148, 163, 184, 0.2);
        --border-medium: 1px solid rgba(148, 163, 184, 0.3);
        --border-strong: 1px solid rgba(148, 163, 184, 0.4);
        
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    }
    
    /* Deaktiviere Dark Mode für diese Seite wenn gewünscht */
    /* Kommentiere die nächste Zeile ein um Dark Mode zu deaktivieren: */
    /* body { color-scheme: light; } */
}

/* ============================== */

/* ===== Premium Black Modal Theme Overrides ===== */
body.modal-open { overflow: hidden; }

.modal-overlay,
.mrx-modal-backdrop{
  z-index: 5000;
}

.modal {
  background: var(--bg-2) !important;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
}

.modal-header{
  background-position: center;
}

.modal-header::before{
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.82) 70%, rgba(0,0,0,0.92) 100%) !important;
}

.modal-header h2{ color: var(--text-primary); }
.modal-header .subtitle{ color: var(--text-primary) !important; }

.modal-body{
  background: transparent !important;
}

.modal-close{
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.12);
}
.modal-close:hover{ background: rgba(255,255,255,0.18) !important; }

.modal-tabs{
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(11,13,18,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 10px 0;
}

.modal-tabs .tab-btn,
.tab{
  background: rgba(255,255,255,0.06) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 999px !important;
  padding: 10px 14px !important;
}

.modal-tabs .tab-btn:hover,
.tab:hover{
  background: rgba(255,255,255,0.10) !important;
  color: var(--text-primary) !important;
}

.modal-tabs .tab-btn.active,
.tab.active{
  background: rgba(255,255,255,0.14) !important;
  color: var(--text-primary) !important;
  border-color: var(--text-primary) !important;
}

/* Remove light table look inside modals */
.model-table th{
  background: rgba(255,255,255,0.10) !important;
  color: var(--text-primary) !important;
}
.model-table td{
  color: var(--text-primary) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}
.model-table tr:nth-child(even){
  background: rgba(255,255,255,0.03) !important;
}
.model-table tr:hover{
  background: rgba(255,255,255,0.06) !important;
}

/* Feature boxes in modal */
.feature-item, .spec-box, .option-category{
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: var(--text-primary) !important;
}
.feature-item h4, .option-category h4{ color: var(--text-primary) !important; }
.feature-item p, .option-list li{ color: var(--text-primary) !important; }

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .partners-grid,
    .products-showcase {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 640px) {
    .section {
        padding: var(--spacing-8) 5%;
    }
    
    .hero {
        padding: calc(92px + var(--spacing-6)) 5% var(--spacing-8);
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .products-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

/* Accessibility - Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 3px;
}

.nav-links a:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 var(--radius-md) 0;
}

.skip-to-main:focus {
    top: 0;
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in {
    animation: slideInFromLeft 0.6s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-btn,
    .mobile-menu-btn,
    .hero-buttons,
    .contact-form,
    button,
    .nav-cta {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: var(--spacing-4);
    }
}

/* Performance Hints */
.feature-card,
.partner-card,
.service-card,
.product-card,
.btn {
    will-change: transform;
}

.feature-media img,
.service-media img {
    will-change: transform;
}

/* GPU Acceleration */
.navbar,
.hero,
.feature-card,
.partner-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }

.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-1); }
.p-2 { padding: var(--spacing-2); }
.p-3 { padding: var(--spacing-3); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

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

.gap-1 { gap: var(--spacing-1); }
.gap-2 { gap: var(--spacing-2); }
.gap-3 { gap: var(--spacing-3); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-pill); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0F172A;
        --bg-secondary: #1E293B;
        --bg-tertiary: #334155;
        
        --surface-primary: #1E293B;
        --surface-secondary: #334155;
        --surface-elevated: #475569;
        
        --text-primary: #F1F5F9;
        --text-secondary: #CBD5E1;
        --text-tertiary: #94A3B8;
        --text-muted: #64748B;
        
        --border-light: 1px solid rgba(148, 163, 184, 0.2);
        --border-medium: 1px solid rgba(148, 163, 184, 0.3);
        --border-strong: 1px solid rgba(148, 163, 184, 0.4);
        
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    }
    
    /* Deaktiviere Dark Mode für diese Seite wenn gewünscht */
    /* Kommentiere die nächste Zeile ein um Dark Mode zu deaktivieren: */
    /* body { color-scheme: light; } */
}/* 1. Helle Hintergründe statt dunkle */
.rumex-section {
    background: var(--bg-secondary);
    color: var(--text-primary) !important;
}

.rumex-problem,
.rumex-solution,
.rumex-products,
.rumex-showcase {
    background: transparent !important;
}

/* 2. Hero-Hintergrund heller machen */
.rumex-hero-bg {
    filter: brightness(0.7) saturate(1.1) !important;
}

.rumex-hero-overlay {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.15) 0%, rgba(45, 125, 49, 0.12) 100%) !important;
}

/* 3. Texte lesbar auf hellem Hintergrund */
.rumex-hero-content h1,
.rumex-hero-content h2,
.rumex-hero-content p {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}

.rumex-problem-text h2,
.rumex-solution-text h2,
.rumex-products h2,
.rumex-showcase h2,
.section-header h2 {
    color: var(--text-primary) !important;
}

.rumex-problem-text p,
.rumex-solution-text p,
.rumex-problem-list li,
.section-header p {
    color: var(--text-secondary) !important;
}

.rumex-label {
    background: rgba(45, 125, 49, 0.15) !important;
    color: var(--primary-green) !important;
}

.rumex-badge {
    background: rgba(255,255,255,0.9) !important;
    color: var(--text-primary) !important;
}

/* 4. Produktbilder gleiche Größe und vollflächig */
.rumex-product-image {
    height: 280px !important;
    background: #f5f5f5 !important;
}

.rumex-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 5. Produktkarten heller Hintergrund */
.rumex-product-card {
    background: white !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
}

.rumex-product-content h3 {
    color: var(--text-primary) !important;
}

.rumex-product-subtitle,
.rumex-product-specs li {
    color: var(--text-secondary) !important;
}

.rumex-product-targets span {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
}

/* 6. Showcase Bilder */
.rumex-showcase-item {
    background: white !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-md) !important;
}

.rumex-showcase-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 7. Stats auf hellem Hintergrund */
.rumex-stats {
    background: var(--bg-tertiary) !important;
}

.rumex-stat-number {
    color: var(--primary-green) !important;
}

.rumex-stat-label {
    color: var(--text-secondary) !important;
}

/* 8. CTA Bereich */
.rumex-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%) !important;
}

.rumex-cta h2,
.rumex-cta p {
    color: white !important;
}
/* Alle Hersteller-Sektionen mit einheitlichem Design */

/* === VARIABLE FIXES === */
:root {
    --treffler-gold: #2E7D32;
    --rumex-blue: #1565C0;
    --bb-green: #2E7D32;
    --gst-green: #2D7D31;
    --bg-2: #FAFBFC;
}

/* === PARTNER CARDS SECTION (mrx-section) === */
.mrx-section {
    background: var(--bg-secondary) !important;
    padding: 90px 5% !important;
}

/* === RUMEX SECTION - HELLER HINTERGRUND === */
.rumex-section {
    background: var(--bg-secondary);
    color: var(--text-primary) !important;
}

/* Rumex Hero - Bild heller, Overlay weniger dunkel */
.rumex-hero-bg {
    filter: brightness(0.75) saturate(1.1) !important;
}

.rumex-hero-overlay {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.20) 0%, rgba(45, 125, 49, 0.15) 100%) !important;
}

/* Rumex Sub-Sektionen - KEINE dunklen Hintergründe */
.rumex-problem,
.rumex-solution,
.rumex-products,
.rumex-showcase,
.rumex-stats {
    background: transparent !important;
}

/* Rumex Texte lesbar */
.rumex-problem-text h2,
.rumex-solution-text h2,
.rumex-products .section-header h2,
.rumex-showcase .section-header h2 {
    color: var(--text-primary) !important;
}

.rumex-problem-text p,
.rumex-solution-text p,
.rumex-problem-list li,
.rumex-products .section-header p,
.rumex-showcase .section-header p {
    color: var(--text-secondary) !important;
}

.rumex-label,
.rumex-badge-dark {
    background: rgba(21, 101, 192, 0.12) !important;
    color: var(--rumex-blue) !important;
}

/* Rumex Produktkarten - Weißer Hintergrund */
.rumex-product-card {
    background: white !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    box-shadow: var(--shadow-md) !important;
}

.rumex-product-card h3,
.rumex-product-content h3 {
    color: var(--text-primary) !important;
}

.rumex-product-subtitle {
    color: var(--text-secondary) !important;
}

.rumex-product-specs li {
    color: var(--text-secondary) !important;
}

.rumex-product-specs li strong {
    color: var(--text-primary) !important;
}

.rumex-product-targets span {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
}

/* Rumex Produktbilder - Einheitliche Größe */
.rumex-product-image {
    height: 280px !important;
    background: #f8f9fa !important;
}

.rumex-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Rumex Stats */
.rumex-stat-number {
    color: var(--rumex-blue) !important;
}

.rumex-stat-label {
    color: var(--text-secondary) !important;
}

/* Rumex CTA */
.rumex-cta {
    background: linear-gradient(135deg, var(--rumex-blue) 0%, #0D47A1 100%) !important;
    margin-top: 40px !important;
    border-radius: var(--radius-xl) !important;
}

/* === GST SECTION - EINHEITLICH === */
#gst,
.partner-section[id="gst"] {
    background: var(--bg-secondary) !important;
    padding: var(--spacing-10) 5% !important;
}

/* === TREFFLER SECTION - HELLER HINTERGRUND === */
.treffler-section,
#treffler {
    background: var(--bg-secondary) !important;
}

/* Treffler Hero - NORMALES BILD ohne dunklen Overlay */
.treffler-hero {
    position: relative !important;
}

/* Überschreibe den dunklen Inline-Overlay */
.treffler-hero > div[style*="rgba(10,10,26"] {
    background: linear-gradient(135deg, rgba(200, 169, 81, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
}

/* Treffler Texte im Hero */
.treffler-hero h2 {
    color: white !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6) !important;
}

.treffler-hero p {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5) !important;
}

/* Treffler Produktbereich */
.treffler-section .product-grid,
#treffler .product-grid {
    background: transparent !important;
}

/* Treffler Gold Farbe */
.treffler-section h2[style*="treffler-gold"],
.treffler-section h3[style*="treffler-gold"],
.treffler-section strong[style*="treffler-gold"] {
    color: var(--treffler-gold) !important;
}

/* === FEATURES SECTION (Warum wir?) === */
.features,
#features {
    background: var(--bg-secondary) !important;
    padding: var(--spacing-10) 5% !important;
}

/* === SERVICES SECTION === */
.services,
#services {
    background: white !important;
    padding: var(--spacing-10) 5% !important;
}

/* === EINHEITLICHE PRODUKT-KARTEN für alle Hersteller === */
.product-card,
.mrx-card {
    background: white !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.3s ease !important;
}

.product-card:hover,
.mrx-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(45, 125, 49, 0.2) !important;
}

/* Einheitliche Bildgrößen in Karten */
.product-card-image,
.mrx-card-media {
    height: 280px !important;
    overflow: hidden !important;
}

.product-card-image img,
.mrx-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: none !important; /* KEINE Farbfilter! */
}

/* === SHOWCASE/GALLERY BILDER === */
.rumex-showcase-item,
.gallery-item {
    background: white !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-md) !important;
}

.rumex-showcase-item img,
.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: none !important;
}

/* === SECTION HEADERS - EINHEITLICH === */
.section-header,
.mrx-section-head {
    text-align: center !important;
    margin-bottom: var(--spacing-8) !important;
}

.section-header h2,
.mrx-section-head h2 {
    color: var(--text-primary) !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    font-weight: 700 !important;
    margin-bottom: var(--spacing-2) !important;
}

.section-header p,
.mrx-section-head p {
    color: var(--text-secondary) !important;
    font-size: 1.1rem !important;
    max-width: 70ch !important;
    margin: 0 auto !important;
}

/* === SECTION BADGES - EINHEITLICH === */
.section-badge,
.rumex-label,
.mrx-badge {
    display: inline-block !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-pill) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin-bottom: var(--spacing-3) !important;
    background: rgba(45, 125, 49, 0.1) !important;
    color: var(--primary-green) !important;
}

/* === HERO SECTIONS - EINHEITLICHER STIL === */
/* Alle Hero-Bereiche: Bild in Normalfarbe, leichter Overlay für Lesbarkeit */
.rumex-hero-bg,
.treffler-hero,
.partner-hero-bg {
    filter: brightness(0.8) saturate(1.05) !important;
}

/* Hero Overlays - Leicht, nicht dunkel */
.rumex-hero-overlay,
.treffler-hero > div:first-child,
.partner-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%) !important;
}

/* Hero Text immer weiß mit Schatten für Lesbarkeit */
.rumex-hero-content h1,
.rumex-hero-content h2,
.treffler-hero h2,
.partner-hero h2 {
    color: white !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}

.rumex-hero-content p,
.treffler-hero p,
.partner-hero p {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4) !important;
}
/* ================================================================== */
/* VOLLSTÄNDIGE KORREKTUR - MUSS AM ENDE DER CSS STEHEN              */
/* ================================================================== */

/* === 1. RUMEX HERO - HELLER === */
.rumex-hero-bg {
    filter: brightness(0.8) saturate(1.1) !important;
}

.rumex-hero-overlay {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.15) 0%, rgba(45, 125, 49, 0.10) 100%) !important;
}

/* === 2. RUMEX SUB-SECTIONS - KEINE DUNKLEN HINTERGRÜNDE === */
.rumex-section {
    background: var(--bg-secondary);
}

.rumex-problem,
.rumex-solution,
.rumex-products,
.rumex-showcase,
.rumex-stats,
.rumex-cta {
    background: transparent !important;
}

/* === 3. ALLE BILDER: OBJECT-FIT COVER === */
.feature-media img,
.partner-image img,
.product-image img,
.service-media img,
.rumex-product-image img,
.mrx-card-media img,
.product-card-image img,
.rumex-showcase-item img,
.gallery-item img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* === 4. EINHEITLICHE BILDHÖHEN: 280px === */
.feature-media,
.partner-image,
.product-image,
.service-media,
.rumex-product-image,
.mrx-card-media,
.product-card-image {
    height: 280px !important;
    overflow: hidden !important;
}

/* === 5. EINHEITLICHE KARTENDESIGNS === */
.product-card,
.mrx-card,
.partner-card,
.feature-card,
.service-card,
.rumex-product-card {
    background: white !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

.product-card:hover,
.mrx-card:hover,
.partner-card:hover,
.feature-card:hover,
.service-card:hover,
.rumex-product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}

/* === 6. RUMEX PRODUKTKARTEN TEXT === */
.rumex-product-card h3,
.rumex-product-content h3 {
    color: var(--text-primary) !important;
}

.rumex-product-subtitle,
.rumex-product-specs li {
    color: var(--text-secondary) !important;
}

.rumex-product-specs li strong {
    color: var(--text-primary) !important;
}

.rumex-product-targets span {
    background: #f5f5f5 !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
}

.rumex-product-tag {
    background: linear-gradient(135deg, #1565C0, #2E7D32) !important;
    color: white !important;
}

/* === 7. SECTION LABELS/BADGES === */
.rumex-label,
.rumex-badge-dark,
.section-badge {
    background: rgba(45, 125, 49, 0.1) !important;
    color: #2E7D32 !important;
}

/* === 8. RUMEX TEXT LESBAR === */
.rumex-problem-text h2,
.rumex-solution-text h2,
.section-header h2 {
    color: var(--text-primary) !important;
}

.rumex-problem-text p,
.rumex-solution-text p,
.rumex-problem-list li,
.section-header p {
    color: var(--text-secondary) !important;
}

/* === 9. RUMEX STATS === */
.rumex-stat-number {
    color: #1565C0 !important;
}

.rumex-stat-label {
    color: var(--text-secondary) !important;
}

/* === 10. RUMEX CTA BEREICH === */
.rumex-cta {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%) !important;
    border-radius: 16px !important;
    margin: 40px 20px !important;
    padding: 60px 40px !important;
}

.rumex-cta h2,
.rumex-cta p {
    color: white !important;
}

/* === 11. GST SECTION === */
#gst,
.partner-section[id="gst"] {
    background: var(--bg-secondary) !important;
}

/* === 12. TREFFLER SECTION === */
#treffler,
.treffler-section {
    background: var(--bg-secondary) !important;
}

/* === 13. FEATURES SECTION === */
.features,
#features {
    background: var(--bg-secondary) !important;
}

/* === 14. SERVICES SECTION === */
.services,
#services {
    background: white !important;
}

/* === 15. EINHEITLICHE SECTION PADDINGS === */
.mrx-section,
.rumex-section,
.partner-section,
.treffler-section,
.features,
.services {
    padding: 80px 5% !important;
}

/* === 16. HERO TEXTE (weiß mit Schatten) === */
.rumex-hero-content h1,
.rumex-hero-content h2,
.rumex-hero-content p,
.treffler-hero h2,
.treffler-hero p {
    color: white !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5) !important;
}

.rumex-badge {
    background: rgba(255,255,255,0.9) !important;
    color: var(--text-primary) !important;
    backdrop-filter: none !important;
}

/* ================================================================== */
/* LOGO, PARTNER-HEADER UND KARTEN FIXES                              */
/* ================================================================== */

/* === LOGO GRÖßER UND FREIGESTELLT === */
.navbar .logo-wrap {
    background: transparent !important;
    box-shadow: none !important;
    padding: 4px !important;
}

.navbar .logo {
    height: 80px !important;
    max-width: 400px !important;
    object-fit: contain !important;
}

/* Mobile Logo etwas kleiner */
@media (max-width: 768px) {
    .navbar .logo {
        height: 60px !important;
        max-width: 280px !important;
    }
}

/* === UNSERE PARTNER HEADER ZENTRIERT === */
.mrx-section-head {
    text-align: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
}

.mrx-section-head > div {
    text-align: center !important;
}

.mrx-section-head h2 {
    text-align: center !important;
}

.mrx-section-head p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* === ALLE PARTNER-KARTEN EINHEITLICH === */
.mrx-card {
    background: white !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    display: flex !important;
    flex-direction: column !important;
}

.mrx-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15) !important;
    border-color: rgba(45, 125, 49, 0.2) !important;
}

.mrx-card-media {
    height: 280px !important;
    overflow: hidden !important;
    background: #f8f9fa !important;
}

.mrx-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.mrx-card-body {
    padding: 24px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* === PARTNER GRID EINHEITLICH === */
.mrx-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 32px !important;
}

/* ================================================================== */
/* FINALE KORREKTUREN                                                  */
/* ================================================================== */

/* Logo größer und freigestellt */
.navbar .logo-wrap {
    background: transparent !important;
    box-shadow: none !important;
    padding: 4px !important;
}

.navbar .logo {
    height: 80px !important;
    max-width: 400px !important;
}

/* Unsere Partner zentriert */
.mrx-section-head {
    text-align: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
}

.mrx-section-head > div,
.mrx-section-head h2,
.mrx-section-head p {
    text-align: center !important;
}

/* Partner-Karten einheitlich */
.mrx-card {
    background: white !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
}

.mrx-card-media {
    height: 280px !important;
    background: #f8f9fa !important;
}

.mrx-card-media img {
    object-fit: cover !important;
}

/* Rumex Section hell */
.rumex-section {
    background: var(--bg-secondary) !important;
}

.rumex-problem,
.rumex-solution,
.rumex-products,
.rumex-showcase,
.rumex-stats {
    background: transparent !important;
}

/* Rumex Texte lesbar */
.rumex-problem-text h2,
.rumex-solution-text h2,
.section-header h2 {
    color: var(--text-primary) !important;
}

.rumex-problem-text p,
.rumex-solution-text p,
.rumex-problem-list li {
    color: var(--text-secondary) !important;
}

/* Rumex Produktkarten */
.rumex-product-card {
    background: white !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
}

.rumex-product-image {
    height: 280px !important;
    background: #f8f9fa !important;
}

.rumex-product-image img {
    object-fit: cover !important;
}

.rumex-product-content h3 {
    color: var(--text-primary) !important;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .navbar .logo {
        height: 60px !important;
    }
}

/* ================================================================== */
/* LOGO FIX - Größer, kein weißer Hintergrund                         */
/* ================================================================== */
.logo-wrap {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.navbar .logo-wrap {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.navbar .logo {
    height: 70px !important;
    max-width: 350px !important;
    padding: 8px !important;
}

@media (max-width: 768px) {
    .navbar .logo {
        height: 50px !important;
        max-width: 250px !important;
    }
}

/* ================================================================== */
/* RUMEX SHOWCASE BILDER - KLEINER                                     */
/* ================================================================== */
.rumex-showcase-item {
    max-height: 300px !important;
    overflow: hidden !important;
}

.rumex-showcase-item img {
    max-height: 280px !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Rumex Showcase Grid kompakter */
.rumex-showcase-grid {
    gap: 20px !important;
}

/* ================================================================== */
/* TREFFLER GOLD -> GRÜN                                               */
/* ================================================================== */
:root {
    --treffler-gold: #2E7D32 !important;
    --accent-gold: #2E7D32 !important;
}

.treffler-section h2,
.treffler-section h3,
.treffler-section h4,
.treffler-section strong {
    color: var(--primary-green) !important;
}

/* Treffler Hero Text auch grün */
.treffler-hero h2,
.treffler-hero h3 {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}

/* Treffler Produkt-Features */
.treffler-section .feature-title,
.treffler-section .product-name {
    color: var(--text-primary) !important;
}

/* Treffler Akkordeon Überschriften */
.treffler-accordion-trigger {
    color: var(--text-primary) !important;
}

.treffler-accordion-trigger:hover {
    color: var(--primary-green) !important;
}

/* ================================================================== */
/* CONTACT ICONS STYLING                                               */
/* ================================================================== */
.contact-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%) !important;
    border-radius: 12px !important;
    color: var(--primary-green) !important;
}

.contact-icon svg {
    width: 24px !important;
    height: 24px !important;
    stroke: var(--primary-green) !important;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
}

/* ================================================================== */
/* FORM SUCCESS MESSAGE - HIDDEN BY DEFAULT                            */
/* ================================================================== */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 16px;
    margin-top: 20px;
}

.form-success.show {
    display: block !important;
}

.form-success h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-secondary);
}

.form-success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-icon::after {
    content: "✓";
    color: white;
    font-size: 32px;
    font-weight: bold;
}

/* Ensure form inputs are clickable */
.contact-form input,
.contact-form select,
.contact-form textarea {
    position: relative;
    z-index: 1;
}

/* ================================================================== */
/* FORM INPUT FIX - ENSURE CLICKABLE                                   */
/* ================================================================== */
.contact-form {
    position: relative;
    z-index: 10;
}

#anfrage-form {
    position: relative;
    z-index: 10;
}

#anfrage-form input,
#anfrage-form select,
#anfrage-form textarea,
#anfrage-form button {
    pointer-events: auto !important;
    cursor: text;
}

#anfrage-form select,
#anfrage-form button {
    cursor: pointer;
}

#anfrage-form input:focus,
#anfrage-form select:focus,
#anfrage-form textarea:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}
