/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wide-card {
    margin-bottom: 25px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1E293B;
    overflow-x: hidden;
    background-color: #FFFFFF;
    min-height: 100vh;
}

/* Hero Section - 100vh Höhe mit Video */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Second Section - Flexible Höhe */
.second-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #FFFFFF;
    color: #1E293B;
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.section-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 4rem;
}

.section-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 3rem;
    opacity: 1;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
}

/* Logo Carousel */
.logo-carousel-container {
    margin-bottom: 4rem;
    overflow: hidden;
    padding: 2rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(248, 250, 252, 0.5);
}

.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
}

.partner-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

/* Pause animation on hover */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.section-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.content-grid.reverse {
    margin-top: 4rem;
}

/* Animationen für Elemente */
.placeholder-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.text-content {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

/* Reverse Grid - Text links, Bild rechts */
.content-grid.reverse .text-content {
    transform: translateX(-100px);
}

.content-grid.reverse .placeholder-image {
    transform: translateX(100px);
}

/* Animation beim Scrollen */
.placeholder-image.animate {
    opacity: 1;
    transform: translateX(0) !important;
}

.text-content.animate {
    opacity: 1;
    transform: translateX(0) !important;
}

.placeholder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 280px;
    background: linear-gradient(135deg, #a8c5ea 0%, #e8eef7 35%, #f4d1d4 70%, #f8e1e3 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.text-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Workflow Automatisierung - Simple Version */
.workflow-simple {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.workflow-header-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.workflow-icon-simple {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.workflow-title-simple {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflow-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.highlight-simple {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* AI-Agents - Simple Version */
.ai-agents-simple {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.ai-agents-header-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ai-agents-icon-simple {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.ai-agents-title-simple {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-agents-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.highlight-simple-ai {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Web-Entwicklung - Simple Version */
.web-dev-simple {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.web-dev-header-simple {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.web-dev-icon-simple {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.web-dev-title-simple {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-dev-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.highlight-simple-web {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Mock-up Designs */
.mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-mockup, .ai-agents-mockup, .web-dev-mockup {
    width: 320px;
    height: 240px;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.workflow-mockup {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #a7c3e8 100%);
}

.ai-agents-mockup {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fdba74 100%);
}

.web-dev-mockup {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 50%, #fca5a5 100%);
}

.mockup-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 16px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.app-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.workflow-icon-mini {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.ai-icon-mini {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.web-icon-mini {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.app-name {
    font-weight: 600;
    font-size: 15px;
    color: #374151;
}

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

/* Workflow Mock-up */
.process-item, .build-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    color: #4b5563;
    font-weight: 500;
}

.process-status, .build-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-item.completed .process-status,
.build-item.completed .build-status {
    background: #10b981;
}

.process-item.in-progress .process-status,
.build-item.in-progress .build-status {
    background: #f59e0b;
}

.process-item.pending .process-status,
.build-item.pending .build-status {
    background: #d1d5db;
}

.mockup-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
}

/* AI-Agents Mock-up */
.agent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.agent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.agent-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.agent-name {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.agent-status {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
}

.agent-status.active {
    color: #10b981;
}

.agent-status.learning {
    color: #f59e0b;
}

.ai-agents-mockup .stat-number {
    color: #f59e0b;
}

/* Web-Dev Mock-up */
.progress-indicator {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 3px;
}

.progress-text {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
    display: block;
}

.web-dev-mockup .stat-number {
    color: #ef4444;
}

/* Base44-Style Visual Design */
.gradient-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradient-bg {
    width: 420px;
    height: 300px;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.workflow-gradient {
    background: linear-gradient(135deg, #a8c5ea 0%, #e8eef7 35%, #f4d1d4 70%, #f8e1e3 100%);
}

.visual-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-window {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 12px;
    width: 100%;
    max-width: 340px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.window-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: all 0.2s ease;
}

.window-dots span:first-child {
    background: #ef4444;
}

.window-dots span:nth-child(2) {
    background: #f59e0b;
}

.window-dots span:last-child {
    background: #10b981;
}

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

.window-content {
    padding: 20px;
}

.window-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.checklist {
    margin-bottom: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.2s ease;
}

.check-item:hover {
    color: #374151;
    transform: translateX(2px);
}

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.input-section {
    margin-top: 16px;
}

.change-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    outline: none;
}

.change-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: rgba(255, 255, 255, 1);
}

.change-input::placeholder {
    color: #9ca3af;
}

.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-secondary {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

/* Modern Text Content */
.text-content-modern {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.text-content-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-content-modern p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 480px;
}

.cta-button {
    background: #000000;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    background: #FFFFFF;
    position: relative;
}

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

@media (max-width: 1200px) {
    .faq-container {
        text-align: left;
        padding: 0 2rem;
    }
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .faq-grid {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.faq-item {
    background: #FFFFFF;
    border: none;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 0;
    overflow: hidden;
    text-align: left;
    transition: all 0.2s ease;
    cursor: pointer;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: #F8FAFC;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1F2937;
    line-height: 1.4;
    background: transparent;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: transparent;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #374151;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 150px;
    opacity: 1;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Wide Card Design */
.wide-card {
    width: 85vw;
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(139, 124, 246, 0.2);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Card Animation Styles */
.card-text {
    padding: 3rem 4rem 3rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-text.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Reverse layout animations */
.reverse-layout .card-text {
    transform: translateX(100px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reverse-layout .card-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.card-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
}

.card-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Reverse layout visual animations */
.reverse-layout .card-visual {
    transform: translateX(-100px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.reverse-layout .card-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Button animations */
.card-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
}

.card-buttons.animate {
    opacity: 1;
    transform: translateY(0);
}

.wide-card-content {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 400px;
    align-items: stretch;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B7CF6 0%, #A78BFA 30%, #F472B6 70%, #EC4899 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: none;
    box-shadow: 0 20px 40px rgba(139, 124, 246, 0.3);
    object-fit: cover;
    object-position: center;
}

.card-text h2 {
    font-size: 3.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
}

.card-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 1200px) {
    .card-text p {
        max-width: none;
    }

    .visual-placeholder {
        box-shadow: none;
    }

    /* Logo Carousel Mobile */
    .logo-carousel-container {
        padding: 1.5rem 0;
        margin-bottom: 3rem;
    }

    .logo-track {
        gap: 3rem;
        animation-duration: 25s;
    }

    .logo-slide {
        min-width: 120px;
        height: 60px;
    }

    .partner-logo {
        max-width: 100px;
        max-height: 50px;
    }
}



.btn-primary-large {
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(139, 124, 246, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #DB2777 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 124, 246, 0.4);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    padding: 18px 36px;
    border: 2px solid rgba(55, 65, 81, 0.15);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(55, 65, 81, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* AI-Agents Card */
.ai-agents-card {
}

.reverse-layout {
    grid-template-columns: 50% 50%;
}

.reverse-layout .card-text {
    padding: 3rem 6rem 3rem 4rem;
    text-align: left;
}

.ai-placeholder {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 30%, #8B7CF6 70%, #A78BFA 100%);
}

/* Web-Development Card */
.web-dev-card {
}

.web-placeholder {
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 30%, #A78BFA 70%, #8B7CF6 100%);
}

/* About Hero Section */
.about-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #1E293B;
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

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

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: #475569;
    opacity: 1;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
}

.about-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.about-story {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 124, 246, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(139, 124, 246, 0.1);
}

.about-story h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content {
    display: grid;
    gap: 2rem;
    text-align: left;
}

.story-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.story-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.story-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.story-text p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Projects Hero Section */
.projects-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #1E293B;
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

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

.gradient-decoration {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.gradient-decoration::after {
    content: '';
    position: absolute;
    top: 300px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 50%, #A78BFA 100%);
    border-radius: 50%;
    opacity: 0.8;
}

.projects-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.projects-hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: #475569;
    opacity: 1;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
}

.projects-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.projects-preview {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 124, 246, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(139, 124, 246, 0.1);
}

.projects-preview h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1.5rem;
    text-align: center;
}

.preview-list {
    display: grid;
    gap: 1rem;
    text-align: left;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.check-icon {
    color: #3B82F6;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Projects Slider Section */
.projects-slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.vertical-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.vertical-slider-track {
    display: flex;
    flex-direction: column;
    height: 300vh; /* 3 slides × 100vh */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.project-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.project-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image {
    width: 500px;
    height: 350px;
    background: linear-gradient(135deg, #8B7CF6 0%, #A78BFA 30%, #F472B6 70%, #EC4899 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 25px 50px rgba(139, 124, 246, 0.3);
}

.project-image.ai-project {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 30%, #8B7CF6 70%, #A78BFA 100%);
}

.project-image.web-project {
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 30%, #A78BFA 70%, #8B7CF6 100%);
}

.project-content {
    padding: 2rem 0;
}

.project-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.project-content p {
    font-size: 1.2rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 124, 246, 0.1);
    color: #8B7CF6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(139, 124, 246, 0.2);
}

/* Slider Controls */
.vertical-slider-controls {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 100;
}

.slider-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.progress-line {
    width: 2px;
    height: 120px;
    background: rgba(139, 124, 246, 0.2);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    width: 100%;
    height: 33.33%;
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    border-radius: 1px;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 124, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #8B7CF6;
    transform: scale(1.2);
}

.slider-navigation {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 124, 246, 0.2);
    border-radius: 50%;
    color: #8B7CF6;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(139, 124, 246, 0.1);
    border-color: rgba(139, 124, 246, 0.4);
    transform: scale(1.1);
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 500%;
    transform: translateX(0);
}

.slide {
    width: 20%;
    flex-shrink: 0;
    padding: 0 1rem;
    min-width: 0;
}

.project-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(55, 76, 140, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(55, 76, 140, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(55, 76, 140, 0.2);
}

.project-image-placeholder {
    width: 100%;
    height: 250px;
    background: rgba(55, 76, 140, 0.1);
    border: 2px dashed rgba(55, 76, 140, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(55, 76, 140, 0.8);
    font-weight: 500;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0D0D0D;
}

.project-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #0D0D0D;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: rgba(55, 76, 140, 0.2);
    border: none;
    color: #0D0D0D;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(55, 76, 140, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(55, 76, 140, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0D0D0D;
    transform: scale(1.2);
}

/* Pricing Footer */
.pricing-footer {
    background: #FFFFFF;
    color: #1E293B;
    padding: 80px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.pricing-text {
    padding-right: 2rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1E293B;
}

.highlight-green {
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-button {
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 124, 246, 0.3);
}

.plan-button:hover {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #DB2777 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 124, 246, 0.4);
    color: white;
    text-decoration: none;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 1rem 2rem;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(139, 124, 246, 0.3);
    border: 1px solid rgba(139, 124, 246, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.bottom-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50px 50px 0 0;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.nav-logo {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: rgba(139, 124, 246, 1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .section-content h2 {
        font-size: 3rem;
        font-weight: 700;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 2.5rem;
    }

    .logo-carousel-container {
        margin-bottom: 3rem;
        padding: 1.5rem 0;
    }
    
    .section-content p {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .image-placeholder {
        width: 250px;
        height: 150px;
    }

    /* Wide Cards Mobile */
    .section-content {
        padding: 0 2rem;
    }

    .wide-card {
        width: 90vw;
        border-radius: 20px;
    }

    .wide-card-content {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
    }

    /* Mobile: Alle Karten haben Bild oben, Text unten */
    .card-visual {
        order: 1 !important;  /* Bild immer oben */
        padding: 1.5rem;
        transform: translateY(-50px);
        transition-delay: 0.1s;
    }

    .card-visual img {
        border-radius: 20px;
    }

    .card-text {
        order: 2 !important;  /* Text immer unten */
        padding: 1.5rem 2rem 2rem 2rem;
        text-align: left;
        transform: translateX(0) translateY(50px);
        transition-delay: 0s;
    }

    /* Reverse-Layout überschreiben für Mobile */
    .reverse-layout .card-text {
        order: 2 !important;  /* Text bleibt unten auch bei reverse */
        transform: translateX(0) translateY(50px);
        padding: 1.5rem 2rem 2rem 2rem;
        text-align: left;
    }

    .reverse-layout .card-visual {
        order: 1 !important;  /* Bild bleibt oben auch bei reverse */
        transform: translateY(-50px);
        padding: 1.5rem;
    }

    .card-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .card-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .card-buttons {
        justify-content: flex-start;
        transform: translateY(20px);
    }

    .btn-primary-large {
        min-width: 200px;
        padding: 14px 32px;
        font-size: 1rem;
    }

    /* About Mobile */
    .about-hero-section {
        padding-bottom: 100px;
    }

    .about-hero-title {
        font-size: 3rem;
        font-weight: 700;
    }

    .about-hero-subtitle {
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 2.5rem;
    }

    .about-buttons {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .about-story {
        padding: 2rem;
        max-width: 100%;
    }

    .about-story h3 {
        font-size: 1.5rem;
    }

    .story-item {
        gap: 1.2rem;
    }

    .story-icon {
        font-size: 1.8rem;
    }

    .story-text h4 {
        font-size: 1.1rem;
    }

    .story-text p {
        font-size: 0.95rem;
    }

    .projects-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .slider-container {
        max-width: 90%;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-image-placeholder {
        height: 150px;
    }

    .slider-controls {
        gap: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-image-placeholder {
        width: 150px;
        height: 100px;
    }

    /* Pricing Footer Mobile */
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .pricing-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        margin: 0 auto;
        max-width: 350px;
        min-height: 180px;
    }

    /* FAQ Mobile */
    .faq-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .faq-question {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 1.2rem;
    }

    .faq-answer.active {
        padding: 0 1rem 1.2rem 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .bottom-nav {
        bottom: 20px;
        padding: 0.8rem 1.5rem;
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .section-content h2 {
        font-size: 2.2rem;
        font-weight: 700;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Logo Carousel Ultra Mobile */
    .logo-carousel-container {
        margin-bottom: 2.5rem;
        padding: 1rem 0;
    }

    .logo-track {
        gap: 2.5rem;
        animation-duration: 20s;
    }

    .logo-slide {
        min-width: 100px;
        height: 50px;
    }

    .partner-logo {
        max-width: 80px;
        max-height: 40px;
    }
    
    .section-content p {
        font-size: 1rem;
    }

    /* Ultra Mobile Cards */
    .section-content {
        padding: 0 1.5rem;
    }

    .wide-card {
        width: 95vw;
        border-radius: 16px;
    }

    /* Ultra Mobile: Konsistente Reihenfolge */
    .card-visual {
        order: 1 !important;  /* Bild oben */
        padding: 1rem;
    }

    .card-visual img {
        border-radius: 16px;
    }

    .card-text {
        order: 2 !important;  /* Text unten */
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        text-align: left;
    }

    /* Reverse-Layout für Ultra Mobile überschreiben */
    .reverse-layout .card-visual {
        order: 1 !important;
        padding: 1rem;
    }

    .reverse-layout .card-text {
        order: 2 !important;
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        text-align: left;
    }

    .card-text h2 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    .card-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .btn-primary-large {
        min-width: 180px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* Footer Ultra Mobile */
    .pricing-title {
        font-size: 1.8rem;
    }

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

    .pricing-footer {
        padding: 60px 0 100px 0;
    }

    /* Projects Mobile */
    .projects-hero-section {
        padding-bottom: 100px;
    }

    .projects-hero-title {
        font-size: 3rem;
        font-weight: 700;
    }

    .projects-hero-subtitle {
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 2.5rem;
    }

    .projects-buttons {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .projects-preview {
        padding: 2rem;
        max-width: 100%;
    }

    .projects-preview h3 {
        font-size: 1.3rem;
    }

    .preview-item {
        font-size: 0.95rem;
    }

    .gradient-decoration {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }

    .gradient-decoration::after {
        width: 250px;
        height: 250px;
        top: 200px;
        right: -80px;
    }

    /* FAQ Ultra Mobile */
    .faq-section {
        padding: 80px 0;
    }

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

    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
        font-size: 1rem;
    }

    .faq-answer.active {
        padding: 0 0.5rem 1rem 0.5rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

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

    /* Projects Ultra Mobile */
    .projects-hero-section {
        padding-bottom: 90px;
    }

    .projects-hero-title {
        font-size: 2.2rem;
        font-weight: 700;
    }

    .projects-hero-subtitle {
        font-size: 1.2rem;
        font-weight: 500;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    /* About Ultra Mobile */
    .about-hero-section {
        padding-bottom: 90px;
    }

    .about-hero-title {
        font-size: 2.2rem;
        font-weight: 700;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
        font-weight: 500;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .about-story {
        padding: 1.5rem;
    }

    .about-story h3 {
        font-size: 1.3rem;
    }

    .story-item {
        gap: 1rem;
    }

    .story-icon {
        font-size: 1.6rem;
    }

    .story-text h4 {
        font-size: 1rem;
    }

    .story-text p {
        font-size: 0.9rem;
    }

    .projects-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .projects-preview {
        padding: 1.5rem;
    }

    .projects-preview h3 {
        font-size: 1.2rem;
    }

    .preview-item {
        font-size: 0.9rem;
    }

    .gradient-decoration {
        width: 250px;
        height: 250px;
        top: -125px;
        left: -125px;
    }

    .gradient-decoration::after {
        width: 200px;
        height: 200px;
        top: 150px;
        right: -60px;
    }

    /* About Extra Small */
    .about-hero-section {
        padding-bottom: 80px;
    }

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

    .about-hero-subtitle {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        min-width: 250px;
        font-size: 0.95rem;
    }

    .about-story {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .about-story h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .story-content {
        gap: 1.5rem;
    }

    .story-item {
        gap: 0.8rem;
    }

    .story-icon {
        font-size: 1.5rem;
    }

    .story-text h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .story-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

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

    .project-card h3 {
        font-size: 1.2rem;
    }

    .project-card p {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .bottom-nav {
        bottom: 15px;
        padding: 0.7rem 1rem;
        gap: 0.6rem;
    }

    .nav-link {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .nav-logo {
        width: 18px;
        height: 18px;
    }

    /* Workflow simple responsive styles */
    .workflow-simple {
        padding: 1.5rem;
    }

    .workflow-header-simple {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .workflow-icon-simple {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .workflow-title-simple {
        font-size: 1.2rem;
    }

    .workflow-text p {
        font-size: 1rem;
    }

    /* AI-Agents simple responsive styles */
    .ai-agents-simple {
        padding: 1.5rem;
    }

    .ai-agents-header-simple {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .ai-agents-icon-simple {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .ai-agents-title-simple {
        font-size: 1.2rem;
    }

    .ai-agents-text p {
        font-size: 1rem;
    }

    /* Web-Entwicklung simple responsive styles */
    .web-dev-simple {
        padding: 1.5rem;
    }

    .web-dev-header-simple {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .web-dev-icon-simple {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .web-dev-title-simple {
        font-size: 1.2rem;
    }

    .web-dev-text p {
        font-size: 1rem;
    }

    /* Mock-ups responsive */
    .workflow-mockup, .ai-agents-mockup, .web-dev-mockup {
        width: 280px;
        height: 200px;
        padding: 15px;
    }

    .mockup-card {
        padding: 12px;
    }

    .app-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .app-name {
        font-size: 13px;
    }

    .process-item, .build-item, .agent-item {
        padding: 6px;
        font-size: 10px;
    }

    .agent-avatar {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .agent-name {
        font-size: 10px;
    }

    .agent-status {
        font-size: 8px;
    }

    .stat-number {
        font-size: 14px;
    }

    .stat-label {
        font-size: 9px;
    }

    .progress-text {
        font-size: 9px;
    }

    /* Base44-Style responsive */
    .gradient-bg {
        width: 320px;
        height: 240px;
        padding: 16px;
    }

    .mockup-window {
        max-width: 280px;
    }

    .window-content {
        padding: 16px;
    }

    .window-content h4 {
        font-size: 12px;
    }

    .check-item {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .check-icon {
        width: 14px;
        height: 14px;
        font-size: 8px;
    }

    .change-input {
        padding: 8px 10px;
        font-size: 10px;
    }

    .btn-secondary {
        padding: 4px 8px;
        font-size: 9px;
    }

    .btn-primary {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .text-content-modern {
        padding: 1.5rem;
    }

    .text-content-modern h2 {
        font-size: 2rem;
    }

    .text-content-modern p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Wide Card responsive */
    .wide-card {
        border-radius: 20px;
    }

    .wide-card-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .card-visual {
        padding: 2rem;
        order: 2;
    }

    .visual-placeholder {
        height: 200px;
    }

    .card-text {
        padding: 2rem;
        order: 1;
        text-align: center;
    }

    .card-text h2 {
        font-size: 2.2rem;
    }

    .card-text p {
        font-size: 1rem;
    }

    .card-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary-large,
    .btn-secondary-large {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 250px;
    }

    /* Pricing footer responsive */
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .pricing-text {
        padding-right: 0;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
        min-height: 160px;
    }

    /* Mobile Animation Adjustments */
    .card-visual.animate {
        transform: translateY(0);
    }

    .card-text.animate {
        transform: translateX(0) translateY(0);
    }

    .reverse-layout .card-text.animate {
        transform: translateX(0) translateY(0);
    }

    .reverse-layout .card-visual.animate {
        transform: translateY(0);
    }

    /* Ensure consistent mobile styling for reverse layout */
    .reverse-layout .card-text h2 {
        text-align: left;
    }

    .reverse-layout .card-text p {
        text-align: left;
    }

    .card-buttons.animate {
        transform: translateY(0);
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .section-content h2 {
        font-size: 1.8rem;
        font-weight: 600;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
    }

    /* Logo Carousel Extra Small */
    .logo-carousel-container {
        margin-bottom: 2rem;
        padding: 0.8rem 0;
    }

    .logo-track {
        gap: 2rem;
        animation-duration: 18s;
    }

    .logo-slide {
        min-width: 90px;
        height: 45px;
    }

    .partner-logo {
        max-width: 70px;
        max-height: 35px;
    }

    /* FAQ Extra Small */
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-subtitle {
        font-size: 0.95rem;
        padding: 0 1.5rem;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 16px;
        height: 16px;
        font-size: 0.9rem;
    }

    .faq-answer.active {
        padding: 0 0 0.8rem 0;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .section-content {
        padding: 0 1rem;
    }

    .wide-card {
        width: 90vw;
        border-radius: 12px;
    }

    /* Extra Small: Einheitliches Layout */
    .card-visual {
        order: 1 !important;  /* Bild oben */
    }

    .card-visual img {
        border-radius: 12px;
    }

    .card-text {
        order: 2 !important;  /* Text unten */
        text-align: left;
    }

    .card-text h2 {
        font-size: 1.6rem;
    }

    /* Reverse-Layout für Extra Small überschreiben */
    .reverse-layout .card-visual {
        order: 1 !important;
    }

    .reverse-layout .card-text {
        order: 2 !important;
        text-align: left;
    }

    .card-text p {
        font-size: 0.9rem;
    }

    .btn-primary-large {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-title {
        font-size: 1.6rem;
    }

    .bottom-nav {
        padding: 0.6rem 0.8rem;
        gap: 0.4rem;
    }

    /* Projects Extra Small */
    .projects-hero-section {
        padding-bottom: 80px;
    }

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

    .projects-hero-subtitle {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
    }

    .projects-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        min-width: 250px;
        font-size: 0.95rem;
    }

    .projects-preview {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .projects-preview h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .preview-item {
        font-size: 0.85rem;
        gap: 0.8rem;
    }

    .check-icon {
        font-size: 1rem;
    }

    .gradient-decoration {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
    }

    .gradient-decoration::after {
        width: 150px;
        height: 150px;
        top: 100px;
        right: -50px;
    }

    .nav-link {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .nav-logo {
        width: 16px;
        height: 16px;
    }
}

/* Chat Header Styling */
.chat-layout .chat-header {
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%) !important;
}

/* Chat User Message Styling */
.chat-message.chat-message-from-user {
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%) !important;
}

/* Chat Window Toggle Styling */
.chat-window-toggle {
    background: linear-gradient(135deg, #3B82F6 0%, #8B7CF6 50%, #EC4899 100%) !important;
}

/* Chat Window Wrapper Position */
.chat-window-wrapper {
    right: 7px !important;
}
