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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2d2d2d;
    --color-accent: #e63946;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-display: Georgia, 'Times New Roman', serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background: var(--color-bg);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

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

.btn-cookie-accept:hover {
    background: #d62839;
    transform: translateY(-2px);
}

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

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

.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-primary);
}

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

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

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.editorial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.hero-editorial {
    margin-bottom: var(--spacing-xl);
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border-radius: 8px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.hero-text-narrow h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

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

.content-narrow h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.content-narrow h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.8rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.content-narrow ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.content-narrow li {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.inline-cta {
    margin: 2rem 0;
    text-align: center;
}

.cta-text-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.cta-text-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.image-break {
    width: 100%;
    margin: var(--spacing-xl) 0;
    text-align: center;
}

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

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

.problem-section,
.insight-section,
.reveal-section {
    padding: var(--spacing-md) 0;
}

.highlight-box {
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box p {
    margin: 0;
}

.testimonial-inline {
    max-width: 700px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.testimonial-inline blockquote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--color-secondary);
    margin: 0;
}

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

.process-list {
    margin-top: 2rem;
}

.process-item {
    margin-bottom: 2rem;
}

.process-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

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

.services-editorial {
    margin: var(--spacing-lg) 0;
}

.service-card-editorial {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

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

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

.service-card-editorial p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.price-note {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.btn-service-select {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

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

.urgency-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.urgency-box p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.urgency-counter {
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-section-inline {
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-cta-primary:hover {
    background: #d62839;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-cta-secondary {
    background: var(--color-primary);
    color: white;
    margin-left: 1rem;
}

.btn-cta-secondary:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

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

.faq-editorial h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

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

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

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

.form-section {
    margin: var(--spacing-xl) 0;
    background: var(--color-bg-alt);
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.form-container-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-narrow h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container-narrow > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

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

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

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

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

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

.btn-submit:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.final-cta-section {
    text-align: center;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
}

.final-cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-section .btn-cta-secondary {
    background: white;
    color: var(--color-primary);
    margin-left: 0;
}

.final-cta-section .btn-cta-secondary:hover {
    background: var(--color-bg-alt);
}

.footer-editorial {
    background: var(--color-primary);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: var(--spacing-xl);
}

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

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

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

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

.sticky-cta-btn {
    display: block;
    background: var(--color-accent);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d62839;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-md);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.services-detail-list {
    margin: var(--spacing-lg) 0;
}

.service-detail-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-detail-header {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.service-detail-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.service-detail-body {
    padding: 2rem;
}

.service-detail-body h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-secondary);
}

.service-detail-body ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-body li {
    margin-bottom: 0.6rem;
    color: var(--color-text-light);
}

.values-list {
    list-style: none;
    margin-left: 0;
}

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

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.contact-info-box {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.contact-item p {
    color: var(--color-text-light);
    margin: 0;
}

.contact-item a {
    color: var(--color-accent);
    text-decoration: none;
}

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.thanks-next-steps {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    color: var(--color-text-light);
}

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

.legal-page .content-narrow {
    max-width: 800px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-secondary);
}

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

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

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

.cookies-table td {
    color: var(--color-text-light);
}

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

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

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

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

    .editorial-container {
        padding: 1rem;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }

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

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

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

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

    .cookies-table {
        font-size: 0.85rem;
    }

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