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

:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #00a8e8;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #f5f5f5;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 36px;
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 100%;
}

.top-bar-left {
    color: var(--text-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-link:hover {
    color: var(--primary-color);
}

.top-bar-icon {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.top-bar-icon:hover {
    color: var(--primary-color);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border-top: 1px solid #e0e0e0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-circle {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.nav-menu svg {
    width: 10px;
    height: 10px;
}

.nav-cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.nav-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: default;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f0f0f0 100%);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f0f0f0 100%);
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-image: url('img/top2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    filter: blur(8px) brightness(1.1);
    opacity: 0.3;
    transform: scale(1);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(245, 245, 245, 0.4) 0%, rgba(245, 245, 245, 0.2) 50%, transparent 100%);
    z-index: 2;
}

/* Smoke effect overlay - removed for cleaner look */

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 3.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-subtitle-small {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 550px;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffd700;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #f5f5f5;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid #e0e0e0;
}

.cta-button-secondary:hover {
    background: #e8e8e8;
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.hero-trust {
    margin-top: 2.5rem;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.trust-avatars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-rating {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.trust-rating span {
    color: #ffd700;
    font-size: 1rem;
}

.hero-right {
    position: relative;
}

.hero-image-collage {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image-collage {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image-collage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.8) 40%, rgba(240, 240, 240, 0.65) 100%);
    z-index: 10;
    animation: gradientRevealOverlay 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 0.3s;
    border-radius: 12px;
    pointer-events: none;
    will-change: transform, opacity;
    overflow: hidden;
}

@keyframes gradientRevealOverlay {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

.collage-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: collageReveal 1.2s ease-out forwards;
    z-index: 1;
}

.collage-item-1 {
    animation-delay: 0.8s;
}

.collage-item-2 {
    animation-delay: 1.0s;
}

.collage-item-3 {
    animation-delay: 1.2s;
}

@keyframes collageReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.collage-item:hover {
    transform: translateY(0) scale(1.05);
    z-index: 5;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-item-1 {
    top: 0;
    left: 0;
    width: 40%;
    height: 40%;
    z-index: 3;
}

.collage-item-2 {
    bottom: 0;
    left: 0;
    width: 45%;
    height: 45%;
    z-index: 2;
}

.collage-item-3 {
    top: 10%;
    right: 0;
    width: 65%;
    height: 70%;
    z-index: 4;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ============================================
   BUTTONS & CTA
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffd700;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #ffed4e;
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
    scroll-margin-top: 140px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* New Section Header Styles */
    .section-header {
        margin-bottom: 2rem;
    }

.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.section-label-marker {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 2px;
    flex-shrink: 0;
}

.section-label-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4a017;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-main-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    position: relative;
}

.section-main-title::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0.2;
    top: -5px;
    left: -15px;
    z-index: -1;
}

.section-separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 1.5rem 0;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin-top: 1rem;
    letter-spacing: 0.01em;
}

/* Legacy styles for backward compatibility */
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: var(--bg-white);
}

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

.problem-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

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

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    background: var(--bg-light);
}

.solution-content {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.solution-text {
    width: 100%;
}

.solution-text .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 450px 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 0 1rem;
}

.feature-left,
.feature-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
}

.feature-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature-image-wrapper {
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.feature-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
    border-radius: 20px;
    z-index: -1;
}

.feature-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.feature-item-left {
    flex-direction: row;
    margin-right: -50px;
    z-index: 2;
}

.feature-item-right {
    flex-direction: row-reverse;
    text-align: right;
    margin-left: -50px;
    z-index: 2;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    z-index: 3;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd700;
    border-radius: 50%;
    transition: var(--transition);
}

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

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* ============================================
   APPLICATIONS SECTION
   ============================================ */
.applications-section {
    background: var(--bg-white);
}

/* ============================================
   OZONIERUNG INFO SECTION
   ============================================ */
.ozonierung-info-section {
    background: var(--bg-light);
}

.ozonierung-info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ozonierung-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.chemiefrei-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.25) 100%);
    border: 2px solid var(--accent-yellow);
    border-radius: 50px;
    padding: 1.25rem 2rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.badge-text strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.badge-text span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.vorteile-section {
    background: var(--bg-white);
}

.auto-section,
.messie-section {
    background: #f7f8fa;
}

.auto-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.auto-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.auto-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auto-list li {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ffd700;
    line-height: 1.75;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.auto-list strong {
    color: var(--text-dark);
}

.auto-keywords {
    font-size: 0.95rem;
    color: var(--text-light);
}

.auto-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.messie-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.messie-card {
    background: white;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.messie-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* ============================================
   VORTEILE SECTION
   ============================================ */
.vorteile-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vorteile-intro {
    margin-bottom: 3rem;
}

.vorteile-lead {
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-dark);
    text-align: center;
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

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

.vorteile-category {
    background: white;
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-yellow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vorteile-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.category-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-title::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: var(--accent-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.category-text {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.vorteile-conclusion {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.conclusion-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: var(--bg-light);
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1.5rem;
    letter-spacing: 0.01em;
}

.pricing-vehicles {
    margin-bottom: 3rem;
}

.vehicles-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-yellow);
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.pricing-card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
}

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

.pricing-offer {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.offer-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.offer-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.payment-methods {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.payment-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

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

.payment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: var(--transition);
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.payment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.payment-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-yellow);
    border-radius: 50%;
}

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

.application-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.application-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.app-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.application-card:hover .app-icon {
    transform: scale(1.3) rotate(10deg);
}

.app-image-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.app-image-wrapper.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    filter: brightness(0.95);
    display: block;
}

.application-card:hover .app-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.application-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.application-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-left {
    position: relative;
}

.experience-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.experience-overlay-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffd700;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.overlay-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.overlay-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    transform: rotate(180deg);
}

.experience-right {
    position: relative;
}

.experience-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.experience-label-marker {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 2px;
    flex-shrink: 0;
}

.experience-label-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4a017;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.experience-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.experience-title::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0.15;
    top: -5px;
    left: -15px;
    z-index: -1;
}

.experience-separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 2rem 0;
}

.experience-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.experience-stats {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.stat-icon {
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.stat-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.stat-stars {
    font-size: 1.5rem;
    color: #ffd700;
    letter-spacing: 2px;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    background: white;
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
}

.why-us-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-us-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.label-marker {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 2px;
    flex-shrink: 0;
}

.label-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.why-us-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.why-us-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    max-width: 800px;
    position: relative;
}

.why-us-main-title::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0.2;
    top: -10px;
    left: -20px;
    z-index: -1;
}

.why-us-cta-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #ffd700;
    background: #ffd700;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    flex-shrink: 0;
}

.why-us-cta-button:hover {
    background: #ffed4e;
    border-color: #ffed4e;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-separator {
    width: 1px;
    height: 20px;
    background: var(--text-dark);
    opacity: 0.3;
}

.why-us-cta-button svg {
    width: 14px;
    height: 14px;
}

.why-us-banner {
    background: #ffd700;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.05) 20px,
            rgba(0, 0, 0, 0.05) 40px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.05) 20px,
            rgba(0, 0, 0, 0.05) 40px
        );
    opacity: 0.3;
}

.banner-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 4rem;
}

.banner-stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.why-us-badges {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    align-items: flex-start;
}

.badge-certificate-large {
    flex: 0 0 50%;
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.certificate-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.badge-certificates-small {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-card {
    background: white;
    border-radius: 14px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-image img {
    height: 50px;
    width: auto;
    display: block;
}

.badge-horizontal .badge-image img {
    height: 40px;
}

.badge-text p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.safety-notice {
    background: linear-gradient(135deg, #fff9e6 0%, #fffef5 100%);
    border-left: 4px solid var(--accent-yellow);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.safety-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.safety-content {
    flex: 1;
}

.safety-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.safety-text {
    margin: 0;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1rem;
}

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

.why-us-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-us-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-us-image-wrapper.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.why-us-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.why-us-card:hover .why-us-image {
    transform: scale(1.05);
}

.why-us-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1.5rem 1rem;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.process-section {
    background: linear-gradient(180deg, rgba(255, 247, 222, 0.4) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 100px 0;
    text-align: center;
}

.process-header {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.process-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4a017;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.process-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--text-dark);
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.process-step {
    background: white;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-step::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(255, 215, 0, 0.7));
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.process-step:last-child::after {
    display: none;
}

.process-step h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 0.75rem;
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffd700;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-visual {
    position: relative;
}

.contact-visual-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 100%;
}

.contact-person-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.contact-visual-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
}

.contact-person-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-person-info {
    color: var(--text-light);
    margin: 0.2rem 0;
}

.contact-person-info a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-person-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer a {
    color: inherit;
    text-decoration: underline;
}

.footer a:hover {
    color: #ffd700;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }
.delay-9 { transition-delay: 0.9s; }
.delay-10 { transition-delay: 1.0s; }
.delay-11 { transition-delay: 1.1s; }

/* Section header animations */
.section-label,
.section-main-title,
.section-separator,
.section-description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-label.visible,
.section-main-title.visible,
.section-separator.visible,
.section-description.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ============================================ */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-main-title {
        font-size: clamp(1.75rem, 4vw, 2.2rem);
        margin-bottom: 1.25rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-top: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .section-separator {
        margin: 1rem 0;
    }
    
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

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

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 0.75rem 0;
    }

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

    .hero-left {
        order: 1;
        padding: 1.25rem 1rem;
    }

    .hero-right {
        order: 2;
    }

    .hero-image-collage {
        height: 240px;
    }

    .problems-grid,
    .applications-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-person-image {
        min-height: 320px;
    }

    .contact-visual-card {
        position: static;
        margin: 1.5rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .process-step::after {
        display: none;
    }

    .solution-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-center {
        order: -1;
    }

    .feature-image-wrapper {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .feature-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem;
        align-items: center !important;
        justify-content: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem !important;
        align-self: center !important;
    }

    .feature-item-left,
    .feature-item-right {
        margin: 0 !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .feature-item-left .feature-icon,
    .feature-item-right .feature-icon {
        margin: 0 auto 1rem !important;
        order: -1;
    }

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

    .auto-image {
        order: -1;
    }
    
    .vorteile-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vorteile-category {
        padding: 1.75rem 1.5rem;
    }
    
    .vorteile-lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .vorteile-conclusion {
        padding: 1.5rem;
    }
    
    .conclusion-text {
        font-size: 1.05rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.75rem 1.5rem;
    }
    
    .pricing-intro {
        margin-bottom: 2rem;
    }
    
    .pricing-vehicles {
        margin-bottom: 2rem;
    }
    
    .pricing-offer {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .process-step {
        padding: 1.5rem 1.25rem;
    }
    
    .why-us-header {
        margin-bottom: 2rem;
    }
    
    .why-us-card h3 {
        padding: 1.25rem 1rem;
    }
    
    .why-us-card p {
        padding: 0 1rem 1.25rem;
    }
    
    .auto-content,
    .messie-content {
        gap: 1.5rem;
    }
    
    .experience-layout {
        gap: 2rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-offer {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-icon {
        margin: 0 auto;
    }
    
    .payment-methods {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .payment-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .payment-intro {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .payment-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .payment-item {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .ozonierung-description {
        font-size: 1.05rem;
    }
    
    .chemiefrei-badge {
        flex-direction: column;
        padding: 1.5rem 1.5rem;
        gap: 1rem;
    }
    
    .badge-text {
        align-items: center;
        text-align: center;
    }
    
    .badge-text strong {
        font-size: 1.1rem;
    }
    
    .badge-text span {
        font-size: 0.9rem;
    }

    .auto-image img {
        max-height: 280px;
        object-fit: cover;
    }

    .feature-item-right {
        flex-direction: column;
        text-align: center;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .solution-text .lead {
        font-size: 1.1rem;
    }

    .application-card {
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .app-image-wrapper {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1.5rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .app-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        display: block;
        max-width: 100%;
    }
    
    .applications-grid {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .why-us-image-wrapper {
        height: 240px;
        min-height: 240px;
    }
    
    .why-us-image {
        object-fit: cover;
        object-position: center;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-header {
        margin-bottom: 2rem;
    }
    
    .carousel-container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-wrapper {
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 400px;
        max-height: 500px;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .carousel-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-button {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .carousel-button:active {
        transform: translateY(-50%) scale(0.9);
    }
    
    .carousel-button-prev {
        left: 8px;
    }
    
    .carousel-button-next {
        right: 8px;
    }
    
    .carousel-button svg {
        width: 22px;
        height: 22px;
    }
    
    .carousel-dots {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .carousel-dot:active {
        transform: scale(1.1);
    }

    .why-us-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .why-us-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-us-badges {
        flex-direction: column;
    }
    
    .badge-certificate-large,
    .badge-certificates-small {
        flex: 0 0 100%;
    }
    
    .safety-notice {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .safety-icon {
        width: 40px;
        height: 40px;
    }

    .why-us-cta-button {
        align-self: flex-start;
    }

    .banner-content {
        flex-direction: column;
        gap: 2rem;
    }

    .why-us-banner {
        padding: 2rem 1.5rem;
    }

    .experience-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-left {
        order: -1;
    }

    .experience-overlay-box {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }

    .experience-stats {
        flex-direction: column;
        gap: 2rem;
    }

}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 35px 0;
    }
    
    .section-header {
        margin-bottom: 1.75rem;
    }
    
    .section-main-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        margin-top: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        padding: 0.75rem 15px;
        top: 0;
    }
    
    .nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 18rem;
    }
    
    .hero-content {
        padding: 0.5rem 0;
    }
    
    .hero-layout {
        gap: 1rem;
    }
    
    .hero-left {
        padding: 1.25rem 1rem;
    }
    
    .hero-image-collage {
        height: 240px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 5vw, 1.9rem);
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle-small {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-image-collage {
        height: 300px;
    }

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

    .problem-card,
    .application-card {
        padding: 1.5rem 1.25rem;
    }
    
    .vorteile-category {
        padding: 1.5rem 1.25rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    
    .process-step {
        padding: 1.25rem 1rem;
    }
    
    .pricing-offer {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }

    .why-us-card h3 {
        padding: 1rem 0.75rem;
        font-size: 1.2rem;
    }

    .why-us-main-title {
        font-size: 1.8rem;
    }

    .why-us-cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

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

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

    .contact-form {
        padding: 1.5rem;
    }

    .application-card {
        padding: 1.75rem 1.25rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .app-image-wrapper {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1.5rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .app-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        display: block;
        max-width: 100%;
    }
    
    .applications-grid {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .why-us-image-wrapper {
        height: 220px;
        min-height: 220px;
    }
    
    .why-us-image {
        object-fit: cover;
        object-position: center;
    }
    
    .gallery-section {
        padding: 35px 0;
    }
    
    .gallery-header {
        margin-bottom: 1.5rem;
    }
    
    .carousel-container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-wrapper {
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        max-height: 400px;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .carousel-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .carousel-button:active {
        transform: translateY(-50%) scale(0.9);
    }
    
    .carousel-button-prev {
        left: 6px;
    }
    
    .carousel-button-next {
        right: 6px;
    }
    
    .carousel-button svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-dots {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }
    
    .carousel-dot:active {
        transform: scale(1.1);
    }

    .experience-section {
        padding: 60px 0;
    }

    .experience-overlay-box {
        padding: 1rem 1.2rem;
        gap: 0.75rem;
    }

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

    .overlay-text {
        font-size: 0.65rem;
    }

    .experience-title {
        font-size: 1.8rem;
    }

    .experience-description {
        font-size: 1rem;
    }

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

    .stat-stars {
        font-size: 1.2rem;
    }

    .auto-image img {
        max-height: 320px;
        object-fit: cover;
    }

    .feature-image-wrapper {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }

    .feature-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .feature-item-left,
    .feature-item-right {
        flex-direction: column !important;
        text-align: center !important;
        margin: 0 !important;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin: 0 auto 1rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center !important;
        order: -1;
    }
    
    .feature-item-left .feature-icon,
    .feature-item-right .feature-icon {
        margin: 0 auto 1rem !important;
        align-self: center !important;
    }
}

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

/* Ensure text readability */
section {
    background-color: var(--bg-white) !important;
}

.problem-section,
.solution-section,
.applications-section,
.contact-section {
    background-color: var(--bg-white) !important;
}

.solution-section {
    background-color: var(--bg-light) !important;
}

.why-us-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 215, 0, 0.1) 100%) !important;
}

/* ============================================
   GALLERY CAROUSEL SECTION
   ============================================ */
.gallery-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.gallery-header {
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
    width: 100%;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-image {
    width: 100%;
    height: 600px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    color: var(--text-dark);
}

.carousel-button:hover {
    background: var(--accent-yellow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.carousel-button:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-button-prev {
    left: 20px;
}

.carousel-button-next {
    right: 20px;
}

.carousel-button svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent-yellow);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 215, 0, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    transform: scale(1.3);
}

