/* TimeWaver Landing Page - Mystisch-Technisches Design */

/* CSS Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CSS Custom Properties */
:root {
    --primary-color: #00FFFF;
    --secondary-color: #40E0D0;
    --accent-color: #00CED1;
    --dark-bg: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #333333;
    --text-light: #C0C0C0;
    --white: #ffffff;
    
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow: 0 0 20px var(--primary-color);
    --glow-strong: 0 0 30px var(--primary-color), 0 0 60px var(--primary-color);
}

/* Partikel-Hintergrund */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--glow);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero-Bereich */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.highlight {
    color: var(--primary-color);
    text-shadow: var(--glow);
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Scroll-Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sektionen */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: var(--glow);
}

/* About-Sektion */
.about {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
}

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

.feature-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

/* Zielgruppen */
.target-groups {
    background: rgba(0, 0, 0, 0.95);
}

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

.group-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 255, 255, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.group-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: var(--transition);
}

.group-card:hover::before {
    opacity: 1;
}

.group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: var(--primary-color);
}

.group-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--primary-color));
}

.group-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.group-benefits {
    list-style: none;
}

.group-benefits li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.group-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Testimonial */
.testimonial {
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.05) 0%, rgba(0, 0, 0, 1) 70%);
    padding: 6rem 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    text-align: center;
    position: relative;
}

.testimonial-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--primary-color));
}

.testimonial-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.5;
}

.testimonial-text::before {
    top: -1rem;
    left: -1rem;
}

.testimonial-text::after {
    bottom: -2rem;
    right: -1rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 255, 255, 0.1) 50%, rgba(0, 0, 0, 1) 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: var(--glow);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: var(--dark-gray);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ElevenLabs Widget Integration */

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .groups-grid {
        grid-template-columns: 1fr;
    }
    
    .group-card {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Animationen für Scroll-Effekte */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Zusätzliche Glow-Effekte */
.glow-text {
    text-shadow: 0 0 10px var(--primary-color);
}

.glow-border {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}


/* Styles für professionelle Bilder anstelle von Emoji-Icons */

/* Feature-Bilder */
.feature-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--glow);
    transition: var(--transition);
}

.feature-item:hover .feature-image {
    transform: scale(1.1);
    box-shadow: var(--glow-strong);
}

/* Zielgruppen-Bilder */
.group-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: var(--transition);
    margin-bottom: 1rem;
}

.group-card:hover .group-image {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

/* Testimonial-Bild */
.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--glow);
    margin-bottom: 1rem;
}

/* Responsive Anpassungen für Bilder */
@media (max-width: 768px) {
    .feature-image {
        width: 60px;
        height: 60px;
    }
    
    .group-image {
        width: 100px;
        height: 100px;
    }
    
    .testimonial-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .feature-image {
        width: 50px;
        height: 50px;
    }
    
    .group-image {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
}

/* Entferne alte Emoji-Styles */
.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.group-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Zusätzliche Hover-Effekte für professionelleres Aussehen */
.feature-item:hover .feature-image,
.group-card:hover .group-image,
.testimonial-card:hover .testimonial-image {
    filter: brightness(1.1) contrast(1.1);
}

/* Bildoptimierung für bessere Performance */
.feature-image,
.group-image,
.testimonial-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}



/* Preisübersicht Styling */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.pricing-card.premium {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

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

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
}

.duration {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.pricing-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    color: #fff;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-process {
    text-align: center;
    margin-top: 4rem;
}

.pricing-process h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Agent-Sektion Styling */
.agent-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.agent-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.agent-name {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.agent-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.agent-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.agent-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.agent-feature:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(10px);
}

.agent-feature h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.agent-feature p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.agent-cta {
    text-align: center;
}

.agent-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design für neue Sektionen */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.premium {
        transform: none;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .agent-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }
    
    .agent-section {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .agent-features {
        gap: 1rem;
    }
    
    .agent-feature {
        padding: 1rem;
    }
}


/* ElevenLabs Widget - Komplett frei ohne Einschränkungen */


/* Beispiel-Analyse Sektion */
.example-analysis {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.example-analysis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.example-content {
    position: relative;
    z-index: 2;
}

.example-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.example-photo {
    text-align: center;
}

.smokie-photo {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--glow);
    transition: var(--transition);
}

.smokie-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-strong);
}

.photo-caption {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.photo-caption h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.photo-caption p {
    color: var(--text-light);
    font-size: 1rem;
}

.example-description h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.example-description h3:first-child {
    margin-top: 0;
}

.example-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.analysis-results {
    margin-bottom: 80px;
}

.analysis-results h3 {
    text-align: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    width: 100%;
    max-width: 600px;
    min-width: 450px;
}

.result-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.result-card.full-width {
    grid-column: 1 / -1;
}

.result-card h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.result-image {
    text-align: center;
    margin-bottom: 25px;
}

.analysis-chart {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.result-details h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.result-details ul {
    list-style: none;
    padding: 0;
}

.result-details li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.result-details li::before {
    content: '▶';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

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

.deliverable {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: var(--transition);
}

.deliverable:hover {
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.08);
}

.deliverable-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.deliverable strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

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

.example-outcome {
    margin-bottom: 60px;
}

.outcome-box {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.outcome-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.outcome-box h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.outcome-box blockquote {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.outcome-author {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.example-cta {
    text-align: center;
}

.example-cta h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.example-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.example-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design für Beispiel-Sektion */
@media (max-width: 768px) {
    .example-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .example-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .example-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .example-analysis {
        padding: 60px 0;
    }
    
    .outcome-box {
        padding: 25px;
    }
    
    .outcome-box h3 {
        font-size: 1.5rem;
    }
    
    .outcome-box blockquote {
        font-size: 1rem;
    }
}



/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(0, 255, 255, 0.1);
}

/* Business Hero */
.business-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 80vh;
}

/* Business Sections */
.business-targets,
.business-solutions,
.business-technology,
.business-success,
.business-implementation,
.business-contact {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

/* Target Cards */
.targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.target-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
}

.target-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.target-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.target-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.target-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-item {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Solution Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.solution-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.solution-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.solution-header h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.solution-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.solution-features {
    list-style: none;
    margin: 1.5rem 0;
}

.solution-features li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.solution-target {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Technology Grid */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
}

.tech-category h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.tech-feature {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.tech-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tech-feature h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tech-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Success Story */
.success-story {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 3rem;
    margin-top: 2rem;
}

.success-header h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.success-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.success-before,
.success-after {
    padding: 1.5rem;
    border-radius: 8px;
}

.success-before {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.success-after {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.success-before h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.success-after h4 {
    color: #51cf66;
    margin-bottom: 1rem;
}

.success-details ul {
    list-style: none;
}

.success-details li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

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

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
}

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.result-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Implementation Timeline */
.implementation-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    transition: var(--transition);
}

.timeline-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.timeline-number {
    background: var(--primary-color);
    color: var(--dark-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-duration {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-option {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-option:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.contact-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.contact-option p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.contact-info a:hover {
    text-shadow: var(--glow);
}

/* Business Link in CTA */
.cta-business-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.business-note {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
}

.business-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.business-link:hover {
    text-shadow: var(--glow);
    text-decoration: underline;
}

/* Responsive Design für Business-Seite */
@media (max-width: 768px) {
    .targets-grid,
    .solutions-grid,
    .technology-grid {
        grid-template-columns: 1fr;
    }
    
    .success-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Mobile Navigation Menu */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    .mobile-nav a {
        display: block;
        color: var(--text-light);
        text-decoration: none;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        transition: color 0.3s ease;
    }
    
    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: var(--primary-color);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card,
    .target-card,
    .tech-category {
        padding: 1.5rem;
    }
    
    .success-story {
        padding: 2rem;
    }
}

/* Agent Section - Minimal Centering Fix */
.agent-section .section-title {
    text-align: center;
}

.agent-content {
    text-align: center;
}

.agent-features {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Menu Toggle - Hidden by default */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    padding: 0;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background-color: #fff;
}


/* Desktop specific adjustments for result cards */
@media (min-width: 769px) {
    .result-card {
        min-width: 500px;
        max-width: 650px;
    }
    
    .results-grid {
        gap: 60px;
    }
}


/* Agent Section Centering */
.agent-section {
    text-align: center;
}

.agent-content {
    max-width: 1000px;
    margin: 0 auto;
}

.agent-name {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.agent-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.agent-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.agent-feature {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
}

.agent-feature:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

.agent-feature h4 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.agent-feature p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.agent-cta {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.agent-note {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Navigation Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.nav-links a {
    transition: color 0.3s ease;
}

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

