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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b7355;
    --color-accent: #d4a574;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-alt: #f8f6f3;
    --color-border: #e5e5e5;
    --font-serif: 'Georgia', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --spacing-unit: 1.5rem;
}

body {
    font-family: var(--font-serif);
    color: var(--color-text);
    line-height: 1.8;
    background: var(--color-bg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

.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;
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    padding: 2rem var(--spacing-unit);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

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

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

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

.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit) 4rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

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

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 2rem;
}

.story-intro {
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.editorial-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.inline-cta {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.cta-link {
    color: var(--color-secondary);
    font-size: 1.15rem;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--color-accent);
}

.problem-amplification,
.insight-section,
.trust-building,
.storytelling-case,
.benefits-reveal,
.urgency-section,
.testimonials-section,
.form-section,
.final-cta {
    margin-bottom: 5rem;
}

.editorial-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.3;
}

.section-image,
.section-image-right {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

.testimonial-inline {
    background: var(--color-bg-alt);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 3px solid var(--color-secondary);
    font-style: italic;
    font-size: 1.2rem;
}

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

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.insight-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 4px;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.insight-card p {
    font-size: 1.05rem;
    margin: 0;
}

.stats-inline {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    padding: 2.5rem 0;
    background: var(--color-bg-alt);
    border-radius: 4px;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2.5rem;
    color: var(--color-secondary);
    font-family: var(--font-sans);
    display: block;
    margin-bottom: 0.5rem;
}

.stat span {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

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

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

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.service-price {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--color-secondary);
}

.btn-select-service.selected {
    background: var(--color-accent);
    color: var(--color-primary);
}

.cta-block {
    background: var(--color-primary);
    color: white;
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
    margin: 3rem 0;
}

.cta-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: white;
    border-left: 3px solid var(--color-accent);
    padding: 2rem;
    font-style: italic;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-form {
    background: var(--color-bg-alt);
    padding: 2.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: normal;
}

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

.checkbox-group a {
    color: var(--color-secondary);
}

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

.btn-submit:hover {
    background: var(--color-primary);
}

.final-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-bg-alt);
    border-radius: 4px;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.site-footer {
    background: var(--color-primary);
    color: white;
    padding: 3rem var(--spacing-unit) 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.footer-section p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li 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 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

    .nav-links {
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .editorial-container h2 {
        font-size: 1.7rem;
    }

    .stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

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

.thanks-page {
    max-width: 640px;
    margin: 4rem auto;
    padding: 3rem var(--spacing-unit);
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.thanks-page p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thanks-page .service-selected {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--color-primary);
}

.thanks-page a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    transition: background 0.3s ease;
}

.thanks-page a:hover {
    background: var(--color-secondary);
}