/**
 * Landing Pages CSS
 * Optimiert für Conversion und SEO
 */

/* Hero Section */
.hero-landing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero-landing h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-landing .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #667eea;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
}

.trust-badge {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: white !important;
    opacity: 1;
}

/* Content Sections */
.content-section {
    padding: 5rem 2rem;
}

.bg-light {
    background: #f9fafb;
}

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

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    background: white;
    border-radius: 0.5rem;
}

.benefit h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.benefit p {
    color: #6b7280;
    line-height: 1.6;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Use Cases */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.use-case h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.use-case p {
    color: #6b7280;
    line-height: 1.6;
}

/* Privacy Points */
.privacy-points {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.privacy-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.privacy-point .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.privacy-point .content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.privacy-point .content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .small-print {
    font-size: 0.875rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-landing h1 {
        font-size: 2rem;
    }
    
    .hero-landing .lead {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .features-grid,
    .benefits-list,
    .use-cases {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for simplified landing pages */
.comparison, .comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-col, .comparison .col {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-col.highlight, .comparison .col.highlight, .comparison-col.good {
    border: 3px solid #667eea;
    background: linear-gradient(to bottom, #f0f4ff, #ffffff);
}

.comparison-col.bad {
    opacity: 0.7;
}

.comparison-col h3, .comparison .col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.comparison-col ul, .comparison .col ul {
    list-style: none;
    padding: 0;
}

.comparison-col li, .comparison .col li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #4b5563;
}

.check, .comparison-table .check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.cross, .comparison-table .cross {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table tbody tr.highlight {
    background: linear-gradient(to right, #f0f4ff, #ffffff);
    font-weight: 600;
}

/* Comparison Lists */
.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.comparison-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comparison-item .check {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.comparison-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.comparison-item p {
    color: #6b7280;
}

/* Service Lists */
.service-list, .benefits-list ul, .reasons-list, .feature-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 2rem auto;
}

.service-list li, .benefits-list ul li, .reasons-list li, .feature-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    color: #374151;
}

/* Related Services & Cards */
.related-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Platforms, Tools, Services Grids */
.platforms-grid, .music-platforms, .streaming-services, 
.ai-platforms, .crypto-uses, .gaming-platforms, .platforms,
.storage-services, .learning-platforms, .writing-tools,
.productivity-tools, .vpn-services, .discord-uses, 
.reddit-uses, .telegram-features, .github-uses,
.locations-grid, .survey-sites, .aliexpress-features,
.design-tools, .amazon-uses, .etsy-benefits,
.test-cases, .events-grid, .zoom-uses, .slack-uses,
.academic-uses, .linkedin-uses, .twitter-uses,
.dating-platforms, .forum-types, .job-platforms,
.shopping-benefits, .discount-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform, .tool, .service, .use, .location, .site,
.feature, .device, .type, .case {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.platform:hover, .tool:hover, .service:hover, .use:hover,
.location:hover, .site:hover, .feature:hover, .device:hover,
.type:hover, .case:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

/* Specific sections with content */
.use h3, .type h3, .case h3, .benefit h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.use p, .type p, .case p, .benefit p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Process & How it Works */
.process-steps, .how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item, .work-step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-item h3, .work-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Centered content */
.centered {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin: 2rem 0;
}

/* Code examples */
.code-example {
    background: #1e293b;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.code-example h3 {
    color: white;
    margin-bottom: 1rem;
}

.code-example pre {
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}

.code-example code {
    color: #94a3b8;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Speed table */
.speed-table {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    border-collapse: collapse;
}

.speed-table th, .speed-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.speed-table th {
    background: #f9fafb;
    font-weight: 700;
    color: #1f2937;
}

.speed-table tr.highlight {
    background: linear-gradient(to right, #f0f4ff, #ffffff);
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonials blockquote {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.testimonials cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Unlimited features */
.unlimited-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.unlimited-features .feature {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.unlimited-features .feature h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #667eea;
}

/* Privacy reasons */
.privacy-reasons, .spam-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.reason-card, .spam-type {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.reason-card .icon, .spam-type .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reason-card h3, .spam-type h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step,
.benefit,
.use-case {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

