:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
}

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

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.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-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #16a34a;
}

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

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

.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

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

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

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

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

.story-intro,
.problem-section,
.insight-reveal,
.solution-intro,
.trust-building,
.story-continuation,
.services-reveal,
.urgency-section,
.final-testimonials,
.form-section,
.final-note,
.services-intro,
.contact-info-section,
.contact-cta,
.faq-section,
.thanks-section,
.mission-section,
.method-section,
.values-section,
.cta-section,
.guarantee-section {
    margin-bottom: 4rem;
}

.opening-graf {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.narrow-text p {
    margin-bottom: 1.5rem;
}

.narrow-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.narrow-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-dark);
}

.narrow-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.inline-cta-soft {
    margin: 2rem 0;
}

.link-arrow {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.visual-break {
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.highlight-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 6px;
}

.highlight-box p {
    margin: 0;
}

.stat-large {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
}

.testimonial-inline {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.numbered-list {
    margin: 2.5rem 0;
}

.list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.list-item .number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.list-item .content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.list-item .content p {
    margin-bottom: 0;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
    color: var(--bg-white);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.btn-secondary:hover {
    background-color: #0284c7;
    color: var(--bg-white);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.results-grid {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.result-card {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.result-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

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

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

.service-card-editorial:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card-editorial.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

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

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.service-body p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

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

.btn-service {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.urgency-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--warning-color);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.urgency-box h2 {
    margin-top: 0;
    color: var(--text-dark);
}

.urgency-stat {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 1.5rem 0;
}

.urgency-stat strong {
    color: var(--warning-color);
    font-weight: 800;
}

.testimonial-block {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

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

.form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.editorial-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
}

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

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

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

.form-checkbox {
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.closing-text {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    color: var(--text-light);
    font-style: italic;
}

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

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

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

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

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

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

.sticky-cta.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta-btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    color: var(--bg-white);
}

.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

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

.faq-item h3 {
    margin-top: 0;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.success-icon {
    margin: 0 auto 2rem;
}

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

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

.thanks-tip {
    text-align: left;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-tip h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.thanks-tip ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.thanks-tip li {
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.next-steps {
    text-align: left;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

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

.cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.cta-box h2,
.cta-box h3 {
    margin-top: 0;
}

.cta-box a {
    margin: 0.5rem;
}

.legal-page {
    padding: 2rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

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

.cookie-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

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

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

    .opening-graf {
        font-size: 1.15rem;
    }

    .results-grid {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    body {
        font-size: 16px;
    }

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

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

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .narrow-text {
        padding: 0 1rem;
    }

    .visual-break {
        padding: 0 1rem;
    }

    .services-editorial {
        padding: 0 1rem;
    }

    .form-container {
        padding: 0 1rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }
}