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

:root {
    --primary-color: #1a4d7a;
    --primary-dark: #0f3556;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #6c7a89;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.nav-minimal {
    background: var(--bg-white);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--text-dark);
}

.editorial-flow {
    max-width: 100%;
}

.hero-editorial {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-image-inline {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

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

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

.content-narrow h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-narrow ul,
.content-narrow ol {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.content-narrow li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.problem-list li {
    margin-bottom: 1.25rem;
}

.problem-list strong {
    color: var(--primary-color);
}

.cta-inline-box {
    max-width: 680px;
    margin: 3rem auto;
    padding: 2.5rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.cta-inline-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.image-section-full {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.image-section-full img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

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

.insight-block {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem 2.5rem;
    margin: 3rem auto;
    border-radius: 0 8px 8px 0;
}

.testimonial-inline {
    max-width: 780px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.testimonial-inline blockquote {
    border: none;
    margin: 0;
    padding: 0;
}

.testimonial-inline p {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.feature-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

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

.feature-card p {
    margin-bottom: 0;
}

.cta-section-centered {
    max-width: 680px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-section-centered p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
}

.btn-cta-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.service-blocks {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-block {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.service-block:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.service-block.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-block > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-block h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.65rem 0 0.65rem 2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.price-period {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.service-block.featured .btn-select-service {
    background: var(--accent-color);
}

.service-block.featured .btn-select-service:hover {
    background: #d35400;
}

.form-section-editorial {
    max-width: 680px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.form-container-narrow {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.form-container-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit-form {
    padding: 1.25rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-form:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.urgency-block {
    max-width: 680px;
    margin: 3rem auto;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
}

.urgency-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.urgency-block p {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.urgency-note {
    font-weight: 700;
    color: var(--accent-color);
}

.faq-section {
    margin-top: 4rem;
}

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

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

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

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

.final-cta-editorial {
    max-width: 680px;
    margin: 5rem auto 3rem;
    padding: 3rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 12px;
    text-align: center;
}

.final-cta-editorial h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.final-cta-editorial p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-cta-final {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
}

.btn-cta-final:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

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

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

.footer-section h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--bg-white);
    text-decoration: underline;
}

.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-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    transition: var(--transition);
}

.sticky-cta.show {
    display: flex;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.sticky-cta span {
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.65rem 1.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-sticky:hover {
    background: #d35400;
}

.page-header-narrow {
    max-width: 680px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
}

.page-header-narrow h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.philosophy-list {
    margin: 2rem 0;
}

.philosophy-list li {
    margin-bottom: 1.5rem;
}

.philosophy-list strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-info-section {
    margin-top: 3rem;
}

.contact-info-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-block:last-child {
    border-bottom: none;
}

.contact-info-block h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-block p {
    margin-bottom: 0.75rem;
}

.contact-info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.thanks-container {
    max-width: 680px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

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

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

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-confirmation {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.steps-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.steps-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    margin: 0 0.5rem;
}

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

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

.legal-page h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

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

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }

    .cookie-content p {
        text-align: left;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: var(--shadow-medium);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .lead {
        font-size: 1.1rem;
    }

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

    .service-blocks {
        padding: 0 1rem;
    }

    .service-block {
        padding: 2rem 1.5rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .sticky-cta span {
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-table th,
    .cookie-table td {
        padding: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-text-narrow h1 {
        font-size: 1.65rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .btn-cta-large,
    .btn-cta-final {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .thanks-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

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

    .btn-cta-primary,
    .btn-cta-secondary {
        display: block;
        margin: 0.5rem 0;
    }
}
