/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Input with Dropdown Styles */
.input-with-dropdown {
    position: relative;
}

.input-with-dropdown input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-white);
}

.input-with-dropdown input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-with-dropdown input[type="text"]:disabled {
    background-color: var(--bg-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.input-with-dropdown input[type="hidden"] {
    display: none;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-section-alt: #fafbfc;
    --bg-section-blue: #f5f7fb;
    --bg-section-gray: #f9fafb;
    --bg-section-white: #ffffff;
    --border-color: #e2e8f0;
    --section-shadow-top: 0 -2px 8px rgba(0, 0, 0, 0.03);
    --section-shadow-bottom: 0 2px 8px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-3d: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-3d-hover: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    will-change: transform;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 100%);
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    min-height: 80px;
}

/* Bei mittleren Bildschirmen: Logo über Menü zentrieren */
@media (max-width: 1100px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        min-height: auto;
    }
    
    .logo-link {
        margin-left: 0;
        justify-content: center;
    }
    
    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .nav-menu li:not(:last-child)::after {
        right: -0.25rem;
        height: 20px;
        width: 2px;
        opacity: 0.7;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
    border-radius: 8px;
    margin-left: -0.5rem;
}

.logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo-link:active {
    transform: translateY(0);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 220px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: none;
}

.logo-link:hover .logo-image {
    filter: none;
    transform: scale(1.02);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
}

.logo-accent {
    color: var(--primary-color);
}

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

.nav-menu li {
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.375rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 24px;
    background-color: var(--border-color);
    opacity: 0.7;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap; /* Verhindert Textumbrüche */
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Aktiver Menüpunkt - Border unten mit Shadow */
.nav-link.active {
    position: relative;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: calc(0.625rem - 2px);
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::before {
    display: none;
}

.nav-link.active::after {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(30, 64, 175, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before {
    width: calc(100% - 2.5rem);
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link:active {
    transform: translateY(0);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: none;
    list-style: none;
    padding: 0.5rem;
    margin-top: 0.25rem;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    will-change: transform, opacity;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    transform: scaleY(0);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-link:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(30, 64, 175, 0.05));
    color: var(--primary-color);
    padding-left: 1.5rem;
    transform: translateX(4px);
}

.nav-dropdown-link:hover::before {
    transform: scaleY(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background: rgba(37, 99, 235, 0.05);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--text-dark), var(--primary-color));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    transform-origin: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(37, 99, 235, 0.5) 100%);
    z-index: 1;
    opacity: var(--overlay-opacity, 1);
    transition: opacity 0.3s ease-out;
    will-change: opacity;
}

.hero.scrolled .hero-background::after {
    opacity: var(--overlay-opacity, 0.3);
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    will-change: opacity;
}

.hero-background-image.fade-out {
    opacity: 0;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    height: 120px;
    width: auto;
    max-width: 300px;
    display: block;
    filter: none;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-logo-image {
        height: 80px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-logo-image {
        height: 60px;
        max-width: 150px;
    }
}


.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: none;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    min-height: 42px; /* Touch-Target Mindestgröße */
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    will-change: transform;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: none;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    will-change: transform;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
    transform: translateY(-3px);
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--text-light);
    border-radius: 2px;
}


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

.fade-in,
.fade-in-delay,
.fade-in-delay-2,
.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    animation-delay: 0.1s;
}

.fade-in-delay {
    animation-delay: 0.3s;
}

.fade-in-delay-2 {
    animation-delay: 0.5s;
}

.fade-in-delay-3 {
    animation-delay: 0.7s;
}

.fade-in.revealed,
.fade-in-delay.revealed,
.fade-in-delay-2.revealed,
.fade-in-delay-3.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 45px 0;
    will-change: scroll-position;
    position: relative;
    scroll-margin-top: 90px; /* Offset für fixierten Header */
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 80px;
    }
}

/* Dezente Schatten für Section-Trennung */
section::before,
section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
    pointer-events: none;
    z-index: 1;
}

section::before {
    top: 0;
}

section::after {
    bottom: 0;
}

/* Hero Section hat keine Trennung oben */
.hero::before {
    display: none;
}

/* Zusätzliche dezente Box-Shadows für bessere Trennung */
.services {
    box-shadow: var(--section-shadow-top);
}

.hersteller-section {
    box-shadow: var(--section-shadow-top), var(--section-shadow-bottom);
}

.apple-irp-section {
    box-shadow: var(--section-shadow-top), var(--section-shadow-bottom);
}

.about {
    box-shadow: var(--section-shadow-top), var(--section-shadow-bottom);
}

.reviews-section {
    box-shadow: var(--section-shadow-top), var(--section-shadow-bottom);
}

.instagram-gallery {
    box-shadow: var(--section-shadow-top), var(--section-shadow-bottom);
}

.contact {
    box-shadow: var(--section-shadow-top);
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 30px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services {
    background-color: var(--bg-section-alt);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0.75rem 0;
    overflow: visible;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-list {
        font-size: 0.9rem;
    }
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: none;
    transition: transform 0.3s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform;
    contain: layout style paint;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.25rem;
    }
}

.service-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:hover {
    box-shadow: none;
    transform: translateY(-8px);
}

.service-icon {
    font-size: 1.75rem;
    width: 52px;
    height: 52px;
    background-color: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.service-card:hover .service-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Float Animation entfernt - schlichter */

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0.875rem;
    transform: translateY(-50%);
}

/* About Section */
.about {
    background-color: var(--bg-light);
    padding: 80px 0;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .about-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-columns {
        gap: 1.25rem;
    }
}

.about-text-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: sticky;
    top: 100px;
    z-index: 100;
    will-change: transform;
    contain: layout style paint;
}

@media (max-width: 1024px) {
    .about-text-card {
        position: static;
        padding: 1.5rem;
    }
}

.about-text-card:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.about-text-content {
    color: var(--text-dark);
}

.about-text-content * {
    color: var(--text-dark);
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-description:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
    overflow: visible;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 1rem;
    }
}

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    will-change: transform;
    contain: layout style paint;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.25rem;
    }
}

.feature-card:hover {
    box-shadow: none;
    transform: translateY(-8px);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0;
}

.feature-card > p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0.875rem;
    transform: translateY(-50%);
}

/* Apple IRP Zertifizierung Section */
.apple-irp-section {
    background-color: var(--bg-section-blue);
    padding: 80px 0;
    position: relative;
}

.apple-irp-content {
    max-width: 1200px;
    margin: 0 auto;
}

.apple-irp-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: none;
    transition: transform 0.3s ease;
    will-change: transform;
    contain: layout style paint;
}

.apple-irp-intro:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.apple-irp-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(30, 64, 175, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    min-width: 200px;
}

.apple-icon {
    font-size: 4rem;
    filter: none;
}

@media (max-width: 768px) {
    .apple-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .apple-icon {
        font-size: 2.5rem;
    }
}

.irp-badge-text {
    text-align: center;
}

.irp-badge-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.irp-badge-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.apple-irp-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.apple-irp-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.apple-irp-benefits {
    margin-bottom: 4rem;
}

.apple-irp-benefits h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
    overflow: visible;
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.benefit-card {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    will-change: transform;
    contain: layout style paint;
}

.benefit-card:hover {
    box-shadow: none;
    transform: translateY(-6px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--text-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.benefit-card:hover .benefit-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.apple-irp-services {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: none;
    transition: transform 0.3s ease;
    will-change: transform;
    contain: layout style paint;
}

.apple-irp-services:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.apple-irp-services h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.service-type {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.service-type h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.service-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-type ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-type ul li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0.625rem;
    transform: translateY(-50%);
}

@media (max-width: 1024px) {
    .apple-irp-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .apple-irp-badge {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .apple-irp-section {
        padding: 60px 0;
    }
    
    .apple-irp-intro {
        padding: 2rem;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .apple-irp-services {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .apple-irp-intro {
        padding: 1.5rem;
    }
    
    .apple-irp-description p {
        font-size: 1rem;
    }
    
    .apple-irp-benefits h3,
    .apple-irp-services h3 {
        font-size: 1.75rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .apple-irp-services {
        padding: 1.5rem;
    }
}

/* Hersteller Section */
.hersteller-section {
    background-color: var(--bg-section-gray);
    padding: 80px 0;
    position: relative;
}

.hersteller-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hersteller-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.hersteller-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hersteller-description:last-child {
    margin-bottom: 0;
}

.hersteller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 0;
    overflow: visible;
}

.hersteller-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: none;
    will-change: transform;
    contain: layout style paint;
    cursor: pointer;
}

.hersteller-card:hover {
    border-color: var(--primary-color);
    box-shadow: none;
    transform: translateY(-6px);
}

.hersteller-card:active {
    transform: translateY(-4px);
}

.hersteller-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .hersteller-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hersteller-logo {
        height: 50px;
    }
}

.hersteller-logo .logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: var(--transition);
}

.hersteller-card:hover .hersteller-logo .logo-image {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

.hersteller-logo svg {
    width: 80px;
    height: 80px;
}

.hersteller-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
}

.hersteller-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.hersteller-card .brand-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 0.5rem;
    font-style: italic;
    line-height: 1.4;
}

.hersteller-standards {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: none;
    transition: transform 0.3s ease;
    will-change: transform;
    contain: layout style paint;
}

.hersteller-standards:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.hersteller-standards h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.standards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.standard-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.standard-item:hover {
    box-shadow: none;
    transform: translateX(4px);
}

.standard-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.standard-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.standard-content {
    flex: 1;
}

.standard-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.standard-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hersteller-section {
        padding: 60px 0;
    }
    
    .hersteller-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .hersteller-card {
        padding: 1.5rem;
    }
    
    .hersteller-standards {
        padding: 2rem;
    }
    
    .standard-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .standard-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hersteller-description {
        font-size: 1rem;
    }
    
    .hersteller-standards h3 {
        font-size: 1.75rem;
    }
    
    .hersteller-standards {
        padding: 1.5rem;
    }
    
    .standard-item {
        padding: 1.25rem;
    }
}

/* Instagram Gallery Section */
.instagram-gallery {
    background-color: var(--bg-section-alt);
    padding: 80px 0;
    position: relative;
}

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

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .instagram-feed {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-feed {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.instagram-post.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

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

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-info {
    color: white;
    width: 100%;
}

.instagram-post-info .post-likes,
.instagram-post-info .post-comments {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.instagram-fallback {
    display: none;
}

.instagram-fallback.active {
    display: block;
}

.instagram-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 3rem;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.instagram-placeholder h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.instagram-placeholder p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Instagram Embed Styling */
.instagram-embed-container {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
}

.instagram-embed-container:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews-section {
    background-color: var(--bg-white);
    padding: 80px 0;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    contain: layout style paint;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.review-avatar svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
}

.review-author-info {
    flex: 1;
}

.review-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.25rem 0;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.review-rating {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

.reviews-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.reviews-footer .btn {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    padding: 0.875rem 2rem;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1.25rem;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .review-avatar {
        width: 48px;
        height: 48px;
    }
    
    .review-avatar svg {
        width: 24px;
        height: 24px;
    }
    
    .review-name {
        font-size: 1rem;
    }
    
    .stars svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        gap: 1.25rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

/* Business Section */
.business-section {
    background-color: var(--bg-section-blue);
    padding: 80px 0;
    position: relative;
}

.business-section {
    box-shadow: var(--section-shadow-top), var(--section-shadow-bottom);
}

.business-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.business-benefit-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    will-change: transform;
    contain: layout style paint;
}

.business-benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.business-benefit-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.25rem;
}

.business-benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

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

.business-benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.business-cta {
    text-align: center;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.business-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.business-cta p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .business-section {
        padding: 60px 0;
    }
    
    .business-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .business-cta {
        padding: 2rem 1.5rem;
    }
    
    .business-cta h3 {
        font-size: 1.75rem;
    }
}

/* Business Contact Section */
.business-contact-section {
    padding: 90px 0 60px;
    background-color: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.business-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.business-contact-info {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 100px;
}

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

.business-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.business-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.business-contact-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.business-contact-details {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.business-contact-details p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.business-contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.business-contact-details a:hover {
    text-decoration: underline;
}

.business-contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

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

.business-contact-form input[type="text"],
.business-contact-form input[type="email"],
.business-contact-form input[type="tel"],
.business-contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.business-contact-form input:focus,
.business-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.business-contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-loader {
    animation: spin 1s linear infinite;
}

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

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

@media (max-width: 968px) {
    .business-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .business-contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .business-contact-section {
        padding: 80px 0 50px;
    }
    
    .business-contact-info,
    .business-contact-form {
        padding: 1.5rem;
    }
    
    .business-contact-form input,
    .business-contact-form textarea {
        font-size: 16px; /* Verhindert iOS Zoom */
    }
}

/* Contact Section */
.contact {
    background-color: var(--bg-light);
    position: relative;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .contact-content {
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
    animation: slideInLeft 0.6s ease-out 0.3s forwards;
}

.contact-item.visible {
    animation: slideInLeft 0.6s ease-out forwards;
}

.contact-icon {
    font-size: 1.75rem;
    width: 52px;
    height: 52px;
    background-color: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.contact-item:hover .contact-icon {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.contact-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Verhindere Umbrüche in Links (Telefonnummern, E-Mail-Adressen) */
.contact-item p a {
    white-space: nowrap;
    display: inline-block;
    word-break: keep-all;
}

/* Verhindere Umbrüche in wichtigen Kontaktinformationen */
.contact-item:nth-child(1) p {
    /* Adresse - erlaube nur Umbrüche bei <br> */
    white-space: pre-line;
}

.contact-item:nth-child(2) p a {
    /* Telefonnummer */
    white-space: nowrap;
}

.contact-item:nth-child(3) p a {
    /* E-Mail-Adresse */
    white-space: nowrap;
}

/* Verhindere Umbrüche in Straßennamen und Postleitzahlen */
.contact-item p {
    word-spacing: normal;
}

.contact-item p br {
    display: block;
    content: '';
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: none;
    transition: transform 0.3s ease;
    will-change: transform;
    contain: layout style paint;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.contact-form:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

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

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

.form-group input:not(.custom-dropdown-input),
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
    cursor: text;
}

@media (max-width: 480px) {
    .form-group input:not(.custom-dropdown-input),
    .form-group textarea {
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
}

.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select:disabled {
    background-color: var(--bg-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-group select option {
    padding: 0.5rem;
}

.form-group select optgroup {
    font-weight: 600;
    color: var(--text-dark);
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    display: block;
}

.custom-dropdown-input {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
    cursor: text;
}

.custom-dropdown-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

.custom-dropdown-input:disabled {
    background-color: var(--bg-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.custom-dropdown-toggle {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.custom-dropdown-toggle:hover:not(:disabled) {
    color: var(--primary-color);
}

.custom-dropdown-toggle:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.custom-dropdown.active .custom-dropdown-toggle svg {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0 0 8px 8px;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: none;
    margin-top: -1px;
}

.custom-dropdown.active .custom-dropdown-menu {
    display: block;
}

.custom-dropdown-menu-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--bg-light);
}

.custom-dropdown-menu-item:last-child {
    border-bottom: none;
}

.custom-dropdown-menu-item:hover {
    background-color: var(--bg-light);
}

.custom-dropdown-menu-item.selected {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.custom-dropdown-menu-group {
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-dropdown-menu-item.hidden {
    display: none;
}

.dropdown-search:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

.custom-input {
    margin-top: 0.5rem;
    padding: 0.875rem;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--bg-white);
}

.custom-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
}

/* Legal Pages (Impressum, Datenschutz) */
.legal-page {
    padding: 6rem 0 4rem;
    background-color: var(--bg-white);
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: none;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1rem;
    }
    
    .legal-content h1 {
        font-size: 1.75rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
    
    .legal-content h3 {
        font-size: 1rem;
    }
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
}

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

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

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

.legal-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 150px;
    display: block;
    opacity: 0.9;
    transition: var(--transition);
    background: transparent;
    object-fit: contain;
}

.footer-logo:hover .footer-logo-image {
    opacity: 1;
    transform: scale(1.05);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.floating-call-button:hover {
    transform: scale(1.1);
    box-shadow: none;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.floating-call-button:active {
    transform: scale(0.95);
}

.floating-call-button svg {
    width: 28px;
    height: 28px;
    color: white;
}

@media (max-width: 768px) {
    .floating-call-button {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

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

@media (max-width: 480px) {
    .floating-call-button {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
    }

    .floating-call-button svg {
        width: 22px;
        height: 22px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-link {
        margin-left: -0.5rem;
        justify-content: flex-start;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        width: 100%;
        padding: 1.5rem;
        box-shadow: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0.5rem;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 1.25rem;
        border-radius: 10px;
        width: 100%;
        text-align: left;
        display: block;
        margin: 0;
        box-sizing: border-box;
    }
    
    .nav-menu .nav-link.active {
        border-bottom: 2px solid var(--primary-color);
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .nav-menu .nav-link::before {
        bottom: 0.75rem;
    }
    
    .nav-menu .nav-link:hover::before {
        width: calc(100% - 2.5rem);
    }
    
    .nav-menu .nav-item-dropdown {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu .nav-item-dropdown > .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        margin: 0;
    }
    
    /* Keine Trennstriche im mobilen Menü */
    .nav-menu li::after {
        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);
    }

    .nav-wrapper {
        padding: 1rem 0;
        min-height: 70px;
    }
    
    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .hero-logo-image {
        height: 80px;
    }

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

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

    .section-title {
        font-size: 2rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }

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

    .features {
        grid-template-columns: 1fr;
    }
    
    .about-text-card {
        padding: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .instagram-gallery {
        padding: 60px 0;
    }

    .instagram-feed {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .instagram-placeholder {
        padding: 3rem 1.5rem;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .instagram-placeholder h3 {
        font-size: 1.5rem;
    }

    .instagram-placeholder p {
        font-size: 1rem;
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
        margin-left: 0;
        padding: 0;
        padding-left: 1.5rem;
        background-color: var(--bg-light);
        width: 100%;
        border-radius: 8px;
    }
    
    .nav-menu .nav-dropdown li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu .nav-dropdown-link {
        width: 100%;
        padding: 0.875rem 1.25rem;
        margin: 0;
        display: block;
        box-sizing: border-box;
    }

    .nav-item-dropdown:hover .nav-dropdown {
        transform: none;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
        max-width: 150px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 360px) {
    .logo-text {
        display: none;
    }

    .logo-image {
        height: 35px;
        max-width: 120px;
    }

    .hero-logo-image {
        height: 60px;
        max-width: 150px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

    .footer-logo-image {
        height: 40px;
        max-width: 120px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .about-text-card,
    .feature-card,
    .service-card {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .order-form {
        padding: 1.25rem;
    }
    
    .tracking-form-card {
        padding: 1.25rem;
    }
}

/* Hero Small (für Unterseiten) */
.hero-small {
    min-height: 35vh;
    padding: 90px 0 45px;
}

.hero-small .hero-content {
    padding: 1rem;
}

.hero-small .hero-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hero-small .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-small {
        min-height: 28vh;
        padding: 80px 0 35px;
    }
    
    .hero-small .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-small .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-small {
        min-height: 22vh;
        padding: 70px 0 25px;
    }
    
    .hero-small .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-small .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Order Form Styles */
.order-form-section {
    padding: 45px 0;
    background: var(--bg-light);
}

.order-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .order-form-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.order-form {
    background: var(--bg-white);
    padding: 2.25rem;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .order-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .order-form {
        padding: 1.5rem;
    }
}

.order-form.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Info Box */
.order-info-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 120px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    will-change: transform;
    contain: layout style paint;
}

@media (max-width: 1024px) {
    .order-info-box {
        position: static;
    }
}

.order-info-box:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.order-info-box.visible {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.info-box-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.info-box-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: none;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.info-note {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.info-note p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.info-note strong {
    color: var(--primary-color);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

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

@media (max-width: 480px) {
    .order-form-section {
        padding: 40px 0;
    }
    
    .order-form .form-section-title {
        font-size: 1.25rem;
    }
    
    .order-form label {
        font-size: 0.9rem;
    }
    
    .order-form input[type="text"],
    .order-form input[type="email"],
    .order-form input[type="tel"],
    .order-form select,
    .order-form textarea {
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
}

.order-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.order-form .required {
    color: #e74c3c;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"],
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

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

.order-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.order-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
}

.firmenkunde-section {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.firmenkunde-section.show {
    display: block;
}

.order-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
}

.order-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.order-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

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

/* Autocomplete Suggestions */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.autocomplete-suggestions.show {
    display: block;
}

.autocomplete-suggestions li {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--bg-light);
}

.autocomplete-suggestions li:last-child {
    border-bottom: none;
}

.autocomplete-suggestions li:hover,
.autocomplete-suggestions li.highlighted {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Autocomplete Suggestions für Gerätefelder */
.input-with-dropdown .autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: -1px;
    padding: 0;
    list-style: none;
}

.input-with-dropdown .autocomplete-suggestions.show {
    display: block;
}

.input-with-dropdown .autocomplete-suggestions li {
    padding: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--bg-light);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
}

.input-with-dropdown .autocomplete-suggestions li:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.input-with-dropdown .autocomplete-suggestions li:hover,
.input-with-dropdown .autocomplete-suggestions li:focus {
    background-color: var(--bg-light);
    color: var(--primary-color);
    outline: none;
}

/* Datalist komplett verstecken */
.input-with-dropdown datalist {
    display: none !important;
}

@media (max-width: 1024px) {
    .order-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-info-box {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-small {
        min-height: 30vh;
        padding: 100px 0 40px;
    }

    .hero-small .hero-title {
        font-size: 2rem;
    }

    .hero-small .hero-subtitle {
        font-size: 1rem;
    }

    .order-form-section {
        padding: 40px 0;
    }

    .order-form-wrapper {
        gap: 1.5rem;
    }

    .order-form {
        padding: 1.5rem;
    }

    .order-info-box {
        padding: 1.5rem;
    }

    .info-box-title {
        font-size: 1.5rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }
}

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

.tracking-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .tracking-wrapper {
        gap: 1.25rem;
    }
    
    .tracking-info-box .status-info {
        grid-template-columns: 1fr;
    }
}

.tracking-form-container {
    display: flex;
    flex-direction: column;
}

.tracking-form-card {
    background: var(--bg-white);
    padding: 2.25rem;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .tracking-form-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .tracking-form-card {
        padding: 1.5rem;
    }
}

.tracking-form-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

@media (max-width: 768px) {
    .tracking-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tracking-title {
        font-size: 1.25rem;
    }
}

.tracking-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tracking-form .form-group {
    margin-bottom: 0;
}

.tracking-form input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

.tracking-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.tracking-info-box {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    will-change: transform, opacity;
    contain: layout style paint;
}

.tracking-info-box:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.tracking-info-box.compact {
    max-width: 100%;
}

.tracking-info-box.visible {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.info-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

@media (max-width: 768px) {
    .info-box-header {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .info-box-header {
        padding: 1rem 1.25rem;
    }
}

.info-box-header:hover {
    background-color: var(--bg-light);
}

.info-box-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tracking-info-box.compact .info-box-title {
    font-size: 1rem;
}

.info-box-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 4px;
    min-width: 44px;
    min-height: 44px;
}

.info-box-toggle:hover {
    background-color: var(--border-color);
    color: var(--primary-color);
}

.info-box-toggle svg {
    transition: transform 0.3s ease;
}

.tracking-info-box .status-info {
    padding: 1rem 1.5rem;
    padding-top: 0;
    max-height: 400px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.tracking-info-box.compact .status-info {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .tracking-info-box .status-info {
        padding: 1.5rem;
        padding-top: 0;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tracking-info-box .status-info {
        padding: 1.25rem;
        padding-top: 0;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
}

.tracking-info-box .info-note {
    padding: 0 1.5rem 1rem 1.5rem;
    transition: all 0.3s ease-out;
    font-size: 0.875rem;
    color: var(--text-light);
}

.tracking-info-box.compact .info-note {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.8125rem;
}

.tracking-info-box.collapsed .status-info,
.tracking-info-box.collapsed .info-note {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
}

.tracking-info-box.collapsed .info-box-header {
    border-bottom: none;
    padding-bottom: 1.5rem;
}

/* Status-Info wird jetzt in .tracking-info-box .status-info definiert */

.status-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.status-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.status-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.status-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.tracking-info-box.compact .status-content h4 {
    font-size: 0.875rem;
    margin-bottom: 0.2rem;
}

.status-content p {
    color: var(--text-light);
    font-size: 0.8125rem;
    line-height: 1.4;
    margin: 0;
}

.tracking-info-box.compact .status-content p {
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Status Display */
.status-display {
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.status-card {
    background: var(--bg-white);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid var(--border-color);
}

.status-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.status-card-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.status-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.status-value {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-badge.status-offen,
.status-badge.status-eingegangen {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-badge.status-website-anfrage {
    background-color: #e1bee7;
    color: #6a1b9a;
}

.status-badge.status-in_arbeit,
.status-badge.status-in-bearbeitung,
.status-badge.status-in_bearbeitung {
    background-color: #fff3e0;
    color: #f57c00;
}

.status-badge.status-ersatzteile-bestellt {
    background-color: #ffe0b2;
    color: #e65100;
}

.status-badge.status-abgeschlossen {
    background-color: #e8f5e9;
    color: #388e3c;
}

.status-badge.status-versandt {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.status-badge.status-unknown {
    background-color: #f5f5f5;
    color: #616161;
}

.status-timeline {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.timeline-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--bg-white);
    box-shadow: none;
}

.timeline-content {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 6px;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.timeline-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.timeline-status {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.timeline-date {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-left: auto;
}

.timeline-description {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.timeline-empty {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 1024px) {
    .tracking-wrapper {
        gap: 1.25rem;
    }

    .tracking-info-box .status-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tracking-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tracking-section {
        padding: 40px 0;
    }

    .tracking-form-card,
    .tracking-info-box {
        padding: 1.25rem;
    }

    .tracking-title {
        font-size: 1.5rem;
    }

    .status-card {
        padding: 1.5rem;
    }

    .tracking-info-box.compact .status-info {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .tracking-info-box.compact .status-item {
        padding: 0.5rem;
    }

    .info-box-header {
        padding: 0.75rem 1rem;
    }

    .tracking-info-box .info-note {
        padding: 0 1rem 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .status-details {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TRACKING SEITE - ERWEITERTE STYLES
   ============================================ */

.status-display {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    box-shadow: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.info-card:hover {
    box-shadow: none;
    transform: translateY(-1px);
}

.info-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.info-card-content {
    width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item-full {
    grid-column: 1 / -1;
}

.info-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.info-value {
    color: var(--text-dark);
    font-size: 0.875rem;
    line-height: 1.4;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-value a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* PDF List Styles */
.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pdf-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pdf-item:hover {
    background: var(--bg-white);
    box-shadow: none;
    transform: translateX(3px);
}

.pdf-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pdf-info {
    flex: 1;
    min-width: 0;
}

.pdf-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.125rem 0;
}

.pdf-filename {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    word-break: break-all;
}

.btn-small {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive Design für Tracking-Seite */
@media (max-width: 768px) {
    .status-display {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .info-card {
        padding: 0.875rem 1rem;
    }
    
    .status-card {
        padding: 0.875rem 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .status-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .pdf-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.625rem;
    }
    
    .pdf-item .btn-small {
        width: 100%;
        text-align: center;
    }
    
    .info-card-title {
        font-size: 1rem;
    }
    
    .status-card-title {
        font-size: 1rem;
    }
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */

.scroll-progress-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.scroll-progress-bar {
    width: 4px;
    height: 200px;
    background: var(--border-color);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--scroll-progress, 0%);
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
    transition: height 0.1s ease-out;
}

.scroll-progress-dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.scroll-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: all;
}

.scroll-progress-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: none;
}

.scroll-progress-dot:hover {
    background: var(--primary-dark);
    transform: scale(1.2);
}

/* Responsive: Scroll Indicator auf mobilen Geräten ausblenden */
@media (max-width: 768px) {
    .scroll-progress-indicator {
        display: none;
    }
}

/* ============================================
   ERWEITERTE ANIMATIONEN & EFFEKTE
   ============================================ */

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: none;
    }
    50% {
        box-shadow: none;
    }
}

/* Shimmer/Shine Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scale Pulse */
@keyframes scalePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bounce In */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Morphing Shape */

/* Typing Effect */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary-color);
    }
}


/* Flip Animation */
@keyframes flip {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.95);
    }
}

/* Zoom In Out */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Fade In Scale */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ============================================
   ERWEITERTE BUTTON-EFFEKTE
   ============================================ */

.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    box-shadow: none;
}

.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn-secondary:hover::after {
    left: 100%;
}

.btn-secondary:hover {
    box-shadow: none;
}

/* Ripple Button Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
    animation: ripple 0.6s ease-out;
}

/* Ripple Effect Span */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* ============================================
   ERWEITERTE SERVICE-CARD-EFFEKTE
   ============================================ */

.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    box-shadow: none;
}

.service-card .service-icon {
    transition: all 0.4s ease;
    display: inline-block;
}

/* Service Icon Animation entfernt - schlichter */

/* ============================================
   PARALLAX-EFFEKTE
   ============================================ */

.parallax-element {
    transition: transform 0.3s ease-out;
}

.parallax-slow {
    will-change: transform;
}

/* ============================================
   DEKORATIVE ANIMIERTE ELEMENTE
   ============================================ */

/* Gradient Background Animation */
.gradient-bg {
    background: linear-gradient(-45deg, #2563eb, #64748b, #1e40af, #475569);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Shimmer Text Effect */
.shimmer-text {
    background: linear-gradient(90deg, 
        var(--text-dark) 0%, 
        var(--primary-color) 50%, 
        var(--text-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Glowing Icon */
.glow-icon {
    position: relative;
    display: inline-block;
}

.glow-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

/* Rotating Border */
.rotating-border {
    position: relative;
    border: 3px solid transparent;
    background: var(--bg-white);
    background-clip: padding-box;
}

.rotating-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: inherit;
    z-index: -1;
    background-size: 200% 200%;
}

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.1);
}

/* Slide In Animation Classes */
.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

/* Bounce In Animation */
.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

/* Fade In Scale Animation */
.fade-in-scale {
    animation: fadeInScale 0.6s ease-out forwards;
}


/* ============================================
   SCROLL-BASIERTE ANIMATIONEN
   ============================================ */

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

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

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ============================================
   KONTAKT-FORMULAR ANIMATIONEN
   ============================================ */

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    animation: fadeInUp 0.3s ease-out;
}

/* ============================================
   NAVIGATION ANIMATIONEN
   ============================================ */

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link.active::after {
    display: none;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Hamburger Animation */
.hamburger span {
    transition: all 0.3s ease;
}

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

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

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

/* ============================================
   RESPONSIVE ANIMATIONEN
   ============================================ */

@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-1px);
    }
    
}

/* ============================================
   PERFORMANCE-OPTIMIERUNGEN
   ============================================ */

.will-animate {
    will-change: transform, opacity;
}

/* .gpu-accelerated - 3D effects removed - class no longer needed */

