/* marloth GmbH Website Styles
 * CI Colors:
 * - Stahlblau: #001132
 * - Türkis: #45f0c5
 * - Gelb: #ffc000
 * - Purpur: #47243c
 * - Grau: #a6a6a6
 */

/* Local Font: Inter */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/marloth_website/fonts/Inter.woff2') format('woff2');
}

:root {
    --marloth-stahlblau: #001132;
    --marloth-dark-grey: #333333; /* Dark Grey for text on hover */
    --marloth-tuerkis: #45f0c5;
    --marloth-tuerkis-hover: #19e68c; /* New Hover Color */
    --marloth-gelb: #ffc000;
    --marloth-purpur: #47243c;
    --marloth-grau: #a6a6a6;
    --marloth-weiss: #ffffff;
    --marloth-hellgrau: #f5f5f5;
    --marloth-dark-grey: #232323;
    --marloth-dark-blue: #000d26; /* Darker shade for footer/contact */
}

/* Global Reset & Page Margins */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Reset für öffentliche Seite */
.marloth-public * {
    box-sizing: border-box;
}

.marloth-public {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--marloth-stahlblau);
    line-height: 1.6;
    margin: 0;
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, padding 0.3s ease;
    background: linear-gradient(to bottom, rgba(0,17,50,0.8) 0%, rgba(0,17,50,0) 100%);
}

.site-header.scrolled {
    background: var(--marloth-stahlblau);
    padding: 15px 40px;
    /* box-shadow removed for flat design */
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--marloth-weiss);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--marloth-tuerkis);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    color: var(--marloth-weiss);
    text-decoration: none;
    gap: 5px;
    font-size: 0.9rem;
}

.lang-switch:hover {
    color: var(--marloth-tuerkis);
}

.globe-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.contact-btn-header {
    border: 1px solid var(--marloth-weiss);
    color: var(--marloth-weiss);
    padding: 8px 20px;
    border-radius: 0; /* No radius */
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-bottom: 2px solid var(--marloth-tuerkis); /* Contrast border */
}

.contact-btn-header:hover {
    background: var(--marloth-weiss);
    color: var(--marloth-stahlblau);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background: var(--marloth-stahlblau);
    color: var(--marloth-weiss);
    padding: 120px 20px 80px; /* Added top padding for header */
    text-align: center;
    min-height: 70vh; /* Reduced height for "widescreen" look */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 17, 50, 0.6);
    z-index: 1;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* text-shadow removed for flat design */
}

.hero-section .tagline {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    /* text-shadow removed for flat design */
}

.hero-section .cta-button {
    background: var(--marloth-tuerkis);
    color: var(--marloth-stahlblau);
    padding: 18px 45px;
    border-radius: 0; /* No radius */
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
    /* box-shadow removed for flat design */
    border-bottom: 4px solid var(--marloth-stahlblau); /* Contrast border */
}

.hero-section .cta-button:hover {
    transform: translateY(-2px);
    /* box-shadow removed for flat design */
    background: var(--marloth-tuerkis-hover); /* New hover color */
}

/* --- USP Section --- */
.usp-section {
    padding: 100px 20px;
    background: var(--marloth-weiss);
}

.usp-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--marloth-stahlblau);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-card {
    text-align: left; /* More serious look */
    padding: 40px 30px;
    border-radius: 0; /* No radius */
    background: var(--marloth-hellgrau);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--marloth-tuerkis);
}

.usp-card:hover {
    transform: translateY(-5px);
}

.usp-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    fill: var(--marloth-stahlblau);
}

.usp-card h3 {
    margin-bottom: 15px;
    color: var(--marloth-stahlblau);
    font-size: 1.5rem;
}

/* --- Video Section --- */
.video-section {
    padding: 100px 20px;
    background: var(--marloth-purpur);
    color: var(--marloth-weiss);
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 40px auto 0;
    position: relative;
    padding-bottom: 22.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0; /* No radius */
    /* box-shadow removed for flat design */
    border-bottom: 4px solid var(--marloth-tuerkis); /* Contrast border */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Configurator Teaser --- */
.configurator-teaser {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--marloth-hellgrau) 0%, #e0e0e0 100%);
}

.credits-badge {
    display: inline-block;
    background: var(--marloth-gelb);
    color: var(--marloth-stahlblau);
    padding: 8px 16px;
    border-radius: 0; /* No radius */
    font-weight: 700;
    margin: 20px 0;
    border-left: 4px solid var(--marloth-stahlblau);
}

.start-button {
    background: var(--marloth-stahlblau);
    color: var(--marloth-weiss);
    padding: 16px 40px;
    border-radius: 0; /* No radius */
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s;
    border-bottom: 4px solid var(--marloth-tuerkis); /* Contrast border */
}

.start-button:hover {
    background: #002266;
}

/* --- Contact Section (Bila Style) --- */
.contact-section {
    background: var(--marloth-dark-grey);
    color: var(--marloth-weiss);
    padding: 100px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-phone {
    font-size: 1.5rem;
    color: var(--marloth-tuerkis);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: var(--marloth-dark-grey);
    background-color: var(--marloth-tuerkis-hover);
    text-decoration: none;
    border-radius: 0;
}

.contact-form-box {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 0; /* No radius */
    border-left: 4px solid var(--marloth-tuerkis); /* Contrast border */
}

.contact-form-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0; /* No radius */
    color: var(--marloth-weiss);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--marloth-tuerkis);
    background: rgba(255,255,255,0.15);
}

.submit-btn {
    background: var(--marloth-tuerkis);
    color: var(--marloth-stahlblau);
    border: none;
    padding: 15px 30px;
    border-radius: 0; /* No radius */
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.2s;
    border-bottom: 4px solid var(--marloth-stahlblau); /* Contrast border */
}

.submit-btn:hover {
    background: var(--marloth-tuerkis-hover); /* New hover color */
}

/* --- Footer (Bila Style) --- */
.site-footer {
    background: var(--marloth-weiss); /* White background */
    color: var(--marloth-stahlblau); /* Dark text */
    padding: 80px 20px 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--marloth-grau);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col a {
    color: var(--marloth-stahlblau); /* Dark text */
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--marloth-tuerkis);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1); /* Light border */
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }
    
    .main-nav {
        display: none; /* Hide nav on mobile for now */
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

/* --- Configurator Section --- */
.configurator-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.config-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.config-header h2 {
    font-size: 2rem;
    color: var(--marloth-stahlblau);
    margin-bottom: 10px;
}

.config-header p {
    color: var(--marloth-stahlblau);
    opacity: 0.7;
}

/* Side Stepper - Fixed on right side */
.config-stepper-side {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    padding: 20px 16px;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.config-stepper-side .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.config-stepper-side .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.config-stepper-side .step.active .step-number,
.config-stepper-side .step.completed .step-number {
    background: var(--marloth-tuerkis);
    color: var(--marloth-stahlblau);
}

.config-stepper-side .step.completed .step-number {
    background: var(--marloth-stahlblau);
    color: #fff;
}

.config-stepper-side .step-label {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
    max-width: 70px;
    line-height: 1.2;
}

.config-stepper-side .step.active .step-label {
    color: var(--marloth-stahlblau);
    font-weight: 600;
}

.step-connector-v {
    width: 3px;
    height: 30px;
    background: #e5e7eb;
    margin: 8px 0;
    transition: background 0.3s ease;
}

.step-connector-v.active {
    background: var(--marloth-tuerkis);
}

/* Hide side stepper on mobile */
@media (max-width: 1200px) {
    .config-stepper-side {
        display: none;
    }
}

/* Feature Price Tag */
.feature-price {
    float: right;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--marloth-stahlblau);
    opacity: 0.6;
}

.feature-item.active .feature-price {
    opacity: 1;
    color: var(--marloth-tuerkis);
}

/* Machine Cards */
.machines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

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

.machine-card {
    background: #ffffff;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    /* box-shadow removed for flat design */
    opacity: 0.5;
    filter: grayscale(80%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.machine-card.unlocked {
    opacity: 1;
    filter: grayscale(0%);
    border-color: var(--marloth-tuerkis);
}

.machine-card.selected {
    background: rgba(69, 240, 197, 0.15);
    /* box-shadow removed for flat design */
    border-color: var(--marloth-tuerkis);
}

.machine-lock {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
}

.machine-card.unlocked .machine-lock {
    display: none;
}

.machine-price-tag {
    display: inline-block;
    background: var(--marloth-stahlblau);
    color: var(--marloth-weiss);
    padding: 6px 14px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
}

.machine-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--marloth-stahlblau);
}

.machine-card .description {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--marloth-stahlblau);
}

.robot-badges-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    align-items: center;
}

.robot-badge-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 2px;
}

.robot-badge-avatar img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.machine-card.selected .robot-badge-avatar {
    border-color: var(--marloth-tuerkis);
    /* box-shadow removed for flat design */
}

.machine-card.selected .robot-badge-avatar img {
    filter: grayscale(0%);
    opacity: 1;
}

.select-indicator {
    text-align: center;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--marloth-stahlblau);
    color: var(--marloth-stahlblau);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.machine-card.selected .select-indicator {
    background: var(--marloth-stahlblau);
    color: var(--marloth-weiss);
}

.machine-card:not(.unlocked) .select-indicator {
    opacity: 0.4;
}

/* Invest Slider */
.invest-bar {
    background: var(--marloth-stahlblau);
    color: var(--marloth-weiss);
    padding: 20px 30px;
    border-left: 4px solid var(--marloth-tuerkis);
    margin-bottom: 25px;
}

.invest-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.invest-label {
    font-weight: 600;
    white-space: nowrap;
}

.invest-slider-container {
    flex: 1;
    min-width: 200px;
}

.invest-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, 
        var(--marloth-tuerkis) 0%, 
        var(--marloth-tuerkis) var(--progress), 
        #333 var(--progress), 
        #333 100%);
    outline: none;
    cursor: pointer;
}

.invest-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--marloth-tuerkis);
    cursor: pointer;
    border: 2px solid var(--marloth-weiss);
}

.invest-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--marloth-tuerkis);
    cursor: pointer;
    border: 2px solid var(--marloth-weiss);
}

.invest-value-display {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--marloth-tuerkis);
    min-width: 110px;
    text-align: right;
}

/* ROI Section */
.roi-section-inline {
    background: #ffffff;
    /* box-shadow removed for flat design */
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-left: 4px solid var(--marloth-gelb);
    margin-bottom: 25px;
}

.roi-header-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.roi-header-inline h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--marloth-stahlblau);
}

.honest-badge {
    background: var(--marloth-gelb);
    color: var(--marloth-stahlblau);
    font-size: 0.7rem;
    padding: 4px 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.roi-grid-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.roi-inputs-inline h4 {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: var(--marloth-stahlblau);
}

.slider-field {
    margin-bottom: 20px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.slider-label-text {
    color: var(--marloth-stahlblau);
}

.slider-value {
    font-weight: 600;
    color: var(--marloth-stahlblau);
}

.roi-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--marloth-stahlblau);
    cursor: pointer;
}

.roi-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--marloth-stahlblau);
    cursor: pointer;
    border: none;
}

.slider-markers {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 3px;
}

.roi-results-inline {
    background: var(--marloth-stahlblau);
    color: var(--marloth-weiss);
    padding: 25px;
}

.roi-results-inline h4 {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: var(--marloth-gelb);
}

.roi-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

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

.roi-row.highlight {
    background: rgba(69, 240, 197, 0.15);
    padding: 14px 12px;
    margin: 12px -12px;
    font-weight: 600;
}

.roi-row.highlight .roi-value {
    color: var(--marloth-tuerkis);
    font-size: 1.15rem;
}

.roi-label {
    opacity: 0.8;
}

.roi-value {
    font-weight: 600;
}

.roi-note {
    margin-top: 18px;
    padding: 12px;
    background: rgba(255, 192, 0, 0.15);
    border-left: 3px solid var(--marloth-gelb);
    font-size: 0.85rem;
}

/* Summary Bar */
.config-summary {
    background: var(--marloth-tuerkis);
    color: var(--marloth-stahlblau);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.summary-items {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.summary-item {
    text-align: left;
}

.summary-item .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.summary-item .value {
    font-size: 1.2rem;
    font-weight: 700;
}

.config-cta {
    display: inline-block;
    background: var(--marloth-stahlblau);
    color: var(--marloth-weiss);
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.config-cta.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.config-cta:hover {
    background: #002266;
}

/* --- Feature List Styles --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.feature-item {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--marloth-grau);
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

.feature-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--marloth-grau);
}

.feature-item.active {
    color: var(--marloth-stahlblau);
    font-weight: 500;
}

.feature-item.active::before {
    color: var(--marloth-tuerkis);
}

/* Robot Badges Active State */
.robot-badge-avatar {
    opacity: 0.3;
    filter: grayscale(100%);
}

.robot-badge-avatar.active {
    opacity: 1;
    filter: grayscale(0%);
    border-color: var(--marloth-tuerkis);
}

/* --- USP Text Content --- */
.usp-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--marloth-dark-grey);
}

.usp-text-content h3 {
    font-size: 1.8rem;
    color: var(--marloth-stahlblau);
    margin-top: 40px;
    margin-bottom: 20px;
}

.usp-text-content p {
    margin-bottom: 20px;
}

.usp-text-content ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 30px;
}

.usp-text-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.usp-text-content li::before {
    content: '•';
    color: var(--marloth-tuerkis);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.usp-text-content .highlight {
    font-weight: 600;
    color: var(--marloth-stahlblau);
}

/* --- Language Dropdown --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.lang-drop-btn {
    background: none;
    border: none;
    color: var(--marloth-weiss);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

.lang-drop-btn:hover {
    color: var(--marloth-tuerkis);
}

.lang-drop-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--marloth-weiss);
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    border-top: 2px solid var(--marloth-tuerkis);
}

.lang-drop-content a {
    color: var(--marloth-stahlblau);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-drop-content a:hover {
    background-color: #f1f1f1;
    color: var(--marloth-tuerkis);
}

.lang-dropdown:hover .lang-drop-content {
    display: block;
}

.lang-btn.active {
    color: var(--marloth-weiss);
    font-weight: 700;
    border-bottom: 2px solid var(--marloth-tuerkis);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* --- Robot Badge Avatar Updates --- */
.robot-badge-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.3;
    filter: grayscale(100%);
}

.robot-badge-avatar img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.robot-badge-avatar.active {
    opacity: 1;
    filter: grayscale(0%);
    border-color: var(--marloth-tuerkis);
    /* box-shadow removed for flat design */
}

/* --- Improved Logo Cropping --- */
.robot-badge-avatar img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Specific adjustments for logos if needed */
.robot-badge-avatar[title="FANUC"] img,
.robot-badge-avatar[title="Universal Robots"] img {
    transform: scale(1.1); /* Slightly zoom in to reduce whitespace */
}

/* --- Mobile Contact Bar --- */
.mobile-contact-bar {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--marloth-stahlblau);
    z-index: 2000;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    justify-content: space-around;
    gap: 10px;
}

.mobile-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: var(--marloth-weiss);
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    font-size: 1rem;
}

.mobile-contact-btn.call-btn {
    background: var(--marloth-tuerkis);
    color: var(--marloth-stahlblau);
}

.mobile-contact-btn.email-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    #configurator {
        display: none !important;
    }
    
    .mobile-contact-bar {
        display: flex;
    }
    
    /* Adjust footer padding to account for the bar */
    .site-footer {
        padding-bottom: 80px;
    }

    /* Optimized Typography & Spacing for Mobile */
    .hero-section h1 {
        font-size: 2.5rem; /* Smaller hero title */
        margin-bottom: 1rem;
    }

    .hero-section .tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 2rem; /* Smaller section headings */
        margin-bottom: 30px;
    }

    .usp-section, .contact-section, .video-section {
        padding: 60px 20px; /* Reduced padding */
    }

    .usp-card {
        padding: 30px 20px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}
