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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --max-width-narrow: 680px;
    --max-width-medium: 900px;
    --max-width-wide: 1200px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

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

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-minimal {
    padding: 1.5rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

/* Editorial Container */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Article Hero */
.article-hero {
    max-width: var(--max-width-narrow);
    margin: var(--spacing-xl) auto;
    padding: 0 var(--spacing-md);
}

.article-hero.small {
    margin: var(--spacing-lg) auto;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

/* Article Body */
.article-body {
    background-color: var(--bg-white);
}

.content-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 var(--spacing-md) var(--spacing-xl);
}

.lead-text {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.inline-image {
    margin: var(--spacing-lg) 0;
    border-radius: 4px;
}

/* Inline CTA */
.inline-cta {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-left: 4px solid var(--secondary-color);
}

.inline-cta p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.inline-cta.large {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.inline-cta.large h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.inline-cta.large p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-inline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
}

.cta-inline:hover {
    background-color: #c0392b;
    color: white;
}

.cta-button-editorial {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cta-button-editorial:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-2px);
}

.cta-button-final {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.cta-button-final:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Testimonials */
blockquote.testimonial-inline {
    border-left: 4px solid var(--secondary-color);
    padding-left: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    font-size: 1.125rem;
}

blockquote.testimonial-inline p {
    margin-bottom: 0.5rem;
}

blockquote.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Insight Box */
.insight-box {
    background-color: #fff8e1;
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: 4px;
}

.insight-box h3 {
    margin-top: 0;
    font-size: 1.375rem;
    color: #f57c00;
}

.insight-box p {
    margin-bottom: 0;
}

/* Strategy Preview */
.strategy-preview {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: 4px;
}

.strategy-preview h3 {
    margin-top: 0;
}

.strategy-list {
    list-style: none;
    padding-left: 0;
}

.strategy-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.strategy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Services Editorial */
.services-editorial {
    margin: var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-card-editorial {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-editorial.featured {
    border-color: var(--secondary-color);
    background-color: #fff5f5;
}

.service-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.service-card-editorial h4 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.service-card-editorial.featured .btn-service {
    background-color: var(--secondary-color);
}

.service-card-editorial.featured .btn-service:hover {
    background-color: #c0392b;
}

/* Form Section */
.form-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
}

.editorial-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Final CTA Editorial */
.final-cta-editorial {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 4px;
}

.final-cta-editorial h3 {
    color: white;
    margin-top: 0;
    font-size: 2rem;
}

.final-cta-editorial p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer-minimal {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--max-width-wide);
    margin: var(--spacing-md) auto 0;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Page */
.contact-intro {
    margin-bottom: var(--spacing-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.contact-card {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 4px;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.375rem;
}

.contact-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
}

.contact-detail a {
    color: var(--secondary-color);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0;
}

.urgency-notice {
    background-color: #fff8e1;
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: 4px;
    border-left: 4px solid #f57c00;
}

.urgency-notice h3 {
    margin-top: 0;
    color: #f57c00;
}

.faq-section {
    margin: var(--spacing-xl) 0;
}

.faq-item {
    margin-bottom: var(--spacing-md);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.privacy-notice {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

/* Thanks Page */
.thanks-page {
    text-align: center;
    padding-top: var(--spacing-lg);
}

.thanks-icon {
    margin: 0 auto var(--spacing-md);
}

.thanks-message {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 4px;
    margin: var(--spacing-md) 0;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.125rem;
}

.thanks-next-steps {
    margin: var(--spacing-xl) 0;
    text-align: left;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.step-card {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 4px;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
}

.step-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.step-content p {
    margin-bottom: 0;
}

.thanks-urgent {
    background-color: #fff8e1;
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: 4px;
    border-left: 4px solid #f57c00;
    text-align: left;
}

.thanks-urgent h3 {
    margin-top: 0;
    color: #f57c00;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.thanks-privacy {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Legal Content */
.legal-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-content h2 {
    margin-top: var(--spacing-lg);
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: var(--spacing-md);
    font-size: 1.25rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.pricing-note {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: 4px;
}

.pricing-note h3 {
    margin-top: 0;
}

.pricing-note p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .lead-text {
        font-size: 1.125rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 0.75rem;
    }
}