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

:root {
    --primary: #FDB913;
    --primary-dark: #E5A811;
    --primary-light: #FFF8E7;
    --dark: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;
    --green: #059669;
    --green-light: #D1FAE5;
    --border: #e5e5e5;
    --bg-main: #ffffff;
    --bg-section: #f8f9fa;
    --gradient-1: #FDB913;
    --gradient-2: #F97316;
}

/* CRITICAL: Prevent horizontal scrolling */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Performance optimizations */
.feature-card,
.showcase-card,
.floating-element,
.gradient-orb,
.hero-content {
    will-change: transform;
}

.reveal,
.reveal-left,
.reveal-right {
    will-change: transform, opacity;
}

/* Animated Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    bottom: -150px;
    left: -150px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.5s ease;
    margin-left: -2.5rem;
    margin-top: -20px;
    margin-bottom: -20px;
    opacity: 0;
    animation: fadeInImage 0.6s ease forwards;
}

/* Sanfte Bild-Lade-Animation */
@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Alle Bilder sanft einblenden */
img {
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
    animation-delay: 0.1s;
}

img[loading="lazy"] {
    animation-delay: 0s;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--primary);
    color: var(--dark);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    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 ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.4);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-main) 100%);
    z-index: -1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--primary-dark);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

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

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Features Overview */
.features-overview {
    padding: 100px 2rem;
    background: var(--bg-main);
    position: relative;
}

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

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-header h2 .highlight {
    color: var(--primary-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Spotlight Carousel */
.carousel-section-wrapper {
    height: auto;
    position: relative;
}

.carousel-sticky {
    position: relative;
    top: auto;
    padding-bottom: 2rem;
    background: var(--bg-main);
}

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

.feature-carousel {
    overflow: visible !important;
}

.feature-carousel .swiper-wrapper {
    align-items: center;
    padding: 40px 0;
}

.carousel-slide {
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--border);
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.4;
    transform: scale(0.85);
    filter: blur(2px);
}

.carousel-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    border-color: var(--primary);
    box-shadow: 0 30px 80px rgba(253, 185, 19, 0.2);
}

.carousel-slide-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.carousel-slide-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    flex-shrink: 0;
}

.carousel-slide-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.carousel-slide-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.carousel-slide-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
}

.carousel-slide-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.carousel-slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.carousel-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.carousel-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
    padding: 0.7rem 1rem;
    background: var(--bg-section);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.carousel-features li:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.carousel-features li svg {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

.carousel-visual {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.carousel-visual::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.carousel-mockup-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.carousel-mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.carousel-mockup-dot.red { background: #ff5f57; }
.carousel-mockup-dot.yellow { background: #febc2e; }
.carousel-mockup-dot.green { background: #28c840; }

.carousel-mockup-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.carousel-mockup-item {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.carousel-mockup-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.carousel-mockup-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.carousel-mockup-title {
    font-weight: 600;
    font-size: 0.8rem;
}

.carousel-mockup-sub {
    font-size: 0.65rem;
    opacity: 0.6;
}

.carousel-mockup-badge {
    background: var(--primary);
    color: var(--dark);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--text);
}

.carousel-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

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

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Carousel Thumbnails */
.carousel-thumbs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.carousel-thumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-section);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-thumb:hover {
    background: var(--primary-light);
}

.carousel-thumb.active {
    background: var(--primary-light);
    border-color: var(--primary);
}

.carousel-thumb-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.carousel-thumb-icon svg {
    width: 18px;
    height: 18px;
}

.carousel-thumb-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle span:nth-child(1) { margin-bottom: 6px; }
.mobile-menu-toggle span:nth-child(3) { margin-top: 6px; }

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.mobile-nav.active {
    right: 0;
    pointer-events: auto;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li { margin-bottom: 0.5rem; }

.mobile-nav-menu li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-nav-cta {
    display: block;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* ========================================
   MOBILE RESPONSIVE - TABLETS (max-width: 968px)
   ======================================== */
@media (max-width: 968px) {
    /* CRITICAL: Prevent ALL horizontal scrolling */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* All sections must not overflow */
    section, .container, .features-overview, .feature-showcase,
    .feature-map-section, .cta-section {
        overflow-x: hidden !important;
        max-width: 100vw;
        width: 100%;
    }

    /* Header - wie index.html */
    header {
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    nav {
        padding: 0 1rem;
        height: 60px;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 50px;
        margin: 0;
        margin-left: -0.5rem;
    }

    .nav-menu { display: none !important; }
    .nav-cta { display: none !important; }

    /* Mobile Menu Toggle - wie index.html */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        background: rgba(253, 185, 19, 0.1);
        border-radius: 12px;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:active {
        background: rgba(253, 185, 19, 0.2);
        transform: scale(0.95);
    }

    .mobile-menu-toggle span {
        display: block;
        width: 22px;
        height: 2.5px;
        background: var(--dark);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-toggle span:nth-child(1) { margin-bottom: 5px; }
    .mobile-menu-toggle span:nth-child(3) { margin-top: 5px; }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Mobile Nav & Overlay - wie index.html */
    .mobile-nav, .mobile-menu-overlay {
        display: block;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100%;
        background: var(--white);
        z-index: 999;
        padding: 80px 0 2rem 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    }

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

    .mobile-nav-menu {
        list-style: none;
        padding: 0 1.5rem;
        margin: 0;
    }

    .mobile-nav-menu li {
        margin-bottom: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .mobile-nav.active .mobile-nav-menu li {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-nav.active .mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-nav.active .mobile-nav-menu li:nth-child(2) { transition-delay: 0.15s; }
    .mobile-nav.active .mobile-nav-menu li:nth-child(3) { transition-delay: 0.2s; }
    .mobile-nav.active .mobile-nav-menu li:nth-child(4) { transition-delay: 0.25s; }
    .mobile-nav.active .mobile-nav-menu li:nth-child(5) { transition-delay: 0.3s; }

    .mobile-nav-menu li a {
        display: flex;
        align-items: center;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
        transition: all 0.3s ease;
    }

    .mobile-nav-menu li a::before {
        content: '';
        width: 4px;
        height: 4px;
        background: transparent;
        border-radius: 50%;
        margin-right: 12px;
        transition: all 0.3s ease;
    }

    .mobile-nav-menu li a:hover,
    .mobile-nav-menu li a.active {
        color: var(--primary);
    }

    .mobile-nav-menu li a:hover::before,
    .mobile-nav-menu li a.active::before {
        background: var(--primary);
        width: 6px;
        height: 6px;
    }

    .mobile-nav-cta {
        display: block;
        margin: 2rem 1.5rem;
        padding: 1rem 1.5rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
        color: var(--dark);
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        border-radius: 12px;
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease 0.35s;
    }

    .mobile-nav.active .mobile-nav-cta {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 1rem 60px;
        overflow: hidden;
    }

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

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero h1 br {
        display: none;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    /* Features Overview */
    .features-overview {
        padding: 60px 1rem;
    }

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

    .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* CRITICAL: Carousel - Prevent horizontal scroll */
    .carousel-section-wrapper {
        height: auto !important;
        min-height: auto;
        overflow: hidden !important;
    }

    .carousel-sticky {
        position: relative;
        top: auto;
        overflow: hidden;
    }

    .carousel-container {
        padding: 0 1rem;
        overflow: hidden !important;
        max-width: 100%;
    }

    .feature-carousel {
        overflow: hidden !important;
    }

    .feature-carousel .swiper-wrapper {
        padding: 20px 0;
    }

    .carousel-slide {
        padding: 1.5rem;
        opacity: 1 !important;
        transform: scale(1) !important;
        filter: none !important;
        max-width: 100%;
    }

    .carousel-slide-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-thumbs {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    .carousel-thumb-text {
        display: none;
    }

    .carousel-thumb {
        padding: 0.6rem;
    }

    .carousel-slide-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .carousel-slide-icon {
        width: 48px;
        height: 48px;
    }

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

    .carousel-slide-title {
        font-size: 1.25rem;
    }

    .carousel-slide-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .carousel-features {
        padding: 0;
    }

    .carousel-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem;
        background: var(--bg-section);
        border-radius: 8px;
    }

    .carousel-visual {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .carousel-mockup-items {
        gap: 0.5rem;
    }

    .carousel-mockup-item {
        padding: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .carousel-mockup-left {
        width: 100%;
    }

    .carousel-mockup-badge {
        align-self: flex-start;
    }

    /* Carousel Pagination */
    .carousel-pagination {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

    .carousel-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    /* Swiper Adjustments for Mobile */
    .feature-carousel .swiper-wrapper {
        padding: 20px 0;
    }

    /* Feature Showcase - "Bestellungen verwalten wie ein Profi" */
    .feature-showcase {
        padding: 50px 1rem;
        overflow: hidden !important;
    }

    .feature-showcase .container {
        max-width: 100%;
        overflow: hidden;
    }

    .showcase-grid {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
    }

    .showcase-content {
        order: 1;
        max-width: 100%;
    }

    .showcase-visual {
        order: 2;
        max-width: 100%;
        overflow: visible;
        padding: 1rem 0;
    }

    .showcase-content h2 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .showcase-content > p {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }

    /* Feature Grid - 2x2 auf Tablets */
    .showcase-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .showcase-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: var(--bg-section);
        padding: 1rem 0.75rem;
        border-radius: 12px;
        border: 1px solid var(--border);
    }

    .showcase-feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .showcase-feature-icon i,
    .showcase-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .showcase-feature h4 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .showcase-feature p {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin: 0;
    }

    /* Showcase Card / Mockup */
    .showcase-card {
        padding: 1rem;
        border-radius: 16px;
        max-width: 100%;
        overflow: visible;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .showcase-card-mockup {
        padding: 1rem;
        border-radius: 12px;
        order: 1;
    }

    .mockup-header {
        margin-bottom: 0.75rem;
    }

    .mockup-dot {
        width: 8px;
        height: 8px;
    }

    .mockup-content {
        gap: 0.5rem;
    }

    .mockup-item {
        padding: 0.75rem;
        border-radius: 8px;
        flex-wrap: wrap;
    }

    .mockup-item-left {
        flex: 1;
        min-width: 0;
    }

    .mockup-avatar {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .mockup-item-title {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mockup-item-sub {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mockup-item-price {
        font-size: 0.85rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    /* Floating Elements - Mobile: Ausgeblendet */
    .floating-element,
    .floating-element-1,
    .floating-element-2 {
        display: none !important;
    }

    /* Feature Map Section - "Inklusive" - Complete Mobile Overhaul */
    .feature-map-section {
        padding: 50px 1rem 60px;
        overflow: hidden !important;
        max-width: 100vw;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    }

    .feature-map-container {
        padding: 0;
        overflow: hidden !important;
        max-width: 100%;
    }

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

    .feature-map-section .section-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .feature-map-section .section-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .feature-map-section .section-header p {
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .feature-map-glow {
        display: none;
    }

    /* Feature Timeline - Grid Layout für Inklusive Icons */
    .feature-timeline {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.25rem;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        overflow: hidden !important;
    }

    .timeline-line-container {
        display: none;
    }

    .feature-point {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 0;
        padding: 0.15rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .feature-point-dot {
        width: 28px;
        height: 28px;
        margin-bottom: 0;
        transition: all 0.3s ease;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-point-dot svg {
        width: 12px;
        height: 12px;
        stroke: white;
    }

    .feature-point.active .feature-point-dot {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(253, 185, 19, 0.4);
    }

    /* Labels ausblenden auf Mobile */
    .feature-point-label {
        display: none !important;
    }

    /* Feature Detail Container */
    .feature-detail-container {
        margin-top: 1.5rem;
    }

    .feature-detail-card {
        display: none;
        flex-direction: column;
        padding: 1.25rem;
        gap: 1.25rem;
        border-radius: 16px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .feature-detail-card.active {
        display: flex;
    }

    .feature-detail-content {
        order: 1;
    }

    .feature-detail-content h3 {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 0.75rem;
        color: var(--dark);
    }

    .feature-detail-content h3 span {
        display: inline;
        color: var(--primary-dark);
    }

    .feature-detail-content > p {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.6;
        color: var(--text-light);
    }

    .feature-detail-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 1rem;
    }

    .feature-detail-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
        border-radius: 20px;
        background: var(--primary-light);
        color: var(--primary-dark);
        font-weight: 600;
    }

    /* Mobile: MacBook Mockups verstecken, UI-Elemente zeigen */
    .feature-detail-mockup {
        display: none !important;
    }

    .feature-detail-card {
        display: flex;
        flex-direction: column;
    }

    .feature-detail-content {
        order: 1;
    }

    /* Mini-App Optimierungen für Mobile */
    .mini-app-header {
        padding: 0.4rem 0.6rem;
    }

    .mini-app-header .app-logo {
        font-size: 0.5rem;
    }

    .mini-app-header .app-title {
        font-size: 0.55rem;
    }

    .mini-app-header .app-user {
        width: 16px;
        height: 16px;
        font-size: 0.4rem;
    }

    .mini-app-body {
        padding: 0.5rem;
        gap: 0.35rem;
    }

    .feature-ui-element {
        display: block;
        margin-top: 1.5rem;
        order: 2;
    }

    /* Mini Widgets Grid */
    .mini-widgets {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .mini-widget {
        padding: 0.75rem;
        border-radius: 12px;
    }

    .widget-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .widget-value {
        font-size: 1.25rem;
    }

    .widget-label {
        font-size: 0.7rem;
    }

    .widget-change {
        font-size: 0.65rem;
    }

    /* Login Preview */
    .login-preview {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .input-field {
        padding: 0.75rem;
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .login-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Order Timeline */
    .order-timeline {
        padding-left: 1rem;
    }

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

    .timeline-dot {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .timeline-title {
        font-size: 0.9rem;
    }

    .timeline-time {
        font-size: 0.75rem;
    }

    /* Settings Menu */
    .settings-menu {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .settings-item {
        padding: 0.875rem;
        border-radius: 10px;
    }

    .settings-item-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .settings-item-label {
        font-size: 0.9rem;
    }

    /* Chart Elements */
    .feature-mini-chart {
        padding: 1rem !important;
    }

    .chart-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .chart-legend {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .chart-container {
        height: 80px !important;
    }

    /* CTA Section - Mobile ausgeblendet */
    .cta-section {
        display: none !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .cta-buttons a,
    .btn-dark,
    .btn-outline {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }

    footer p {
        font-size: 0.85rem;
    }

    /* Gradient Orbs */
    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }
}

/* ========================================
   MOBILE RESPONSIVE - PHONES (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    /* CRITICAL: Prevent horizontal scroll */
    html, body {
        overflow-x: hidden !important;
    }

    /* Hide CTA section on mobile */
    .cta-section {
        display: none;
    }

    * {
        max-width: 100vw;
    }

    /* Header */
    nav { height: 56px; padding: 0 0.75rem; }
    .logo img { height: 45px; margin-left: 0; }
    .mobile-menu-toggle { width: 44px; height: 44px; border-radius: 10px; }

    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }

    /* Hero */
    .hero {
        padding: 80px 1rem 45px;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Section Spacing */
    .features-overview {
        padding: 50px 0.75rem;
    }

    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    /* Carousel */
    .carousel-container {
        padding: 0 0.75rem;
    }

    .carousel-thumbs {
        gap: 0.4rem;
        padding: 0;
        margin-bottom: 1.25rem;
    }

    .carousel-thumb {
        padding: 0.5rem;
    }

    .carousel-thumb-icon {
        width: 32px;
        height: 32px;
    }

    .carousel-thumb-icon svg {
        width: 16px;
        height: 16px;
    }

    .carousel-slide {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .carousel-slide-icon {
        width: 40px;
        height: 40px;
    }

    .carousel-slide-icon svg {
        width: 20px;
        height: 20px;
    }

    .carousel-slide-title {
        font-size: 1.1rem;
    }

    .carousel-slide-subtitle {
        font-size: 0.8rem;
    }

    .carousel-slide-description {
        font-size: 0.9rem;
    }

    .carousel-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }

    .carousel-visual {
        padding: 0.875rem;
    }

    .carousel-mockup-items {
        gap: 0.4rem;
    }

    .carousel-mockup-item {
        padding: 0.6rem;
    }

    .carousel-mockup-title {
        font-size: 0.8rem;
    }

    .carousel-mockup-sub {
        font-size: 0.7rem;
    }

    .carousel-mockup-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    /* Feature Showcase - "Bestellungen verwalten" */
    .feature-showcase {
        padding: 40px 0.75rem;
    }

    .showcase-content h2 {
        font-size: 1.3rem;
    }

    .showcase-content > p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .showcase-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .showcase-feature {
        padding: 0.75rem 0.5rem;
    }

    .showcase-feature-icon {
        width: 34px;
        height: 34px;
    }

    .showcase-feature h4 {
        font-size: 0.8rem;
    }

    .showcase-feature p {
        font-size: 0.7rem;
    }

    .showcase-card {
        padding: 0.875rem;
        position: relative;
    }

    .mockup-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .mockup-item-title {
        font-size: 0.75rem;
    }

    .mockup-item-sub {
        font-size: 0.65rem;
    }

    .mockup-item-price {
        font-size: 0.8rem;
    }

    /* Feature Map - "Inklusive" */
    .feature-map-section {
        padding: 40px 0.75rem 50px;
    }

    .feature-map-section .section-header h2 {
        font-size: 1.25rem;
    }

    .feature-timeline {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.1rem;
    }

    .feature-point {
        padding: 0;
    }

    .feature-point-dot {
        width: 20px;
        height: 20px;
    }

    .feature-point-dot svg {
        width: 9px;
        height: 9px;
    }

    .feature-point-label {
        display: none !important;
    }

    .feature-detail-card {
        padding: 1rem;
    }

    .feature-detail-content h3 {
        font-size: 1.15rem;
    }

    .feature-detail-content > p {
        font-size: 0.85rem;
    }

    .feature-detail-tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    /* MacBook Mockup für Phones - versteckt */
    .feature-detail-mockup {
        display: none !important;
    }

    .showcase-feature h4 {
        font-size: 0.9rem;
    }

    .showcase-feature p {
        font-size: 0.8rem;
    }

    .showcase-card {
        padding: 1rem;
        border-radius: 14px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        overflow: hidden;
        gap: 0.5rem;
    }

    .showcase-card-mockup {
        padding: 0.875rem;
        border-radius: 10px;
        width: 100%;
        flex: 0 0 100%;
        order: 1;
    }

    .mockup-item {
        padding: 0.65rem;
    }

    .mockup-item-title {
        font-size: 0.8rem;
    }

    .mockup-item-sub {
        font-size: 0.65rem;
    }

    .mockup-item-price {
        font-size: 0.85rem;
    }

    /* Feature Map */
    .feature-map-section {
        padding: 50px 0.75rem 70px;
    }

    .feature-point {
        flex: 0 0 calc(33.333% - 0.75rem);
    }

    .feature-point-dot {
        width: 44px;
        height: 44px;
    }

    .feature-point-dot svg {
        width: 20px;
        height: 20px;
    }

    .feature-point-label {
        font-size: 0.65rem;
    }

    .feature-detail-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .feature-detail-content h3 {
        font-size: 1.25rem;
    }

    .feature-detail-content p {
        font-size: 0.9rem;
    }

    .feature-detail-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    /* UI Elements */
    .mini-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .mini-widget {
        padding: 0.6rem;
    }

    .widget-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .widget-value {
        font-size: 1.1rem;
    }

    .widget-label {
        font-size: 0.65rem;
    }

    /* Settings Menu */
    .settings-menu {
        gap: 0.4rem;
    }

    .settings-item {
        padding: 0.7rem;
    }

    .settings-item-icon {
        width: 32px;
        height: 32px;
    }

    .settings-item-label {
        font-size: 0.85rem;
    }

    /* Order Timeline */
    .order-timeline {
        padding-left: 0.75rem;
    }

    .timeline-item {
        padding-left: 1.25rem;
        padding-bottom: 0.875rem;
    }

    .timeline-dot {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }

    .timeline-title {
        font-size: 0.85rem;
    }

    .timeline-time {
        font-size: 0.7rem;
    }

    /* Login Preview */
    .login-preview {
        padding: 1rem;
    }

    .input-field {
        padding: 0.65rem;
        font-size: 0.8rem;
    }

    .login-btn {
        padding: 0.65rem;
        font-size: 0.85rem;
    }

    /* CTA - Mobile ausgeblendet */
    .cta-section {
        display: none !important;
    }

    /* Footer */
    footer {
        padding: 1.5rem 1rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}

/* ========================================
   MOBILE RESPONSIVE - SMALL PHONES (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    /* CRITICAL: Prevent ALL horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    * {
        max-width: 100vw;
    }

    /* Header */
    nav { height: 52px; padding: 0 0.5rem; }
    .logo img { height: 38px; }
    .mobile-menu-toggle { width: 38px; height: 38px; border-radius: 8px; }
    .mobile-menu-toggle span { width: 20px; }

    /* Mobile Nav - Full width */
    .mobile-nav {
        width: 100%;
        max-width: 100%;
    }

    /* Hero */
    .hero {
        padding: 70px 0.75rem 35px;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.65rem;
        margin-bottom: 1.25rem;
    }

    /* Section Headers */
    .features-overview {
        padding: 40px 0.5rem;
        overflow: hidden;
    }

    /* Feature Showcase - "Bestellungen verwalten" auf kleinen Phones */
    .feature-showcase {
        padding: 35px 0.5rem;
        overflow: hidden !important;
    }

    .feature-showcase .container {
        overflow: hidden !important;
        max-width: 100%;
    }

    .showcase-grid {
        overflow: hidden !important;
        max-width: 100%;
    }

    .showcase-visual {
        overflow: hidden !important;
        padding: 0.5rem 0;
        max-width: 100%;
    }

    .showcase-content h2 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .showcase-content > p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    /* 1 Spalte auf kleinen Phones */
    .showcase-features {
        grid-template-columns: 1fr !important;
        gap: 0.5rem;
    }

    .showcase-feature {
        flex-direction: row;
        text-align: left;
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .showcase-feature-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .showcase-feature-icon i,
    .showcase-feature-icon svg {
        width: 14px;
        height: 14px;
    }

    .showcase-feature h4 {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }

    .showcase-feature p {
        font-size: 0.65rem;
    }

    /* Showcase Card - kompakter für Mobile */
    .showcase-card {
        padding: 0.75rem;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden !important;
        position: relative;
    }

    .showcase-card-mockup {
        padding: 0.75rem;
        border-radius: 10px;
        order: 1;
        max-width: 100%;
        overflow: hidden;
    }

    .mockup-header {
        margin-bottom: 0.5rem;
    }

    .mockup-dot {
        width: 6px;
        height: 6px;
    }

    .mockup-content {
        gap: 0.4rem;
    }

    .mockup-item {
        padding: 0.5rem;
        border-radius: 6px;
    }

    .mockup-item-left {
        gap: 0.5rem;
        min-width: 0;
        flex: 1;
    }

    .mockup-avatar {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        flex-shrink: 0;
        border-radius: 5px;
    }

    .mockup-item-title {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mockup-item-sub {
        font-size: 0.55rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mockup-item-price {
        font-size: 0.7rem;
        flex-shrink: 0;
        margin-left: 0.25rem;
    }

    /* Feature Map - "Inklusive" auf kleinen Phones */
    .feature-map-section {
        padding: 35px 0.5rem 45px;
    }

    .feature-map-section .section-header h2 {
        font-size: 1.1rem;
    }

    .feature-map-section .section-header p {
        font-size: 0.8rem;
    }

    /* 5 columns auf kleinen Phones - kompakte Icons */
    .feature-timeline {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .feature-point {
        padding: 0;
    }

    .feature-point-dot {
        width: 24px;
        height: 24px;
        margin-bottom: 0;
    }

    .feature-point-dot svg {
        width: 10px;
        height: 10px;
    }

    .feature-point-label {
        display: none !important;
    }

    .feature-detail-card {
        padding: 0.875rem;
        gap: 1rem;
    }

    .feature-detail-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .feature-detail-content > p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .feature-detail-list {
        gap: 0.3rem;
    }

    .feature-detail-tag {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }

    /* MacBook Mockup für kleine Phones - versteckt */
    .feature-detail-mockup {
        display: none !important;
    }

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

    .section-header h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .section-label {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    /* Carousel */
    .carousel-container {
        padding: 0 0.5rem;
    }

    .carousel-thumbs {
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .carousel-thumb {
        padding: 0.35rem;
    }

    .carousel-thumb-icon {
        width: 26px;
        height: 26px;
    }

    .carousel-thumb-icon svg {
        width: 14px;
        height: 14px;
    }

    .carousel-slide {
        padding: 1rem;
        border-radius: 14px;
    }

    .carousel-slide-header {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .carousel-slide-icon {
        width: 34px;
        height: 34px;
    }

    .carousel-slide-icon svg {
        width: 18px;
        height: 18px;
    }

    .carousel-slide-title {
        font-size: 0.95rem;
    }

    .carousel-slide-subtitle {
        font-size: 0.75rem;
    }

    .carousel-slide-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .carousel-features li {
        font-size: 0.8rem;
        padding: 0.45rem 0.5rem;
    }

    .carousel-features li svg {
        width: 14px;
        height: 14px;
    }

    /* Carousel Visual - optimiert für kleine Bildschirme */
    .carousel-visual {
        display: block;
        padding: 0.75rem;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
        margin-top: 0.75rem;
    }

    .carousel-mockup-header {
        margin-bottom: 0.5rem;
    }

    .carousel-mockup-dot {
        width: 6px;
        height: 6px;
    }

    .carousel-mockup-items {
        gap: 0.35rem;
    }

    .carousel-mockup-item {
        padding: 0.5rem;
        border-radius: 6px;
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
    }

    .carousel-mockup-left {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex: 1;
        min-width: 0;
    }

    .carousel-mockup-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .carousel-mockup-title {
        font-size: 0.7rem;
        font-weight: 600;
        color: white;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .carousel-mockup-sub {
        font-size: 0.55rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .carousel-mockup-badge {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
        border-radius: 4px;
        background: var(--primary);
        color: var(--dark);
        font-weight: 600;
        flex-shrink: 0;
    }

    /* Feature Showcase */
    .feature-showcase {
        padding: 40px 0.75rem;
    }

    .showcase-grid {
        gap: 2rem;
    }

    .showcase-content h2 {
        font-size: 1.2rem;
    }

    .showcase-content > p {
        font-size: 0.85rem;
    }

    .showcase-features {
        gap: 0.6rem;
    }

    .showcase-feature {
        padding: 0.75rem;
    }

    .showcase-feature-icon {
        width: 32px;
        height: 32px;
    }

    .showcase-feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .showcase-feature h4 {
        font-size: 0.85rem;
    }

    .showcase-feature p {
        font-size: 0.75rem;
    }

    .showcase-card {
        padding: 1rem;
        border-radius: 14px;
    }

    .showcase-card-mockup {
        padding: 0.875rem;
        border-radius: 10px;
    }

    .mockup-header {
        margin-bottom: 1rem;
    }

    .mockup-dot {
        width: 8px;
        height: 8px;
    }

    .mockup-item {
        padding: 0.6rem;
        border-radius: 6px;
    }

    .mockup-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .mockup-item-title {
        font-size: 0.75rem;
    }

    .mockup-item-sub {
        font-size: 0.65rem;
    }

    .mockup-item-price {
        font-size: 0.8rem;
    }

    /* Feature Map */
    .feature-map-section {
        padding: 40px 0.5rem 60px;
    }

    .feature-timeline {
        gap: 0.75rem;
        padding: 1rem 0.25rem;
    }

    .feature-point {
        flex: 0 0 calc(33.333% - 0.5rem);
        padding: 0.25rem;
    }

    .feature-point-dot {
        width: 38px;
        height: 38px;
    }

    .feature-point-dot svg {
        width: 18px;
        height: 18px;
    }

    .feature-point-label {
        font-size: 0.6rem;
        margin-top: 0.35rem;
    }

    .feature-detail-container {
        margin-top: 1.5rem;
    }

    .feature-detail-card {
        padding: 1rem;
        gap: 1rem;
        border-radius: 14px;
    }

    .feature-detail-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-detail-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .feature-detail-list {
        gap: 0.35rem;
        margin-top: 0.75rem;
    }

    .feature-detail-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    /* UI Elements */
    .feature-ui-element {
        margin-top: 1rem;
    }

    .mini-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }

    .mini-widget {
        padding: 0.5rem;
    }

    .widget-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }

    .widget-value {
        font-size: 0.95rem;
    }

    .widget-label {
        font-size: 0.6rem;
    }

    .widget-change {
        font-size: 0.55rem;
    }

    /* Login Preview */
    .login-preview {
        padding: 0.875rem;
        border-radius: 10px;
    }

    .input-field {
        padding: 0.55rem 0.65rem;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        border-radius: 6px;
    }

    .input-field svg, .input-field i {
        width: 14px;
        height: 14px;
    }

    .login-btn {
        padding: 0.55rem;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    /* Order Timeline */
    .order-timeline {
        padding-left: 0.5rem;
    }

    .timeline-item {
        padding-left: 1rem;
        padding-bottom: 0.75rem;
    }

    .timeline-dot {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .timeline-title {
        font-size: 0.8rem;
    }

    .timeline-time {
        font-size: 0.65rem;
    }

    /* Settings Menu */
    .settings-menu {
        gap: 0.35rem;
    }

    .settings-item {
        padding: 0.6rem;
        border-radius: 8px;
    }

    .settings-item-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

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

    /* Chart Elements */
    .feature-mini-chart {
        padding: 0.875rem !important;
        border-radius: 10px;
    }

    .chart-title {
        font-size: 0.75rem;
    }

    .chart-value {
        font-size: 0.7rem;
    }

    .chart-legend {
        font-size: 0.6rem;
    }

    .legend-dot {
        width: 6px;
        height: 6px;
    }

    .chart-container {
        height: 60px !important;
    }

    /* CTA - Mobile ausgeblendet */
    .cta-section {
        display: none !important;
    }

    /* Footer */
    footer {
        padding: 1.25rem 0.75rem;
    }

    footer p {
        font-size: 0.75rem;
    }

    /* Gradient Orbs - Smaller on mobile */
    .orb-1 {
        width: 200px;
        height: 200px;
    }

    .orb-2 {
        width: 150px;
        height: 150px;
    }
}

/* Large Feature Section */
.feature-showcase {
    padding: 120px 2rem;
    background: var(--bg-section);
}

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

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.showcase-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: #b45309;
}

.showcase-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.showcase-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.showcase-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.showcase-visual {
    position: relative;
}

.showcase-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
    position: relative;
}

.showcase-card-mockup {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--white);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-item {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-item-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.mockup-item-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-item-sub {
    font-size: 0.75rem;
    opacity: 0.6;
}

.mockup-item-price {
    font-weight: 700;
    color: var(--primary);
}

.floating-element {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-element-1 {
    top: -20px;
    right: -30px;
}

.floating-element-2 {
    bottom: 40px;
    left: -40px;
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green);
}

.floating-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

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

.floating-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Interactive Feature Map Section */
.feature-map-section {
    padding: 140px 2rem 250px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
}

.feature-map-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Timeline */
.feature-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7rem 2rem 4rem;
    margin-top: 4rem;
}

/* Timeline Line */
.timeline-line-container {
    position: absolute;
    top: calc(7rem + 40px);
    left: 2rem;
    right: 2rem;
    height: 4px;
    z-index: 1;
}

.timeline-line-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--gradient-2));
    border-radius: 2px;
    box-shadow:
        0 0 10px rgba(253, 185, 19, 0.6),
        0 0 20px rgba(253, 185, 19, 0.4),
        0 0 30px rgba(253, 185, 19, 0.2);
}

.feature-point {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex: 1;
    max-width: 180px;
}

/* Glass Effect Dot */
.feature-point-dot {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.feature-point-dot img,
.feature-point-dot svg {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all 0.5s ease;
    opacity: 0.4;
}

.feature-point-dot svg {
    stroke: var(--dark);
}

/* Hover State */
.feature-point:hover .feature-point-dot {
    border-color: rgba(0, 0, 0, 0.15);
}

.feature-point:hover .feature-point-dot img,
.feature-point:hover .feature-point-dot svg {
    opacity: 0.7;
}

/* Active State - Only border glows */
.feature-point.active .feature-point-dot {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary);
    box-shadow:
        0 0 20px rgba(253, 185, 19, 0.5),
        0 0 40px rgba(253, 185, 19, 0.3);
}

.feature-point.active .feature-point-dot img,
.feature-point.active .feature-point-dot svg {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(253, 185, 19, 0.5));
}

.feature-point.active .feature-point-dot svg {
    stroke: var(--primary);
}

.feature-point-label {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    transition: all 0.4s ease;
    letter-spacing: 0.02em;
}

.feature-point:hover .feature-point-label {
    color: var(--text);
}

.feature-point.active .feature-point-label {
    color: var(--primary-dark);
}

.feature-detail-container {
    margin-top: 4rem;
    min-height: 400px;
    position: relative;
}

.feature-detail-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-detail-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.feature-detail-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-detail-content h3 span {
    background: linear-gradient(135deg, var(--primary), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-detail-tag {
    background: rgba(253, 185, 19, 0.15);
    border: 1px solid rgba(253, 185, 19, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-detail-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1rem;
}

/* MacBook Mockup Styling */
.feature-detail-mockup .device-macbook-pro {
    transform: scale(0.85);
    transform-origin: top center;
    margin-top: 2rem;
}

.feature-detail-mockup .device-screen {
    overflow: hidden;
}

/* Browser Mockup - gleiche Größe wie MacBook */
.browser-mockup {
    width: 680px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.85);
    transform-origin: top center;
}

.browser-header {
    background: #e8e8e8;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #ddd;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #febc2e; }
.browser-dot.green { background: #28c840; }

.browser-url {
    flex: 1;
    background: var(--white);
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text);
}

.browser-url i {
    width: 14px;
    height: 14px;
    color: #059669;
}

.browser-content {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.browser-content .mini-app {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Restaurant Website Preview */
.website-preview {
    font-family: 'Inter', sans-serif;
}

.website-nav {
    background: var(--primary);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-logo {
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
}

.website-nav-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.website-nav-links span {
    font-size: 0.75rem;
    color: var(--dark);
    opacity: 0.8;
}

.website-nav-btn {
    background: var(--dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.website-hero {
    background: var(--primary);
    padding: 30px 20px;
    text-align: center;
}

.website-hero h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.website-hero p {
    font-size: 0.85rem;
    color: var(--dark);
    opacity: 0.7;
}

.website-menu {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.menu-item {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.menu-item-emoji {
    font-size: 2rem;
    margin-bottom: 8px;
}

.menu-item-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.menu-item-price {
    font-size: 0.75rem;
    color: var(--primary-dark);
    font-weight: 700;
}

/* Browser Mockup Responsive */
@media (max-width: 968px) {
    .browser-mockup {
        max-width: 100%;
    }

    .website-hero h2 {
        font-size: 1.1rem;
    }

    .website-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
    }

    .menu-item {
        padding: 12px 8px;
    }

    .menu-item-emoji {
        font-size: 1.5rem;
    }

    .menu-item-name {
        font-size: 0.7rem;
    }
}

/* Mini App Screens */
.mini-app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}

.mini-app-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-app-header .app-logo {
    font-size: 0.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.mini-app-header .app-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.mini-app-header .app-user {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: white;
}

.mini-app-body {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f8f9fa;
}

/* Login Screen - Laptop */
.mini-login .mini-app-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
}

.mini-login .mini-input {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.55rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 70%;
}

.mini-login .mini-input-icon {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 2px;
}

.mini-login .mini-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 1rem;
    font-size: 0.55rem;
    font-weight: 600;
    text-align: center;
    width: 70%;
}

.mini-login .mini-forgot {
    text-align: center;
    font-size: 0.45rem;
    color: var(--primary-dark);
}

/* Dashboard Screen - Laptop */
.mini-dashboard .mini-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}

.mini-dashboard .mini-stat-card {
    background: white;
    border-radius: 6px;
    padding: 0.4rem;
    text-align: center;
}

.mini-dashboard .mini-stat-value {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--dark);
}

.mini-dashboard .mini-stat-label {
    font-size: 0.4rem;
    color: #999;
    margin-top: 0.1rem;
}

.mini-dashboard .mini-chart-placeholder {
    background: white;
    border-radius: 6px;
    padding: 0.5rem;
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.mini-dashboard .mini-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gradient-2) 100%);
    border-radius: 2px 2px 0 0;
    min-height: 8px;
}

/* Statistiken Screen - Laptop */
.mini-stats .mini-app-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0.5rem;
}

.mini-stats .mini-stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mini-stats .mini-chart-lines {
    background: white;
    border-radius: 6px;
    padding: 0.5rem;
    position: relative;
    overflow: hidden;
}

.mini-stats .mini-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
}

.mini-stats .mini-stat-row-label {
    font-size: 0.45rem;
    color: #666;
}

.mini-stats .mini-stat-row-value {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--dark);
}

.mini-stats .mini-stat-row-change {
    font-size: 0.4rem;
    color: var(--green);
    font-weight: 600;
}

/* Bestellungen Screen - Laptop */
.mini-orders .mini-app-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.mini-orders .mini-order-card {
    background: white;
    border-radius: 6px;
    padding: 0.4rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-orders .mini-order-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mini-orders .mini-order-id {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--dark);
}

.mini-orders .mini-order-items {
    font-size: 0.4rem;
    color: #999;
}

.mini-orders .mini-order-badge {
    font-size: 0.35rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 20px;
}

.mini-orders .mini-order-badge.new {
    background: rgba(253, 185, 19, 0.15);
    color: var(--primary-dark);
}

.mini-orders .mini-order-badge.progress {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.mini-orders .mini-order-badge.done {
    background: rgba(5, 150, 105, 0.15);
    color: var(--green);
}

/* Settings Screen - Laptop */
.mini-settings .mini-app-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.mini-settings .mini-settings-item {
    background: white;
    border-radius: 6px;
    padding: 0.4rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-settings .mini-settings-left {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mini-settings .mini-settings-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
}

.mini-settings .mini-settings-label {
    font-size: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.mini-settings .mini-toggle {
    width: 22px;
    height: 12px;
    background: var(--green);
    border-radius: 8px;
    position: relative;
}

.mini-settings .mini-toggle::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

.mini-settings .mini-toggle.off {
    background: #ddd;
}

.mini-settings .mini-toggle.off::after {
    right: auto;
    left: 2px;
}

/* ===== VERBESSERTE MOCKUP STYLES ===== */

/* Login Screen - Verbesserungen */
.mini-login .mini-login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.mini-login .mini-logo-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
}

.mini-login .mini-login-logo span {
    font-size: 0.5rem;
    color: #666;
    font-weight: 500;
}

.mini-login .mini-input-icon {
    background: transparent;
    font-size: 0.5rem;
}

.mini-login .mini-checkbox {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.4rem;
    color: #666;
    width: 70%;
}

.mini-login .mini-check {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.4rem;
    color: white;
}

.mini-login .mini-login-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.2rem;
}

.mini-login .mini-divider {
    color: #ccc;
    font-size: 0.3rem;
}

.mini-login .mini-help {
    font-size: 0.45rem;
    color: #999;
}

/* Dashboard Screen - Verbesserungen */
.mini-dashboard-layout {
    display: flex !important;
    flex-direction: row !important;
    padding: 0 !important;
    gap: 0 !important;
}

.mini-dashboard .mini-sidebar {
    width: 28px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.4rem 0;
    gap: 0.4rem;
}

.mini-dashboard .mini-nav-item {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    border-radius: 4px;
    opacity: 0.5;
}

.mini-dashboard .mini-nav-item.active {
    background: rgba(253, 185, 19, 0.2);
    opacity: 1;
}

.mini-dashboard .mini-main {
    flex: 1;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mini-dashboard .mini-welcome {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.mini-dashboard .mini-stat-card {
    padding: 0.3rem;
    position: relative;
}

.mini-dashboard .mini-stat-icon {
    font-size: 0.5rem;
    margin-bottom: 0.1rem;
}

.mini-dashboard .mini-stat-trend {
    font-size: 0.35rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

.mini-dashboard .mini-stat-trend.up {
    color: var(--green);
}

.mini-dashboard .mini-chart-section {
    background: white;
    border-radius: 6px;
    padding: 0.4rem;
    flex: 1;
}

.mini-dashboard .mini-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
    font-size: 0.4rem;
    color: #666;
}

.mini-dashboard .mini-chart-total {
    font-weight: 700;
    color: var(--dark);
}

.mini-dashboard .mini-bar span {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.3rem;
    color: #999;
}

.mini-dashboard .mini-bar {
    position: relative;
}

.mini-dashboard .mini-bar.active {
    background: linear-gradient(180deg, var(--primary) 0%, #e5a811 100%);
}

/* Statistiken Screen - Verbesserungen */
.mini-stats-layout {
    display: grid !important;
    grid-template-columns: 1fr 1.8fr !important;
    padding: 0.5rem !important;
    gap: 0.5rem !important;
}

.mini-stats .mini-stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mini-stats .mini-stat-box {
    background: white;
    border-radius: 6px;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mini-stats .mini-stat-box.highlight {
    border: 1px solid var(--primary);
    background: rgba(253, 185, 19, 0.05);
}

.mini-stats .mini-stat-box-icon {
    font-size: 0.5rem;
}

.mini-stats .mini-stat-box-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mini-stats .mini-stat-box-value {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--dark);
}

.mini-stats .mini-stat-box-label {
    font-size: 0.35rem;
    color: #999;
}

.mini-stats .mini-stat-box-trend {
    font-size: 0.35rem;
    font-weight: 600;
}

.mini-stats .mini-stat-box-trend.up {
    color: var(--green);
}

.mini-stats .mini-stats-main {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mini-stats .mini-chart-card {
    background: white;
    border-radius: 6px;
    padding: 0.4rem;
    flex: 1;
}

.mini-stats .mini-chart-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.mini-stats .mini-chart-legend {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.3rem;
    color: #666;
}

.mini-stats .legend-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.mini-stats .legend-dot.yellow {
    background: var(--primary);
}

.mini-stats .legend-dot.green {
    background: var(--green);
}

.mini-stats .mini-chart-lines {
    height: 50px;
}

.mini-stats .mini-bestseller {
    background: white;
    border-radius: 6px;
    padding: 0.4rem;
}

.mini-stats .mini-bestseller-title {
    font-size: 0.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
    display: block;
}

.mini-stats .mini-bestseller-list {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mini-stats .mini-bestseller-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.35rem;
    color: #666;
    padding: 0.15rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.mini-stats .mini-bestseller-item:last-child {
    border-bottom: none;
}

/* Bestellungen Screen - Verbesserungen */
.mini-orders-layout {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

.mini-orders .mini-orders-tabs {
    display: flex;
    gap: 0.3rem;
    padding: 0.4rem 0.5rem;
    background: white;
    border-bottom: 1px solid #eee;
}

.mini-orders .mini-tab {
    font-size: 0.4rem;
    color: #999;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.mini-orders .mini-tab.active {
    background: var(--dark);
    color: white;
}

.mini-orders .mini-tab-count {
    background: rgba(0,0,0,0.1);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    font-size: 0.35rem;
}

.mini-orders .mini-tab-count.highlight {
    background: var(--primary);
    color: var(--dark);
}

.mini-orders .mini-orders-list {
    flex: 1;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    overflow: hidden;
}

.mini-orders .mini-order-card {
    background: white;
    border-radius: 6px;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid #eee;
}

.mini-orders .mini-order-card.new-order {
    border-color: var(--primary);
    background: rgba(253, 185, 19, 0.03);
}

.mini-orders .mini-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-orders .mini-order-id {
    font-size: 0.45rem;
    font-weight: 700;
    color: var(--dark);
}

.mini-orders .mini-order-time {
    font-size: 0.35rem;
    color: #999;
}

.mini-orders .mini-order-customer {
    display: flex;
    justify-content: space-between;
    font-size: 0.35rem;
    color: #666;
}

.mini-orders .mini-order-type {
    font-size: 0.35rem;
}

.mini-orders .mini-order-items {
    font-size: 0.35rem;
    color: #999;
}

.mini-orders .mini-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.1rem;
}

.mini-orders .mini-order-total {
    font-size: 0.45rem;
    font-weight: 700;
    color: var(--dark);
}

.mini-orders .mini-order-badge {
    font-size: 0.3rem;
}

/* Einstellungen Screen - Verbesserungen */
.mini-settings-layout {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

.mini-settings .mini-settings-nav {
    display: flex;
    gap: 0.2rem;
    padding: 0.3rem 0.5rem;
    background: white;
    border-bottom: 1px solid #eee;
}

.mini-settings .mini-settings-nav-item {
    font-size: 0.35rem;
    color: #999;
    padding: 0.15rem 0.3rem;
    border-radius: 4px;
}

.mini-settings .mini-settings-nav-item.active {
    background: var(--dark);
    color: white;
}

.mini-settings .mini-settings-content {
    flex: 1;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mini-settings .mini-settings-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mini-settings .mini-settings-section-title {
    font-size: 0.35rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-settings-layout .mini-settings-item {
    background: white;
    border-radius: 6px;
    padding: 0.35rem 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-settings .mini-settings-info {
    display: flex;
    flex-direction: column;
}

.mini-settings .mini-settings-value {
    font-size: 0.35rem;
    color: #999;
}

.mini-settings .mini-settings-arrow {
    font-size: 0.5rem;
    color: #ccc;
}

.mini-settings .mini-toggle.on {
    background: var(--green);
}

.mini-settings .mini-toggle.on::after {
    right: 2px;
    left: auto;
}

/* Mini Chart Styles */
.feature-mini-chart {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-section);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.feature-mini-chart .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-mini-chart .chart-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.feature-mini-chart .chart-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.feature-mini-chart .chart-value.positive {
    color: var(--green);
}

.feature-mini-chart .chart-container {
    height: 80px;
    width: 100%;
}

.apexcharts-toolbar {
    display: none !important;
}

.chart-legend {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Feature UI Elements */
.feature-ui-element {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-section);
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* Login Preview */
.login-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.login-preview .input-field {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.login-preview .input-field i {
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.login-preview .input-field span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.login-preview .input-field.filled span {
    color: var(--dark);
}

.login-preview .login-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-preview .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 185, 19, 0.4);
}

/* Mini Widgets */
.mini-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mini-widget {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mini-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mini-widget .widget-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.mini-widget .widget-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.mini-widget .widget-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.mini-widget .widget-change {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.mini-widget .widget-change.positive {
    color: var(--green);
}

/* Order Timeline */
.order-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    padding-bottom: 1rem;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    width: 2px;
    height: calc(100% - 12px);
    background: var(--border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.timeline-dot.completed {
    background: var(--green);
    color: white;
}

.timeline-dot.active {
    background: var(--primary);
    color: white;
    animation: pulse-dot 2s infinite;
}

.timeline-dot.pending {
    background: var(--border);
    color: var(--text-muted);
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(253, 185, 19, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(253, 185, 19, 0); }
}

.timeline-content {
    flex: 1;
    padding-top: 2px;
}

.timeline-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.timeline-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Settings Menu */
.settings-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
}

.settings-item:hover {
    border-color: var(--primary);
    background: rgba(253, 185, 19, 0.05);
}

.settings-item-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.settings-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.settings-item-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
}

.settings-item-arrow {
    color: var(--text-muted);
    width: 16px;
    height: 16px;
}

.feature-map-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.feature-map-glow-1 {
    top: -20%;
    left: -10%;
    background: var(--primary);
}

.feature-map-glow-2 {
    bottom: -20%;
    right: -10%;
    background: var(--gradient-2);
}

/* CTA Section */
.cta-section {
    margin-top: 0;
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

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

.btn-dark {
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-dark:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--dark);
    transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                color 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-4px);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    background: var(--bg-section);
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

/* Animations - Only hide when JS is loaded */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(40px);
}

.js-loaded .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.js-loaded .reveal-right {
    opacity: 0;
    transform: translateX(40px);
}
