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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

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

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

a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 2rem;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-inline:hover {
    transform: translateX(5px);
}

.hero-image {
    margin: 3rem auto;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Story Sections */
.story-section {
    padding: 3rem 0;
}

.story-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.story-section h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-section ul,
.story-section ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.story-section li {
    margin-bottom: 0.75rem;
}

/* Insight Block */
.insight-block {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.highlight-box {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.highlight-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Inline Images */
.inline-image-section {
    padding: 3rem 0;
    text-align: center;
}

.inline-image-section img {
    margin: 0 auto;
    border-radius: 4px;
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* Problem Amplification */
.problem-amplification {
    padding: 3rem 0;
}

.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box strong {
    color: var(--warning-color);
}

/* Solution Section */
.solution-intro {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

/* Services Editorial */
.services-editorial {
    padding: 3rem 0;
}

.service-card-editorial {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card-editorial.featured {
    border: 2px solid var(--secondary-color);
    background-color: #fffaf8;
}

.service-card-editorial.premium {
    border: 2px solid var(--accent-color);
    background-color: #f8fbff;
}

.service-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card-editorial h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-editorial h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.service-card-editorial ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-card-editorial li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-duration {
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-service {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Testimonials */
.testimonial-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Process Section */
.process-section {
    padding: 3rem 0;
}

.process-steps {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    padding: 3rem 0;
    background-color: #fff8f5;
}

.cta-box-urgent {
    background-color: var(--secondary-color);
    color: white;
    padding: 2.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: center;
}

.cta-box-urgent h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-box-urgent p {
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

/* Contact Form Editorial */
.contact-form-editorial {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* Trust Section */
.trust-section {
    padding: 2rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.trust-text {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-button {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.sticky-cta-button:hover {
    color: white;
    opacity: 0.9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

/* Page Headers */
.page-header-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.page-header-narrow h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Credentials List */
.credentials-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.credentials-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

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

/* CTA Section Narrow */
.cta-section-narrow {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

/* Contact Page Specific */
.contact-content {
    padding: 2rem 0;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-form-section {
    margin: 3rem 0;
}

.contact-info-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.contact-methods {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-method {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method p {
    line-height: 1.7;
}

.method-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.faq-contact-section {
    padding: 3rem 0;
}

/* Thanks Page */
.thanks-page-content {
    padding: 4rem 0;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    margin: 2rem 0;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.service-selected {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-selected h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.important-reminder {
    background-color: #fff3cd;
    border-left: 4px solid var(--warning-color);
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.important-reminder h3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.important-reminder ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.contact-reminder {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.cta-thanks {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.testimonial-thanks {
    margin: 3rem 0;
    text-align: left;
}

/* Comparison Guide */
.comparison-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.comparison-guide {
    margin: 2rem 0;
}

.guide-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

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

.guide-item p {
    color: var(--text-light);
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

.legal-content h1 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content section {
    margin: 2.5rem 0;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

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

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

.cookies-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

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

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

    .story-section h2 {
        font-size: 1.75rem;
    }

    .footer-container {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
    }

    .contact-methods {
        flex-direction: column;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

    .content-narrow {
        padding: 0 1.5rem;
    }

    .page-header-narrow {
        padding: 2rem 1.5rem 1.5rem;
    }

    .page-header-narrow h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.75rem;
    }

    .story-section h2 {
        font-size: 1.5rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
