* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.editorial-content {
    margin: 0 auto;
}

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

.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-text-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lead-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 2rem auto 0;
    border-radius: 4px;
}

.intro-story,
.problem-amplification,
.insight-reveal,
.services-preview,
.trust-building,
.urgency-block,
.form-section,
.final-cta,
.about-story,
.mission-section,
.values-section,
.team-section,
.cta-about,
.services-detailed,
.services-cta,
.contact-info,
.contact-approach,
.contact-faq,
.final-contact-cta,
.thanks-section,
.legal-content {
    padding: 3rem 0;
}

.narrow-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.narrow-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.narrow-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #444;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.testimonial-inline {
    border-left: 4px solid #3498db;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 2rem 0;
    background-color: #f8f9fa;
    font-style: italic;
    color: #555;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.fact-box {
    background-color: #ecf8ff;
    border: 1px solid #b8e0ff;
    padding: 1.8rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.fact-box strong {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.fact-box ul {
    list-style: none;
    padding-left: 0;
}

.fact-box ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
}

.fact-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-card-editorial p {
    color: #555;
    margin-bottom: 1.2rem;
}

.price-tag {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-inline {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.cta-inline:hover {
    color: #2980b9;
    border-color: #2980b9;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-final-cta,
.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-final-cta:hover,
.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary,
.btn-service {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover,
.btn-service:hover {
    background-color: #1a252f;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta-btn {
    display: block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-accept:hover {
    background-color: #229954;
}

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #5d6d7e;
}

.page-header {
    padding: 3rem 0 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.value-block,
.process-step,
.faq-item {
    margin-bottom: 2rem;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.service-detail-card h2 {
    margin-top: 0;
    font-size: 1.8rem;
}

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

.service-detail-card ul li {
    margin-bottom: 0.8rem;
    color: #555;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin: 1rem 0 1.5rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    margin-top: 0;
}

.contact-block a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-confirmation {
    background-color: #ecf8ff;
    border: 1px solid #b8e0ff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.next-steps {
    margin: 2.5rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.6rem;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.thanks-actions {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.additional-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.additional-info a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

    .narrow-content h2 {
        font-size: 1.6rem;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .service-detail-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .narrow-content {
        padding: 0 1.5rem;
    }

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

    .service-card-editorial,
    .service-detail-card {
        padding: 1.2rem;
    }

    .btn-final-cta,
    .btn-primary,
    .btn-secondary,
    .btn-service,
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}