/* ===========================
   Variables & Base Styles
   =========================== */
:root {
    --color-bg-dark: #0a0f1a;
    --color-bg-medium: #111827;
    --color-bg-light: #1f2937;
    --color-bg-canvas: #080c14;
    --color-accent: #10b981;
    --color-accent-light: #34d399;
    --color-accent-glow: rgba(16, 185, 129, 0.5);
    --color-accent-secondary: #3b82f6;
    --color-text: #ffffff;
    --color-text-muted: #9ca3af;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    --shadow-glow: 0 0 40px var(--color-accent-glow);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at center top, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.logo-svg {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-icon-svg {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.logo-wrapper:hover .logo-icon-svg {
    transform: scale(1.05);
}

.logo-tagline {
    font-size: 0.875rem;
    color: var(--color-accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 500;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-bg-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-accent-glow);
}

/* ===========================
   What We Do Section
   =========================== */
.what-we-do {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border-radius: 16px;
    color: var(--color-accent);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* ===========================
   Branchen Section
   =========================== */
.branchen-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
}

.branchen-content {
    display: flex;
    gap: 32px;
    align-items: stretch;
    margin-top: 48px;
}

.branchen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex: 1;
}

.branchen-card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.branchen-card:hover,
.branchen-card.active {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--color-accent-glow);
}

.branchen-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.branchen-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.branchen-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Branchen Demo Chat - Hochkant Chatfenster */
.branchen-demo {
    width: 340px;
    background: var(--color-bg-medium);
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    padding: 0;
    flex-shrink: 0;
    box-shadow: 0 20px 50px var(--color-accent-glow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.demo-branche-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
}

.demo-branche-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-branche-info {
    display: flex;
    flex-direction: column;
}

.demo-branche-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-bg-dark);
}

.demo-branche-status {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-branche-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: status-blink 2s infinite;
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.demo-chat-window {
    flex: 1;
    background: var(--color-bg-light);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
    overflow-y: auto;
}

.demo-msg {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    animation: msgAppear 0.4s ease forwards;
}

.demo-msg.user {
    flex-direction: row-reverse;
}

@keyframes msgAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.user-avatar {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
}

.bot-avatar {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-glass-border);
}

.demo-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.875rem;
    max-width: 220px;
    line-height: 1.5;
    position: relative;
}

.user-bubble {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-bg-dark);
    border-bottom-right-radius: 6px;
}

.bot-bubble {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text);
    border-bottom-left-radius: 6px;
}

/* Typing Animation */
.demo-bubble.typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 20px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 1.5s steps(30) forwards;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.demo-slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--color-bg-canvas);
    border-top: 1px solid var(--color-glass-border);
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.slide-dot:hover,
.slide-dot.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--color-accent-glow);
}

@media (max-width: 1024px) {
    .branchen-content {
        flex-direction: column;
        align-items: center;
    }

    .branchen-grid {
        width: 100%;
    }

    .branchen-demo {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .branchen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .branchen-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   How It Works / Demo Section
   =========================== */
.how-it-works {
    padding: 80px 0 100px;
}

.demo-card {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-secondary), var(--color-accent));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-card.playing::before {
    opacity: 1;
    animation: gradient-flow 2s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.demo-header {
    margin-bottom: 32px;
    text-align: center;
}

.demo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.demo-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.demo-header p {
    color: var(--color-text-muted);
}

/* Demo Canvas - Dark Background */
.demo-canvas {
    background: var(--color-bg-canvas);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Canvas Grid Pattern */
.demo-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* ===========================
   Graphics Demo - Window Style
   =========================== */
.canvas-window {
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.window-chrome {
    background: linear-gradient(180deg, #2d3748 0%, #1f2937 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

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

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #374151;
}

.window-dots span:nth-child(1) { background: #ef4444; }
.window-dots span:nth-child(2) { background: #f59e0b; }
.window-dots span:nth-child(3) { background: #22c55e; }

.window-url {
    flex: 1;
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
}

.url-cursor,
.input-cursor {
    color: var(--color-accent);
    opacity: 0;
}

.url-cursor.active,
.input-cursor.active {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.window-content {
    padding: 24px;
    min-height: 320px;
    position: relative;
}

/* Demo Stages */
.demo-stage {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s ease, visibility 0s 0.5s;
    pointer-events: none;
}

.demo-stage.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    transition: all 0.5s ease, visibility 0s 0s;
}

.demo-stage.exit {
    opacity: 0;
    transform: translateX(-30px);
}

/* Form Mockup */
.form-mockup {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field label {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.input-mock {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--color-glass-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    min-height: 44px;
}

.input-mock.filled {
    color: var(--color-text-muted);
}

/* .input-cursor styles moved to .url-cursor section */

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-bg-dark);
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.form-submit.clicked {
    transform: scale(0.98);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

/* Processing Stage */
.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.process-step.active {
    border-color: var(--color-accent);
    background: rgba(16, 185, 129, 0.1);
}

.process-step.done {
    border-color: rgba(16, 185, 129, 0.3);
}

.step-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-glass);
    border-radius: 8px;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.process-step.active .step-icon {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.step-icon.ai-pulse {
    animation: ai-glow 1.5s ease-in-out infinite;
}

@keyframes ai-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
    50% { box-shadow: 0 0 20px var(--color-accent-glow); }
}

.process-step span {
    flex: 1;
    font-size: 0.875rem;
}

.step-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: 50%;
    color: var(--color-bg-dark);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.process-step.done .step-check {
    opacity: 1;
    transform: scale(1);
}

.progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-timer {
    text-align: center;
    font-family: monospace;
    font-size: 1.5rem;
    color: var(--color-accent);
}

/* Results Stage */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.result-card {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.result-card.pop-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.result-preview {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-preview {
    background: linear-gradient(135deg, var(--color-accent) 0%, #065f46 100%);
    aspect-ratio: 1;
}

.story-preview {
    background: linear-gradient(180deg, var(--color-accent) 0%, #047857 50%, #065f46 100%);
    aspect-ratio: 9/16;
}

.facebook-preview {
    background: linear-gradient(135deg, #047857 0%, var(--color-accent-light) 100%);
    aspect-ratio: 1200/630;
    width: 100%;
}

.poster-preview {
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-medium) 100%);
    border: 2px solid var(--color-accent);
    aspect-ratio: 3/4;
}

.preview-content {
    text-align: center;
    padding: 12px;
    color: white;
}

.preview-content .event-title {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.preview-content .event-date,
.preview-content .event-location,
.preview-content .event-info {
    font-size: 0.6875rem;
    opacity: 0.9;
}

.result-label {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.75rem;
}

.format-name {
    font-weight: 600;
}

.format-size {
    color: var(--color-text-muted);
}

.success-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: var(--color-accent);
    font-weight: 600;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.success-badge.show {
    opacity: 1;
    transform: scale(1);
}

/* ===========================
   Chatbot Demo
   =========================== */
.canvas-chat {
    background: var(--color-bg-light);
    border-radius: 16px;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--color-accent) 0%, #059669 100%);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: white;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-messages {
    padding: 16px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.875rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.chat-message.show {
    opacity: 1;
    transform: translateY(0);
}

.chat-message.initial {
    opacity: 1;
    transform: translateY(0);
}

.chat-message.bot {
    align-self: flex-start;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-bg-dark);
    border-bottom-right-radius: 4px;
}

.chat-message.typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
}

.chat-message.typing span {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: typing-dot 1.4s infinite ease-in-out;
}

.chat-message.typing span:nth-child(1) { animation-delay: 0s; }
.chat-message.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-message.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.chat-input-mock {
    padding: 12px 16px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--color-glass-border);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    min-height: 48px;
    display: flex;
    align-items: center;
}

.chat-cursor {
    animation: blink 1s infinite;
    color: var(--color-accent);
}

/* Backend Visualization */
.chat-backend {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 0;
}

.backend-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.4);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.backend-step.active {
    opacity: 1;
    border-color: var(--color-accent);
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-text);
}

.backend-step.done {
    opacity: 0.7;
    border-color: rgba(16, 185, 129, 0.3);
}

.backend-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-glass);
    border-radius: 6px;
    transition: var(--transition);
}

.backend-step.active .backend-icon {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

/* ===========================
   Voice Demo
   =========================== */
.canvas-phone {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.phone-screen {
    background: var(--color-bg-light);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.call-status {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.caller-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.caller-info {
    display: flex;
    flex-direction: column;
}

.caller-name {
    font-weight: 600;
    font-size: 1rem;
}

.call-duration {
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--color-accent);
}

.voice-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 60px;
    margin-bottom: 24px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.voice-waveform.active {
    opacity: 1;
}

.waveform-bar {
    width: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Natürliche Audio-Wellenform mit verschiedenen Höhen und Animationen */
.voice-waveform.active .waveform-bar:nth-child(1) { animation: wave1 0.8s ease-in-out infinite; }
.voice-waveform.active .waveform-bar:nth-child(2) { animation: wave2 0.6s ease-in-out infinite 0.1s; }
.voice-waveform.active .waveform-bar:nth-child(3) { animation: wave3 0.9s ease-in-out infinite 0.05s; }
.voice-waveform.active .waveform-bar:nth-child(4) { animation: wave1 0.7s ease-in-out infinite 0.15s; }
.voice-waveform.active .waveform-bar:nth-child(5) { animation: wave4 0.5s ease-in-out infinite 0.08s; }
.voice-waveform.active .waveform-bar:nth-child(6) { animation: wave2 0.85s ease-in-out infinite 0.12s; }
.voice-waveform.active .waveform-bar:nth-child(7) { animation: wave3 0.65s ease-in-out infinite 0.03s; }
.voice-waveform.active .waveform-bar:nth-child(8) { animation: wave1 0.75s ease-in-out infinite 0.18s; }
.voice-waveform.active .waveform-bar:nth-child(9) { animation: wave4 0.55s ease-in-out infinite 0.07s; }
.voice-waveform.active .waveform-bar:nth-child(10) { animation: wave2 0.95s ease-in-out infinite 0.02s; }
.voice-waveform.active .waveform-bar:nth-child(11) { animation: wave3 0.7s ease-in-out infinite 0.13s; }
.voice-waveform.active .waveform-bar:nth-child(12) { animation: wave1 0.6s ease-in-out infinite 0.09s; }

/* Basis-Höhen für inaktiven Zustand */
.waveform-bar:nth-child(1) { height: 12px; }
.waveform-bar:nth-child(2) { height: 18px; }
.waveform-bar:nth-child(3) { height: 8px; }
.waveform-bar:nth-child(4) { height: 22px; }
.waveform-bar:nth-child(5) { height: 14px; }
.waveform-bar:nth-child(6) { height: 28px; }
.waveform-bar:nth-child(7) { height: 16px; }
.waveform-bar:nth-child(8) { height: 24px; }
.waveform-bar:nth-child(9) { height: 10px; }
.waveform-bar:nth-child(10) { height: 20px; }
.waveform-bar:nth-child(11) { height: 15px; }
.waveform-bar:nth-child(12) { height: 12px; }

/* Verschiedene Wellenform-Animationen für natürlichen Look */
@keyframes wave1 {
    0% { height: 12px; }
    15% { height: 35px; }
    30% { height: 22px; }
    50% { height: 48px; }
    65% { height: 28px; }
    80% { height: 42px; }
    100% { height: 12px; }
}

@keyframes wave2 {
    0% { height: 18px; }
    20% { height: 45px; }
    40% { height: 15px; }
    60% { height: 38px; }
    80% { height: 25px; }
    100% { height: 18px; }
}

@keyframes wave3 {
    0% { height: 8px; }
    25% { height: 32px; }
    45% { height: 52px; }
    70% { height: 20px; }
    85% { height: 40px; }
    100% { height: 8px; }
}

@keyframes wave4 {
    0% { height: 14px; }
    10% { height: 28px; }
    35% { height: 55px; }
    55% { height: 18px; }
    75% { height: 45px; }
    90% { height: 30px; }
    100% { height: 14px; }
}

.transcript {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 80px;
}

.transcript-entry {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.8125rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.transcript-entry.show {
    opacity: 1;
    transform: translateY(0);
}

.transcript-entry.caller {
    align-self: flex-end;
    background: rgba(255,255,255,0.1);
    max-width: 85%;
}

.transcript-entry.ai {
    align-self: flex-start;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    max-width: 85%;
}

.phone-actions {
    margin-top: 20px;
}

.action-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.action-result.show {
    opacity: 1;
    transform: translateY(0);
}

.action-icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark);
}

.action-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.action-title {
    font-weight: 600;
    font-size: 0.875rem;
}

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

.action-check {
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark);
}

/* Demo Play Button */
.demo-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-bg-dark);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.demo-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--color-accent-glow);
}

.demo-play-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Demo Buttons Container */
.demo-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-try-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.demo-try-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 25px var(--color-accent-glow);
}

/* ===========================
   Trial Popup Overlay
   =========================== */
.trial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
}

.trial-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0s 0s;
}

.trial-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(8px);
}

.trial-popup {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Formular-Container - zentriert im Popup */
.trial-content {
    position: relative;
    z-index: 10;
    width: 420px;
    padding: 40px;
    background: rgba(17, 24, 39, 0.97);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.trial-overlay.active .trial-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Figur - absolut positioniert links vom Formular, relativ zum Popup */
.trial-figure {
    position: absolute;
    width: 200px;
    height: auto;
    left: -100px;
    top: 50%;
    transform: rotate(-10deg) translateY(-50%) translateX(-30px) scale(0.9);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(-4px 4px 12px rgba(0,0,0,0.3));
}

.trial-overlay.active .trial-figure {
    transform: rotate(-10deg) translateY(-50%) translateX(0) scale(1);
    opacity: 1;
}

.trial-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-close:hover {
    background: rgba(255,255,255,0.2);
    color: var(--color-text);
}

.trial-form-area h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text);
    font-weight: 600;
}

.trial-form-area > p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.5;
}

.trial-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

.trial-form input {
    padding: 16px 18px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.trial-form input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.trial-form input::placeholder {
    color: var(--color-text-muted);
}

.trial-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-bg-dark);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.trial-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-accent-glow);
}

.trial-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 4px;
}

/* Trial Success */
.trial-success {
    display: none;
    text-align: center;
}

.trial-success.show {
    display: block;
}

.trial-form-area.hidden {
    display: none;
}

.trial-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.trial-success h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.trial-success p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.trial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-bg-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
}

.trial-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-accent-glow);
}

/* Mobile */
@media (max-width: 768px) {
    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }

    .demo-try-btn,
    .demo-play-btn {
        width: 100%;
        max-width: 280px;
    }

    .trial-popup {
        flex-direction: column;
        padding: 20px;
    }

    .trial-figure {
        display: none;
    }

    .trial-content {
        width: 100%;
        max-width: 340px;
        padding: 30px 24px;
    }

    .trial-form-area h3 {
        font-size: 1.2rem;
    }
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px var(--color-accent-glow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-family);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.05) 50%, transparent 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-bg-dark);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.cta-button.secondary:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.footer-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

.footer-brand p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

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

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-text);
}

/* ===========================
   Chatbot Widget (Real)
   =========================== */
.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 500px;
    max-height: calc(100vh - 140px);
    background: var(--color-bg-medium);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.chatbot-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.875rem;
}

.chatbot-header h4 {
    color: var(--color-bg-dark);
    font-size: 0.9375rem;
    font-weight: 600;
}

.chatbot-status {
    font-size: 0.75rem;
    color: var(--color-bg-dark);
    opacity: 0.8;
}

.chatbot-close {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-bg-dark);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chatbot-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.chatbot-message.bot {
    align-self: flex-start;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-bottom-left-radius: 4px;
}

.chatbot-message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-bg-dark);
    border-bottom-right-radius: 4px;
}

.chatbot-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.category-btn {
    padding: 10px 16px;
    background: var(--color-glass);
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    color: var(--color-accent);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}

.category-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.chatbot-input-area {
    padding: 16px;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 12px;
}

#chatbot-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 0.9375rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-family);
}

#chatbot-input:focus {
    border-color: var(--color-accent);
}

#chatbot-input::placeholder {
    color: var(--color-text-muted);
}

#chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border: none;
    border-radius: 50%;
    color: var(--color-bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

#chatbot-send:hover {
    transform: scale(1.1);
}

/* Floating Action Button */
.chatbot-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border: none;
    border-radius: 50%;
    color: var(--color-bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--color-accent-glow);
}

.chatbot-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px var(--color-accent-glow);
}

.chatbot-fab.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 900px) {
    .demo-canvas {
        padding: 24px 16px;
    }

    .chat-backend {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 24px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .backend-step {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 80px 0 60px;
    }

    .logo-image {
        width: 140px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .demo-card {
        padding: 24px 16px;
    }

    .canvas-window {
        max-width: 100%;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .canvas-chat {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .chatbot-widget {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }

    .chatbot-fab {
        bottom: 16px;
        right: 16px;
    }
}

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

    .results-grid {
        grid-template-columns: 1fr;
    }
}
