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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5f8a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

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

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

/* Navigation */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2980b9;
}

/* Editorial Layout */
.editorial-layout {
    background: #ffffff;
}

.hero-editorial {
    padding: 5rem 1.5rem 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a252f;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #546e7a;
    font-weight: 400;
}

/* Content Section */
.content-section {
    padding: 4rem 1.5rem;
}

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

.narrow-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a252f;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.narrow-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.narrow-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin: 1.5rem 0 0.8rem;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #455a64;
}

.inline-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #2980b9;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #2c3e50;
}

.highlight-box p {
    margin-bottom: 0;
    color: #546e7a;
}

.inline-cta {
    display: inline-block;
    color: #2980b9;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.inline-cta:hover {
    border-bottom: 2px solid #2980b9;
}

.story-list {
    list-style: none;
    margin: 2rem 0;
}

.story-list li {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.story-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
}

.simple-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.simple-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #ecf6fd;
    border-radius: 8px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-inline cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Services Grid - Editorial Style */
.services-grid-editorial {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-editorial {
    background: #ffffff;
    border: 2px solid #e8ecf1;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    border-color: #2980b9;
    box-shadow: 0 8px 24px rgba(41, 128, 185, 0.1);
}

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

.service-card-editorial p {
    font-size: 1rem;
    color: #546e7a;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0 1rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #2980b9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a5f8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.service-detail-card {
    background: #fff;
    border: 2px solid #e8ecf1;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    background: linear-gradient(135deg, #2980b9 0%, #1a5f8a 100%);
    color: #fff;
    padding: 2rem;
}

.service-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.6rem;
}

.service-volume {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    opacity: 0.9;
}

.service-body {
    padding: 2rem;
}

.service-body h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.service-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-body li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 2rem 0 1.5rem;
}

.addon-card .service-header {
    background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
}

/* Forms */
.form-section-editorial {
    background: #f8f9fa;
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    border: 2px solid #e8ecf1;
}

.form-section-editorial h3 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #1a252f;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    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: #2980b9;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Page Headers */
.page-header-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
}

.page-header-narrow h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a252f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Contact Page */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-info-block {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #2980b9;
}

.contact-info-block h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.contact-info-block p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.map-placeholder {
    margin: 3rem 0;
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.faq-section {
    margin: 2.5rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8ecf1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: #2980b9;
    margin-bottom: 0.8rem;
}

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

.info-box-contact {
    background: #ecf6fd;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.info-box-contact h4 {
    margin-top: 0;
    color: #2c3e50;
}

/* Info Boxes */
.info-box-services {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.info-box-services h3 {
    margin-top: 0;
    color: #856404;
}

.info-box-services ul {
    margin-bottom: 0;
}

.process-steps {
    margin: 2rem 0;
    padding-left: 2rem;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.process-steps li:before {
    content: counter(step-counter) ".";
    font-weight: 700;
    color: #2980b9;
    margin-right: 0.5rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 1.5rem;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.checkmark-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.checkmark-circle {
    stroke: #27ae60;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s ease-out forwards;
}

.checkmark-check {
    stroke: #27ae60;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s 0.4s ease-out forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.service-selected-info {
    background: #ecf6fd;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h3 {
    margin-top: 0;
    color: #2c3e50;
}

.thanks-next-steps ol {
    margin: 1rem 0 0;
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-note {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #2980b9;
    color: #fff;
}

.btn-primary:hover {
    background: #1a5f8a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
}

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

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #27ae60;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* Legal Pages */
.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8ecf1;
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e8ecf1;
    color: #7f8c8d;
    font-style: italic;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #dfe6e9;
}

.gdpr-table th,
.cookies-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

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

.browser-list li {
    padding: 1rem;
    background: #f8f9fa;
    margin-bottom: 0.8rem;
    border-radius: 4px;
    border-left: 4px solid #2980b9;
}

.note-warning {
    background: #fff3cd;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.closing-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 3rem 0 2rem;
    font-style: italic;
}

/* Footer */
.footer-editorial {
    background: #1a252f;
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

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

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

.footer-col a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
    }

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

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

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

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

    .thanks-container h1 {
        font-size: 2rem;
    }

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

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

    .gdpr-table,
    .cookies-table {
        font-size: 0.9rem;
    }

    .gdpr-table th,
    .gdpr-table td,
    .cookies-table th,
    .cookies-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero-editorial {
        padding: 3rem 1rem 2rem;
    }

    .content-section {
        padding: 2.5rem 1rem;
    }

    .form-section-editorial {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }
}