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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1f3d29;
}

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: #333;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2d5a3d;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        border-top: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 5%;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    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;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #1f3d29;
}

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

.btn-cookie-reject:hover {
    background-color: #f5f5f5;
}

/* Editorial Flow Layout */
.editorial-flow {
    max-width: 100%;
    margin: 0 auto;
}

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 3rem 5% 2rem;
    max-width: 720px;
    margin: 0 auto;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 2.5rem;
}

.headline-large {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.subhead {
    font-size: 1.35rem;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
}

.hero-image-inline {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image-inline img {
    width: 100%;
    height: auto;
}

/* Page Header */
.page-header-editorial {
    padding: 2.5rem 5% 1.5rem;
    max-width: 720px;
    margin: 0 auto;
    border-bottom: 1px solid #e8e8e8;
}

.header-content-narrow {
    text-align: left;
}

.header-content-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.subhead-page {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #666;
    font-weight: 400;
}

/* Content Narrow - Editorial Core */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 2.5rem 5%;
}

.content-narrow h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.01em;
}

.content-narrow h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0 0.8rem;
}

.content-narrow h4 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.7rem;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.dropcap::first-letter {
    font-size: 3.5em;
    line-height: 0.9;
    float: left;
    margin: 0.1em 0.1em 0 0;
    font-weight: 700;
    color: #2d5a3d;
}

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

.list-styled li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #2a2a2a;
}

/* Inline Figures */
.inline-figure-medium,
.inline-figure-wide {
    margin: 2.5rem 0;
}

.inline-figure-medium img,
.inline-figure-wide img {
    width: 100%;
    border-radius: 6px;
}

figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* Quote Block */
.quote-block {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2d5a3d;
}

.quote-block blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    font-weight: 400;
}

/* Inline CTAs */
.inline-cta-soft {
    margin: 2.5rem 0;
    padding: 1.8rem 2rem;
    background-color: #f4f7f5;
    border-radius: 6px;
}

.inline-cta-soft p {
    margin: 0;
    font-size: 1.15rem;
    color: #2a2a2a;
    font-weight: 500;
}

.cta-inline-emphasis {
    margin: 3rem 0;
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: #2d5a3d;
    border-radius: 8px;
}

.cta-inline-emphasis h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 0 0 1.2rem 0;
}

.btn-primary-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #ffffff;
    color: #2d5a3d;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary-inline:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.final-cta-soft {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background-color: #fafafa;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
}

.final-cta-soft p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.btn-final-scroll {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-final-scroll:hover {
    background-color: #1f3d29;
    transform: translateY(-2px);
}

/* Services Section - Editorial Cards */
.services-editorial {
    max-width: 920px;
    margin: 3rem auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-editorial {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.service-card-editorial:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card-editorial.featured {
    border: 2px solid #2d5a3d;
    background-color: #f9fdf9;
}

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

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.btn-select-service {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #1f3d29;
    transform: translateY(-2px);
}

.btn-select-service.selected {
    background-color: #1f3d29;
}

/* Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background-color: #f9f9f9;
    border-left: 3px solid #2d5a3d;
}

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

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

/* Urgency Block */
.urgency-block {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: #fff8f0;
    border: 1px solid #ffd699;
    border-radius: 6px;
}

.urgency-block p {
    margin: 0;
    color: #8b5a00;
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Section */
.form-section-editorial {
    max-width: 680px;
    margin: 3rem auto;
    padding: 3rem 5%;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.form-wrapper-narrow h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit-form {
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit-form:hover {
    background-color: #1f3d29;
    transform: translateY(-2px);
}

/* Contact Info Blocks */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

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

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

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

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

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #444;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-page-content {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
}

.thanks-container {
    max-width: 680px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-message {
    margin: 2rem 0;
}

.thanks-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

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

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #f0f0f0;
    color: #333;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Legal Pages */
.legal-page .content-narrow {
    max-width: 820px;
}

.legal-updated {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.legal-content {
    font-size: 0.98rem;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2.5rem;
    font-size: 1.6rem;
}

.legal-content h3 {
    margin-top: 2rem;
    font-size: 1.3rem;
}

/* Footer */
.footer-minimal {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 5% 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-brand .brand-footer {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
}

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

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #bbb;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5a3d;
    padding: 1rem 5%;
    z-index: 900;
    display: none;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

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

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

.sticky-cta-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: #ffffff;
    color: #2d5a3d;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

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

    .subhead {
        font-size: 1.1rem;
    }

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

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

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

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

    .quote-block {
        padding: 1.5rem 1.5rem;
    }

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

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

    .footer-links {
        gap: 2rem;
    }

    .sticky-cta-content {
        justify-content: center;
        text-align: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-headline {
        font-size: 1.8rem;
    }

    .thanks-links {
        flex-direction: column;
    }
}

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

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

    .btn-select-service,
    .btn-submit-form {
        width: 100%;
    }
}
