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

html {
    scroll-behavior: smooth;
}

a {
    color: #ff6b35;
    padding: 8px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* TeamViewer Support Button */
.teamviewer-support {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.teamviewer-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.teamviewer-support a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Verbesserte Hero-Section mit Padding-Top für Navigation */
.hero {
    min-height: 100vh; /* Mindesthöhe für kleine bis mittlere Bildschirme */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0; /* Padding für kleinere Bildschirme */
    padding-top: 120px; /* Zusätzliches Padding-Top wegen der fixen Navigation */
}

/* Responsive Anpassungen für die Hero-Section */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh; /* Etwas kleiner auf Tablets */
        padding: 80px 0;
        padding-top: 100px; /* Angepasstes Padding-Top für Tablets */
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh; /* Noch kleiner auf Smartphones */
        padding: 60px 0;
        padding-top: 100px; /* Angepasstes Padding-Top für Smartphones */
    }
}

/* Für sehr kleine Bildschirme oder Landscape-Modus */
@media (max-height: 500px) {
    .hero {
        min-height: auto; /* Automatische Höhe basierend auf Inhalt */
        padding: 40px 0;
        padding-top: 90px; /* Angepasstes Padding-Top für kleine Höhen */
    }
}

/* Für sehr große Bildschirme (4K und größer) */
@media (min-width: 2560px) {
    .hero {
        min-height: 70vh; /* Reduzierte Höhe für sehr große Bildschirme */
        max-height: 900px; /* Maximale Höhe begrenzen */
        padding-top: 120px; /* Konsistentes Padding-Top für große Bildschirme */
    }
}

/* Für extrem große Bildschirme */
@media (min-width: 3840px) {
    .hero {
        min-height: 60vh; /* Noch weiter reduzierte Höhe */
        max-height: 1080px; /* Maximale Höhe für extrem große Bildschirme */
    }
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);*/
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    /*background-image: linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),*/
    /*linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);*/
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 53, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}


.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    z-index: 2;
    position: relative;
}

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



.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #ff8e53, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    position: relative;
    color: #fff;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53);
    border-radius: 2px;
}

/* USP Section */
.usp-section {
    padding: 100px 0;
    background: #111;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.usp-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.usp-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.usp-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 107, 53, 0.03) 100px,
            rgba(255, 107, 53, 0.03) 101px
    );
    animation: codeRain 8s linear infinite;
}

@keyframes codeRain {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100px);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-category:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.service-category h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.service-category li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-category li:hover {
    color: #ff6b35;
    padding-left: 10px;
}

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

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: #111;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.portfolio-link {
    color: #ff6b35;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.about-text {
    color: #fff;
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.about-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.about-skills h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Erweiterte Skills-Grid Styles */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.skill-tag {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Primary Skills (Hauptkompetenzen) */
.skill-tag.primary {
    background: rgba(255, 107, 53, 0.25);
    border: 2px solid rgba(255, 107, 53, 0.5);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
}

.skill-tag.primary::before {
    content: '⭐';
    margin-right: 5px;
}

/* Hover-Effekte */
.skill-tag:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    color: #fff;
    transform: scale(1.3);
}

.skill-tag.primary:hover {
    background: rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.8);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Glowing Animation */
.skill-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.skill-tag:hover::after {
    left: 100%;
}

/* Kategorien-spezifische Farben */
.skill-tag[data-category="frontend"] {
    background: rgba(74, 144, 226, 0.15);
    color: #4a90e2;
    border-color: rgba(74, 144, 226, 0.3);
}

.skill-tag[data-category="backend"] {
    background: rgba(139, 69, 19, 0.15);
    color: #8b4513;
    border-color: rgba(139, 69, 19, 0.3);
}

.skill-tag[data-category="marketing"] {
    background: rgba(50, 205, 50, 0.15);
    color: #32cd32;
    border-color: rgba(50, 205, 50, 0.3);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .skills-grid {
        gap: 8px;
    }

    .skill-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .skill-tag.primary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Animierte Einblendung */
.skill-tag {
    opacity: 0;
    transform: scale(0.8);
    animation: skillFadeIn 0.6s ease forwards;
}



@keyframes skillFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tooltip-Effekt */
.skill-tag[title]:hover::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}
.about-image {
    text-align: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: white;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: #111;
    position: relative;
}

.network-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 142, 83, 0.1) 0%, transparent 50%);
    animation: networkPulse 4s ease-in-out infinite;
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.partners-intro {
    text-align: center;
    margin-bottom: 50px;
}

.partners-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.partner-card.seeking {
    border-color: rgba(255, 107, 53, 0.3);
}

.partner-card h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.partner-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.partner-card li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-card li i {
    color: #ff6b35;
    width: 20px;
}

.partner-cta {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-main {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-main strong {
    color: #ff6b35;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 20px 0;
        gap: 20px;
    }

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .teamviewer-support {
        bottom: 80px;
        right: 15px;
    }
}

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

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

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

    .usp-grid,
    .services-grid,
    .portfolio-grid,
    .partners-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.3);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth Scrolling für bessere UX */
    scroll-behavior: smooth;

    /* Webkit Scrollbar Styling (optional) */
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 #f1f1f1;
}

/* Webkit Scrollbar Design */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 10px;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Content */
.modal-content {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff8e53, #ffa726);
}

.modal-content h2 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 20px;
    position: relative;
    padding-left: 20px;
}

.modal-content h2::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6b35;
    animation: pulse 2s infinite;
}

.modal-content h3 {
    color: #ff8e53;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 15px;
}

.modal-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.modal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-content li {
    margin-bottom: 8px;
    position: relative;
}

.modal-content li::before {
    content: '•';
    color: #ff6b35;
    position: absolute;
    left: -15px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.modal-content a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.modal-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8e53);
    transition: width 0.3s ease;
}

.modal-content a:hover::after {
    width: 100%;
}

.modal-content a:hover {
    color: #ff8e53;
}

/* Animierte Elemente */
.modal-content .highlight-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    position: relative;
    overflow: hidden;
}

.modal-content .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: slideIn 3s ease-in-out infinite;
}

@keyframes slideIn {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-content {
        padding: 20px;
        max-height: 70vh;
    }

    .modal-title {
        font-size: 1.2rem;
    }
}

/* Particle effects für Modal */
.modal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.modal-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 107, 53, 0.6);
    border-radius: 50%;
    animation: modalParticle 4s linear infinite;
}

@keyframes modalParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Glitch Effect für Modal Titel */
.modal-title.glitch {
    animation: titleGlitch 0.3s ease-in-out;
}

@keyframes titleGlitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

/* Logo Container Styling */
.logo-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-symbol,
.logo-full {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.logo-symbol {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.logo-full {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.4));
    z-index: 10;
}

/* Hover-Effekt */
.logo-container:hover .logo-symbol {
    opacity: 0;
    transform: scale(0.8) rotate(180deg);
}

.logo-container:hover .logo-full {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Zusätzliche Hover-Effekte */
.logo-container:hover {
    transform: translateY(-2px);
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-container:hover::before {
    opacity: 1;
}

/* Glowing-Effekt beim Hover */
.logo-container:hover .logo-full {
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.4));
    }
    100% {
        filter: drop-shadow(0 6px 30px rgba(255, 215, 0, 0.6));
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .logo-symbol {
        width: 40px;
    }

    .logo-full {
        width: 120px;
    }

    .logo-container::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
    }
}

/* Zusätzliche Animation für das Symbol */
.logo-symbol {
    animation: symbolPulse 3s ease-in-out infinite;
}

@keyframes symbolPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 3px 12px rgba(255, 215, 0, 0.5));
    }
}

/* Hover unterbricht die Pulse-Animation */
.logo-container:hover .logo-symbol {
    animation: none;
}

/* Smooth Transition zurück */
.logo-container:not(:hover) .logo-symbol {
    transition-delay: 0.1s;
}

.logo-container:not(:hover) .logo-full {
    transition-delay: 0s;
}

/* Logo Glitch Animation */
@keyframes logoGlitch {
    0% {
        transform: translateY(-2px);
    }
    20% {
        transform: translateY(-2px) translateX(-2px);
    }
    40% {
        transform: translateY(-2px) translateX(2px);
    }
    60% {
        transform: translateY(-2px) translateX(-2px);
    }
    80% {
        transform: translateY(-2px) translateX(2px);
    }
    100% {
        transform: translateY(-2px);
    }
}

/* Touch-Geräte: Hover-Klasse */
.logo-container.touch-hover .logo-symbol {
    opacity: 0;
    transform: scale(0.8) rotate(180deg);
}

.logo-container.touch-hover .logo-full {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.logo-container.touch-hover {
    transform: translateY(-2px);
}

.logo-container.touch-hover::before {
    opacity: 1;
}

/* Navbar-spezifische Anpassungen */
.navbar .logo-container {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .logo-symbol {
    height: 40px;
    width: auto;
}

.navbar .logo-full {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.4));
    z-index: 10;
    max-width: 80vw; /* Verhindert Überlauf auf sehr kleinen Bildschirmen */
    height: auto; /* Behält das Seitenverhältnis bei */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Größenanpassungen für verschiedene Bildschirmgrößen */
@media (min-width: 1025px) {
    .navbar .logo-full {
        height: 60px;
        width: auto;
        left: 50%;
        white-space: nowrap;
    }
}

/* Verhindere Logo-Overflow bei kleinen Screens */
@media (max-width: 480px) {
    .navbar .logo-full {
        max-height: 50px;
        max-width: 150px;
    }
}

/* Responsive About Image Styles */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-frame {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    padding: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
    filter: grayscale(0.3);
}

.image-frame:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Overlay-Effekt */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.overlay-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .image-frame {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .about-image {
        padding: 15px;
    }

    .image-frame {
        width: 220px;
        height: 220px;
    }

    .overlay-content h4 {
        font-size: 1.1rem;
    }

    .overlay-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-image {
        padding: 10px;
    }

    .image-frame {
        width: 180px;
        height: 180px;
    }

    .image-overlay {
        padding: 15px;
    }

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

    .overlay-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 320px) {
    .image-frame {
        width: 150px;
        height: 150px;
    }

    .image-overlay {
        padding: 10px;
    }

    .overlay-content h4 {
        font-size: 0.9rem;
    }

    .overlay-content p {
        font-size: 0.7rem;
    }
}

/* Alternative: Kreisförmiges Bild */
.image-frame.circular {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.image-frame.circular img {
    border-radius: 50%;
}

.image-frame.circular .image-overlay {
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Glow-Effekt */
.image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #ff8e53, #ffa726, #ff6b35);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

.image-frame:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Floating Animation */
.image-frame {
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.image-frame:hover {
    animation: none;
}

/* Zusätzliche Varianten */
.image-frame.modern {
    border-radius: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-frame.neon {
    background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
    box-shadow: 0 0 30px rgba(0, 201, 255, 0.3);
}

.image-frame.gold {
    background: linear-gradient(135deg, #f7931e 0%, #ffd700 100%);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

/* Anpassung für about-content Grid */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

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

/* Lazy Loading Styles */
.image-frame img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-frame img.loaded {
    opacity: 1;
}


/*CSS für obfuscated Links */
.obfuscated-contact {
    color: #ff6b35;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.obfuscated-contact:hover {
    color: #e55a2b;
    transform: translateY(-2px);
}

.obfuscated-contact::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.obfuscated-contact:hover::after {
    width: 100%;
}

.obfuscated-contact.loading {
    opacity: 0.6;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.benefit-note {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    font-size: 0.9rem;
    color: #003a8c;
}

.benefit-note strong {
    color: #1890ff;
}

.price-indicator {
    background: #f6ffed;
    border: 1px solid #b7eb8f;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    font-size: 0.85rem;
    color: #389e0d;
}

.price-indicator i {
    color: #52c41a;
    margin-right: 5px;
}

.expertise-note {
    background: #fff7e6;
    border: 1px solid #ffd591;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    font-size: 0.9rem;
    color: #ad6800;
}

.expertise-note strong {
    color: #d48806;
}

.target-note {
    background: #f9f0ff;
    border: 1px solid #d3adf7;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    font-size: 0.9rem;
    color: #531dab;
}

.target-note strong {
    color: #722ed1;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.subtitle-line {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(50px);
    display: none;
}

.hero-subtitle strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        min-height: 100px;
    }
}

#aurora-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}