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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #ffffff;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: #8855ff;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Ensure no underline on any links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-secondary {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
    color: #1a1a1a;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f5f5f5;
}

.btn-primary {
    padding: 10px 20px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #333;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8ff 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f8f8;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 16px;
}

.badge-link {
    color: #0066cc;
    text-decoration: none;
    margin-left: 4px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.btn-video {
    padding: 12px 24px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-video:hover {
    background: #f5f5f5;
}

/* Hero Demo Section */
.hero-demo {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-demo-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Logos Section */
.logos-section {
    padding: 60px 0;
    background: #fafafa;
    overflow: hidden;
    width: 100%;
}

.logos-title {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.logos {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: fit-content;
    max-width: none;
}

.logos:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 20px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fafafa;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card.large {
    grid-column: span 2;
}

.feature-header {
    display: flex;
    gap: 12px;
}

.tab {
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.tab.active {
    background: #1a1a1a;
    color: white;
}

.chat-preview {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.chat-message {
    background: #f5f5f5;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.chat-input {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.chat-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.chat-input button {
    padding: 12px 20px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.chat-hint {
    font-size: 12px;
    color: #999;
}

.feature-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-info p {
    color: #666;
    font-size: 15px;
}

.feature-content {
    display: block;
}

.feature-content.hidden {
    display: none;
}

.feature-screenshot {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.feature-preview {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

/* Workflows Demo */
.workflows-demo {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.search-icon {
    font-size: 18px;
    color: #999;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    color: #666;
}

.workflow-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.workflow-category {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.workflow-category:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.workflow-category.active {
    background: #f0f0ff;
    border-color: #5555ff;
}

.category-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.category-info p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.workflow-category .arrow {
    font-size: 20px;
    color: #999;
    flex-shrink: 0;
}

.workflow-category.active .arrow {
    color: #5555ff;
}

/* File Explorer Demo */
.file-explorer-demo {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.file-browser {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 14px;
}

.file-icon {
    font-size: 20px;
}

.file-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-file-action {
    flex: 1;
    padding: 10px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-file-action:hover {
    background: #f5f5f5;
}

/* AI Demo */
.ai-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.ai-message {
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
}

.ai-message.user {
    background: #1a1a1a;
    color: white;
    align-self: flex-end;
    max-width: 70%;
}

.ai-message.assistant {
    background: #f5f5f5;
    align-self: flex-start;
    max-width: 80%;
}

.workflow-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.workflow-btn {
    padding: 10px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    text-align: left;
    transition: all 0.3s;
}

.workflow-btn:hover {
    background: #f5f5f5;
    border-color: #1a1a1a;
}

/* Icon Display */
.icon-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 12px;
}

.feature-icon-large {
    font-size: 80px;
}

.sphere-3d {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.sphere-3d::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dropdown-preview {
    background: white;
    border-radius: 12px;
    padding: 16px;
}

.dropdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

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

.prompt-preview {
    background: white;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.prompt-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.highlight {
    background: #ffd700;
    padding: 2px 4px;
    border-radius: 4px;
}

.btn-auto {
    padding: 8px 16px;
    background: #e8e8ff;
    color: #5555ff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.btn-blue {
    padding: 8px 16px;
    background: #4444ff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.sync-preview {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.sync-devices {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Creative Section */
.creative-section {
    padding: 100px 0;
    background: #fafafa;
}

.creative-content {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Command Panel */
.command-panel {
    padding: 30px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 24px;
}

.status-indicator {
    font-size: 12px;
}

.server-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

.working-dir {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    color: #0066cc;
    background: white;
    padding: 4px 12px;
    border-radius: 6px;
}

.btn-change {
    margin-left: auto;
    padding: 6px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-change:hover {
    background: #f5f5f5;
}

.command-input-area {
    margin-bottom: 24px;
}

.input-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
}

.command-wrapper {
    display: flex;
    gap: 12px;
}

.command-input {
    flex: 1;
    padding: 12px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    color: #1a1a1a;
}

.btn-execute {
    padding: 12px 24px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-execute:hover {
    background: #333;
}

.terminal-output {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #2a2a2a;
    color: white;
    font-size: 13px;
}

.output-status {
    color: #00ff88;
    font-size: 12px;
}

.output-content {
    padding: 20px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.8;
    max-height: 300px;
    overflow-y: auto;
}

.output-line {
    margin-bottom: 4px;
}

.text-success {
    color: #00ff88;
    font-weight: 600;
}

.creative-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.creative-feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.creative-feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.creative-feature p {
    color: #666;
    font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fafafa;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    border-color: #0066cc;
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
}

.author-role {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #fafafa;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.toggle-btn {
    padding: 10px 24px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.save-badge {
    background: #e8e8ff;
    color: #5555ff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: #f5f0ff;
    border-color: #8855ff;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #8855ff;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 16px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.price-monthly,
.price-annual {
    font-size: 48px;
    font-weight: 700;
}

.price-monthly span,
.price-annual span {
    font-size: 24px;
    color: #666;
}

.price-contact {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.savings-badge {
    background: #e6f7e6;
    color: #00aa00;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

.hidden {
    display: none !important;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.checkmark {
    color: #00cc66;
    font-weight: 700;
}

.btn-plan {
    width: 100%;
    padding: 14px;
    background: white;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-plan:hover {
    background: #f5f5f5;
}

.btn-plan.primary {
    background: #1a1a1a;
    color: white;
}

.btn-plan.primary:hover {
    background: #333;
}

a.btn-plan {
    text-decoration: none;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

a.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5568d3 0%, #653a8b 100%);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-icon {
    font-size: 24px;
    color: #999;
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #fafafa;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 60px;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.btn-cta {
    padding: 14px 28px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.flow-visual {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.flow-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-box {
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s;
}

.flow-box.highlight {
    background: linear-gradient(135deg, #f5f0ff 0%, #e8e8ff 100%);
    border-color: #8855ff;
    box-shadow: 0 4px 20px rgba(136, 85, 255, 0.2);
}

.flow-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.flow-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.flow-arrow {
    flex: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60px;
}

.arrow-line {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
}

.arrow-head {
    font-size: 24px;
    color: #8855ff;
    position: absolute;
    right: -5px;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.flow-data {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #8855ff;
    border-radius: 50%;
    left: 0;
    animation: flowData 2s linear infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes flowData {
    0% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Legal Section */
.legal-section {
    padding: 60px 0 100px;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section-block {
    margin-bottom: 48px;
}

.legal-section-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.legal-section-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section-block ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section-block a {
    color: #8855ff;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section-block a:hover {
    color: #6644cc;
    text-decoration: underline;
}

/* Changelog Section */
.changelog-section {
    padding: 60px 0 100px;
    background: #ffffff;
}

.changelog-container {
    max-width: 900px;
    margin: 0 auto;
}

.changelog-entry {
    background: #fafafa;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    transition: all 0.3s;
}

.changelog-entry:hover {
    border-color: #8855ff;
    box-shadow: 0 4px 20px rgba(136, 85, 255, 0.1);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.version-badge {
    background: linear-gradient(135deg, #8855ff 0%, #6644cc 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.changelog-date {
    color: #999;
    font-size: 14px;
}

.changelog-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.changelog-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.changelog-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.changelog-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
}

.item-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.changelog-item.new .item-badge {
    background: #e6f7e6;
    color: #00aa00;
}

.changelog-item.improved .item-badge {
    background: #e8e8ff;
    color: #5555ff;
}

.changelog-item.fixed .item-badge {
    background: #fff3e0;
    color: #ff8800;
}

.item-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #fafafa;
}

.footer-content {
    margin-bottom: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

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

    .flow-visual {
        height: 200px;
    }

    .flow-box {
        padding: 20px 15px;
        min-width: 100px;
    }

    .flow-icon {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scrolling on mobile */
    html {
        overflow-x: hidden;
        overflow-y: auto;
        width: 100%;
    }

    body {
        overflow-x: hidden;
        overflow-y: auto;
        width: 100%;
        position: relative;
    }

    /* Prevent horizontal overflow on all elements */
    * {
        max-width: 100%;
    }

    .container {
        padding: 0 16px;
        width: 100%;
    }

    /* Navigation */
    .navbar {
        padding: 15px 0;
        width: 100%;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 15px;
        width: 100%;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        display: none; /* Verstecke auf Mobile für bessere UX */
    }

    .nav-buttons {
        margin-left: auto;
    }

    a.btn-secondary {
        text-decoration: none !important;
        display: inline-block;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 40px;
        width: 100%;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 20px;
        max-width: 90%;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        word-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 40px;
        width: 100%;
    }

    .hero-buttons .btn-primary {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .hero-demo {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
    }

    .hero-demo-image {
        border-radius: 12px;
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    /* Logos Section */
    .logos-section {
        padding: 40px 0;
        width: 100%;
        overflow: hidden; /* Only hide overflow for animation */
    }

    .logos {
        gap: 40px;
        width: max-content;
    }

    .logo-item {
        font-size: 14px;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0;
        width: 100%;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        word-wrap: break-word;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
    }

    .feature-card {
        padding: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .feature-card.large {
        grid-column: span 1;
    }

    .feature-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tab {
        padding: 6px 12px;
        font-size: 13px;
    }

    .feature-info h3 {
        font-size: 20px;
    }

    .feature-info p {
        font-size: 14px;
    }

    /* Workflows Demo */
    .workflow-category {
        padding: 12px;
    }

    .category-icon {
        font-size: 24px;
    }

    .category-info h4 {
        font-size: 14px;
    }

    .category-info p {
        font-size: 12px;
    }

    /* AI Demo */
    .ai-message.user,
    .ai-message.assistant {
        max-width: 90%;
        font-size: 13px;
    }

    /* Creative Section */
    .creative-section {
        padding: 60px 0;
        width: 100%;
    }

    .creative-content {
        margin-bottom: 40px;
        width: 100%;
        box-sizing: border-box;
    }

    .command-panel {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .panel-header {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .server-name {
        font-size: 14px;
    }

    .working-dir {
        font-size: 12px;
        width: 100%;
        word-break: break-all;
    }

    .btn-change {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
        box-sizing: border-box;
    }

    .command-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .command-input {
        width: 100%;
        box-sizing: border-box;
    }

    .btn-execute {
        width: 100%;
        box-sizing: border-box;
    }

    .output-content {
        font-size: 12px;
        padding: 16px;
        word-break: break-all;
        overflow-x: auto;
    }

    .creative-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .creative-feature h3 {
        font-size: 18px;
    }

    .creative-feature p {
        font-size: 14px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .testimonial-card {
        padding: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonial-text {
        font-size: 14px;
        word-wrap: break-word;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 60px 0;
        width: 100%;
    }

    .pricing-toggle {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .toggle-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .save-badge {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .pricing-card {
        padding: 30px 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .popular-badge {
        top: 16px;
        right: 16px;
        font-size: 11px;
        padding: 4px 10px;
    }

    .plan-name {
        font-size: 22px;
    }

    .plan-description {
        font-size: 14px;
    }

    .plan-price {
        min-height: 60px;
    }

    .price-monthly,
    .price-annual {
        font-size: 36px;
    }

    .price-monthly span,
    .price-annual span {
        font-size: 18px;
    }

    .price-contact {
        font-size: 28px;
    }

    .plan-features li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .btn-plan {
        padding: 12px;
        font-size: 14px;
    }

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

    .faq-list {
        border-radius: 12px;
    }

    .faq-question {
        padding: 20px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
        width: 100%;
    }

    .cta-content {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        gap: 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .cta-text {
        width: 100%;
    }

    .cta-text h2 {
        font-size: 28px;
        word-wrap: break-word;
    }

    .cta-text p {
        font-size: 16px;
        margin-bottom: 24px;
        word-wrap: break-word;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        box-sizing: border-box;
    }

    .flow-visual {
        flex-direction: column;
        height: auto;
        gap: 10px;
        width: 100%;
        overflow: visible;
    }

    .flow-column {
        width: 100%;
    }

    .flow-box {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .flow-arrow {
        width: 60px;
        height: 40px;
        transform: rotate(90deg);
    }

    .arrow-head {
        font-size: 20px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
        width: 100%;
    }

    .footer-content {
        margin-bottom: 40px;
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .footer-column h4 {
        font-size: 15px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 30px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    /* FAQ Section */
    .faq-section {
        width: 100%;
    }

    .faq-list {
        width: 100%;
        box-sizing: border-box;
    }

    /* Legal & Changelog */
    .legal-section,
    .changelog-section {
        padding: 40px 0 60px;
        width: 100%;
    }

    .legal-container,
    .changelog-container {
        width: 100%;
        box-sizing: border-box;
    }

    .legal-section-block h2,
    .changelog-title {
        font-size: 24px;
        word-wrap: break-word;
    }

    .legal-section-block h3 {
        font-size: 18px;
        word-wrap: break-word;
    }

    .legal-section-block p,
    .changelog-description {
        font-size: 15px;
        word-wrap: break-word;
    }

    .changelog-entry {
        padding: 24px;
        width: 100%;
        box-sizing: border-box;
    }

    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .version-badge {
        font-size: 13px;
    }

    .changelog-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .item-text {
        font-size: 14px;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 10px 18px;
    }

    .feature-icon-large {
        font-size: 60px;
    }

    .icon-display {
        padding: 30px;
    }

    .command-input {
        font-size: 12px;
    }

    .price-monthly,
    .price-annual {
        font-size: 32px;
    }

    .cta-text h2 {
        font-size: 24px;
    }
}
