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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
    font-size: 18px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 1rem auto 0;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    text-align: center;
    margin: 2rem auto;
    max-width: 900px;
    color: #555;
}

strong {
    font-weight: 700;
    color: #333;
}

/* Main Container */
.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #888;
    font-family: 'Lato', sans-serif;
}

.separator {
    color: #ddd;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Section Styles */
section {
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 3rem;
}

/* Feature Images */
.feature-image {
    margin: 3rem 0;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-image figcaption {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.two-column .column {
    text-align: center;
}

.two-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.two-column p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* CTA Blocks */
.cta-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.cta-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-block p {
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 20px 40px rgba(240, 147, 251, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cta-large {
    font-size: 1.3rem;
    padding: 1.25rem 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #667eea;
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    margin: 4rem 0;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-content cite {
    display: block;
    font-style: normal;
}

.testimonial-content strong {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-content span {
    color: #666;
    font-size: 0.9rem;
}

/* Technical Details */
.specs-table {
    max-width: 600px;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #555;
}

.spec-value {
    color: #333;
    font-weight: 700;
}

.technical-image {
    text-align: center;
    margin: 3rem 0;
}

.technical-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 16px;
    margin: 4rem 0;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.final-cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.final-cta h2::after {
    background: white;
}

.final-cta .lead-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
}

.final-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.price-block {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.final-cta .cta-button {
    background: white;
    color: #667eea;
}

/* Related Content */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
    color: #333;
}

.related-card p {
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.related-card a {
    display: block;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.related-card a:hover {
    background: #667eea;
    color: white;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #667eea;
}

.legal-info {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.legal-info h4 {
    color: white;
    margin-bottom: 1rem;
}

.legal-info p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #aaa;
}

.disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #888;
}

.disclaimer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .editorial-container {
        padding: 1rem;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-meta {
        justify-content: center;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .cta-block {
        padding: 2rem 1.5rem;
    }
    
    .final-cta {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .specs-table {
        margin: 1rem 0;
    }
    
    .spec-row {
        padding: 0.75rem 1rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-info {
        padding: 1.5rem;
    }
}

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

section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: #667eea;
    color: white;
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .cta-block,
    .final-cta,
    footer {
        display: none;
    }
    
    .editorial-container {
        box-shadow: none;
        background: white;
    }
}
