/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 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: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.article-header {
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.main-headline {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1.2px;
    color: #1a1a1a;
}

.article-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #666;
    font-weight: 400;
}

/* Article Body */
.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-section,
.story-section,
.insight-section,
.problem-section,
.social-proof,
.benefits-reveal,
.methodology-section,
.urgency-section,
.services-pricing,
.form-section,
.final-cta,
.team-section,
.results-section,
.philosophy-section,
.cta-section,
.services-comparison,
.guarantee-section,
.faq-section,
.contact-info-section,
.contact-methods,
.response-times,
.privacy-note,
.alternative-contact,
.next-steps,
.contact-reminder,
.urgency-reminder,
.resources-section,
.final-message {
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    color: #2a2a2a;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 3rem;
    letter-spacing: -0.8px;
}

.subsection-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
    display: block;
}

/* Highlight Boxes */
.highlight-box {
    background: #f8f8f8;
    border-left: 4px solid #1a1a1a;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
}

.quote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
}

/* CTAs within content */
.inline-cta {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.inline-cta:hover {
    opacity: 0.7;
}

.cta-block {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: center;
}

.cta-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background: #f0f0f0;
}

.cta-button-large {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button-large:hover {
    background: #333;
}

.cta-button-secondary {
    display: inline-block;
    background: #f0f0f0;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 1rem;
    transition: background 0.3s;
}

.cta-button-secondary:hover {
    background: #e0e0e0;
}

/* Lists */
.benefits-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

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

/* Testimonials */
.testimonial {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Service Cards */
.services-pricing {
    margin-top: 4rem;
}

.services-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.service-card {
    background: #fafafa;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    position: relative;
}

.service-card.featured {
    background: #f0f4f8;
    border: 2px solid #1a1a1a;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-details {
    margin: 2rem 0;
}

.service-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.select-service {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.select-service:hover {
    background: #333;
}

/* Forms */
.form-intro {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-button {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.1rem 3rem;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.submit-button:hover {
    background: #333;
}

/* Comparison Guide */
.comparison-guide {
    margin: 2rem 0;
}

.guide-item {
    background: #f8f8f8;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.guide-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-item ul {
    list-style: none;
    padding-left: 0;
}

.guide-item li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
}

.guide-item li:before {
    content: "→";
    position: absolute;
    left: 0;
}

/* Contact Info */
.contact-details {
    margin: 2rem 0;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.method-box {
    background: #f8f8f8;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.method-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.method-box a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Thanks Page */
.step-box {
    background: #f8f8f8;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.step-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.resource-box {
    background: #f8f8f8;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.resource-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

.cookies-table th,
.cookies-table td {
    border: 1px solid #d0d0d0;
    padding: 0.8rem;
    text-align: left;
}

.cookies-table th {
    background: #f0f0f0;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.cookie-btn.accept {
    background: #ffffff;
    color: #1a1a1a;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-headline {
        font-size: 2rem;
    }

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

    .editorial-content {
        padding: 2rem 1.5rem 4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

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

    .article-body {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.8rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.7rem;
    }

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

    .highlight-box {
        padding: 1.5rem;
    }

    .quote {
        font-size: 1.1rem;
    }
}