/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Dark Theme */
    --color-primary: #10b981;
    --color-primary-light: #34d399;
    --color-primary-dark: #059669;
    --color-secondary: #3b82f6;
    --color-accent: #8b5cf6;
    
    /* Status Colors */
    --color-running: #10b981;
    --color-paused: #3b82f6;
    --color-completed: #ef4444;
    --color-new: #6b7280;
    
    /* Dark Theme Colors */
    --color-bg-dark: #0a0a0a;
    --color-bg-darker: #050505;
    --color-bg-card: #1a1a1a;
    --color-bg-card-hover: #242424;
    --color-border: #2a2a2a;
    --color-border-light: #333333;
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a1a1a1;
    --color-text-muted: #737373;
    
    /* Neutral Colors (inverted for dark) */
    --color-gray-50: #1a1a1a;
    --color-gray-100: #262626;
    --color-gray-200: #333333;
    --color-gray-300: #404040;
    --color-gray-400: #525252;
    --color-gray-500: #737373;
    --color-gray-600: #a1a1a1;
    --color-gray-700: #d4d4d4;
    --color-gray-800: #e5e5e5;
    --color-gray-900: #f5f5f5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-card: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
    
    /* Shadows - adjusted for dark theme */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.6), 0 1px 2px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.6), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7), 0 4px 6px -2px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: transform var(--transition-base);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-primary);
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: 2px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: var(--color-bg-darker);
    color: var(--color-text-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Hero Image/Screenshot */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screenshot {
    max-width: 100%;
    position: relative;
}

.screenshot-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), 0 0 100px rgba(16, 185, 129, 0.3);
    border: 2px solid var(--color-border);
    transition: transform var(--transition-slow);
}

.screenshot-main:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 150px rgba(16, 185, 129, 0.4);
}

/* ===========================
   ABOUT TICKFLOW SECTION
   =========================== */
.about-section {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-3xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.about-intro {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.about-feature-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: translateX(8px);
}

.feature-check {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.about-feature-item p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-feature {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--color-border);
    transition: transform var(--transition-slow);
}

.screenshot-feature:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out 0.3s both;
}

/* ===========================
   SECTIONS
   =========================== */
section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features {
    background-color: var(--color-bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    background: var(--color-bg-card-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-text-secondary);
}

/* ===========================
   SCREENSHOTS SECTION
   =========================== */
.screenshots-section {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-3xl) 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.screenshot-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.screenshot-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.screenshot-wrapper {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-darker);
    padding: var(--spacing-md);
}

.screenshot-wrapper img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.screenshot-item:hover .screenshot-wrapper img {
    transform: scale(1.05);
}

.screenshot-caption {
    padding: var(--spacing-md);
}

.screenshot-caption h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.screenshot-caption p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* ===========================
   HOW IT WORKS SECTION (VISUAL)
   =========================== */
.how-it-works {
    background-color: var(--color-bg-darker);
}

.steps-visual {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.step-visual {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-image {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.step-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
}

.step-visual:hover .step-image img {
    transform: scale(1.05);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-glow);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.step-content {
    background: var(--color-bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.step-visual:hover .step-content {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.step-content p {
    color: var(--color-text-secondary);
}

.step-arrow-visual {
    font-size: 2rem;
    color: var(--color-primary);
    align-self: center;
    margin-top: 150px;
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits {
    background: var(--color-bg-dark);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-item {
    padding: var(--spacing-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.benefit-item p {
    color: var(--color-text-secondary);
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
    background-color: var(--color-bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-glow);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.price {
    margin-bottom: var(--spacing-lg);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.period {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.price-save {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--color-text-primary);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    border: 2px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.btn-pricing:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.btn-pricing.primary {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-pricing.primary:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-2px);
}

/* ===========================
   DOWNLOAD SECTION
   =========================== */
.download {
    background: var(--color-bg-dark);
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.download .container {
    position: relative;
    z-index: 1;
}

.download-content {
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.download-content > p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.download-btn:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.download-icon {
    font-size: 2.5rem;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.download-platform {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.download-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    background-color: var(--color-bg-darker);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.faq-item {
    padding: var(--spacing-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.faq-item p {
    color: var(--color-text-secondary);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
    background: var(--color-bg-dark);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transition: all var(--transition-base);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.5);
}

.cta-guarantee {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--color-bg-darker);
    color: var(--color-text-muted);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.footer-description {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-secondary);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: var(--spacing-xl);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-feature-item {
        text-align: left;
    }
    
    .steps-visual {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow-visual {
        transform: rotate(90deg);
        margin-top: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-bg-dark);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-hero, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .benefits-grid,
    .pricing-grid,
    .faq-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .step-number {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .step-arrow-visual {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .screenshot-main,
    .screenshot-feature {
        max-width: 100%;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
}

/* ===================================
   LEGAL PAGES STYLES
   (Impressum, Datenschutz, AGB, Support)
   =================================== */

.legal-page {
    min-height: 100vh;
    padding: 60px 20px;
    background: var(--color-background, #ffffff);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-surface, #ffffff);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-container h1 {
    color: var(--color-primary, #667eea);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary, #667eea);
}

.legal-container h2 {
    color: var(--color-text, #2c3e50);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    color: var(--color-text, #2c3e50);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-container h4 {
    color: var(--color-text, #2c3e50);
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
}

.legal-container p {
    color: var(--color-text-muted, #666666);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    color: var(--color-text-muted, #666666);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--color-primary, #667eea);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: var(--color-primary-dark, #5568d3);
    text-decoration: underline;
}

.legal-container strong {
    color: var(--color-text, #2c3e50);
    font-weight: 600;
}

.back-link {
    display: inline-block;
    color: var(--color-primary, #667eea);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    color: var(--color-primary-dark, #5568d3);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 40px 15px;
    }
    
    .legal-container {
        padding: 25px;
    }
    
    .legal-container h1 {
        font-size: 2rem;
    }
    
    .legal-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 20px;
    }
    
    .legal-container h1 {
        font-size: 1.75rem;
    }
}

/* Dark Mode Support für Legal Pages */
@media (prefers-color-scheme: dark) {
    .legal-page {
        background: #1a1a1a;
    }
    
    .legal-container {
        background: #2d2d2d;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .legal-container h1,
    .legal-container h2,
    .legal-container h3,
    .legal-container h4,
    .legal-container strong {
        color: #ffffff;
    }
    
    .legal-container p,
    .legal-container ul,
    .legal-container ol,
    .legal-container li {
        color: #cccccc;
    }
}

/* ===================================
   DOCUMENTATION PAGE STYLES
   =================================== */

.docs-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.docs-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.docs-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.docs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.docs-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: var(--color-surface, #ffffff);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.docs-nav h3 {
    color: var(--color-primary, #667eea);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary, #667eea);
}

.docs-nav ul {
    list-style: none;
    padding: 0;
}

.docs-nav li {
    margin-bottom: 0.5rem;
}

.docs-nav a {
    color: var(--color-text-muted, #666666);
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.docs-nav a:hover {
    background: var(--color-primary-light, #f0f2ff);
    color: var(--color-primary, #667eea);
    transform: translateX(5px);
}

.docs-content {
    background: var(--color-surface, #ffffff);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.docs-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.docs-section:last-child {
    border-bottom: none;
}

.docs-section h2 {
    color: var(--color-primary, #667eea);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.docs-section h3 {
    color: var(--color-text, #2c3e50);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.docs-section h4 {
    color: var(--color-text, #2c3e50);
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.docs-section p {
    color: var(--color-text-muted, #666666);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.docs-section ul,
.docs-section ol {
    color: var(--color-text-muted, #666666);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.docs-section li {
    margin-bottom: 0.5rem;
}

.docs-section code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e74c3c;
    font-size: 0.9em;
}

.docs-section pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.docs-section pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.feature-list,
.requirements-grid,
.requirement-card,
.step-card,
.tip-card,
.tutorial-card {
    margin: 1.5rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary, #667eea);
    font-weight: bold;
    font-size: 1.2em;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.requirement-card,
.step-card,
.tutorial-card {
    background: var(--color-background, #f9f9f9);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary, #667eea);
}

.requirement-card h4,
.step-card h4,
.tutorial-card h4 {
    color: var(--color-primary, #667eea);
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.tip-card,
.warning-card,
.info-card {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.warning-card {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.info-card {
    background: #d1ecf1;
    border-left-color: #17a2b8;
}

/* Responsive Docs */
@media (max-width: 768px) {
    .docs-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .docs-nav {
        position: static;
        margin-bottom: 20px;
    }
    
    .docs-content {
        padding: 20px;
    }
    
    .docs-section h2 {
        font-size: 1.6rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .docs-hero h1 {
        font-size: 2rem;
    }
    
    .docs-hero p {
        font-size: 1rem;
    }
    
    .docs-content {
        padding: 15px;
    }
}

/* Dark Mode für Docs */
@media (prefers-color-scheme: dark) {
    .docs-nav,
    .docs-content {
        background: #2d2d2d;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .docs-section {
        border-bottom-color: #404040;
    }
    
    .docs-section h2,
    .docs-section h3,
    .docs-section h4 {
        color: #ffffff;
    }
    
    .docs-section p,
    .docs-section ul,
    .docs-section ol,
    .docs-section li {
        color: #cccccc;
    }
    
    .docs-section code {
        background: #3d3d3d;
        color: #ff6b6b;
    }
    
    .requirement-card,
    .step-card,
    .tutorial-card {
        background: #3d3d3d;
    }
}
