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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e0e0e0 100%);
    min-height: 100vh;
}

/* Editorial Container */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.15);
    min-height: 100vh;
}

.editorial-content {
    padding: 2rem 0;
}

/* Typography */
.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
    font-family: 'Playfair Display', serif;
}

.subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.publication-date {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: #000000;
    font-family: 'Playfair Display', serif;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #000000;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #000000;
}

/* Paragraphs and Text */
p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000;
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.9;
    color: #ffffff;
    padding: 1.5rem;
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #666666 100%);
    border-radius: 12px;
    margin: 2rem 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

strong, b {
    color: #000000;
    font-weight: 600;
}

/* Images */
.content-image {
    margin: 2.5rem 0;
    text-align: center;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

.content-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
}

/* Blockquotes */
.highlight-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    border-radius: 12px;
    color: #ffffff;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.highlight-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.highlight-quote p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
}

.highlight-quote cite {
    font-size: 0.9rem;
    font-style: normal;
    opacity: 0.9;
    color: #ffffff;
    font-weight: 400;
}

/* CTA Sections */
.cta-section {
    margin: 3rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #666666 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.cta-box h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #000000;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-button i {
    margin-right: 0.5rem;
}

.cta-button.primary {
    background: #000000;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

/* Technical Specs */
.specs-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.specs-table td:first-child {
    font-weight: 600;
    background: #f5f5f5;
    width: 40%;
}

/* User Stories */
.user-story {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 12px;
    align-items: flex-start;
}

.user-avatar {
    flex-shrink: 0;
}

.user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.rating {
    margin-top: 1rem;
    color: #000000;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #666666 100%);
    color: white;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #000000;
    color: white;
    padding: 1rem;
    text-align: left;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.text-green {
    color: #27ae60;
}

.text-red {
    color: #e74c3c;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #666666 100%);
    border-radius: 16px;
    color: #ffffff;
}

.final-cta h2 {
    color: #ffffff;
    font-weight: 700;
}

.final-cta p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    background: #000000;
    color: white;
    padding: 3rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #cccccc;
}

.impressum {
    max-width: 680px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

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

.impressum p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .editorial-container {
        padding: 1rem 0.5rem;
        margin: 0;
        box-shadow: none;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .user-story {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-options {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .impressum {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .highlight-quote p {
        font-size: 1.1rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

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

.editorial-content > section {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}
