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

:root {
    --color-dark: #1a1a1a;
    --color-light: #f5f5f5;
    --color-accent: #3a7bd5;
    --color-accent-hover: #2d5fa8;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #ddd;
    --spacing-unit: 1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark);
    text-transform: lowercase;
}

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

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 100%;
    padding-top: 6rem;
}

.hero-editorial {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    background: white;
}

.hero-text-narrow {
    max-width: 700px;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: 800;
}

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

.hero-image-editorial {
    max-width: 900px;
    width: 100%;
}

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

.content-block {
    padding: 4rem 2rem;
    background: white;
    margin: 2rem 0;
}

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

.text-narrow h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: 700;
}

.text-narrow h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 700;
}

.text-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--color-text);
}

.cta-inline {
    padding: 2rem;
    text-align: center;
    background: var(--color-light);
}

.cta-link-editorial {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

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

.content-block-image-left,
.content-block-image-right {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
    background: white;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-block-image-right {
    flex-direction: row-reverse;
}

.image-side {
    flex: 1;
}

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

.text-side {
    flex: 1;
}

.text-side h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 700;
}

.text-side p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.insight-box {
    padding: 4rem 2rem;
    background: var(--color-dark);
    color: white;
    margin: 3rem 0;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

.insight-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

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

.testimonial-inline {
    padding: 4rem 2rem;
    background: var(--color-light);
    margin: 2rem 0;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text);
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
}

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

.problem-amplification {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 3rem 0;
}

.problem-amplification .text-narrow {
    text-align: center;
}

.problem-amplification h2 {
    color: white;
    font-size: 2.5rem;
}

.problem-amplification p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
}

.emphasis-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
}

.cta-block-centered {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
    margin: 2rem 0;
}

.cta-block-centered h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
}

.btn-cta-large:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 123, 213, 0.4);
}

.services-editorial {
    padding: 5rem 2rem;
    background: var(--color-light);
    margin: 2rem 0;
}

.services-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.service-card-editorial {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-editorial:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card-editorial h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-card-editorial p {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.btn-select-service {
    padding: 0.9rem 2.5rem;
    background: var(--color-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--color-accent);
    transform: scale(1.05);
}

.form-section-editorial {
    padding: 5rem 2rem;
    background: white;
    margin: 2rem 0;
}

.form-editorial {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--color-border);
    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: var(--color-accent);
}

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

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

.urgency-block {
    padding: 5rem 2rem;
    background: #ff6b6b;
    color: white;
    margin: 3rem 0;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-urgent {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #ff6b6b;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-cta-urgent:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.final-thought {
    padding: 5rem 2rem;
    background: var(--color-dark);
    color: white;
    margin: 2rem 0;
}

.final-text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 300;
}

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

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

.btn-sticky:hover {
    background: var(--color-accent-hover);
    transform: scale(1.05);
}

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

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

.footer-brand p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-home:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

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

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .content-block-image-left,
    .content-block-image-right {
        flex-direction: column;
        gap: 2rem;
    }

    .text-narrow h2 {
        font-size: 1.8rem;
    }

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

    .btn-sticky {
        text-align: center;
    }

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

    .footer-links {
        justify-content: center;
    }
}