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

html {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
    font-weight: 400;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    /* Prevent overscroll bounce on iOS/macOS */
    position: relative;
    min-height: 100vh;
}

/* Additional overscroll prevention */
html, body {
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    background: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 28px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-link:hover {
    color: #4a1a4a;
}

.cta-button {
    background: #000000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    transform: scale(1);
}

.cta-button:hover {
    background: #333333;
    transform: scale(1.02);
}

.cta-button:active {
    transform: scale(0.98);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: #000000;
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #000000;
}

.gradient-text {
    color: #000000;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #000000;
    font-weight: 500;
    text-align: left;
    width: 100%;
}

.hero-input {
    width: 100%;
    margin-bottom: 0;
}

.app-description-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    color: #000000;
    outline: none;
    transition: all 300ms ease-in-out;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.app-description-input::placeholder {
    color: #999999;
    transition: opacity 300ms ease-in-out;
}

.app-description-input:focus {
    border-color: #333333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
}

.app-description-input:focus::placeholder {
    opacity: 0.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
    width: 100%;
}

.primary-button {
    background: #000000;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    transform: scale(1);
}

.primary-button:hover {
    background: #333333;
    transform: scale(1.02);
}

.primary-button:active {
    transform: scale(0.98);
}

.primary-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.secondary-button {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    transform: scale(1);
}

.secondary-button:hover {
    background: #f5f5f5;
    transform: scale(1.02);
}

.secondary-button:active {
    transform: scale(0.98);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: #fbbf24;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.graphic-circle {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.graphic-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
}

.section-header p {
    font-size: 16px;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
    padding: 100px 0;
    background: #ffffff;
}

.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.separator-line {
    width: 60px;
    height: 1px;
    background: #000000;
    opacity: 0.3;
}

.section-separator h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #333333;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Examples Section */
.examples {
    padding: 100px 0;
    background: #f8fafc;
}

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

.example-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.example-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.example-icon i {
    font-size: 20px;
    color: white;
}

.example-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.example-card p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
    font-size: 14px;
}

/* Vertical Timeline */
.vertical-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-step {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
    opacity: 1;
    transform: translateY(0);
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 2px #e0e0e0;
    position: relative;
    z-index: 4;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #000000, 0 8px 25px rgba(0, 0, 0, 0.2);
}

.step-content-left,
.step-content-right {
    flex: 1;
    padding: 0 40px;
}

.step-content-left {
    text-align: right;
    padding-right: 80px;
}

.step-content-right {
    text-align: left;
    padding-left: 80px;
}

.step-content-left h3,
.step-content-right h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #000000;
}

.step-content-left p,
.step-content-right p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    max-width: 300px;
}

.step-content-left p {
    margin-left: auto;
}

.step-content-right p {
    margin-right: auto;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: #ffffff;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Mobile Cat Section */
.mobile-cat-section {
    display: none; /* Hidden on desktop */
    padding: 20px 0 40px 0; /* Reduced padding to move cat higher */
    background: #ffffff;
    text-align: center;
    width: 100%;
}

.mobile-cat-container {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.2;
    transition: opacity 0.5s ease-in-out;
    min-height: 200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px; /* Add some padding for mobile edges */
    padding-left: 40px; /* Move cat slightly to the right */
}

.mobile-cat-container.visible {
    opacity: 1;
}

.mobile-cat-container lottie-player {
    display: block;
    margin: 0 auto;
}

/* Imprint Section */
.imprint-section {
    padding: 120px 0 80px 0;
    background: #ffffff;
    min-height: 100vh;
}

.imprint-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.imprint-content h1 {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.imprint-section-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.imprint-section-block:last-of-type {
    border-bottom: none;
}

.imprint-section-block h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.imprint-section-block p {
    color: #333333;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.legal-links {
    list-style: none;
    padding: 0;
}

.legal-links li {
    margin-bottom: 10px;
}

.legal-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: inline-block;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-links a:hover {
    background: #f8f8f8;
    border-color: #000000;
    transform: translateY(-1px);
}

.back-link {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.back-button:hover {
    background: #f8f8f8;
    border-color: #000000;
    transform: translateY(-1px);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #f8f8f8;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-note {
    font-size: 14px !important;
    color: #666666 !important;
    margin-top: 16px !important;
}


.terminal-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    margin-bottom: 0;
}

.terminal-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: #000000;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 1;
    transition: opacity 500ms ease-in-out;
}

.scroll-indicator.fade-out {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    animation: bounce 2s infinite;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.scroll-arrow:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.05);
}

.scroll-arrow i {
    font-size: 16px;
    color: #000000;
    transition: color 0.3s ease;
}

.scroll-arrow:hover i {
    color: #ffffff;
}

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

/* Skeleton Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-text:last-child {
    margin-bottom: 0;
    width: 60%;
}

.skeleton-button {
    height: 48px;
    width: 100%;
    border-radius: 8px;
}

.skeleton-input {
    height: 56px;
    width: 100%;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-arrow {
        animation: none;
    }
    
    .skeleton {
        animation: none;
        background: #f0f0f0;
    }
    
    .loading::after {
        animation: none;
    }
    
    .terminal-text::after {
        animation: none;
        opacity: 1;
    }
    
    .primary-button:hover,
    .secondary-button:hover,
    .cta-button:hover {
        transform: none;
    }
    
    .app-description-input:focus {
        transform: none;
    }
    
    .timeline-step:hover .step-number {
        transform: none;
    }
    
    .scroll-arrow:hover {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 16px;
}

.footer-logo i {
    margin-right: 8px;
    font-size: 28px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4f46e5;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: #9ca3af;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        min-height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 100%;
        padding: 40px 20px;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-right {
        display: none;
    }
    
    .terminal-text {
        font-size: 32px;
        line-height: 1.2;
        text-align: left;
        margin-bottom: 16px;
    }
    
    .hero-description {
        text-align: left;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-input {
        margin-bottom: 16px;
    }
    
    .app-description-input {
        padding: 18px;
        font-size: 18px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-arrow i {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .vertical-timeline::before {
        left: 30px;
    }
    
    .timeline-node {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-step {
        margin-bottom: 60px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-content-left,
    .step-content-right {
        padding: 0 20px;
        margin-left: 80px;
        text-align: left;
        width: calc(100% - 80px);
        box-sizing: border-box;
    }
    
    .step-content-left p,
    .step-content-right p {
        margin: 0;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .section-separator {
        gap: 20px;
    }
    
    .separator-line {
        width: 40px;
    }
    
    .section-separator h2 {
        font-size: 24px;
    }
    
    .step-content-left h3,
    .step-content-right h3 {
        font-size: 20px;
    }
    
    .step-content-left p,
    .step-content-right p {
        font-size: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Show mobile cat section on mobile and tablet */
    .mobile-cat-section {
        display: block;
    }
    
    /* Imprint Mobile */
    .imprint-section {
        padding: 100px 0 60px 0;
    }
    
    .imprint-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .imprint-section-block h2 {
        font-size: 20px;
    }
    
    .imprint-section-block p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .primary-button, .secondary-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Video Section Mobile */
    .video-section {
        padding: 60px 0;
    }
    
    .video-container {
        max-width: calc(100% - 40px);
        margin: 0 auto;
    }
    
    /* Show mobile cat section on mobile */
    .mobile-cat-section {
        display: block;
    }
}
