/* 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', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafafa;
    font-size: 16px;
}

/* Editorial Container */
.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
}

.editorial-content {
    padding: 40px 60px;
}

/* Typography */
.main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 60px 0 30px;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1e90ff, #4169e1);
}

.highlight {
    background: linear-gradient(120deg, #1e90ff, #4169e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 30px 0;
    color: #34495e;
    font-weight: 300;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.hero-image {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 20px;
}

/* CTA Blocks */
.cta-block {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #1e90ff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.4);
    background: #4169e1;
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.cta-button i {
    margin-right: 10px;
}

.cta-note {
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.security-note {
    margin-top: 15px;
    color: #28a745;
    font-size: 0.9rem;
}

/* Sections */
.problem-section,
.solution-section,
.design-section,
.testimonials-section,
.technical-section,
.comparison-section,
.order-section,
.faq-section,
.final-cta {
    margin: 80px 0;
}

/* Stats Block */
.stat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #1e90ff;
    color: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: #1e90ff;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Images */
.feature-image,
.design-showcase {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-image img,
.design-showcase img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-image:hover img,
.design-showcase:hover img {
    transform: scale(1.02);
}

/* Blockquote */
.design-quote {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #1e90ff;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.2rem;
    color: #495057;
}

.design-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid #1e90ff;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #495057;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Technical Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tech-item {
    text-align: center;
    padding: 25px;
    background: #1e90ff;
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.3);
}

.tech-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tech-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.comparison-table th {
    background: linear-gradient(135deg, #1e90ff, #4169e1);
    color: white;
    font-weight: 600;
}

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

.good {
    color: #28a745;
    font-weight: 600;
}

.medium {
    color: #ffc107;
    font-weight: 600;
}

.bad {
    color: #dc3545;
    font-weight: 600;
}

/* Order Section */
.offer-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin: 40px 0;
    border: 2px solid #1e90ff;
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
}

.offer-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.original-price {
    font-size: 1.5rem;
    color: #6c757d;
    text-decoration: line-through;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #28a745;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.offer-features ul {
    list-style: none;
    margin: 30px 0;
}

.offer-features li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
}

.urgency-timer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border-radius: 15px;
    margin-top: 30px;
}

.urgency-timer p {
    margin: 0;
    font-size: 1.1rem;
}

/* FAQ */
.faq-list {
    margin: 40px 0;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.faq-item h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    color: #495057;
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    background: #1e90ff;
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 80px 0;
}

.final-cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

.final-cta .cta-button:hover {
    background: #f8f9fa;
}

/* Footer - Modern Redesign */
footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: white;
    margin-top: 80px;
    padding: 60px 40px 30px;
    border-top: 4px solid #1e90ff;
}

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

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e90ff;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1e90ff, #4169e1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: #1e90ff;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #1e90ff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.legal-info-compact p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 5px;
}

.legal-info-compact strong {
    color: white;
    font-weight: 600;
}

.contact-info-compact p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 8px;
}

.email-link {
    color: #1e90ff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #87ceeb;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #34495e, transparent);
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #ecf0f1;
    font-weight: 500;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #95a5a6;
    font-style: italic;
    max-width: 600px;
}

.footer-nav {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .editorial-content {
        padding: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .stat-block {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .price-display {
        flex-direction: column;
        gap: 10px;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 40px 20px 25px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        padding: 25px;
    }
    
    .final-cta {
        padding: 40px 20px;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

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

.feature-item,
.testimonial-item,
.tech-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Selection color */
::selection {
    background: #1e90ff;
    color: white;
}

/* Focus styles for accessibility */
.cta-button:focus,
.footer-links a:focus,
.email-link:focus {
    outline: 3px solid #1e90ff;
    outline-offset: 2px;
}
