/* Personal */

 .white {
    color: white !important;
 }

/* */

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

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #344951;
    --accent-color: #4A6B7A;
    --wood-dark: #2E4149;
    --wood-medium: #344951;
    --wood-light: #4A6B7A;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.desktop {
    display: inline;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .desktop {
        display: none;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: 0 1px 0 0 var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #000000;
    color: white;
    padding: 28px 0;
    font-size: 15px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}

/* Logo-Bild nur auf Desktop links neben Firmennamen */
.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header .logo .logo-img {
    display: none;
    height: 70px;
    width: auto;
    object-fit: contain;
}
@media (min-width: 769px) {
    .header .logo .logo-img {
        display: block;
    }
}

.logo h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.logo:hover h1 {
    color: var(--wood-light);
    transform: scale(1.02);
}

.contact-info {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-info-mobile {
    display: none;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.contact-item:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.contact-item:hover {
    transform: translateY(-1px);
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item strong {
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-item span {
    font-size: 13px;
    opacity: 0.8;
}

/* Navigation */
.nav {
    background: var(--bg-white);
    padding: 0;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--wood-medium);
    outline-offset: 2px;
}

    .hamburger-line {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-list li a {
    display: block;
    padding: 20px 28px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-list li a:hover {
    color: var(--wood-medium);
    background: var(--bg-light);
    border-bottom-color: var(--wood-medium);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(46, 65, 73, 0.85), rgba(52, 73, 81, 0.80)),
        url('images/export-verpackung-aus-holz.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.hero-overlay {
    display: none;
}

.hero-reviews {
    position: relative;
    z-index: 2;
    margin: 0 0 24px 0;
    max-width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
    min-width: 0;
}

.hero-text {
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 0;
}

.hero-features {
    list-style: none;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    min-width: 0;
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
    overflow: hidden;
    line-height: 1.4;
    cursor: pointer;
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #10B981;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-features li span {
    flex: 1;
    min-width: 0;
}

.hero-features li:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-features li:hover .hero-feature-icon {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
    transform: scale(1.1) rotate(5deg);
}

/* Desktop: Google-Siegel in der Formular-Karte (wird per JS hierher verschoben) */
@media (min-width: 769px) {
    .hero-form-card .hero-reviews {
        padding-top: 24px;
        margin-top: 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        text-align: left;
    }
}

.hero-cta {
    margin-top: 32px;
}


/* Hero Button mit besserem Rand */
.hero .btn-primary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
}

.hero .btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    border: 1px solid rgba(74, 107, 122, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stars {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
}

.rating-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--wood-light);
}

.rating-subtext {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

/* Hero Form Card */
.hero-form-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(46, 65, 73, 0.3);
    color: var(--text-dark);
    border: 1px solid rgba(74, 107, 122, 0.2);
    position: sticky;
    top: 120px;
}

@media (max-width: 768px) {
    .hero-form-card {
        display: none;
    }
}

.hero-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--wood-dark);
    line-height: 1.3;
}

.hero-form-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--wood-medium);
    margin-top: 12px;
    border-radius: 2px;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 73, 81, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
    accent-color: #10B981;
    flex-shrink: 0;
}

/* Checkmark bei Datenschutz-Checkbox gut sichtbar (Fallback für ältere Browser) */
.checkbox-label input[type="checkbox"]:checked {
    accent-color: #10B981;
}

@supports (-webkit-appearance: none) or (appearance: none) {
    .checkbox-label input[type="checkbox"] {
        -webkit-appearance: none;
        appearance: none;
        border: 2px solid var(--border-color);
        border-radius: 4px;
        background: #fff;
    }
    .checkbox-label input[type="checkbox"]:checked {
        background-color: #10B981;
        border-color: #10B981;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: 14px 14px;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Sections */
section {
    padding: 96px 0;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Client Logos Section */
.client-logos {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.logos-intro {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-height: 100px;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #10B981;
}

.logo-placeholder {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gray);
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.logo-item:hover .logo-placeholder {
    color: #10B981;
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(52, 73, 81, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 107, 122, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 56px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.comparison-card {
    background: white;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.comparison-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

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

.comparison-card.basic {
    border-color: #e5e7eb;
}

.comparison-card.basic .comparison-icon {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.comparison-card.premium {
    border-color: var(--wood-medium);
    background: linear-gradient(135deg, #ffffff 0%, #fefbf9 50%, #ffffff 100%);
    box-shadow: 0 8px 30px rgba(52, 73, 81, 0.12);
}

.comparison-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--wood-medium) 0%, var(--wood-light) 50%, var(--wood-medium) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.comparison-card-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.comparison-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.comparison-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(52, 73, 81, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.comparison-card:hover .comparison-icon::before {
    opacity: 1;
}

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

.comparison-card.premium .comparison-icon {
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(52, 73, 81, 0.3);
}

.comparison-card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.comparison-card.basic .comparison-card-header h3 {
    color: var(--text-gray);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-dark) 100%);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(52, 73, 81, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-badge::before {
    content: '★';
    font-size: 10px;
}

.comparison-card-content p {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.comparison-badges {
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-neutral {
    padding: 10px 18px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-gray);
    border: 1px solid #e5e7eb;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge-neutral:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    transform: translateY(-2px);
}

.comparison-list-enhanced {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
}

.comparison-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    border-left: 4px solid #10B981;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 18px rgba(52, 73, 81, 0.12), 0 0 0 1px rgba(16, 185, 129, 0.12);
    border-left-color: #059669;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.comparison-list li svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    padding: 8px;
    box-sizing: content-box;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 10px;
    color: #10B981;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-list li:hover svg {
    background: rgba(16, 185, 129, 0.18);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.comparison-list li span {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.comparison-list-enhanced li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    border-left: 4px solid #10B981;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.comparison-list-enhanced li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(52, 73, 81, 0.1), transparent);
    transition: width 0.3s ease;
}

.comparison-list-enhanced li:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(52, 73, 81, 0.15);
    border-left-color: #059669;
    background: linear-gradient(135deg, #ffffff 0%, #fefbf9 100%);
}

.comparison-list-enhanced li:hover::before {
    width: 100%;
}

.feature-icon-wrapper {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transition: all 0.3s ease;
}

.comparison-list-enhanced li:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.comparison-list-enhanced li span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
}

.comparison-vs {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    position: relative;
}

.vs-divider {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--wood-medium) 20%, var(--wood-medium) 80%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(93, 64, 55, 0.2);
}

.vs-text {
    font-size: 20px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-dark) 100%);
    padding: 14px 24px;
    border-radius: 50px;
    border: 3px solid white;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(52, 73, 81, 0.3);
    position: relative;
    z-index: 2;
}

.comparison-result {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 36px;
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 50%, var(--wood-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(46, 65, 73, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.comparison-result::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.result-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.comparison-result h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.comparison-result p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Express Section */
.express-section {
    background: var(--bg-white);
    padding: 96px 0;
}

.express-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.express-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(52, 73, 81, 0.12);
    border: 1px solid var(--border-color);
}

.express-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* IPPC Section */
.ippc-section {
    background: var(--bg-light);
    padding: 96px 0;
}

.ippc-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ippc-text {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Why Us Section */
.why-us {
    background: var(--bg-white);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    margin-top: 64px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.why-us-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
    max-width: 1000px;
}

.why-us-text strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.image-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.image-slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.image-grid-why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 100%;
}

.image-grid-why.slider-mode {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: auto;
    max-width: none;
}

.image-grid-why.slider-mode .slider-item {
    flex: 0 0 auto;
    width: calc((100% - 64px) / 3);
    min-width: calc((100% - 64px) / 3);
    max-width: calc((100% - 64px) / 3);
}

.why-us-images {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.image-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.image-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.image-caption {
    padding: 32px 28px;
    background: var(--text-dark);
    color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.image-caption h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.image-caption p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow: hidden;
}

.btn-image {
    display: inline-block;
    padding: 10px 24px;
    background: var(--wood-medium);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.btn-image:hover {
    background: var(--wood-light);
    transform: translateY(-2px);
}

/* Slider Arrows */
.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--wood-medium);
    color: var(--wood-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(52, 73, 81, 0.15);
    position: relative;
    visibility: visible;
    opacity: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.slider-arrow:hover {
    background: var(--wood-medium);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(52, 73, 81, 0.3);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-arrow-left {
    order: -1;
}

.slider-arrow-right {
    order: 1;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--wood-medium);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    min-width: 12px;
    min-height: 12px;
}

.slider-dot:hover {
    background: var(--wood-light);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--wood-medium);
    width: 32px;
    border-radius: 6px;
}


/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium));
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://ats-lademittel.com/wp-content/uploads/2025/07/Transportkisten-in-Berlin-1024x683.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-banner p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--wood-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover {
    background: var(--wood-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Consultation Section */
.consultation-section {
    background: var(--bg-light);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.consultation-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.consultation-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.consultation-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

/* Legal Section */
.legal-section {
    background: var(--bg-white);
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.legal-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.legal-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.legal-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

/* Process Steps Section */
.process-section {
    background: var(--bg-white);
}

.process-section .section-intro {
    margin-bottom: 56px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
}

.process-step {
    background: rgba(46, 65, 73, 0.85);
    padding: 48px 40px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    color: white;
}

.process-step:hover {
    background: rgba(46, 65, 73, 0.95);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #10B981;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #059669);
    border-radius: 12px 12px 0 0;
}

.step-number {
    font-size: 56px;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 20px;
    opacity: 0.5;
    line-height: 1;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-step h4 {
    font-size: 17px;
    font-weight: 600;
    color: #10B981;
    margin-bottom: 20px;
    line-height: 1.4;
}

.process-step ul {
    list-style: none;
}

.process-step li {
    padding: 8px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 24px;
}

.process-step li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

/* Team Section */
.team-section {
    background: var(--wood-dark);
    color: white;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-content {
    text-align: left;
}

.team-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
}

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

.team-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
    color: #10B981;
}

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.team-note {
    background: rgba(74, 107, 122, 0.2);
    padding: 20px 28px;
    border-radius: 8px;
    border-left: 4px solid #10B981;
}

/* Features Section */
.features {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features-wrapper {
    position: relative;
    z-index: 1;
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.15;
}

.features-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 48px 36px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(52, 73, 81, 0.15);
    border-color: #10B981;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wood-medium);
    border-radius: 16px;
    color: white;
    font-size: 36px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--wood-dark);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--wood-dark);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 48px 40px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: #10B981;
}

.testimonial-header {
    margin-bottom: 16px;
}

.testimonial-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--wood-medium);
}

.testimonial-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.4;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.testimonial-cta {
    text-align: center;
    margin-top: 56px;
}

/* Drive In Section */
.drive-in-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.drive-in-section .section-title {
    margin-bottom: 0;
}

/* Manufacturing Section */
.manufacturing-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 64px;
    align-items: stretch;
}

.manufacturing-card.highlight {
    grid-column: 2;
    grid-row: 1 / -1;
}

.manufacturing-card {
    background: white;
    padding: 56px 48px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.manufacturing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #059669);
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.manufacturing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(52, 73, 81, 0.15);
    border-color: #10B981;
}

.manufacturing-card:hover::before {
    transform: scaleX(1);
}

.manufacturing-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--wood-dark);
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

.manufacturing-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0;
    flex-grow: 1;
}

.manufacturing-card.highlight {
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-medium));
    color: white;
    border-color: var(--wood-dark);
    box-shadow: 0 8px 30px rgba(52, 73, 81, 0.25);
    transform: scale(1.02);
}

.manufacturing-card.highlight::before {
    background: linear-gradient(90deg, var(--wood-light), white);
    height: 5px;
}

.manufacturing-card.highlight h3 {
    color: white;
    font-size: 30px;
    margin-bottom: 28px;
}

.manufacturing-card.highlight p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 24px;
}

.manufacturing-card ol {
    margin: 24px 0 32px;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.95);
    list-style: none;
    counter-reset: step-counter;
}

.manufacturing-card ol li {
    margin: 16px 0;
    font-size: 17px;
    line-height: 1.7;
    position: relative;
    padding-left: 40px;
    counter-increment: step-counter;
}

.manufacturing-card ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.made-in-germany {
    font-weight: 700;
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 32px;
    color: white;
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.manufacturing-card.highlight .btn {
    margin-top: auto;
    background: white;
    color: var(--wood-dark);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.manufacturing-card.highlight .btn:hover {
    background: var(--wood-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq {
    background: var(--bg-white);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-content {
    max-width: 100%;
}

.faq-list {
    margin-top: 0;
}

.faq-title-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.faq-title-right .section-title {
    text-align: left;
    margin-bottom: 0;
}

.faq-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 500px;
}

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

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #10B981;
    box-shadow: 0 4px 12px rgba(52, 73, 81, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--wood-dark);
    text-align: left;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.faq-question:hover {
    color: var(--wood-medium);
}

.faq-item.active .faq-question {
    background: white;
    color: var(--wood-medium);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--wood-medium);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Contact & Location Section */
.contact-location {
    background: var(--bg-light);
}

.contact-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: var(--text-dark);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    background: var(--bg-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 16px;
}

.map-placeholder-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder.hidden,
.map-placeholder-footer.hidden {
    display: none;
}

.location-info {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.location-info:hover {
    background: var(--bg-white);
    border-color: var(--wood-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-info svg {
    flex-shrink: 0;
    color: var(--wood-medium);
}

.location-info a {
    text-decoration: none;
    color: inherit;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 56px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--wood-light);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 8px;
}

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

.footer-section ul li {
    padding: 6px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.2s ease;
    font-size: 15px;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--wood-light);
}

.footer-map {
    grid-column: span 1;
}

.map-container-footer {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    margin-top: 16px;
}

.map-container-footer iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--wood-light);
}

.footer-credit {
    font-size: 13px;
    opacity: 0.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #10B981;
}

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

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

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

.cookie-banner-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.cookie-banner-text p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

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

.cookie-banner .btn {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 15px;
    white-space: nowrap;
}

.cookie-banner .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-banner .btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 16px;
        border-top-width: 2px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-text h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cookie-banner-text p {
        font-size: 14px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 18px 14px;
    }

    .cookie-banner-text h4 {
        font-size: 17px;
    }

    .cookie-banner-text p {
        font-size: 13px;
    }

    .cookie-banner .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* Legal Content Section */
.legal-content-section {
    background: var(--bg-light);
    min-height: 60vh;
}

.legal-content-section h1 {
    color: var(--wood-dark);
    margin-bottom: 32px;
}

.legal-content-section h2 {
    color: var(--wood-dark);
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content-section h3 {
    color: var(--wood-medium);
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 16px;
}

.legal-content-section p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content-section strong {
    color: var(--wood-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content-section {
        padding: 60px 0;
    }

    .legal-content-section > .container > div {
        padding: 0 16px;
    }

    .legal-content-section > .container > div > div {
        padding: 32px 24px !important;
    }

    .legal-content-section h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .legal-content-section h2 {
        font-size: 22px;
        margin-top: 32px;
    }

    .legal-content-section h3 {
        font-size: 18px;
        margin-top: 20px;
    }

    .legal-content-section p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .legal-content-section > .container > div > div {
        padding: 24px 20px !important;
    }

    .legal-content-section h1 {
        font-size: 28px;
    }

    .legal-content-section h2 {
        font-size: 20px;
        margin-top: 28px;
    }

    .legal-content-section h3 {
        font-size: 17px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-us-content,
    .consultation-grid,
    .legal-grid,
    .team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .image-slider-container {
        gap: 12px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .process-steps,
    .features-grid,
    .testimonials-grid,
    .manufacturing-grid {
        grid-template-columns: 1fr;
    }

    .manufacturing-card.highlight {
        grid-column: 1;
        grid-row: auto;
    }

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

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

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

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-card {
        padding: 36px 28px;
    }

    .comparison-card-header h3 {
        font-size: 22px;
    }

    .comparison-icon {
        width: 80px;
        height: 80px;
    }

    .comparison-vs {
        flex-direction: column;
        padding-top: 0;
        gap: 16px;
    }

    .vs-divider {
        width: 3px;
        height: 50px;
        background: linear-gradient(180deg, transparent 0%, var(--wood-medium) 20%, var(--wood-medium) 80%, transparent 100%);
    }

    .vs-text {
        font-size: 18px;
        padding: 12px 20px;
    }

    .comparison-result {
        padding: 40px 32px;
    }

    .comparison-result h3 {
        font-size: 26px;
    }

    .comparison-result p {
        font-size: 16px;
    }

    .result-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header Mobile Optimierung */
    .header-top {
        padding: 16px 0;
    }

    .header-top-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
        width: 100%;
    }

    .logo {
        flex: 0 0 auto;
        min-width: 0;
    }

    .logo h1 {
        font-size: 18px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: white;
    }

    .contact-info {
        display: none;
    }

    .contact-info-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        justify-content: center;
        min-width: 0;
        color: white;
        text-align: center;
        padding: 0 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .contact-info-mobile:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    .contact-info-mobile svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        opacity: 0.9;
    }

    .contact-info-mobile strong {
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: 'Space Grotesk', sans-serif;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
    }

    /* Navigation Mobile */
    .nav {
        padding: 0;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }

    .contact-info-mobile {
        order: 2;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(180deg, var(--wood-dark) 0%, var(--wood-medium) 100%);
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding-top: 80px;
        padding-bottom: 40px;
        border-left: 3px solid #10B981;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: -1;
    }

    .nav-list.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li:first-child {
        margin-top: 8px;
    }

    .nav-list li a {
        padding: 20px 28px;
        font-size: 17px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 4px solid transparent;
        border-right: none;
        min-height: 56px;
        display: flex;
        align-items: center;
        width: 100%;
        color: white;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-list li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: rgba(16, 185, 129, 0.2);
        transition: width 0.3s ease;
    }

    .nav-list li a:hover,
    .nav-list li a:focus {
        border-bottom-color: rgba(255, 255, 255, 0.15);
        border-left-color: #10B981;
        background: rgba(255, 255, 255, 0.08);
        color: white;
        padding-left: 32px;
    }

    .nav-list li a:hover::before,
    .nav-list li a:focus::before {
        width: 100%;
    }

    .nav-list li:last-child a {
        border-bottom: none;
    }

    /* Hero Section Mobile - Modern Redesign */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0;
        background: linear-gradient(135deg, rgba(46, 65, 73, 0.65), rgba(52, 73, 81, 0.6)),
            url('images/export-verpackung-aus-holz.webp');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        width: 100%;
        overflow-x: hidden;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
        pointer-events: none;
    }

    .hero .container {
        padding: 48px 16px 48px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
        justify-items: stretch;
    }

    .hero-text {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        text-align: center;
        overflow: hidden;
        min-width: 0;
    }

    /* Modern Badge */
    .hero-text::before {
        content: 'Made in Germany';
        display: inline-block;
        padding: 6px 14px;
        background: rgba(16, 185, 129, 0.2);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(16, 185, 129, 0.4);
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        color: #10B981;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    }

    .hero-title {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 12px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        text-align: center;
        overflow: hidden;
        min-width: 0;
        letter-spacing: -0.01em;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        color: white;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        max-width: 22em;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.65;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        box-sizing: border-box;
        padding: 0 8px;
        text-align: center;
        overflow: hidden;
        min-width: 0;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 400;
    }

    /* Mobile: Minimales 2x2 ohne Karten – nur Icon + Text, viel Hintergrund sichtbar */
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
        margin: 0 0 32px 0;
        padding: 0 8px;
        list-style: none;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features li {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 16px 0 16px 0;
        background: transparent;
        border: none;
        border-radius: 0;
        text-align: center;
        transition: opacity 0.2s ease;
    }

    .hero-features li:hover {
        opacity: 0.92;
    }

    .hero-features li:active {
        opacity: 0.85;
    }

    .hero-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        margin-bottom: 0;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(16, 185, 129, 0.2);
        border: 1px solid rgba(16, 185, 129, 0.35);
        flex-shrink: 0;
    }

    .hero-feature-icon svg {
        width: 20px;
        height: 20px;
        color: #10B981;
    }

    .hero-features li span {
        font-size: 12px;
        font-weight: 600;
        color: white;
        text-align: center;
        line-height: 1.3;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    }

    /* Mobil: Google-Siegel über dem Button (Reihenfolge beibehalten) */
    /* Mobil: Button zuerst, dann Siegel darunter */
    .hero-reviews {
        order: 11;
        transform: scale(0.82);
        transform-origin: top center;
        margin-bottom: 12px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-cta {
        order: 10;
        margin-top: 0;
        text-align: center;
        width: 100%;
    }

    .hero-text .btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
        margin: 0 auto;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
        min-height: 56px;
        display: flex;
        overflow: hidden;
        min-width: 0;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.15s ease, box-shadow 0.2s ease;
    }

    .hero-text .btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 12px rgba(16, 185, 129, 0.35);
    }

    .hero-text .btn:focus-visible {
        outline: 3px solid rgba(255, 255, 255, 0.8);
        outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
        .hero-text .btn {
            transition: none;
        }
        .hero-text .btn:active {
            transform: none;
        }
    }

    .hero-form-card {
        display: none;
    }

    /* Buttons Mobile - Bessere Touch-Targets */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 16px;
        touch-action: manipulation;
        justify-content: center;
        margin: 0 auto;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 17px;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-intro {
        font-size: 16px;
        margin-bottom: 40px;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    /* Why Us Section Mobile */
    .why-us-content {
        gap: 40px;
        margin-top: 40px;
    }

    .why-us-text {
        text-align: left;
    }

    .why-us-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .why-us-text p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }

    .comparison-list {
        margin-bottom: 24px;
        text-align: left;
    }

    .comparison-list li {
        padding: 12px 16px;
        font-size: 15px;
        gap: 12px;
        justify-content: flex-start;
    }

    .comparison-list svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    /* Image Slider Mobile */
    .image-slider-container {
        gap: 12px;
        margin-bottom: 24px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        padding: 0;
        box-sizing: border-box;
    }

    .image-slider-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        flex: 1;
        min-width: 0;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
        z-index: 10;
        position: relative;
    }

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

    .image-grid-why {
        width: 100%;
        max-width: 100%;
    }

    .image-grid-why.slider-mode {
        width: auto;
        max-width: none;
    }

    .image-grid-why.slider-mode .slider-item {
        width: calc(100% - 24px) !important;
        min-width: calc(100% - 24px) !important;
        max-width: calc(100% - 24px) !important;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .image-item img {
        height: 250px;
    }

    .image-caption {
        padding: 20px 16px;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .image-caption h3 {
        font-size: 18px;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .image-caption p {
        font-size: 14px;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        max-width: 100%;
        overflow: hidden;
        line-height: 1.5;
    }

    .slider-dots {
        margin-top: 24px;
        justify-content: center;
        display: flex;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
    }

    .slider-dot.active {
        width: 28px;
    }

    /* Client Logos Mobile */
    .client-logos {
        padding: 40px 0;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .logo-item {
        padding: 20px;
        min-height: 80px;
    }

    .logo-item img {
        max-height: 50px;
    }

    /* Process Steps Mobile */
    .process-steps {
        gap: 24px;
        margin-top: 40px;
    }

    .process-step {
        padding: 32px 24px;
        text-align: center;
    }

    .step-number {
        font-size: 48px;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-step h3 {
        font-size: 18px;
        margin-bottom: 8px;
        text-align: center;
    }

    .process-step h4 {
        font-size: 16px;
        margin-bottom: 16px;
        text-align: center;
    }

    .process-step ul {
        text-align: left;
        max-width: 100%;
        margin: 0 auto;
    }

    .process-step li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 20px;
    }

    /* Express Section Mobile */
    .express-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .express-image {
        order: -1;
        max-height: 320px;
    }

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

    .express-text {
        text-align: left;
    }

    .express-text p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 24px;
        text-align: left;
    }

    .express-text h3 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Team Section Mobile */
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        gap: 40px;
    }

    .team-image {
        order: -1;
        height: 300px;
    }

    .team-content {
        text-align: left;
    }

    .team-content h2 {
        font-size: 32px;
        margin-bottom: 16px;
        text-align: center;
    }

    .team-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .testimonial-card {
        padding: 32px 24px;
        text-align: center;
    }

    .testimonial-header {
        text-align: center;
    }

    .testimonial-header h4 {
        font-size: 16px;
        text-align: center;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-content h3 {
        text-align: center;
    }

    .testimonial-content p {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
    }

    .testimonial-cta {
        margin-top: 40px;
        text-align: center;
    }

    /* CTA Banner Mobile */
    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cta-banner p {
        font-size: 18px;
        margin-bottom: 32px;
    }

    /* Consultation Section Mobile */
    .consultation-grid {
        gap: 40px;
    }

    .consultation-content {
        text-align: left;
    }

    .consultation-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }

    .consultation-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }

    .consultation-image {
        order: -1;
    }

    .consultation-image img {
        height: 300px;
    }

    /* Legal Section Mobile */
    .legal-grid {
        gap: 40px;
    }

    .legal-content {
        text-align: left;
    }

    .legal-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }

    .legal-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
        text-align: left;
    }

    .legal-image {
        order: -1;
    }

    .legal-image img {
        height: 300px;
    }

    /* IPPC Section Mobile */
    .ippc-text {
        padding: 32px 24px;
        text-align: left;
    }

    .ippc-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .ippc-text h4 {
        font-size: 20px;
        margin-bottom: 16px;
        margin-top: 24px;
        text-align: center;
    }

    .ippc-text p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }

    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 36px 28px;
        text-align: center;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card h3 {
        font-size: 20px;
        text-align: center;
    }

    .feature-card p {
        text-align: center;
    }

    /* FAQ Mobile */
    .faq-grid {
        gap: 40px;
    }

    .faq-title-right {
        order: -1;
        margin-bottom: 32px;
    }

    .faq-title-right .section-title {
        text-align: left;
        font-size: 28px;
    }

    .faq-list {
        margin-top: 0;
    }

    .faq-item {
        margin-bottom: 16px;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
        min-height: 48px;
    }

    .faq-answer {
        text-align: left;
    }

    .faq-answer p {
        padding: 0 24px 20px;
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
    }

    /* Contact Form Mobile */
    .contact-location-grid {
        gap: 40px;
    }

    .contact-form-section {
        text-align: left;
    }

    .contact-form-section h2 {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.3;
        text-align: center;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 16px;
        font-size: 16px;
        min-height: 48px;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .checkbox-label {
        font-size: 14px;
        gap: 12px;
    }

    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }

    /* Map Container Mobile */
    .map-container {
        height: 350px;
        margin-bottom: 20px;
    }

    .location-info {
        padding: 16px;
        margin-top: 20px;
        text-align: left;
    }

    .location-info svg {
        width: 20px;
        height: 20px;
    }

    .location-info strong {
        font-size: 15px;
    }

    .location-info p {
        text-align: left;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 24px;
    }

    .footer-grid {
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .footer-section ul li {
        padding: 4px 0;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

    .map-container-footer {
        height: 180px;
        margin-top: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 4px;
    }

    .footer-links a {
        font-size: 13px;
    }

    /* Comparison Section Mobile */
    .comparison-card {
        padding: 28px 20px;
    }

    .comparison-card-header h3 {
        font-size: 20px;
    }

    .comparison-icon {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Header Extra Small */
    .header-top {
        padding: 16px 0;
    }

    .logo h1 {
        font-size: 19px;
    }

    .contact-item {
        font-size: 13px;
        padding: 10px 0;
    }

    .contact-item svg {
        width: 18px;
        height: 18px;
    }

    .contact-item strong {
        font-size: 13px;
    }

    .contact-item span {
        font-size: 11px;
    }

    /* Navigation Extra Small */
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        right: 16px;
    }

    .nav-list {
        width: 280px;
    }

    .nav-list li a {
        padding: 18px 24px;
        font-size: 16px;
    }

    /* Hero Extra Small - Modern Redesign */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0;
    }

    .hero .container {
        padding: 40px 12px 0px 12px;
    }

    .hero-content {
        gap: 0;
        justify-items: stretch;
    }

    .hero-text::before {
        display: none;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.2;
        margin: 0 0 10px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
        text-align: center;
        letter-spacing: -0.01em;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 14px;
        margin: 0 0 20px 0;
        max-width: 22em;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 4px;
        text-align: center;
        line-height: 1.6;
        font-weight: 600
    }

    .hero-features {
        gap: 20px 16px;
        margin-bottom: 28px;
        max-width: 260px;
    }

    .hero-features li {
        gap: 6px;
        padding: 14px 0 14px 0;
    }

    .hero-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        border-radius: 10px;
    }

    .hero-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-features li span {
        font-size: 11px;
    }

    /* Mobil: Button zuerst, dann Siegel darunter */
    .hero-reviews {
        order: 11;
        transform: scale(0.72);
        transform-origin: top center;
        margin-bottom: 8px;
        padding-top: 28px
    }

    .hero-cta {
        order: 10;
        margin-top: 0;
        text-align: center;
        width: 100%;
    }

    .hero-text .btn {
        padding: 18px 24px;
        font-size: 16px;
        min-height: 60px;
        border-radius: 14px;
    }

    .hero-form-card {
        display: none;
    }

    /* Buttons Extra Small */
    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }

    /* Section Titles Extra Small */
    .section-title {
        font-size: 26px;
        margin-bottom: 16px;
        text-align: center;
    }

    .section-intro {
        font-size: 15px;
        margin-bottom: 32px;
        text-align: center;
    }

    section {
        padding: 48px 0;
    }

    /* Why Us Extra Small */
    .why-us-text {
        text-align: left;
    }

    .why-us-text h3 {
        font-size: 22px;
        margin-bottom: 16px;
        text-align: center;
    }

    .why-us-text p {
        font-size: 15px;
        margin-bottom: 16px;
        text-align: left;
    }

    .comparison-list li {
        padding: 10px 14px;
        font-size: 14px;
    }

    .comparison-list svg {
        width: 18px;
        height: 18px;
    }

    /* Image Slider Extra Small */
    .image-slider-container {
        gap: 8px;
    }

    .image-slider-wrapper {
        flex: 1;
        min-width: 0;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        flex-shrink: 0;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .image-grid-why.slider-mode .slider-item {
        width: calc(100% - 16px) !important;
        min-width: calc(100% - 16px) !important;
        max-width: calc(100% - 16px) !important;
        box-sizing: border-box;
    }

    .image-caption {
        padding: 18px 14px;
        text-align: center;
    }

    .image-caption h3 {
        font-size: 17px;
        text-align: center;
    }

    .image-caption p {
        font-size: 13px;
        line-height: 1.5;
        text-align: center;
    }

    .image-item img {
        height: 220px;
    }

    .image-caption {
        padding: 18px 14px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        text-align: center;
    }

    .image-caption h3 {
        font-size: 17px;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        text-align: center;
    }

    .image-caption p {
        font-size: 13px;
        margin-bottom: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        max-width: 100%;
        overflow: hidden;
        line-height: 1.5;
        text-align: center;
    }

    .image-caption .btn-image {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .btn-image {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Client Logos Extra Small */
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .logo-item {
        padding: 16px;
        min-height: 70px;
    }

    /* Process Steps Extra Small */
    .process-steps {
        gap: 20px;
        margin-top: 32px;
    }

    .process-step {
        padding: 24px 20px;
    }

    .step-number {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .process-step h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .process-step h4 {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .process-step li {
        font-size: 13px;
        padding: 5px 0;
        padding-left: 18px;
    }

    /* Express Section Extra Small */
    .express-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .express-text h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* Team Section Extra Small */
    .team-section {
        padding: 48px 0;
    }

    .team-grid {
        gap: 32px;
    }

    .team-image {
        height: 250px;
    }

    .team-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .team-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    /* Testimonials Extra Small */
    .testimonials-grid {
        gap: 20px;
        margin-top: 32px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .testimonial-header h4 {
        font-size: 15px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    /* CTA Banner Extra Small */
    .cta-banner {
        padding: 48px 0;
    }

    .cta-banner h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .cta-banner p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    /* Consultation Extra Small */
    .consultation-grid {
        gap: 32px;
    }

    .consultation-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .consultation-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .consultation-image img {
        height: 250px;
    }

    /* Legal Extra Small */
    .legal-grid {
        gap: 32px;
    }

    .legal-content h2 {
        font-size: 24px;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .legal-content p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .legal-image img {
        height: 250px;
    }

    /* IPPC Extra Small */
    .ippc-section {
        padding: 48px 0;
    }

    .ippc-text {
        padding: 28px 20px;
    }

    .ippc-text h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .ippc-text h4 {
        font-size: 18px;
        margin-bottom: 14px;
        margin-top: 20px;
    }

    .ippc-text p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    /* Features Extra Small */
    .features-grid {
        gap: 20px;
        margin-top: 32px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    /* FAQ Extra Small */
    .faq-grid {
        gap: 32px;
    }

    .faq-title-right .section-title {
        font-size: 24px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    /* Contact Form Extra Small */
    .contact-location-grid {
        gap: 32px;
    }

    .contact-form-section h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        font-size: 15px;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    /* Map Extra Small */
    .map-container {
        height: 300px;
    }

    .location-info {
        padding: 14px;
        margin-top: 16px;
    }

    .location-info strong {
        font-size: 14px;
    }

    /* Footer Extra Small */
    .footer {
        padding: 48px 0 20px;
    }

    .footer-grid {
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-section h3 {
        font-size: 17px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-section ul li a {
        font-size: 13px;
    }

    .map-container-footer {
        height: 160px;
    }

    .footer-bottom {
        gap: 10px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    /* Comparison Extra Small */
    .comparison-card {
        padding: 24px 16px;
    }

    .comparison-card-header h3 {
        font-size: 18px;
    }

    .comparison-icon {
        width: 56px;
        height: 56px;
    }
}