/* ... Rest des CSS (Side-Nav, Hero, Buttons) bleibt gleich ... */
/* Kopiere hier einfach deinen restlichen Code für .side-nav, .hero-content etc. hin */
.side-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 100;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.nav-dot.active {
    background-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    transform: scale(1.3);
}